summaryrefslogtreecommitdiffstats
path: root/layout/reftests/high-contrast/backplate-bg-image-011-ref.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 14:29:10 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 14:29:10 +0000
commit2aa4a82499d4becd2284cdb482213d541b8804dd (patch)
treeb80bf8bf13c3766139fbacc530efd0dd9d54394c /layout/reftests/high-contrast/backplate-bg-image-011-ref.html
parentInitial commit. (diff)
downloadfirefox-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/high-contrast/backplate-bg-image-011-ref.html')
-rw-r--r--layout/reftests/high-contrast/backplate-bg-image-011-ref.html25
1 files changed, 25 insertions, 0 deletions
diff --git a/layout/reftests/high-contrast/backplate-bg-image-011-ref.html b/layout/reftests/high-contrast/backplate-bg-image-011-ref.html
new file mode 100644
index 0000000000..7e13b2b3ec
--- /dev/null
+++ b/layout/reftests/high-contrast/backplate-bg-image-011-ref.html
@@ -0,0 +1,25 @@
+<!DOCTYPE html>
+<title>Reference: Backplates should not include margins, indentation, padding, border space, or text-alignment space.</title>
+<style>
+ .outer {
+ background: url("blue.png");
+ }
+ div {
+ margin-bottom: 30px;
+ }
+ .fake-backplate {
+ background-color: white;
+ }
+</style>
+<div class="outer">
+ <div><span class="fake-backplate">div</span></div>
+ <div style="margin-left: 30px"><span class="fake-backplate">div w/ margin-left</span></div>
+ <div><span style="margin-left: 100px" class="fake-backplate">span w/ margin-left</span></div>
+ <div><span><span style="margin: 0px 100px" class="fake-backplate">nested span w/ margin on inner</span></span></div>
+ <div><span style="padding: 0px 50px"><span class="fake-backplate">span w/ padding</span></span></div>
+ <div><span style="border: 10px dotted black"><span class="fake-backplate">span w/ thick dotted border</span></span></div>
+ <div style="text-align: center"><span class="fake-backplate">div w/ text-align:center</span></div>
+ <div style="text-align: right"><span class="fake-backplate">div w/ text-align:right</span></div>
+ <div style="direction: rtl; text-align: center"><span class="fake-backplate">div w/ RTL &amp; text-align:center</span></div>
+ <div style="text-indent: 200px"><span class="fake-backplate">div w/ text-indent</span></div>
+</div>