aboutsummaryrefslogtreecommitdiffstats
path: root/tests/wpt/css-tests/css-flexbox-1_dev/html/flex-order.htm
diff options
context:
space:
mode:
Diffstat (limited to 'tests/wpt/css-tests/css-flexbox-1_dev/html/flex-order.htm')
-rw-r--r--tests/wpt/css-tests/css-flexbox-1_dev/html/flex-order.htm8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/wpt/css-tests/css-flexbox-1_dev/html/flex-order.htm b/tests/wpt/css-tests/css-flexbox-1_dev/html/flex-order.htm
index abdcc31a5ec..206928afc8b 100644
--- a/tests/wpt/css-tests/css-flexbox-1_dev/html/flex-order.htm
+++ b/tests/wpt/css-tests/css-flexbox-1_dev/html/flex-order.htm
@@ -7,20 +7,20 @@
<meta content="ordered flex items should ordered properly" name="assert">
<style>
#container {
- display: -webkit-flex;
+ display: flex;
}
#lowOrdinal {
- -webkit-order: 3;
+ order: 3;
background: red;
height: 100px; width: 100px;
}
#highOrdinal {
- -webkit-order: 1;
+ order: 1;
background: lime;
height: 100px; width: 100px;
}
#middleOrdinal {
- -webkit-order: 2;
+ order: 2;
background: orange;
height: 100px; width: 100px;
}