aboutsummaryrefslogtreecommitdiffstats
path: root/tests/wpt/css-tests/css-flexbox-1_dev/xhtml1/flexbox-flex-wrap-flexing.xht
diff options
context:
space:
mode:
Diffstat (limited to 'tests/wpt/css-tests/css-flexbox-1_dev/xhtml1/flexbox-flex-wrap-flexing.xht')
-rw-r--r--tests/wpt/css-tests/css-flexbox-1_dev/xhtml1/flexbox-flex-wrap-flexing.xht36
1 files changed, 0 insertions, 36 deletions
diff --git a/tests/wpt/css-tests/css-flexbox-1_dev/xhtml1/flexbox-flex-wrap-flexing.xht b/tests/wpt/css-tests/css-flexbox-1_dev/xhtml1/flexbox-flex-wrap-flexing.xht
deleted file mode 100644
index 2c6a630e96d..00000000000
--- a/tests/wpt/css-tests/css-flexbox-1_dev/xhtml1/flexbox-flex-wrap-flexing.xht
+++ /dev/null
@@ -1,36 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml"><head>
- <title>CSS Flexbox Test: flex-wrap flexes widths after line breaking</title>
- <link href="mailto:stearns@adobe.com" rel="author" title="Alan Stearns" />
- <link href="http://fantasai.inkedblade.net/contact" rel="reviewer" title="Elika J. Etemad" />
- <link href="http://www.w3.org/TR/css-flexbox-1/#flex-lines" rel="help" />
- <meta content="" name="flags" />
- <link href="reference/flexbox-flex-wrap-flexing-ref.xht" rel="match" />
- <meta content="Flex items given more space after line breaking should flex wider" name="assert" />
- <meta content="http://www.w3.org/TR/css-flexbox-1/#propdef-flex-wrap" name="assert" />
- <meta content="http://www.w3.org/TR/css-flexbox-1/#flex-property" name="assert" />
- <style>
- .container {
- display: flex;
- width: 150px;
- height: 100px;
- flex-wrap: wrap;
- background: red;
- }
- .item {
- min-width: 100px;
- flex: 1;
- height: 50px;
- display: inline-block; /*to fail the test if display:flex fails*/;
- background: green;
- }
- </style>
-</head>
-<body>
- <p>Test passes if there is a green rectangle and no red.</p>
- <div class="container">
- <div class="item"></div>
- <div class="item"></div>
- </div>
-
-</body></html> \ No newline at end of file