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

Unified Diff: LayoutTests/fast/regions/region-styling/set-box-style-in-region-crash.html

Issue 159933010: Remove everything region-specific from LayoutTests. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 10 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/regions/region-styling/set-box-style-in-region-crash.html
diff --git a/LayoutTests/fast/regions/region-styling/set-box-style-in-region-crash.html b/LayoutTests/fast/regions/region-styling/set-box-style-in-region-crash.html
deleted file mode 100644
index a8d72a535e5ad862bb835248e6365dd7860e126b..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/region-styling/set-box-style-in-region-crash.html
+++ /dev/null
@@ -1,42 +0,0 @@
-<!doctype html>
-<html>
- <head>
- <style>
- .regionBox2 { width: 280px; height: 100px; }
-
- #article { -webkit-flow-into: flow; }
- #region { -webkit-flow-from: flow; }
-
- @-webkit-region #region { span { background-color: red } };
- </style>
- <script>
- if (window.testRunner) {
- window.testRunner.dumpAsText();
- testRunner.waitUntilDone();
- }
-
- function test()
- {
- try {
- child = document.getElementById("li");
- child.parentNode.removeChild(child);
- } catch(e) {
- }
-
- if (window.testRunner)
- testRunner.notifyDone();
- }
-
- setTimeout("test()", 0);
- </script>
- <body>
- <p> Bug <a href="https://bugs.webkit.org/show_bug.cgi?id=78298">78298</a>: Crash in RenderFlowThread::setRegionBoxesRegionStyle</p>
- <p> This test PASSES if it does not CRASH or ASSERT.</p>
- <div id="article">
- <li id="li">
- <p id="p"></p>
- </li>
- </div>
- <div id="region" class="regionBox2"></div>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698