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

Unified Diff: LayoutTests/fast/frames/flattening/frameset-flattening-advanced.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-advanced.html
diff --git a/LayoutTests/fast/frames/flattening/frameset-flattening-advanced.html b/LayoutTests/fast/frames/flattening/frameset-flattening-advanced.html
deleted file mode 100644
index b8832adab2d23f14eb6fd204f7e2be8e011f79fc..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/frames/flattening/frameset-flattening-advanced.html
+++ /dev/null
@@ -1,47 +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 rows="53%, 100%" frameborder="0" border=0 framespacing="0" onload="test();">
- <frameset cols="53%, 100%">
- <frame src="data:text/html,
- <style>body { background-color: green; }</style>
- <p>
- Test for frameset flattening. The flattening only works inside the DRT.
- </p>
- <div style='position: absolute; width: 350px; height: 50px; left: 0; top: 0px;'></div>
- ">
- </frame>
- <frame src="data:text/html,
- <style>body { background-color: red; }</style>
- <div style='position: absolute; width: 300px; height: 100px; left: 0; top: 0px;'></div>
- ">
- </frame>
- </frameset>
- <frameset cols="200, *">
- <frame src="data:text/html,
- <style>body { background-color: yellow; }</style>
- <div style='position: absolute; width: 50px; height: 200px; left: 0; top: 0px;'></div>
- ">
- </frame>
- <frame src="data:text/html,
- <style>body { background-color: blue; }</style>
- <div style='position: absolute; width: 650px; height: 400px; left: 0; top: 0px;'></div>
- ">
- </frame>
- </frameset>
- <noframes>
- <body>
- </body>
- </noframes>
-</frameset>
-</html>

Powered by Google App Engine
This is Rietveld 408576698