1
0
Fork 0
firefox/testing/web-platform/tests/html/select/select-capitalize-sizing.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

22 lines
496 B
HTML

<!doctype html>
<meta charset=utf-8>
<title>select sizing with text-transform:capitalize</title>
<link rel="match" href="select-capitalize-sizing-ref.html">
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1911550">
<style>
select {
text-transform: capitalize;
}
.appearance-none {
appearance: none;
padding: 0;
border: 1px solid;
}
</style>
<select>
<option>x x x x x</option>
</select>
<br><br>
<select class=appearance-none>
<option>x x x x x</option>
</select>