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

Unified Diff: LayoutTests/fast/regions/counters/extract-numbered-spans-display-only-some.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.html
diff --git a/LayoutTests/fast/regions/counters/extract-numbered-spans-display-only-some.html b/LayoutTests/fast/regions/counters/extract-numbered-spans-display-only-some.html
deleted file mode 100644
index f9b5f5d7ceede8ee871cd00d8827f16aa4c1fc32..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/counters/extract-numbered-spans-display-only-some.html
+++ /dev/null
@@ -1,53 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <title>CSS Test: flow-into on inline elements (span's) that use a CSS counter as content for ::before</title>
- <link rel="author" title="Mihai Balan" href="mibalan@adobe.com">
- <link rel="help" href="http://www.w3.org/TR/css3-regions/#properties-and-rules" />
- <link rel="help" href="http://www.w3.org/TR/css3-regions/#the-flow-into-property" />
- <link rel="stylesheet" type="text/css" href="../resources/font-smoothing-disabler.css">
- <meta name="flags" content="">
- <meta name="assert" content="Test checks that extracting multiple elements into named flows but flowing only some of them into regions still preserves proper numbering via counters.">
- <style>
- span:nth-of-type(odd) {
- -webkit-flow-into: odd;
- }
- span:nth-of-type(even) {
- -webkit-flow-into: even;
- }
- #container {
- counter-reset: spans 0;
- }
- span {
- counter-increment: spans;
- }
- span::before {
- display: inline-block;
- content: counter(spans) ".";
- width: 2em;
- margin: 0 .5em;
- background: red;
- color: white;
- text-align: center;
- }
-
- #region {
- background-color: lightblue;
- -webkit-flow-from: even;
- }
- </style>
- </head>
- <body>
- <!-- Numbered <p>-s and <div>-s using different counters, displayed as blocks via ::after -->
- <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="container">
- <span>A bit of text 1</span>
- <span>A bit of text 2</span>
- <span>A bit of text 3</span>
- <span>A bit of text 4</span>
- <span>A bit of text 5</span>
- <span>A bit of text 6</span>
- </div>
- <div id="region"></div>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698