Update web-platform-tests to revision 08fb3cceabe444c32264fdb44db50672ebea8610

This commit is contained in:
WPT Sync Bot 2020-04-15 08:23:34 +00:00
parent ce9f22a5e4
commit b74bf3ef9a
152 changed files with 4135 additions and 695 deletions

View file

@ -0,0 +1,31 @@
<!DOCTYPE html>
<html>
<title>CSS Grid: column-* properties are ignored.</title>
<link rel="author" title="Sunil Ratnu" href="mailto:sunil.ratnu@samsung.com">
<link rel="help" href="https://drafts.csswg.org/css-grid-1/#grid-model">
<link rel="help" href="https://github.com/w3c/csswg-drafts/issues/1364">
<link rel="match" href="reference/column-property-should-not-apply-on-grid-container-001-ref.html">
<meta name="assert" content="This test ensures the column-* properties (in the Multicol module) have no effect on a grid container."/>
<link href="/css/support/grid.css" rel="stylesheet"/>
<style>
.grid, .inline-grid
{
width: 20em;
column-count: 2;
column-gap: 100px;
font-kerning: none;
}
</style>
<body>
<div class='grid'>
AAAAAAAAAA BBBBBBBBBB CCCCCCCCCC DDDDDDDDDD
</div>
<div class='inline-grid'>
AAAAAAAAAA BBBBBBBBBB CCCCCCCCCC DDDDDDDDDD
</div>
</body>
</html>

View file

@ -0,0 +1,25 @@
<!DOCTYPE html>
<title>CSS Grid: width of grid container with scrollbar.</title>
<link rel="author" title="Manuel Rego Casasnovas" href="mailto:rego@igalia.com">
<link rel="help" href="https://drafts.csswg.org/css-grid-1/#overflow">
<meta name="assert" content="This test ensures that a grid container scrollbar is computed properly during intrinsic width calculation."/>
<link href="/css/support/grid.css" rel="stylesheet"/>
<link href="/css/support/width-keyword-classes.css" rel="stylesheet"/>
<style>
.grid {
overflow-y: scroll;
grid-template-columns: repeat(4, 50px);
}
</style>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/check-layout-th.js"></script>
<body onload="checkLayout('.grid')">
<div class="grid min-content" data-expected-client-width="200">
item
</div>
<div class="grid max-content" data-expected-client-width="200">
item
</div>
</body>

View file

@ -0,0 +1,23 @@
<!DOCTYPE html>
<html>
<link href="/css/support/grid.css" rel="stylesheet">
<style>
.grid, .inline-grid
{
width: 20em;
font-kerning: none;
}
</style>
<body>
<div class='grid'>
AAAAAAAAAA BBBBBBBBBB CCCCCCCCCC DDDDDDDDDD
</div>
<div class='inline-grid'>
AAAAAAAAAA BBBBBBBBBB CCCCCCCCCC DDDDDDDDDD
</div>
</body>
</html>