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/bugs/433640-1.html | |
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 '')
-rw-r--r-- | layout/reftests/bugs/433640-1.html | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/layout/reftests/bugs/433640-1.html b/layout/reftests/bugs/433640-1.html new file mode 100644 index 0000000000..2dbb26cfa0 --- /dev/null +++ b/layout/reftests/bugs/433640-1.html @@ -0,0 +1,52 @@ +<!DOCTYPE html> +<html><head> +<style type="text/css"> + div.image { + background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABAAQMAAACQp+OdAAAABlBMVEUAAAD///+l2Z/dAAAAGElEQVR42mNggIHcbbfBCMEYlRqVIiQFAPco1xfL/SakAAAAAElFTkSuQmCC"); + background-position: center center; + width: 32px; + height: 32px; + } + + div.cell { + float: left; + width: 100px; + } + + body > div { height:100px; } + + /* ensure that font heights do not affect image placement. Fractional image offsets can + affect exactly which pixel rects get painted. */ + p { font-size: 12px; height:20px; } +</style> +</head><body> + +<div> +<div class="cell"><p>31 x 32</p><div style="width:31px" class="image"></div></div> +<div class="cell"><p>31.1 x 32</p><div style="width:31.1px" class="image"></div></div> +<div class="cell"><p>31.5 x 32</p><div style="width:31.5px" class="image"></div></div> +<div class="cell"><p>31.8 x 32</p><div style="width:31.8px" class="image"></div></div> +</div> + +<div> +<div class="cell"><p>32 x 32</p><div style="width:32px" class="image"></div></div> +<div class="cell"><p>32.1 x 32</p><div style="width:32.1px" class="image"></div></div> +<div class="cell"><p>32.5 x 32</p><div style="width:32.5px" class="image"></div></div> +<div class="cell"><p>32.8 x 32</p><div style="width:32.8px" class="image"></div></div> +</div> + +<div> +<div class="cell"><p>32 x 31 </p><div style="height:31px" class="image"></div></div> +<div class="cell"><p>32 x 31.1 </p><div style="height:31.1px" class="image"></div></div> +<div class="cell"><p>32 x 31.5 </p><div style="height:31.5px" class="image"></div></div> +<div class="cell"><p>32 x 31.8 </p><div style="height:31.8px" class="image"></div></div> +</div> + +<div> +<div class="cell"><p>32 x 32 </p><div style="height:32px" class="image"></div></div> +<div class="cell"><p>32 x 32.1 </p><div style="height:32.1px" class="image"></div></div> +<div class="cell"><p>32 x 32.5 </p><div style="height:32.5px" class="image"></div></div> +<div class="cell"><p>32 x 32.8 </p><div style="height:32.8px" class="image"></div></div> +</div> + +</body></html> |