| 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 <frameset border=0 cols="*,200"> | |
| 19 <frame onload="test()" src="data:text/html, | |
| 20 <style>body { background-color: green; }</style> | |
| 21 <p> | |
| 22 Test for frameset flattening. The flattening only works inside the D
RT. | |
| 23 </p> | |
| 24 <p> | |
| 25 This frame should be 800px wide and not be scrollable (have scrollba
rs). | |
| 26 </p> | |
| 27 <div style='position: absolute; width: 800px; height: 1px; left: 0; top:
100px;'></div> | |
| 28 "> | |
| 29 <frame> | |
| 30 </frameset> | |
| 31 </html> | |
| OLD | NEW |