aboutsummaryrefslogtreecommitdiffstats
path: root/tests/wpt/css-tests/css-flexbox-1_dev/html/row-flexbox-break.htm
diff options
context:
space:
mode:
Diffstat (limited to 'tests/wpt/css-tests/css-flexbox-1_dev/html/row-flexbox-break.htm')
-rw-r--r--tests/wpt/css-tests/css-flexbox-1_dev/html/row-flexbox-break.htm50
1 files changed, 0 insertions, 50 deletions
diff --git a/tests/wpt/css-tests/css-flexbox-1_dev/html/row-flexbox-break.htm b/tests/wpt/css-tests/css-flexbox-1_dev/html/row-flexbox-break.htm
deleted file mode 100644
index 45ef33b185f..00000000000
--- a/tests/wpt/css-tests/css-flexbox-1_dev/html/row-flexbox-break.htm
+++ /dev/null
@@ -1,50 +0,0 @@
-<!DOCTYPE html>
-<html><head>
- <title>CSS Regions: row flex container fragmentation</title>
- <link href="mailto:badea@adobe.com" rel="author" title="Catalin Badea">
- <link href="http://www.w3.org/TR/css3-regions/#the-flow-into-property" rel="help">
- <link href="http://www.w3.org/TR/css3-regions/#flow-from" rel="help">
- <link href="http://www.w3.org/TR/css-flexbox-1/#layout-algorithm" rel="help">
- <link href="http://www.w3.org/TR/css-flexbox-1/#pagination" rel="help">
- <meta content="ahem" name="flags">
- <meta content="Test checks that a flex container with row flow is split between regions." name="assert">
- <link href="reference/row-flexbox-break-ref.htm" rel="match">
- <style>
- .flex {
- display: flex;
- flex-direction: row;
- flow-into: flow;
- }
-
- .region {
- flow-from: flow;
- height: 40px;
- margin-bottom: 20px;
- }
-
- .item {
- font-family: Ahem;
- font-size: 20px;
- line-height: 1em;
- color: green;
- }
-
- .red {
- background-color: red;
- }
- </style>
- </head>
- <body>
- <ul>
- <li>Test passes if you see two horizontal green stripes on the same horizontal line.</li>
- <li>You shouldn't see any red.</li>
- </ul>
- <div class="flex">
- <div class="item">XX<br>XX<br>XX<br>XX<br></div>
- <div class="item">XX<br>XX<br>XX<br>XX<br></div>
- </div>
- <div class="region"><p class="red">&nbsp;</p></div>
- <div class="region"><p class="red">&nbsp;</p></div>
-
-
-</body></html> \ No newline at end of file