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

Unified Diff: LayoutTests/fast/regions/counters/extract-list-items-004-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-004-expected.html
diff --git a/LayoutTests/fast/regions/counters/extract-list-items-004-expected.html b/LayoutTests/fast/regions/counters/extract-list-items-004-expected.html
deleted file mode 100644
index f638a0a31a96c55a26468af4a7a566da69e184e4..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/counters/extract-list-items-004-expected.html
+++ /dev/null
@@ -1,73 +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-unordered-1 {
- padding: 0;
- }
- #r2 ol, #r2 ul {
- padding: 0;
- }
-
- #outer-unordered-1 ul,
- #outer-unordered-2 ul {
- color: blue;
- }
-
- #outer-unordered-2 ul ul {
- 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 list markers for the black list in the first rectangle, and 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 use a different kind of bullet.</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. Each of the black, blue and green list should use different kinds of bullets and list items of the same color should have the same kind of bullet.</p>
- <div class="region" id="r1">
- <ul id="outer-unordered-1">
- <li>First unordered list, item 1
- <ul>
- <li>First inner unordered list, item 1</li>
- <li>First inner unordered list, item 2</li>
- <li>First inner unordered list, item 3</li>
- </ul>
- </li>
- <li>First unordered list, item 2
- <ul>
- <li>Second inner unordered list, item 1</li>
- <li>Second inner unordered list, item 2</li>
- </ul>
- </li>
- <li>First unordered list, item 3</li>
- </ul>
- </div>
- <div class="region" id="r2">
- <ul id="outer-unordered-2">
- <li>Second unordered list, item 1</li>
- <li>Second unordered list, item 2
- <ul>
- <li>Last inner unordered list, item 1</li>
- <li>Last inner unordered list, item 2
- <ul>
- <li>Innermost unordered list, item 1</li>
- <li>Innermost unordered list, item 2</li>
- </ul>
- </li>
- <li>Last inner unordered list, item 3</li>
- <li>Last inner unordered list, item 4</li>
- </ul>
- </li>
- <li>Second unordered list, item 3</li>
- </ul>
- </div>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698