Update web-platform-tests to revision c063a8c9acc637e3bd72b719b46e6f2fb627da4a

This commit is contained in:
WPT Sync Bot 2020-04-03 08:19:52 +00:00
parent e66ab111a6
commit 018bc3f219
140 changed files with 2806 additions and 431 deletions

View file

@ -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>

View file

@ -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>