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

Unified Diff: LayoutTests/fast/regions/counters/extract-list-items-003-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-list-items-003-expected.html
diff --git a/LayoutTests/fast/regions/counters/extract-list-items-003-expected.html b/LayoutTests/fast/regions/counters/extract-list-items-003-expected.html
deleted file mode 100644
index 4d095c17dbe5e8b28c1d0f91cb36bd45b165ad55..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/counters/extract-list-items-003-expected.html
+++ /dev/null
@@ -1,72 +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>
- #outer-ordered-1 {
- padding: 0;
- }
- #r2 ol, #r2 ul {
- padding: 0;
- }
-
- #outer-ordered-1 ol,
- #outer-ordered-2 ol {
- color: blue;
- }
- #outer-ordered-2 ol ol {
- color: green;
- }
-
- .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 numbers for the black list in the first rectangle, and the numbers 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 numbered starting at 1.</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. The numbers in the list items text should coincide with the list item numbers.</p>
- <div class="region" id="r1">
- <ol id="outer-ordered-1">
- <li>First ordered list, item 1
- <ol>
- <li>First inner ordered list, item 1</li>
- <li>First inner ordered list, item 2</li>
- <li>First inner ordered list, item 3</li>
- </ol>
- </li>
- <li>First ordered list, item 2
- <ol>
- <li>Second inner ordered list, item 1</li>
- <li>Second inner ordered list, item 2</li>
- </ol>
- </li>
- <li>First ordered list, item 3</li>
- </ol>
- </div>
- <div class="region" id="r2">
- <ol id="outer-ordered-2">
- <li>Second ordered list, item 1</li>
- <li>Second ordered list, item 2
- <ol>
- <li>Last inner ordered list, item 1</li>
- <li>Last inner ordered list, item 2
- <ol>
- <li>Innermost ordered list, item 1</li>
- <li>Innermost ordered list, item 2</li>
- </ol>
- </li>
- <li>Last inner ordered list, item 3</li>
- <li>Last inner ordered list, item 4</li>
- </ol>
- </li>
- <li>Second ordered list, item 3</li>
- </ol>
- </div>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698