Update web-platform-tests to revision b704e37ec97fe90b3a3d59c10f78c21907b5b576

This commit is contained in:
WPT Sync Bot 2018-10-30 21:33:00 -04:00
parent cc0ac89e1a
commit 9f516d3717
70 changed files with 1688 additions and 806 deletions

View file

@ -0,0 +1,33 @@
<!DOCTYPE HTML>
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<html><head>
<meta charset="utf-8">
<title>Reference: Combobox block-size test</title>
<link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com">
<style>
html,body {
color:black; background-color:white; font:16px/1 monospace; padding:0; margin:0;
}
select { -webkit-appearance: none; }
.big { font-size: 48pt; min-height: 40pt; }
.lh { line-height: 48pt; min-height: 40pt; }
.mask { position:fixed; left:20px; right:0; top:0; bottom:0; background: black; }
</style>
</head>
<body>
<!-- mask off differences on the right side -->
<div class="mask"></div>
<select><optgroup label="label"><option>option</option></select><br>
<select class="big"><optgroup label="label"><option>option</option></select><br>
<select class="lh"><optgroup label="label"><option>option</option></select><br>
</body>
</html>

View file

@ -0,0 +1,38 @@
<!DOCTYPE HTML>
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<html><head>
<meta charset="utf-8">
<title>Test: Combobox block-size test</title>
<link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com">
<link rel="match" href="select-1-block-size-ref.html">
<link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html#the-select-element-2">
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1499578">
<style>
html,body {
color:black; background-color:white; font:16px/1 monospace; padding:0; margin:0;
}
select { -webkit-appearance: none; }
optgroup { font-size: 32pt; }
option { font-size: 24pt; }
.big { font-size: 48pt; }
.lh { line-height: 48pt; }
.mask { position:fixed; left:20px; right:0; top:0; bottom:0; background: black; }
</style>
</head>
<body>
<!-- mask off differences on the right side -->
<div class="mask"></div>
<select><optgroup label="label"><option>option</option></select><br>
<select class="big"><optgroup label="label"><option>option</option></select><br>
<select class="lh"><optgroup label="label"><option>option</option></select><br>
</body>
</html>

View file

@ -0,0 +1,35 @@
<!DOCTYPE HTML>
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<html><head>
<meta charset="utf-8">
<title>Reference: empty SELECT</title>
<link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com">
<style>
.none { display: none; }
</style>
</head>
<body>
<table border="1" cellpadding="10">
<tr>
<td><select size="4"><option class="none"></select>
<td><select size="4" style="-webkit-appearance: none"><option class="none">option</select>
<td><select size="4" style="-webkit-appearance: none; border: 1px solid black"><option class="none">option</select>
<td><select size="4" style="border: 1px solid black"><option class="none">option</select>
</table>
<table border="1" cellpadding="10">
<tr>
<td><select size="1"><option class="none"></select>
<td><select size="1" style="-webkit-appearance: none"><option class="none"></select>
<td><select size="1" style="-webkit-appearance: none; border: 1px solid black"><option class="none"></select>
<td><select size="1" style="border: 1px solid black"><option class="none"></select>
</table>
</body>
</html>

View file

@ -0,0 +1,33 @@
<!DOCTYPE HTML>
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<html><head>
<meta charset="utf-8">
<title>Test: empty SELECT</title>
<link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com">
<link rel="match" href="select-empty-ref.html">
<link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html#the-select-element-2">
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1499230">
</head>
<body>
<table border="1" cellpadding="10">
<tr>
<td><select size="4"></select>
<td><select size="4" style="-webkit-appearance: none"></select>
<td><select size="4" style="-webkit-appearance: none; border: 1px solid black"></select>
<td><select size="4" style="border: 1px solid black"></select>
</table>
<table border="1" cellpadding="10">
<tr>
<td><select size="1"></select>
<td><select size="1" style="-webkit-appearance: none"></select>
<td><select size="1" style="-webkit-appearance: none; border: 1px solid black"></select>
<td><select size="1" style="border: 1px solid black"></select>
</table>
</body>
</html>