File: frame_test.html

package info (click to toggle)
ruby-mechanize 2.10.1-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,432 kB
  • sloc: ruby: 11,645; makefile: 7; sh: 4
file content (32 lines) | stat: -rw-r--r-- 989 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
   "http://www.w3.org/TR/html4/frameset.dtd">
<HTML>
<HEAD>
<TITLE>A simple frameset document</TITLE>
</HEAD>
<FRAMESET cols="20%, 80%">
  <FRAMESET rows="100, 200">
  <FRAME name="frame1" src="/google.html">
  <FRAME name="frame2" src="/form_test.html">
  </FRAMESET>
  <FRAMESET rows="100, 200">
  <FRAME name="frame3" src="/file_upload.html">
  <IFRAME src="http://google.com/" name="frame4">
  [Your user agent does not support frames or is currently configured
  not to display frames. However, you may visit
  <A href="foo.html">the related document.</A>]
  </IFRAME>
  </FRAMESET>
  <NOFRAMES>
    Your user agent does not support frames.
  </NOFRAMES>
  <P>This frameset document contains:
    <UL>
      <LI><A href="/google.html">Some neat contents</A>
      <LI><A href="/form_test.html" class="bar">Form Test</A>
      <LI><A href="/file_upload.html">Some other neat contents</A>
    </UL>
  </P>
</FRAMESET>
</HTML>