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

Unified Diff: LayoutTests/fast/frames/flattening/iframe-flattening-crash.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-crash.html
diff --git a/LayoutTests/fast/frames/flattening/iframe-flattening-crash.html b/LayoutTests/fast/frames/flattening/iframe-flattening-crash.html
deleted file mode 100644
index fc114daa64191a0508b51bdebaad88f9d88a30f9..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/frames/flattening/iframe-flattening-crash.html
+++ /dev/null
@@ -1,32 +0,0 @@
-<html>
-<head>
- <script type="text/javascript">
- if (window.testRunner && window.internals) {
- testRunner.dumpAsText();
- testRunner.waitUntilDone();
- internals.settings.setFrameFlatteningEnabled(true);
- }
- </script>
-</head>
-<body>
- <style>body { background-color: green; }</style>
- <p>This test passes if it does not crash <a href="https://bugs.webkit.org/show_bug.cgi?id=52449">https://bugs.webkit.org/show_bug.cgi?id=52449</a></p>
-
- <p><iframe id="if" width="20%" height="20%" scrolling=auto src="data:text/html,
- <html>
- <script>
- function test2(){
- var i = document.getElementsByTagName('html')[0].clientWidth;
- if (window.testRunner)
- testRunner.notifyDone();
- if (window.testRunner)
- internals.settings.setFrameFlatteningEnabled(true);
- }
- </script>
- <body onresize='test2();'>
- <div style='position: absolute; width: 400px; height: 400px; left: 0; top: 0px;' id='p'><input id='in' value='abcd'></div>
- </body></html>
- ">
-</body>
-</html>
-

Powered by Google App Engine
This is Rietveld 408576698