Index: LayoutTests/fast/regions/counters/extract-list-items-015.html |
diff --git a/LayoutTests/fast/regions/counters/extract-list-items-015.html b/LayoutTests/fast/regions/counters/extract-list-items-015.html |
deleted file mode 100644 |
index feca15c0aa603173cfc34374dbfd9d4c81454b53..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/regions/counters/extract-list-items-015.html |
+++ /dev/null |
@@ -1,54 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
- <head> |
- <title>CSS Test: flow-into on list items that have the "value" HTML attribute set</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="help" href="http://www.whatwg.org/specs/web-apps/current-work/multipage/grouping-content.html#attr-li-value"> |
- <link rel="stylesheet" type="text/css" href="../resources/font-smoothing-disabler.css"> |
- <meta name="flags" content=""> |
- <meta name="assert" content="The flow-into property can be applied to individual list items. List items extracted in named flows and flowed into regions must preserve their correct numbering when some of the items have the value attribute set but others don't."> |
- <style> |
- ol, li { |
- margin: 0; |
- padding: 0; |
- } |
- .extract { |
- -webkit-flow-into: f; |
- } |
- .box { |
- float: left; |
- width: 20em; |
- height: 10em; |
- margin: 0 2em; |
- } |
- #container { |
- background-color: lightgray; |
- } |
- #region { |
- -webkit-flow-from: f; |
- 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 class="extract">List item 1</li> |
- <li>List item 2</li> |
- <li value="3">List item 3</li> |
- <li class="extract" value="6">List item 6</li> |
- <li class="extract">List item 7</li> |
- <li>List item 8</li> |
- <li class="extract">List item 9</li> |
- <li value="10">List item 10</li> |
- <li>List item 11</li> |
- </ol> |
- </div> |
- <div class="box" id="region"></div> |
- </body> |
-</html> |