Update web-platform-tests to revision bf42dca1ce568ce559d5a4cad507239035b91dcb

This commit is contained in:
WPT Sync Bot 2019-09-14 10:23:31 +00:00
parent 91d2bd3d64
commit 20e57b5c74
81 changed files with 3616 additions and 289 deletions

View file

@ -0,0 +1,42 @@
<!DOCTYPE html>
<title>Definite sizes with fixed flex-basis</title>
<link rel="author" title="David Grogan" href="mailto:dgrogan@chromium.org">
<link rel="help" href="https://drafts.csswg.org/css-flexbox-1/#definite-sizes">
<link rel="match" href="../reference/ref-filled-green-100px-square.xht" />
<meta name="flags" content="" />
<meta name="assert" content="In a column flexbox, the height of a fully inflexible item with fixed flex-basis is definite even when the heights of the item and the container are indefinite." />
<style>
x-flexbox {
display: flex;
flex-direction: column;
}
x-item {
flex: 0 0 100px;
}
x-item>div {
width: 100px;
height: 100%;
background: green;
}
#reference-overlapped-red {
position: absolute;
background-color: red;
width: 100px;
height: 100px;
z-index: -1;
}
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div id="reference-overlapped-red"></div>
<x-flexbox>
<x-item>
<div></div>
</x-item>
</x-flexbox>