Index: LayoutTests/fast/regions/counters/extract-list-items-014.html |
diff --git a/LayoutTests/fast/regions/counters/extract-list-items-014.html b/LayoutTests/fast/regions/counters/extract-list-items-014.html |
deleted file mode 100644 |
index 7c6401df8b1e14c6bd25896f06766d7b1e4bd24f..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/regions/counters/extract-list-items-014.html |
+++ /dev/null |
@@ -1,49 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
- <head> |
- <title>CSS Test: flow-into with different flows on list items from the same list</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 flow-into property can be applied to individual list items. This test checks that list items from the same list extracted in different named flows preserve their numbering."> |
- <style> |
- .extract1 { |
- -webkit-flow-into: f1; |
- color: #006400; |
- } |
- .extract2 { |
- -webkit-flow-into: f2; |
- color: blue; |
- } |
- .region { |
- margin-left: 2em; |
- float: left; |
- width: 15em; |
- height: 10em; |
- } |
- #r1 { |
- -webkit-flow-from: f1; |
- background-color: lightgreen; |
- } |
- #r2 { |
- -webkit-flow-from: f2; |
- background-color: lightblue; |
- } |
- </style> |
- </head> |
- <body> |
- <p>Test passes if you see two rectangles, one green and one blue, as follows. Each rectangle should contain a numbered list; the numbers should be rendered outside the rectangle. The items in the first list should be numbered 1, 2 and 5 respectively, while the items in the second list should be numbered 3, 4 and 6 respectively.</p> |
- <ol> |
- <li class="extract1">List item 1</li> |
- <li class="extract1">List item 2</li> |
- <li class="extract2">List item 3</li> |
- <li class="extract2">List item 4</li> |
- <li class="extract1">List item 5</li> |
- <li class="extract2">List item 6</li> |
- </ol> |
- <div class="region" id="r1"></div> |
- <div class="region" id="r2"></div> |
- </body> |
-</html> |