mirror of
https://github.com/servo/servo.git
synced 2025-08-06 22:15:33 +01:00
Update web-platform-tests to revision c063a8c9acc637e3bd72b719b46e6f2fb627da4a
This commit is contained in:
parent
e66ab111a6
commit
018bc3f219
140 changed files with 2806 additions and 431 deletions
|
@ -0,0 +1,16 @@
|
|||
<!DOCTYPE html>
|
||||
<style>
|
||||
.multicol {
|
||||
column-count: 3;
|
||||
}
|
||||
.parent {
|
||||
background: green;
|
||||
height: 50px;
|
||||
}
|
||||
</style>
|
||||
<div class="multicol">
|
||||
<div class="parent"></div>
|
||||
<div class="parent"></div>
|
||||
<div class="parent"></div>
|
||||
</div>
|
||||
|
|
@ -0,0 +1,33 @@
|
|||
<!DOCTYPE html>
|
||||
<title>CSS Multi-column Layout Test: multicol with overflow-clipped content</title>
|
||||
<link rel="help" href="https://www.w3.org/TR/css-multicol-1/">
|
||||
<link rel="match" href="multicol-overflow-clip-ref.html">
|
||||
<meta name="assert" content="Overflow clip should work under multicol.">
|
||||
<style>
|
||||
.multicol {
|
||||
column-count: 3;
|
||||
}
|
||||
.parent {
|
||||
background: green;
|
||||
height: 50px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.child2 {
|
||||
margin-top: 50px;
|
||||
background: darkred;
|
||||
color: red;
|
||||
height: 100px;
|
||||
}
|
||||
</style>
|
||||
<div class="multicol">
|
||||
<div class="parent">
|
||||
<div class="child2">This should be hidden.</div>
|
||||
</div>
|
||||
<div class="parent">
|
||||
<div class="child2">This should be hidden.</div>
|
||||
</div>
|
||||
<div class="parent">
|
||||
<div class="child2">This should be hidden.</div>
|
||||
</div>
|
||||
</div>
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue