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

Unified Diff: LayoutTests/fast/regions/counters/extract-list-items-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-list-items-002-expected.html
diff --git a/LayoutTests/fast/regions/counters/extract-list-items-002-expected.html b/LayoutTests/fast/regions/counters/extract-list-items-002-expected.html
deleted file mode 100644
index 86e2b4ff32d686e624e4a10e9114b88bb5a0d6cc..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/counters/extract-list-items-002-expected.html
+++ /dev/null
@@ -1,59 +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>
- ul:first-of-type, ol:first-of-type {
- color: blue;
- }
- ul:nth-of-type(3) {
- color: green;
- }
- ol, ul {
- margin: 0;
- padding: 0;
- }
-
- .region {
- margin: 2em;
- background-color: lightgray;
- width: 200px;
- }
- </style>
- </head>
- <body>
- <p>This test passes if there are two gray rectangles: the first with two numbered lists (3 items each), the second with three un-numbered lists (2 items each).<br>
- First list of each type should be blue, second list of each type should be black and the third un-ordered list should be green.
- </p>
- <p>Each numbered list should start at 1.<br>
- Both the numbers and the list markers should be outside of the gray rectangles.</p>
- <div class="region" id="r1">
- <ol>
- <li>Ordered list 1, item 1</li>
- <li>Ordered list 1, item 2</li>
- <li>Ordered list 1, item 3</li>
- </ol>
- <ol>
- <li>Ordered list 2, item 1</li>
- <li>Ordered list 2, item 2</li>
- <li>Ordered list 2, item 3</li>
- </ol>
- </div>
- <div class="region" id="r2">
- <ul>
- <li>Unordered list 1, item 1</li>
- <li>Unordered list 1, item 2</li>
- </ul>
- <ul>
- <li>Unordered list 2, item 1</li>
- <li>Unordered list 2, item 2</li>
- </ul>
- <ul>
- <li>Unordered list 3, item 1</li>
- <li>Unordered list 3, item 2</li>
- </ul>
- </div>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698