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

Unified Diff: LayoutTests/fast/regions/counters/extract-numbered-spans-display-only-some-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-numbered-spans-display-only-some-expected.html
diff --git a/LayoutTests/fast/regions/counters/extract-numbered-spans-display-only-some-expected.html b/LayoutTests/fast/regions/counters/extract-numbered-spans-display-only-some-expected.html
deleted file mode 100644
index c9c64cdd528f2687d1f8753d5925f735c19d2718..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/counters/extract-numbered-spans-display-only-some-expected.html
+++ /dev/null
@@ -1,35 +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>
- span {
- counter-increment: spans 2;
- }
- #region {
- counter-reset: spans 0;
- }
- span::before {
- display: inline-block;
- content: counter(spans) ".";
- width: 2em;
- margin: 0 .5em;
- background: red;
- color: white;
- text-align: center;
- }
-
- #region {
- background-color: lightblue;
- }
- </style>
- </head>
- <body>
- <p>Test passes if you see a light blue rectangle below, with three blocks of black text on a single line. Each block of text should be numbered with even numbers (2, 4, 6); the numbers should be white on a red background.</p>
- <div id="region">
- <span>A bit of text 2</span><span>A bit of text 4</span><span>A bit of text 6</span>
- </div>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698