diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
commit | 43a97878ce14b72f0981164f87f2e35e14151312 (patch) | |
tree | 620249daf56c0258faa40cbdcf9cfba06de2a846 /layout/reftests/xul/text-crop.xhtml | |
parent | Initial commit. (diff) | |
download | firefox-43a97878ce14b72f0981164f87f2e35e14151312.tar.xz firefox-43a97878ce14b72f0981164f87f2e35e14151312.zip |
Adding upstream version 110.0.1.upstream/110.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'layout/reftests/xul/text-crop.xhtml')
-rw-r--r-- | layout/reftests/xul/text-crop.xhtml | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/layout/reftests/xul/text-crop.xhtml b/layout/reftests/xul/text-crop.xhtml new file mode 100644 index 0000000000..6b205a38e7 --- /dev/null +++ b/layout/reftests/xul/text-crop.xhtml @@ -0,0 +1,39 @@ +<?xml version="1.0"?> +<window class="reftest-wait" + align="start" + xmlns:html="http://www.w3.org/1999/xhtml" + xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> +<html:style type="text/css"> + @font-face { + font-family: firasans; + src: url(../fonts/fira/FiraSans-Regular.otf); + } + :root { -moz-box-layout: flex } + vbox { + font-family: firasans; + font-size: 40px; + } + label { + width: 230px; + } +</html:style> +<vbox width="230"> + <label id="start" value="" crop="start" /> + <label id="end" value="" crop="end" /> + <label id="center" value="" crop="center" /> +</vbox> +<script> +<![CDATA[ +function text(n) { + // Include U+FE0E variation selector to ensure font selection doesn't + // seek out a color-emoji font in preference to Fira. + return "\u{1F310}\u{FE0E}".repeat(n); +} +// Start is aligned slightly differently. +// document.getElementById("start").value = text(10); +document.getElementById("end").value = text(10); +document.getElementById("center").value = text(10); +document.documentElement.className = ""; +]]> +</script> +</window> |