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

Unified Diff: LayoutTests/fast/regions/flow-content-basic-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/flow-content-basic-vertical-rl.html
diff --git a/LayoutTests/fast/regions/flow-content-basic-vertical-rl.html b/LayoutTests/fast/regions/flow-content-basic-vertical-rl.html
deleted file mode 100644
index 5971131edaddaaa9b1345ff011b0e140a25107a0..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/flow-content-basic-vertical-rl.html
+++ /dev/null
@@ -1,53 +0,0 @@
-<!DOCTYPE HTML>
-
-<html>
-<head>
- <link href="resources/region-style.css" rel="stylesheet" type="text/css"/>
- <style type="text/css">
- html {
- -webkit-writing-mode: vertical-rl;
- -webkit-font-smoothing: none;
- }
-
- #source{
- -webkit-flow-into: main-thread;
- }
-
- .region {
- -webkit-flow-from: main-thread;
- width: 100px;
- height: 300px;
- border: 1px solid black;
- padding: 5px;
- }
- </style>
-</head>
-<body>
- <div id="source" class="pass">
- <div style="width:100px;">first flow content</div>
- <div style="width:100px;">second flow content</div>
- </div>
- <div>
- The words "flow content" in green should display twice after this div,
- and there should be two copies of this content that match.
- </div>
- <div id="region1" class="region">
- <div class="error">FAIL if this text is displayed.</div>
- </div>
- <div id="region2" class="region">
- <div class="error">FAIL if this text is displayed.</div>
- </div>
- <div>
- The words "flow content" in green should display after this div,
- and there should be two copies of this content that match.
- </div>
- <div class="pass">
- <p>flow content</p>
- </div>
-
- <p>This test checks that content can be redirected to a region. It also
- tries out a validation strategy that recreates the intended display
- using non-region markup. If top does not match the bottom then the
- result should be rejected.</p>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698