diff options
Diffstat (limited to 'layout/reftests/forms/select/themed-select-padding-no-clip.html')
-rw-r--r-- | layout/reftests/forms/select/themed-select-padding-no-clip.html | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/layout/reftests/forms/select/themed-select-padding-no-clip.html b/layout/reftests/forms/select/themed-select-padding-no-clip.html new file mode 100644 index 0000000000..d353ecc871 --- /dev/null +++ b/layout/reftests/forms/select/themed-select-padding-no-clip.html @@ -0,0 +1,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> |