mirror of
https://github.com/servo/servo.git
synced 2025-08-03 12:40:06 +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,88 @@
|
|||
<!DOCTYPE html>
|
||||
<!--
|
||||
Any copyright is dedicated to the Public Domain.
|
||||
http://creativecommons.org/publicdomain/zero/1.0/
|
||||
--><!-- Testcase with flex items containing overlapping content, to test
|
||||
their paint-order. --><html>
|
||||
<head>
|
||||
<title>CSS Test: Testing the paint-order of overlapping flex items, with varying tweaks on the container</title>
|
||||
<link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com">
|
||||
<link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#painting">
|
||||
<link rel="match" href="reference/flexbox-paint-ordering-001-ref.htm">
|
||||
<style>
|
||||
body {
|
||||
line-height: 0;
|
||||
}
|
||||
.container {
|
||||
width: 40px;
|
||||
height: 14px;
|
||||
border: 2px solid green;
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
.a {
|
||||
width: 16px;
|
||||
height: 10px;
|
||||
background: blue;
|
||||
min-width: 0;
|
||||
border: 2px solid lightblue;
|
||||
}
|
||||
.b {
|
||||
width: 16px;
|
||||
height: 10px;
|
||||
background: purple;
|
||||
min-width: 0;
|
||||
border: 2px solid slateblue;
|
||||
}
|
||||
.aKid {
|
||||
margin-left: 10px;
|
||||
margin-top: 2px;
|
||||
width: 16px;
|
||||
height: 6px;
|
||||
background: yellow;
|
||||
border: 1px solid black;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<!-- inline-level flex container -->
|
||||
<div class="container" style="display: inline-flex">
|
||||
<div class="a"><div class="aKid"></div></div>
|
||||
<div class="b"></div>
|
||||
</div>
|
||||
|
||||
<!-- block-level flex container -->
|
||||
<div class="container" style="display: flex">
|
||||
<div class="a"><div class="aKid"></div></div>
|
||||
<div class="b"></div>
|
||||
</div>
|
||||
|
||||
<!-- floated flex container -->
|
||||
<div class="container" style="display: flex; float: left">
|
||||
<div class="a"><div class="aKid"></div></div>
|
||||
<div class="b"></div>
|
||||
</div>
|
||||
<!-- Helper-div to clear floats: -->
|
||||
<div style="clear: both"></div>
|
||||
|
||||
<!-- relatively-positioned flex container -->
|
||||
<div class="container" style="display: flex; position: relative">
|
||||
<div class="a"><div class="aKid"></div></div>
|
||||
<div class="b"></div>
|
||||
</div>
|
||||
|
||||
<!-- absolutely-positioned flex container -->
|
||||
<div class="container" style="display: flex; position: absolute">
|
||||
<div class="a"><div class="aKid"></div></div>
|
||||
<div class="b"></div>
|
||||
</div>
|
||||
<!--- Spacer div, since abspos div doesn't set aside space for itself -->
|
||||
<div style="height: 20px"></div>
|
||||
|
||||
<!-- fixed-position flex container -->
|
||||
<div class="container" style="display: flex; position: fixed">
|
||||
<div class="a"><div class="aKid"></div></div>
|
||||
<div class="b"></div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue