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

Unified Diff: LayoutTests/fast/regions/region-styling/remove-leftover-anon-block-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/remove-leftover-anon-block-crash.html
diff --git a/LayoutTests/fast/regions/region-styling/remove-leftover-anon-block-crash.html b/LayoutTests/fast/regions/region-styling/remove-leftover-anon-block-crash.html
deleted file mode 100644
index 64f506c5ff16bfb804c4bc2d9d0ee8d0d8878147..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/region-styling/remove-leftover-anon-block-crash.html
+++ /dev/null
@@ -1,30 +0,0 @@
-<!doctype html>
-<html>
- <style>
- #article { -webkit-flow-into: flow; }
- #region { -webkit-flow-from: flow; }
- @-webkit-region #region {
- #article { color: #00ff00; }
- }
- </style>
- <p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=106191">WebKit Bug 106191</a> Crash when an anonymous block in a flow thread is deleted because it has only block children. </p>
- <p>The test passes if it does not crash or assert.</p>
- <p>PASS</p>
- <div id="article">
- <em style="display: block;"></em>
- Text color styled in region: #00ff00.
- <em id="em">Em color styled in region: #008000.</em>
- </div>
- <div id="region"></div>
-<script>
-if (window.testRunner)
- window.testRunner.dumpAsText();
-
-document.body.offsetTop;
-var elem = document.getElementById("em");
-var new_elem = document.createElement("table");
-elem.parentNode.insertBefore(new_elem, elem);
-document.body.offsetTop;
-document.getElementById("article").style.visibility = "hidden";
-</script>
-</html>

Powered by Google App Engine
This is Rietveld 408576698