Update web-platform-tests to revision 9a6026305062c90d84a567d81434010dde6c6c22

This commit is contained in:
WPT Sync Bot 2020-04-21 08:21:40 +00:00
parent d77bf218fa
commit 906e45aab0
210 changed files with 6028 additions and 383 deletions

View file

@ -0,0 +1,37 @@
<!DOCTYPE html>
<style>
.grid {
display: block;
background-color: grey;
overflow: scroll;
}
.inline-grid {
display: inline-block;
background-color: grey;
overflow: scroll;
}
.gridItem {
display: block;
width: 100px;
height: 100px;
background: green;
}
.fit-content {
width: -moz-fit-content;
width: fit-content;
}
</style>
<body>
<div class='grid fit-content'>
<span class='gridItem'></span>
</div>
<div class='grid fit-content' style='overflow-y: hidden'>
<span class='gridItem'></span>
</div>
<div class='inline-grid fit-content'>
<span class='gridItem'></span>
</div>
<div class='inline-grid fit-content' style='overflow-y: hidden'>
<span class='gridItem'></span>
</div>
</body>