26 lines
1.2 KiB
HTML
26 lines
1.2 KiB
HTML
<!doctype html>
|
|
<title>Bug 1561794 - padding-inline-end does not clip display text for themed comboboxes.</title>
|
|
<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>
|