Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
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>