blob: d353ecc8712475e6a702f3c3322363737146d143 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<!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>
|