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> |