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

Unified Diff: LayoutTests/fast/regions/named-flow-content-order-3.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/named-flow-content-order-3.html
diff --git a/LayoutTests/fast/regions/named-flow-content-order-3.html b/LayoutTests/fast/regions/named-flow-content-order-3.html
deleted file mode 100644
index c02c1b96d56dfe929dab4a1ed12a9360bf6bcd6c..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/named-flow-content-order-3.html
+++ /dev/null
@@ -1,43 +0,0 @@
-<!doctype html>
-<html>
- <head>
- <style>
- .content { -webkit-flow-into: content-flow; }
-
- .region {
- -webkit-flow-from: content-flow;
- height: 300px;
- width: 500px;
- border: 1px solid black;
- }
-
- p, div, body {
- margin: 0px;
- font-size: 20px;
- }
-
- p {
- display: inline;
- }
- </style>
- </head>
- <body>
- <p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=103501">Fix content node renderers ordering inside the named flow thread</a>.</p>
- <p>The test verifies the order of elements preserves when the text nodes have flow-into set because of style cloning.</p>
- <p>On success, you should see the first inline, the paragraph and the second inline.</p>
- <div class="content">
- First inline.
- <p id="para">A paragraph that can be block or inline.</p>
- Second inline.
- </div>
- <div class="region"></div>
-
- <script>
- document.body.offsetTop;
- var para = document.getElementById("para");
- para.style.display = "block";
- document.body.offsetTop;
- para.style.display = "inline";
- </script>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698