Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(150)

Unified Diff: LayoutTests/fast/frames/flattening/iframe-flattening-out-of-view-scroll-and-relayout.html

Issue 13963006: Remove frame flattening support as Chromium has no intention of using it (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/frames/flattening/iframe-flattening-out-of-view-scroll-and-relayout.html
diff --git a/LayoutTests/fast/frames/flattening/iframe-flattening-out-of-view-scroll-and-relayout.html b/LayoutTests/fast/frames/flattening/iframe-flattening-out-of-view-scroll-and-relayout.html
deleted file mode 100644
index 28aee6734e3d0ab9cafe52ec1abd228e050252e1..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/frames/flattening/iframe-flattening-out-of-view-scroll-and-relayout.html
+++ /dev/null
@@ -1,32 +0,0 @@
-<html>
-<head>
- <script type="text/javascript">
- if (window.testRunner && window.internals) {
- testRunner.waitUntilDone();
- internals.settings.setFrameFlatteningEnabled(true);
- }
-
- function test()
- {
- setTimeout(function() {
- scrollTo(1200, 0);
- document.body.offsetWidth;
- if (window.testRunner)
- testRunner.notifyDone();
- }, 0);
- }
- </script>
-</head>
-<body onload="test()">
- <div>
- <p>Test that an off-screen iframe with positive coordinates is flattened, and so are its child frames.
- </div>
-
- <p><iframe width="200" height="200" style='border: 0px; position: absolute; left: 1200px; top: 0px;' src="data:text/html,
- <style>body { background-color: blue; }</style>
- <body>
- <iframe src='data:text/html, <style>div {width:800px;background-color:silver;}</style><div>This is a nested frame that is flattened and scrolled into view.</div>'></iframe>
- </body>
- "></iframe>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698