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

Unified Diff: LayoutTests/fast/regions/counters/extract-list-items-014-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-014-expected.html
diff --git a/LayoutTests/fast/regions/counters/extract-list-items-014-expected.html b/LayoutTests/fast/regions/counters/extract-list-items-014-expected.html
deleted file mode 100644
index 9c1987bc4355e8338c9f5ac9db74eabb6624fe17..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/counters/extract-list-items-014-expected.html
+++ /dev/null
@@ -1,57 +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>
- .region {
- margin-left: 2em;
- float: left;
- width: 15em;
- height: 10em;
- }
- #r1 {
- color: #006400;
- background-color: lightgreen;
- }
- #r2 {
- color: blue;
- background-color: lightblue;
- }
-
- .region > ul,
- .region > ol {
- padding: 0;
- margin: 0;
- }
-
- /* We use visibility:hidden and height:0 to visually skip list items
- while forcing the counter to increse its value. */
- .hide {
- visibility: hidden;
- height: 0;
- }
- </style>
- </head>
- <body>
- <p>Test passes if you see two rectangles, one green and one blue, as follows. Each rectangle should contain a numbered list; the numbers should be rendered outside the rectangle. The items in the first list should be numbered 1, 2 and 5 respectively, while the items in the second list should be numbered 3, 4 and 6 respectively.</p>
- <div class="region" id="r1">
- <ol>
- <li>List item 1</li>
- <li>List item 2</li>
- <li class="hide"></li>
- <li class="hide"></li>
- <li>List item 5</li>
- </ol>
- </div>
- <div class="region" id="r2">
- <ol start="3">
- <li>List item 3</li>
- <li>List item 4</li>
- <li class="hide"></li>
- <li>List item 6</li>
- </ol>
- </div>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698