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

Unified Diff: LayoutTests/fast/regions/crash-reflow-inline-content-in-variable-width-regions.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/crash-reflow-inline-content-in-variable-width-regions.html
diff --git a/LayoutTests/fast/regions/crash-reflow-inline-content-in-variable-width-regions.html b/LayoutTests/fast/regions/crash-reflow-inline-content-in-variable-width-regions.html
deleted file mode 100644
index 71abc9afc91814d4b3ef3a08af21a031e55313b3..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/crash-reflow-inline-content-in-variable-width-regions.html
+++ /dev/null
@@ -1,29 +0,0 @@
-<!doctype html>
-<html>
- <head>
- <style>
- body { font: 16px/1.25 monospace; }
- #content { -webkit-flow-into: article; }
- .rightFloat { float: right; }
- .region { -webkit-flow-from: article; }
- .small { width: 75px; height: 25px; }
- .big { width: 200px; height: 150px; }
- </style>
- </head>
-<body>
- <p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=112515"> [CSSRegions] Crash reflowing content in variable width regions</a>.</p>
- <p>On success, you should see past below and test does not crash or assert.</p>
- <div id="content">
- <div class="rightFloat">Floating content</div>
- </div>
- <div class="region small"></div>
- <div class="region big"></div>
- <p>PASS</p>
- <script>
- document.body.offsetTop; // force layout
- document.getElementById("content").innerHTML = "<span>Some text here</span>";
- if (window.testRunner)
- window.testRunner.dumpAsText();
- </script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698