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

Unified Diff: LayoutTests/fast/regions/counters/extract-list-items-006-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-006-expected.html
diff --git a/LayoutTests/fast/regions/counters/extract-list-items-006-expected.html b/LayoutTests/fast/regions/counters/extract-list-items-006-expected.html
deleted file mode 100644
index 8e6ea69b7588ae2e311d76ac4e71138051740dcb..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/counters/extract-list-items-006-expected.html
+++ /dev/null
@@ -1,60 +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-mixed-2 ul,
- .outer-mixed-2 ol {
- color: blue;
- }
- .outer-mixed-2 ol ul {
- color: green;
- }
- .outer-mixed-2 ol ul ol {
- color: red;
- }
- #r2 ol, #r2 ul {
- padding: 0;
- }
-
- .region {
- margin: 2em;
- background-color: lightgray;
- width: 20em;
- }
- </style>
- </head>
- <body>
- <p>This test passes if there is a gray rectangle with a list in it, as described below. The list markers and numbers for the lists should be rendered outside of the gray rectangle.</p>
- <p>The rectangle should contain a black, bulleted list. This list should contain a blue numbered list after the second item. The numbering on the blue list should start at 1. The blue list should contain a green, bulleted list after its second item. The green bulleted list should contain a red, numbered list after its second item. The numbering on the red list should start at 1, too.<br>
- The green list should use different bullets than the black list.<br>
- None of the list items should be indented &ndash; as such, they should render as a plain list, with varying types of bullets and numberings. The sequence of the colors should be, from top to bottom: black, blue, green, red, blue, black.</p>
- <div class="region" id="r2">
- <ul class="outer-mixed-2">
- <li>Outer unordered list, item 1</li>
- <li>Outer unordered list, item 2
- <ol>
- <li>Inner ordered list, item 1</li>
- <li>Inner ordered list, item 2
- <ul>
- <li>Inner unordered list, item 1</li>
- <li>Inner unordered list, item 2
- <ol>
- <li>Innermost ordered list, item 1</li>
- <li>Innermost ordered list, item 2</li>
- <li>Innermost ordered list, item 3</li>
- </ol>
- </li>
- </ul>
- </li>
- <li>Inner ordered list, item 3</li>
- <li>Inner ordered list, item 4</li>
- </ol>
- </li>
- <li>Outer unordered list, item 3</li>
- </ul>
- </div>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698