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

Unified Diff: LayoutTests/fast/regions/counters/extract-ordered-lists-in-regions-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-002.html
diff --git a/LayoutTests/fast/regions/counters/extract-ordered-lists-in-regions-002.html b/LayoutTests/fast/regions/counters/extract-ordered-lists-in-regions-002.html
deleted file mode 100644
index b7ee3839bb3a393b4a0741faf07c910707f91187..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/counters/extract-ordered-lists-in-regions-002.html
+++ /dev/null
@@ -1,89 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <title>CSS Test: flow-into on ordered lists that have the "reversed" HTML attribute set</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 ordered lists. Lists extracted in a named flow should still honor the HTML5 'reversed' list attribute.">
- <style>
- ol {
- margin: 0;
- }
- ol ol {
- color: blue;
- }
- #ordered-1 {
- -webkit-flow-into: f1;
- }
- #r1 {
- -webkit-flow-from: f1;
- }
-
- #ordered-2,
- #ordered-2 ol {
- -webkit-flow-into: f2;
- }
- #r2 {
- -webkit-flow-from: f2;
- }
-
- .ordered-3 {
- -webkit-flow-into: f3;
- }
- #r3 {
- -webkit-flow-from: f3;
- }
- .region {
- background-color: lightgray;
- margin: 1em;
- float: left;
- width: 15em;
- height: 15em;
- }
- </style>
- </head>
- <body>
- <p>This test passes if you see three gray rectangles with a number of lists inside each, as follows.</p>
- <p>The first rectangle should contain a black numbered list, with the numbers in reverse order. After the first item there should a be a blue numbered list, indented and numbered in normal order.</p>
- <p>The second rectangle should contain two numbered list. The first one should be black and numbered in reverse order while the second should be blue and numbered in normal order. They should both have the same indentation level.</p>
- <p>The third rectangle should contain two black, numbered lists, the first with three items, the second with two items. Both lists should be numbered in reverse.</p>
- <ol id="ordered-1" reversed="reversed">
- <li>First reversed list, item 3
- <ol>
- <li>First inner list, item 1</li>
- <li>First inner list, item 2</li>
- </ol>
- </li>
- <li>First reversed list, item 2</li>
- <li>First reversed list, item 1</li>
- </ol>
- <div class="region" id="r1"></div>
-
- <ol id="ordered-2" reversed>
- <li>Second reversed list, item 3</li>
- <li>Second reversed list, item 2
- <ol>
- <li>Second inner list, item 1</li>
- <li>Second inner list, item 2</li>
- <li>Second inner list, item 3</li>
- </ol>
- </li>
- <li>Second reversed list, item 1</li>
- </ol>
- <div class="region" id="r2"></div>
-
- <ol class="ordered-3" reversed="true">
- <li>Third reversed list, item 3</li>
- <li>Third reversed list, item 2</li>
- <li>Third reversed list, item 1</li>
- </ol>
- <ol class="ordered-3" reversed="true">
- <li>Final reversed list, item 2</li>
- <li>Final reversed list, item 1</li>
- </ol>
- <div class="region" id="r3"></div>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698