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

Unified Diff: LayoutTests/fast/frames/flattening/frameset-flattening-grid.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/frameset-flattening-grid.html
diff --git a/LayoutTests/fast/frames/flattening/frameset-flattening-grid.html b/LayoutTests/fast/frames/flattening/frameset-flattening-grid.html
deleted file mode 100644
index 93462ff28f7321cc2629324753b737c31e53b21d..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/frames/flattening/frameset-flattening-grid.html
+++ /dev/null
@@ -1,50 +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>
-<frameset border=0 rows="100,400" cols="300,300" onload="test()">
- <frame src="data:text/html,
- <style>body { background-color: green; }</style>
- <p>
- Test for frameset flattening. The flattening only works inside the DRT.
- </p>
- <p>
- This frame should be 300px wide, 200px tall and not be scrollable (have scrollbars).
- </p>
- <div style='position: absolute; width: 300px; height: 200px; left: 0; top: 0px;'></div>
- ">
- </frame>
- <frame src="data:text/html,
- <style>body { background-color: red; }</style>
- <p>
- This frame should be 300px wide, 200px tall and not be scrollable (have scrollbars).
- </p>
- <div style='position: absolute; width: 300px; height: 50px; left: 0; top: 0px;'></div>
- ">
- </frame>
- <frame src="data:text/html,
- <style>body { background-color: yellow; }</style>
- <p>
- This frame should be 600px wide, 600px tall and not be scrollable (have scrollbars).
- </p>
- <div style='position: absolute; width: 600px; height: 600px; left: 0; top: 0px;'></div>
- ">
- </frame>
- <frame src="data:text/html,
- <style>body { background-color: blue; }</style>
- <p>
- This frame should be 600px wide, 600px tall and not be scrollable (have scrollbars).
- </p>
- <div style='position: absolute; width: 600px; height: 600px; left: 0; top: 0px;'></div>
- ">
- </frame>
-</frameset>
-</html>

Powered by Google App Engine
This is Rietveld 408576698