Update CSS tests to revision 31d63cc79bd4c929ed582229e936d7b389f3e6ab

This commit is contained in:
James Graham 2015-03-27 09:18:12 +00:00
parent 1a81b18b9f
commit 2c9faf5363
91915 changed files with 5979820 additions and 0 deletions

View file

@ -0,0 +1,36 @@
<!DOCTYPE html>
<html><head>
<title>CSS Test: flex order</title>
<link href="mailto:mitsuteru.s@gmail.com" rel="author" title="Mitsuteru Sawa">
<link href="http://www.w3.org/TR/css-flexbox-1/#order-property" rel="help">
<link href="reference/flex-order-ref.htm" rel="match">
<meta content="ordered flex items should ordered properly" name="assert">
<style>
#container {
display: -webkit-flex;
}
#lowOrdinal {
-webkit-order: 3;
background: red;
height: 100px; width: 100px;
}
#highOrdinal {
-webkit-order: 1;
background: lime;
height: 100px; width: 100px;
}
#middleOrdinal {
-webkit-order: 2;
background: orange;
height: 100px; width: 100px;
}
</style>
</head>
<body>
<div id="container">
<div id="highOrdinal"></div>
<div id="lowOrdinal"></div>
<div id="middleOrdinal"></div>
</div>
</body></html>