mirror of
https://github.com/servo/servo.git
synced 2025-08-05 13:40:08 +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
|
@ -0,0 +1,37 @@
|
|||
<!DOCTYPE html>
|
||||
<html><head>
|
||||
<title>CSS Test: flow-direction:row-reverse swaps main start and end directions</title>
|
||||
<link href="mailto:galineau@adobe.com" rel="author" title="Sylvain Galineau">
|
||||
<link href="mailto:arronei@microsoft.com" rel="reviewer" title="Arron Eicholz">
|
||||
<link href="http://www.w3.org/TR/css-flexbox-1/#flex-direction" rel="help">
|
||||
<meta content="" name="flags">
|
||||
<meta content="This test checks that row-reverse flex-direction swaps the main start and main end directions" name="assert">
|
||||
<style>
|
||||
.test {
|
||||
display: flex;
|
||||
width: 3em;
|
||||
}
|
||||
|
||||
.test > span {
|
||||
width: 1em;
|
||||
}
|
||||
|
||||
#row {
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
#row-reverse {
|
||||
flex-direction: row-reverse;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p>Test passes if both the lines below are identical.</p>
|
||||
<div id="row" class="test">
|
||||
<span>A</span><span>B</span><span>C</span>
|
||||
</div>
|
||||
<div id="row-reverse" class="test">
|
||||
<span>C</span><span>B</span><span>A</span>
|
||||
</div>
|
||||
|
||||
</body></html>
|
Loading…
Add table
Add a link
Reference in a new issue