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/xul/text-crop-ref.xhtml | |
parent | Initial commit. (diff) | |
download | firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.tar.xz firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.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/xul/text-crop-ref.xhtml')
-rw-r--r-- | layout/reftests/xul/text-crop-ref.xhtml | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/layout/reftests/xul/text-crop-ref.xhtml b/layout/reftests/xul/text-crop-ref.xhtml new file mode 100644 index 0000000000..2ff7341a9f --- /dev/null +++ b/layout/reftests/xul/text-crop-ref.xhtml @@ -0,0 +1,35 @@ +<?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); + } + vbox { + font-family: firasans; + font-size: 40px; + } + </html:style> +<vbox width="230"> + <label id="start" value="" /> + <label id="end" value="" /> + <label id="center" value="" /> +</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); +} +var e = "\u{2026}"; +document.getElementById("start").value = e + text(4); +document.getElementById("end").value = text(4) + e; +document.getElementById("center").value = text(2) + e + text(2); +document.documentElement.className = ""; +]]> +</script> +</window> |