Update web-platform-tests to revision b624f9b794b1fbc6672fb744bb0ed18819be4d44

This commit is contained in:
WPT Sync Bot 2019-11-18 10:33:06 +00:00
parent dfa78986a6
commit a68b59d35a
41 changed files with 448 additions and 82 deletions

View file

@ -0,0 +1,14 @@
<!DOCTYPE html>
<title>Reference: Select element in flexbox with zero height</title>
<link rel="author" title="Mozilla" href="https://mozilla.org">
<style>
.container {
height: 0px;
border: 1px dotted black;
}
</style>
<body>
<div class="container">
<select style="width:100%"><option>Hi</option></select>
</div>
</body>

View file

@ -0,0 +1,19 @@
<!DOCTYPE html>
<title>Select element in flexbox with zero height</title>
<link rel="author" title="Mozilla" href="https://mozilla.org">
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1591925">
<link rel="help" href="https://drafts.csswg.org/css-flexbox/#content-size-suggestion">
<link rel="match" href="select-element-zero-height-001-ref.html">
<style>
.container {
display: flex;
flex-direction: column;
height: 0px;
border: 1px dotted black;
}
</style>
<body>
<div class="container">
<select><option>Hi</option></select>
</div>
</body>

View file

@ -0,0 +1,18 @@
<!DOCTYPE html>
<title>Reference: Select element with background color in flexbox with zero height</title>
<link rel="author" title="Mozilla" href="https://mozilla.org">
<style>
.container {
height: 0px;
border: 1px dotted black;
}
.with-background {
width: 100%;
background: lime;
}
</style>
<body>
<div class="container">
<select class="with-background"><option>Hi</option></select>
</div>
</body>

View file

@ -0,0 +1,22 @@
<!DOCTYPE html>
<title>Select element with background color in flexbox with zero height</title>
<link rel="author" title="Mozilla" href="https://mozilla.org">
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1591925">
<link rel="help" href="https://drafts.csswg.org/css-flexbox/#content-size-suggestion">
<link rel="match" href="select-element-zero-height-002-ref.html">
<style>
.container {
display: flex;
flex-direction: column;
height: 0px;
border: 1px dotted black;
}
.with-background {
background: lime;
}
</style>
<body>
<div class="container">
<select class="with-background"><option>Hi</option></select>
</div>
</body>