mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
Update CSS tests to revision 31d63cc79bd4c929ed582229e936d7b389f3e6ab
This commit is contained in:
parent
1a81b18b9f
commit
2c9faf5363
91915 changed files with 5979820 additions and 0 deletions
36
tests/wpt/css-tests/css-flexbox-1_dev/html/flex-order.htm
Normal file
36
tests/wpt/css-tests/css-flexbox-1_dev/html/flex-order.htm
Normal 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>
|
Loading…
Add table
Add a link
Reference in a new issue