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

Unified Diff: LayoutTests/fast/regions/text-region-split-vertical-rl.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/text-region-split-vertical-rl.html
diff --git a/LayoutTests/fast/regions/text-region-split-vertical-rl.html b/LayoutTests/fast/regions/text-region-split-vertical-rl.html
deleted file mode 100644
index 712640530034ea3a3a701cb43a0521e8675ca24c..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/text-region-split-vertical-rl.html
+++ /dev/null
@@ -1,44 +0,0 @@
-<!DOCTYPE html>
-
-<style>
- html { -webkit-writing-mode: vertical-rl; }
-
- #content { -webkit-flow-into: flow; }
- .region { -webkit-flow-from: flow; }
- .finished #content, .finished .region { display: none; }
-
- #region1 { width: 70px; height: 60px; }
- #region2 { width: 200px; height: 100px; }
- #region3 { width: 110px; height: 120px; }
- #region4 { width: 220px; height: 100px; }
- #region5 { width: 110px; height: 200px; }
- #region6 { width: 300px; height: 120px; }
-</style>
-
-<div id="content">
- <p style="-webkit-region-break-after: always"><b class="check region1">Text in region 1.</b> This paragraph has "<i>-webkit-region-break-after: always</i>". <b class="check region2">There should be nothing in this region after this line.</b></p>
-
- <p><b class="check region3">First element in the region 3.</b> Some text inside a flow. Some text inside a flow. Some text inside a flow. <b class="check region4">Text in region 4.</b> </p>
-
- <p>
- <!-- Using the paragraph element to test nested blocks region-breaks. -->
- <div><span class="check region4">Simple line in region 4.</span></div>
- <div style="-webkit-margin-before:80px;"><b class="check region5">First line in region 5.</b> This paragraph displays in region 5 because it has a margin-top, which is too high to fit in the previous region.</div>
- <div style="-webkit-region-break-before: always"><b class="check region6">First line in region 6.</b> This paragraph uses "<i>-webkit-region-break-before: always</i>".</div>
- </p>
-</div>
-
-<div id="region1" class="region"></div>
-<div id="region2" class="region"></div>
-<div id="region3" class="region"></div>
-<div id="region4" class="region"></div>
-<div id="region5" class="region"></div>
-<div id="region6" class="region"></div>
-
-<script src="resources/helper.js"></script>
-<script>
- if (window.testRunner)
- testRunner.dumpAsText();
- if (testContentToRegionsMapping())
- document.body.className = "finished";
-</script>

Powered by Google App Engine
This is Rietveld 408576698