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

Unified Diff: LayoutTests/fast/regions/counters/extract-list-items-004.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/counters/extract-list-items-004.html
diff --git a/LayoutTests/fast/regions/counters/extract-list-items-004.html b/LayoutTests/fast/regions/counters/extract-list-items-004.html
deleted file mode 100644
index 39b1ab9cca69722df6bebb688bc7d42df37b188e..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/counters/extract-list-items-004.html
+++ /dev/null
@@ -1,83 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <title>CSS Test: flow-into on unordered list items, when items contain other unordered lists</title>
- <link rel="author" title="Mihai Balan" href="mibalan@adobe.com">
- <link rel="help" href="http://www.w3.org/TR/css3-regions/#properties-and-rules" />
- <link rel="help" href="http://www.w3.org/TR/css3-regions/#the-flow-into-property" />
- <link rel="stylesheet" type="text/css" href="../resources/font-smoothing-disabler.css">
- <meta name="flags" content="">
- <meta name="assert" content="The flow-into property can be applied to individual list items. List items extracted in named flows and flowed into regions must preserve their list markers, even when extracting items from multiple and nested lists into the same named flow.">
- <style>
- #outer-unordered-1 ul,
- #outer-unordered-2 ul {
- color: blue;
- }
- #outer-unordered-2 ul ul {
- color: green;
- }
-
-
- #outer-unordered-1 > li {
- -webkit-flow-into: f1;
- }
- #r1 {
- -webkit-flow-from: f1;
- }
-
- #outer-unordered-2 li {
- -webkit-flow-into: f2;
- }
- #r2 {
- -webkit-flow-from: f2;
- }
-
- .region {
- margin: 2em;
- background-color: lightgray;
- width: 20em;
- }
- </style>
- </head>
- <body>
- <p>This test passes if there are two gray rectangles: each with a list with another lists nested in it. The list markers for the black list in the first rectangle, and for all the lists in the second rectangle should be rendered outside of the gray boxes</p>
- <p>The list in the first rectangle should be black, with two blue nested lists in it. The nested lists should appear after the first and the second items, they should be indented and use a different kind of bullet.</p>
- <p>The list in the second rectangle should be black, with a blue nested list in it that has in turn a nested green list in it. Each of the black, blue and green list should use different kinds of bullets and list items of the same color should have the same kind of bullet.</p>
- <ul id="outer-unordered-1">
- <li>First unordered list, item 1
- <ul>
- <li>First inner unordered list, item 1</li>
- <li>First inner unordered list, item 2</li>
- <li>First inner unordered list, item 3</li>
- </ul>
- </li>
- <li>First unordered list, item 2
- <ul>
- <li>Second inner unordered list, item 1</li>
- <li>Second inner unordered list, item 2</li>
- </ul>
- </li>
- <li>First unordered list, item 3</li>
- </ul>
- <div class="region" id="r1"></div>
-
- <ul id="outer-unordered-2">
- <li>Second unordered list, item 1</li>
- <li>Second unordered list, item 2
- <ul>
- <li>Last inner unordered list, item 1</li>
- <li>Last inner unordered list, item 2
- <ul>
- <li>Innermost unordered list, item 1</li>
- <li>Innermost unordered list, item 2</li>
- </ul>
- </li>
- <li>Last inner unordered list, item 3</li>
- <li>Last inner unordered list, item 4</li>
- </ul>
- </li>
- <li>Second unordered list, item 3</li>
- </ul>
- <div class="region" id="r2"></div>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698