Update web-platform-tests to revision 687b6cba3385c4c2ca85f44fe072961e651621b5

This commit is contained in:
WPT Sync Bot 2019-04-08 21:47:49 -04:00
parent cd579f6746
commit 1a4444a557
45 changed files with 594 additions and 259 deletions

View file

@ -0,0 +1,6 @@
<!DOCTYPE html>
<div style="columns: 2">
<div style="height: 200px; background: blue"></div>
<div style="height: 200px"></div>
</div>

View file

@ -0,0 +1,12 @@
<!DOCTYPE html>
<title>CSS Multi-column Layout Test: multicol with overflow-clipped positioned content</title>
<link rel="help" href="https://www.w3.org/TR/css-multicol-1/">
<link rel="match" href="multicol-overflow-clip-positioned-ref.html">
<meta name="assert" content="Overflow clip for positioned content should work under multicol.">
<div style="columns: 2">
<div style="height: 200px; overflow: hidden">
<div style="height: 800px; background: blue; position: relative"></div>
</div>
<div style="height: 200px"></div>
</div>