diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /layout/reftests/xul/object-fit-fill-svg-001.xhtml | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esrupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'layout/reftests/xul/object-fit-fill-svg-001.xhtml')
-rw-r--r-- | layout/reftests/xul/object-fit-fill-svg-001.xhtml | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/layout/reftests/xul/object-fit-fill-svg-001.xhtml b/layout/reftests/xul/object-fit-fill-svg-001.xhtml new file mode 100644 index 0000000000..4d4aa56c08 --- /dev/null +++ b/layout/reftests/xul/object-fit-fill-svg-001.xhtml @@ -0,0 +1,68 @@ +<?xml version="1.0"?> +<!-- + Any copyright is dedicated to the Public Domain. + http://creativecommons.org/publicdomain/zero/1.0/ +--> +<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> + <style xmlns="http://www.w3.org/1999/xhtml"><![CDATA[ + window { padding: 8px; } + image { + border: 1px dashed gray; + padding: 1px; + object-fit: fill; + } + + .bigWide { + width: 52px; + height: 36px; + } + .bigTall { + width: 36px; + height: 52px; + } + .small { + width: 12px; + height: 12px; + } + + br { clear: both; } + + .tr { object-position: top right } + .bl { object-position: bottom left } + .tl { object-position: top 25% left 25% } + .br { object-position: bottom 1px right 2px } + + .tc { object-position: top 3px left 50% } + .cr { object-position: top 50% right 25% } + ]]></style> + <hbox> + <!-- big/wide: --> + <image src="colors-16x8.svg" class="bigWide tr"/> + <image src="colors-16x8.svg" class="bigWide bl"/> + <image src="colors-16x8.svg" class="bigWide tl"/> + <image src="colors-16x8.svg" class="bigWide br"/> + <image src="colors-16x8.svg" class="bigWide tc"/> + <image src="colors-16x8.svg" class="bigWide cr"/> + <image src="colors-16x8.svg" class="bigWide"/> + </hbox> + <hbox> + <!-- big/tall: --> + <image src="colors-16x8.svg" class="bigTall tr"/> + <image src="colors-16x8.svg" class="bigTall bl"/> + <image src="colors-16x8.svg" class="bigTall tl"/> + <image src="colors-16x8.svg" class="bigTall br"/> + <image src="colors-16x8.svg" class="bigTall tc"/> + <image src="colors-16x8.svg" class="bigTall cr"/> + <image src="colors-16x8.svg" class="bigTall"/> + </hbox> + <hbox> + <!-- small: --> + <image src="colors-16x8.svg" class="small tr"/> + <image src="colors-16x8.svg" class="small bl"/> + <image src="colors-16x8.svg" class="small tl"/> + <image src="colors-16x8.svg" class="small br"/> + <image src="colors-16x8.svg" class="small tc"/> + <image src="colors-16x8.svg" class="small cr"/> + <image src="colors-16x8.svg" class="small"/> + </hbox> +</window> |