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

Unified Diff: LayoutTests/fast/regions/counters/extract-list-items-006.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-006.html
diff --git a/LayoutTests/fast/regions/counters/extract-list-items-006.html b/LayoutTests/fast/regions/counters/extract-list-items-006.html
deleted file mode 100644
index 71280a901891df17ed9c79e5a340b0c84984570c..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/counters/extract-list-items-006.html
+++ /dev/null
@@ -1,68 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <title>CSS Test: flow-into on all list items from a nested list</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 or numbering (type, value), even when extracting items from multiple and nested lists into the same named flow.">
- <style>
- .outer-mixed-2 ul,
- .outer-mixed-2 ol {
- color: blue;
- }
- .outer-mixed-2 ol ul {
- color: green;
- }
- .outer-mixed-2 ol ul ol {
- color: red;
- }
-
- .outer-mixed-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 is a gray rectangle with a list in it, as described below. The list markers and numbers for the lists should be rendered outside of the gray rectangle.</p>
- <p>The rectangle should contain a black, bulleted list. This list should contain a blue numbered list after the second item. The numbering on the blue list should start at 1. The blue list should contain a green, bulleted list after its second item. The green bulleted list should contain a red, numbered list after its second item. The numbering on the red list should start at 1, too.<br>
- The green list should use different bullets than the black list.<br>
- None of the list items should be indented &ndash; as such, they should render as a plain list, with varying types of bullets and numberings. The sequence of the colors should be, from top to bottom: black, blue, green, red, blue, black.</p>
-
- <ul class="outer-mixed-2">
- <li>Outer unordered list, item 1</li>
- <li>Outer unordered list, item 2
- <ol>
- <li>Inner ordered list, item 1</li>
- <li>Inner ordered list, item 2
- <ul>
- <li>Inner unordered list, item 1</li>
- <li>Inner unordered list, item 2
- <ol>
- <li>Innermost ordered list, item 1</li>
- <li>Innermost ordered list, item 2</li>
- <li>Innermost ordered list, item 3</li>
- </ol>
- </li>
- </ul>
- </li>
- <li>Inner ordered list, item 3</li>
- <li>Inner ordered list, item 4</li>
- </ol>
- </li>
- <li>Outer unordered list, item 3</li>
- </ul>
- <div class="region" id="r2"></div>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698