diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
commit | 2aa4a82499d4becd2284cdb482213d541b8804dd (patch) | |
tree | b80bf8bf13c3766139fbacc530efd0dd9d54394c /layout/reftests/forms/select/themed-select-padding-no-clip.html | |
parent | Initial commit. (diff) | |
download | firefox-upstream.tar.xz firefox-upstream.zip |
Adding upstream version 86.0.1.upstream/86.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
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> |