Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
1 <!doctype html>
2 <meta charset=utf-8>
3 <title> Layout Helpers </title>
5 <style>
6 html {
7 height: 300%;
8 width: 300%;
9 }
10 div#some {
11 position: absolute;
12 background: black;
13 width: 2px;
14 height: 2px;
15 }
16 iframe {
17 position: absolute;
18 width: 40px;
19 height: 40px;
20 border: 0;
21 }
22 </style>
24 <div id=some></div>
25 <iframe id=frame src='./browser_layoutHelpers_iframe.html'></iframe>