diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
commit | 6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch) | |
tree | a68f146d7fa01f0134297619fbe7e33db084e0aa /layout/reftests/pixel-rounding/border-base-ref.html | |
parent | Initial commit. (diff) | |
download | thunderbird-upstream.tar.xz thunderbird-upstream.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 '')
-rw-r--r-- | layout/reftests/pixel-rounding/border-base-ref.html | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/layout/reftests/pixel-rounding/border-base-ref.html b/layout/reftests/pixel-rounding/border-base-ref.html new file mode 100644 index 0000000000..7be5e23d9a --- /dev/null +++ b/layout/reftests/pixel-rounding/border-base-ref.html @@ -0,0 +1,41 @@ +<!DOCTYPE HTML> +<html> +<head> +<title>Pixel rounding testcase</title> +<style type="text/css"> + +html, body { margin: 0; border: none; padding: 0; } +div { position: absolute; top: 10px; height: 10px; width: 10px; } + +div { background: green; } + +</style> +</head> +<body> + +<div style="left: 10px"></div> +<div style="left: 30px"></div> +<div style="left: 50px"></div> +<div style="left: 70px"></div> +<div style="left: 90px"></div> +<div style="left: 110px"></div> +<div style="left: 130px"></div> +<div style="left: 150px"></div> +<div style="left: 170px"></div> +<div style="left: 190px"></div> +<div style="left: 210px"></div> +<div style="left: 230px"></div> +<div style="left: 250px"></div> +<div style="left: 270px"></div> +<div style="left: 290px"></div> +<div style="left: 310px"></div> +<div style="left: 330px"></div> +<div style="left: 350px"></div> +<div style="left: 370px"></div> + +<div style="top: 30px; left: 10px; width: 30px; height: 30px"> + <div style="background:white; top: 10px; left: 10px"></div> +</div> + +</body> +</html> |