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

Unified Diff: LayoutTests/fast/regions/counters/extract-list-items-008-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-008-expected.html
diff --git a/LayoutTests/fast/regions/counters/extract-list-items-008-expected.html b/LayoutTests/fast/regions/counters/extract-list-items-008-expected.html
deleted file mode 100644
index 4f89da2847ea1fd2db878f16f3f89836ff8217df..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/counters/extract-list-items-008-expected.html
+++ /dev/null
@@ -1,79 +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>
- .container {
- color: #006400;
- background-color: lightgreen;
- margin: 2em;
-
- }
- .region {
- margin: 2em;
- background-color: lightblue;
- color: blue;
- }
- .region > ul,
- .region > ol {
- padding: 0;
- margin: 0;
- }
- .circle {
- list-style-type: circle;
- }
- .disc {
- list-style-type: disc;
- }
- .decimal {
- list-style-type: decimal;
- }
- .roman {
- list-style-type: upper-roman;
- }
- </style>
- </head>
- <body>
- <p>Test passes if you see two rectangles, one green and one blue, as described below:<br>
- The green rectangle should contain two lists, separated by a small vertical space. The <strong>first list</strong> should be a numbered list starting with 2 that has 2 items; the <strong>second list</strong> should be a bullet list with 3 items, the last one being indented and with a different type of bullet.<br>
- The blue rectangle should contain a list with items numbered/marked in different ways, as follows. Except where noted, the numbers/markers should be <em>outside</em> the the blue rectangle. The <strong>first item</strong> should be numbered with the number 1, in decimal. The <strong>second item</strong> should be bulleted. The <strong>third and fourth items</strong> should be numbered with 2 and 1 respectively, with roman numerals. Also, the <strong>third item</strong> should be indented (with the number inside the blue rectangle). The <strong>fourth and fifth items</strong> should be bulleted, with the <strong>fourth item</strong> having a different kind of bullet than the second and fifth item.
- </p>
- <div class="container">
- <ol start="2" class="decimal">
- <li>Numbered list, item 2</li>
- <li>Numbered list, item 3</li>
- </ol>
- <ul class="disc">
- <li>Bullet list, item 1</li>
- <li>Bullet list, item 3
- <ul class="circle">
- <li>Bullet sub-list, item 2</li>
- </ul>
- </li>
- </ul>
- </div>
- <div class="region" id="r1">
- <ol class="decimal">
- <li>Numbered list, item 1</li>
- </ol>
- <ul class="disc">
- <li>Bullet list, item 2
- <ol class="roman" start="2">
- <li>Numbered sub-list, item II</li>
- </ol>
- </li>
- </ul>
- <ol class="roman">
- <li>Numbered sub-list, item I</li>
- </ol>
- <ul class="circle">
- <li>Bullet sub-list, item 1</li>
- </ul>
- <ul class="disc">
- <li>Bullet list, item 4</li>
- </ul>
- </div>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698