Update web-platform-tests to revision 9f31d497bf87bdf5ebc3ba70b5cb9f87786f4071

This commit is contained in:
WPT Sync Bot 2019-10-15 10:23:11 +00:00
parent 1f64024655
commit 4bc7277be1
145 changed files with 3112 additions and 1980 deletions

View file

@ -0,0 +1,59 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Reference for sizing of select elements, with wide vs. empty option selected</title>
<link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com">
<style>
select {
color: transparent;
margin: 1px;
}
div.customBorder > select {
/* This class is to let us test select elements *without* native theming
(for browsers that have both native and non-native controls): */
border: 3px solid black;
}
</style>
</head>
<body>
<div>
<select>
<option>some wide option</option>
</select>
<br>
<select>
<option>some wide option</option>
</select>
<br>
<select>
<option>some wide option</option>
</select>
<br>
<select>
<option>some wide option</option>
</select>
</div>
<!-- This is the same as above, but now with a custom border on the
select elements: -->
<div class="customBorder">
<select>
<option>some wide option</option>
</select>
<br>
<select>
<option>some wide option</option>
</select>
<br>
<select>
<option>some wide option</option>
</select>
<br>
<select>
<option>some wide option</option>
</select>
</div>
</body>
</html>

View file

@ -0,0 +1,77 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Test for sizing of select elements, with wide vs. empty option selected</title>
<link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com">
<link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html#list-box">
<link rel="match" href="select-sizing-001-ref.html">
<style>
select {
color: transparent;
margin: 1px;
}
div.customBorder > select {
/* This class is to let us test select elements *without* native theming
(for browsers that have both native and non-native controls): */
border: 3px solid black;
}
</style>
</head>
<body>
<div>
<!-- Wide thing is 2nd, and not selected: -->
<select>
<option></option>
<option>some wide option</option>
</select>
<br>
<!-- Wide thing is 2nd, and selected: -->
<select>
<option></option>
<option selected>some wide option</option>
</select>
<br>
<!-- Wide thing is 1st, and selected (implicitly): -->
<select>
<option>some wide option</option>
<option></option>
</select>
<br>
<!-- Wide thing is 1st, and not selected: -->
<select>
<option>some wide option</option>
<option selected></option>
</select>
</div>
<!-- This is the same as above, but now with a custom border on the
select elements: -->
<div class="customBorder">
<!-- Wide thing is 2nd, and not selected: -->
<select>
<option></option>
<option>some wide option</option>
</select>
<br>
<!-- Wide thing is 2nd, and selected: -->
<select>
<option></option>
<option selected>some wide option</option>
</select>
<br>
<!-- Wide thing is 1st, and selected (implicitly): -->
<select>
<option>some wide option</option>
<option></option>
</select>
<br>
<!-- Wide thing is 1st, and not selected: -->
<select>
<option>some wide option</option>
<option selected></option>
</select>
</div>
</body>
</html>