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

Unified Diff: LayoutTests/fast/regions/counters/extract-list-items-015-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-015-expected.html
diff --git a/LayoutTests/fast/regions/counters/extract-list-items-015-expected.html b/LayoutTests/fast/regions/counters/extract-list-items-015-expected.html
deleted file mode 100644
index 1324723910f4909b418acbc304ab9c2449c5feb5..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/counters/extract-list-items-015-expected.html
+++ /dev/null
@@ -1,48 +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>
- ol, li {
- margin: 0;
- padding: 0;
- }
- .box {
- float: left;
- width: 20em;
- height: 10em;
- margin: 0 2em;
- }
- #container {
- background-color: lightgray;
- }
- #region {
- background-color: lightgreen;
- }
- </style>
- </head>
- <body>
- <p>This test passes if you see two rectangles, each with a numbered list inside, as described below. The numbers for both of the lists should be rendered outside (to the left) of the respective rectangles.</p>
- <p>The first rectangle should be lightgray and contain a numbered list with 5 items. The items should be numbered with 2, 3, 8, 10 and 11 respectively.</p>
- <p>The second rectangle should be lightgreen and contain a numbered list with 4 items. The items should be numbered with 1, 6, 7 and 9 respectively.</p>
- <div class="box" id="container">
- <ol>
- <li value="2">List item 2</li>
- <li value="3">List item 3</li>
- <li value="8">List item 8</li>
- <li value="10">List item 10</li>
- <li value="11">List item 11</li>
- </ol>
- </div>
- <div class="box" id="region">
- <ol>
- <li value="1">List item 1</li>
- <li value="6">List item 6</li>
- <li value="7">List item 7</li>
- <li value="9">List item 9</li>
- </ol>
- </div>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698