mirror of
https://github.com/servo/servo.git
synced 2025-09-05 04:28:22 +01:00
Update web-platform-tests to revision 44702f2bc8ea98bc32b5b244f2fe63c6ce66d49d
This commit is contained in:
parent
85fa6409bb
commit
c227604a2c
997 changed files with 45660 additions and 14650 deletions
|
@ -0,0 +1,59 @@
|
|||
<!DOCTYPE html>
|
||||
<title>position:relative top constraint should behave correctly for <thead> elements</title>
|
||||
<link rel="match" href="position-relative-table-top-ref.html" />
|
||||
<link rel="help" href="https://www.w3.org/TR/css-position-3/#rel-pos" />
|
||||
<meta name="assert" content="This test checks that the position:relative top constraint behaves correctly for <thead> elements" />
|
||||
|
||||
<style>
|
||||
table {
|
||||
border-collapse:collapse;
|
||||
}
|
||||
|
||||
td {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
td > div {
|
||||
height: 50px;
|
||||
width: 50px;
|
||||
}
|
||||
|
||||
.group {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
width: 150px;
|
||||
height: 200px;
|
||||
}
|
||||
|
||||
.indicator {
|
||||
position: absolute;
|
||||
background-color: red;
|
||||
left: 0;
|
||||
top: 100px;
|
||||
height: 50px;
|
||||
width: 50px;
|
||||
}
|
||||
|
||||
.relative {
|
||||
position: relative;
|
||||
top: 100px;
|
||||
background-color: green;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div class="group">
|
||||
<div>
|
||||
<div class="indicator"></div>
|
||||
<table>
|
||||
<thead class="relative">
|
||||
<tr><td><div></div></td></tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr><td><div></div></td></tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>You should see a green box above. No red should be visible.</div>
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue