| Index: LayoutTests/fast/frames/flattening/iframe-flattening-offscreen.html
|
| diff --git a/LayoutTests/fast/frames/flattening/iframe-flattening-offscreen.html b/LayoutTests/fast/frames/flattening/iframe-flattening-offscreen.html
|
| deleted file mode 100644
|
| index d0c8afb244d659eec8fe917cc13de7b3d0ced6cb..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/fast/frames/flattening/iframe-flattening-offscreen.html
|
| +++ /dev/null
|
| @@ -1,51 +0,0 @@
|
| -<html>
|
| -<head>
|
| - <script type="text/javascript">
|
| - function test()
|
| - {
|
| - if (window.internals)
|
| - internals.settings.setFrameFlatteningEnabled(true);
|
| - // Force synchronous layout.
|
| - document.body.offsetHeight;
|
| - }
|
| - </script>
|
| -</head>
|
| -<body onload="test()">
|
| - <div style="position: absolute; top: 200">
|
| - <p>Test for iframe flattening, with three inner frames just outside the view
|
| - and of the size 200x200 px, plus one inner frame is partly visible.
|
| - <p>This yellow, red and blue inner frames must remain offscreen, and the
|
| - green inner frames should be of size 300x300 (200x200 visible).
|
| - <p>NOTE: The test only works in the DRT or with frame flattening enabled.
|
| - </div>
|
| -
|
| - <!-- DRT size is 800x600 pixels, one needs to be flexible in order to use frame flattening -->
|
| - <p><iframe width="25%" height="200" style='border: 0px; position: absolute; left: 0px; top: -200px;' src="data:text/html,
|
| - <style>body { background-color: red; }</style>
|
| - <body>
|
| - <div style='position: absolute; width: 800px; height: 800px; left: 0; top: 0px;'></div>
|
| - </body>
|
| - "></iframe>
|
| -
|
| - <p><iframe width="25%" height="200" style='border: 0px; position: absolute; left: -200px; top: 0px;' src="data:text/html,
|
| - <style>body { background-color: blue; }</style>
|
| - <body>
|
| - <div style='position: absolute; width: 800px; height: 800px; left: 0; top: 0px;'></div>
|
| - </body>
|
| - "></iframe>
|
| -
|
| - <p><iframe width="25%" height="200" style='border: 0px; position: absolute; left: -200px; top: -200px;' src="data:text/html,
|
| - <style>body { background-color: yellow; }</style>
|
| - <body>
|
| - <div style='position: absolute; width: 800px; height: 800px; left: 0; top: 0px;'></div>
|
| - </body>
|
| - "></iframe>
|
| -
|
| - <p><iframe width="25%" height="200" style='border: 0px; position: absolute; left: -100px; top: -100px;' src="data:text/html,
|
| - <style>body { background-color: green; }</style>
|
| - <body>
|
| - <div style='position: absolute; width: 300px; height: 300px; left: 0; top: 0px;'></div>
|
| - </body>
|
| - "></iframe>
|
| -</body>
|
| -</html>
|
|
|