mirror of
https://github.com/servo/servo.git
synced 2025-08-05 21:50:18 +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,36 @@
|
|||
<!DOCTYPE html>
|
||||
<html><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.htm" 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>
|
Loading…
Add table
Add a link
Reference in a new issue