Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: (os == 'android') || (os == 'win')
- Manifest: layout/reftests/forms/select/reftest.list
<!doctype html>
<style>
select {
font: 16px / 1 monospace;
width: 20ch;
display: block;
}
.unthemed {
-moz-appearance: none;
-webkit-appearance: none;
border: 1px solid grey;
background: transparent;
}
</style>
<!--- Ensure the text isn't chopped -->
<select style="padding-right: 15ch"><option>XXXXXXXXXXXX</option></select>
<select style="padding-right: 15ch"><option>X XXXXXXXXXX</option></select>
<!--- Test that the display text doesn't overflow the select. It'd be nice to test it doesn't overlap the button (which is true), but that seems hard to test via a reftest -->
<select style="padding-right: 15ch"><option>XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX</option></select>
<!-- Test that this only affects themed comboboxes; 4px is the padding-inline-start of the comboboxcontrol-frame anon box, so as to clip exactly at a character boundary. -->
<select class="unthemed" style="color: initial; padding-right: 15ch"><option>XXXXXXXXXX</option></select>
<select style="padding-left: 10ch; padding-right: 10ch"><option>XXXXXXXXXX</option></select>