diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 11:44:51 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 11:44:51 +0000 |
commit | 9e3c08db40b8916968b9f30096c7be3f00ce9647 (patch) | |
tree | a68f146d7fa01f0134297619fbe7e33db084e0aa /layout/reftests/xul/object-position-png-002.xhtml | |
parent | Initial commit. (diff) | |
download | thunderbird-9e3c08db40b8916968b9f30096c7be3f00ce9647.tar.xz thunderbird-9e3c08db40b8916968b9f30096c7be3f00ce9647.zip |
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'layout/reftests/xul/object-position-png-002.xhtml')
-rw-r--r-- | layout/reftests/xul/object-position-png-002.xhtml | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/layout/reftests/xul/object-position-png-002.xhtml b/layout/reftests/xul/object-position-png-002.xhtml new file mode 100644 index 0000000000..dd2aeccca0 --- /dev/null +++ b/layout/reftests/xul/object-position-png-002.xhtml @@ -0,0 +1,35 @@ +<?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 { + background: lightgray; + margin-right: 2px; + object-fit: contain; + width: 20px; + height: 20px; + } + + .op_x-7 { object-position: -7% 50% } + .op_x13 { object-position: 13% 50% } + .op_x23 { object-position: 23% 50% } + .op_x50 { object-position: 50% 50% } + .op_x75 { object-position: 75% 50% } + .op_x88 { object-position: 88% 50% } + .op_x111 { object-position: 111% 50% } + + ]]></style> + <hbox> + <image src="colors-8x16.png" class="op_x-7"/> + <image src="colors-8x16.png" class="op_x13"/> + <image src="colors-8x16.png" class="op_x23"/> + <image src="colors-8x16.png" class="op_x50"/> + <image src="colors-8x16.png" class="op_x75"/> + <image src="colors-8x16.png" class="op_x88"/> + <image src="colors-8x16.png" class="op_x111"/> + </hbox> +</window> |