File: iframe.html

package info (click to toggle)
vimium 2.1.2-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,212 kB
  • sloc: javascript: 12,766; makefile: 7
file content (37 lines) | stat: -rw-r--r-- 683 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
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
  <title>IFrame test harness</title>
  <link rel="icon" href="data:;base64,iVBORw0KGgo=">
  <style type="text/css" media="screen">
    body {
      background-color: black;
      color: #999;
      height: 4000px;
    }
    a {
      color: white;
    }

    iframe {
      border: 2px solid orange;
      width: 800px;
      height: 800px;
      margin-left: 10px;
    }

    h2 {
      margin: 4px;
    }
  </style>
</head>

<body>
  <h2>IFrame test page</h2>
  <input type="text" />
  <a href="https://google.com">Sample link</a><br/>
  <iframe src="./page_with_links.html"></iframe>
  <iframe src="./page_with_links.html"></iframe>
</body>

</html>