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

Unified Diff: LayoutTests/fast/regions/counters/extract-ordered-lists-in-regions-002-expected.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-expected.html
diff --git a/LayoutTests/fast/regions/counters/extract-ordered-lists-in-regions-002-expected.html b/LayoutTests/fast/regions/counters/extract-ordered-lists-in-regions-002-expected.html
deleted file mode 100644
index 7f8aa9709d1d256105b9445adacee90711f6f0b4..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/counters/extract-ordered-lists-in-regions-002-expected.html
+++ /dev/null
@@ -1,68 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <title>CSS Reftest Reference</title>
- <link rel="author" title="Mihai Balan" href="mibalan@adobe.com">
- <link rel="stylesheet" type="text/css" href="../resources/font-smoothing-disabler.css">
- <style>
- ol {
- margin: 0;
- }
- ol ol,
- .inner {
- color: blue;
- }
-
- .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>
- <div class="region" id="r1">
- <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>
-
- <div class="region" id="r2">
- <ol id="ordered-2" reversed>
- <li>Second reversed list, item 3</li>
- <li>Second reversed list, item 2</li>
- <li>Second reversed list, item 1</li>
- </ol>
- <ol class="inner">
- <li>Second inner list, item 1</li>
- <li>Second inner list, item 2</li>
- <li>Second inner list, item 3</li>
- </ol>
- </div>
-
- <div class="region" id="r3">
- <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>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698