Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/semantics/forms/the-select-element/customizable-select-in-page/customizable-select-in-page-sizing.tentative.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<link rel=author href="mailto:jarhar@chromium.org">
<link rel=match href="customizable-select-in-page-sizing-ref.html">
<style>
select {
appearance: base-select;
}
#big {
font-size: 26px;
}
</style>
<select multiple>
<option selected>one</option>
<option>two</option>
<option>three</option>
<option>four</option>
</select>
<select size=2>
<option selected>one</option>
<option>two</option>
<option>three</option>
<option>four</option>
</select>
<select size=2 id=big>
<option selected>big one</option>
<option>big two</option>
<option>big three</option>
<option>big four</option>
</select>