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

Unified Diff: LayoutTests/fast/regions/counters/extract-ordered-lists-in-regions-explicit-counters-002.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-ordered-lists-in-regions-explicit-counters-002.html
diff --git a/LayoutTests/fast/regions/counters/extract-ordered-lists-in-regions-explicit-counters-002.html b/LayoutTests/fast/regions/counters/extract-ordered-lists-in-regions-explicit-counters-002.html
deleted file mode 100644
index d2655bb22a7b7ae973381e073906f36d372740fe..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/counters/extract-ordered-lists-in-regions-explicit-counters-002.html
+++ /dev/null
@@ -1,80 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <title>CSS Test: flow-into on ordered lists that use multiple CSS counters and ::before for list numbering</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="help" href="http://www.w3.org/TR/CSS21/generate.html#propdef-counter-reset" />
- <link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#propdef-counter-increment" />
- <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 ordered lists. List items numbered using a single counter in nested scopes and extracted in a named flow should render in regions just as without regions.">
- <style>
- #list1 ol, ul {
- counter-reset: items 0;
- padding-left: 2em;
- }
- li {
- counter-increment: items 1;
- list-style-type: none;
- }
- .twice>li {
- counter-increment: items 2;
- }
- li::before {
- content: counters(items, ".") ". ";
- display: inline-block;
- margin-right: .3em;
- text-align: right;
- }
- .roman>li::before {
- content: counters(items, ".", upper-roman) ". ";
- }
- .disc>li::before {
- content: counter(items, disc) " ";
- }
- #list1 {
- -webkit-flow-into: f1;
- }
-
- .region {
- background-color: lightgray;
- margin: 1em;
- float: left;
- width: 17em;
- height: 15em;
- }
- #r1 {
- -webkit-flow-from: f1;
- }
- </style>
- </head>
- <body>
- <p>This test passes if you see a gray rectangle with a list containing sublists as follows: the outermost list items should be numbered using roman numerals; the second-level list should be a bullet list with two items; the innermost list should be numbered using three levels of decimal numbers (<em>e.g.</em> 2.1.1).</p>
- <ol class="roman" id="list1">
- <li>Roman list, item I</li>
- <li>Roman list, item II
- <ul class="disc">
- <li>Bullet 1
- <ol>
- <li>Sub-point 2.1.1</li>
- <li>Sub-point 2.1.2</li>
- </ol>
- </li>
- <li>Bullet 2
- <ol>
- <li>Sub-point 2.2.1</li>
- <li>Sub-point 2.2.2</li>
- <li>Sub-point 2.2.3</li>
- <li>Sub-point 2.2.4</li>
- </ol>
- </li>
- </ul>
- </li>
- <li>Roman list, item III</li>
- <li>Roman list, item IV</li>
- </ol>
- <div class="region" id="r1"></div>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698