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

Unified Diff: LayoutTests/fast/regions/remove-box-info-assert.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/remove-box-info-assert.html
diff --git a/LayoutTests/fast/regions/remove-box-info-assert.html b/LayoutTests/fast/regions/remove-box-info-assert.html
deleted file mode 100644
index ec798d972edc4b2307da90cf18966a98588ef692..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/remove-box-info-assert.html
+++ /dev/null
@@ -1,35 +0,0 @@
-<html>
- <head>
- <style>
- .content {
- -webkit-flow-into: flow;
- }
-
- .region {
- -webkit-flow-from: flow;
- width: 300px;
- height: 300px;
- }
- </style>
- </head>
-<body>
- <p>Bug <a href="https://bugs.webkit.org/show_bug.cgi?id=109914">109914</a>: [CSS Regions] Assertion in RenderFlowThread::removeRenderBoxRegionInfo</p>
- <p>This test PASSES if it does not CRASH or ASSERT.</p>
- <!-- We need two regions to prevent optimizations from hiding the assertion-->
- <div class="region"></div>
- <div class="region" id="region"></div>
- <div class="content"><div id="content">X</div></div>
- <script type="text/javascript">
- if (window.testRunner)
- window.testRunner.dumpAsText();
- document.body.offsetTop;
- var region = document.getElementById("region");
- var content = document.getElementById("content");
- region.style.webkitFlowFrom = "change_flow";
- content.style.webkitFlowInto = "change_flow";
- document.body.offsetTop;
- content.style.display = "none";
- region.style.display = "none";
- </script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698