Index: LayoutTests/fast/frames/flattening/iframe-flattening-selection-crash.html |
diff --git a/LayoutTests/fast/frames/flattening/iframe-flattening-selection-crash.html b/LayoutTests/fast/frames/flattening/iframe-flattening-selection-crash.html |
deleted file mode 100644 |
index c88a112ea1a34a251e978e10db6160956d7ea27c..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/frames/flattening/iframe-flattening-selection-crash.html |
+++ /dev/null |
@@ -1,31 +0,0 @@ |
-<html> |
-<head> |
- <script type="text/javascript"> |
- function test() { |
- if (window.testRunner && window.internals) { |
- testRunner.dumpAsText(); |
- internals.settings.setFrameFlatteningEnabled(true); |
- } |
- |
- // Force synchronous layout. |
- document.body.offsetHeight; |
- |
- document.getElementById("if").contentWindow.document.getElementById('in').focus(); |
- document.getElementById("if").contentWindow.document.getElementById('p').style.top = "20px"; |
- } |
- </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" onload="test();" width="20%" height="20%" scrolling=auto src="data:text/html, |
- <html> |
- <body'> |
- <div style='position: absolute; width: 400px; height: 400px; left: 0; top: 0px;' id='p'><input id='in' value='abcd'></div> |
- </body></html> |
- "> |
-</body> |
-</html> |
- |
- |