OLD | NEW |
| (Empty) |
1 <html> | |
2 <head> | |
3 <script type="text/javascript"> | |
4 if (window.testRunner && window.internals) { | |
5 testRunner.waitUntilDone(); | |
6 internals.settings.setFrameFlatteningEnabled(true); | |
7 } | |
8 | |
9 function test() | |
10 { | |
11 setTimeout(function() { | |
12 if (window.testRunner) | |
13 testRunner.notifyDone(); | |
14 }, 0); | |
15 } | |
16 </script> | |
17 </head> | |
18 <body onload="test()"> | |
19 <style>body { background-color: green; }</style> | |
20 <p>Test for iframe flattening. The flattening only works inside the DRT. | |
21 <p>This inner frame should be 400px in each direction, disregarding the | |
22 border, and it must not be scrollable or have scrollbars. | |
23 | |
24 <p><iframe width="200px" height="200px" scrolling=auto src="data:text/html, | |
25 <style>body { background-color: red; }</style> | |
26 <body> | |
27 <div style='position: absolute; width: 400px; height: 400px; left: 0
; top: 0px;'></div> | |
28 </body> | |
29 "></iframe> | |
30 </body> | |
31 </html> | |
OLD | NEW |