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-height-5.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 'layout/reftests/pixel-rounding/border-height-5.html')
-rw-r--r-- | layout/reftests/pixel-rounding/border-height-5.html | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/layout/reftests/pixel-rounding/border-height-5.html b/layout/reftests/pixel-rounding/border-height-5.html new file mode 100644 index 0000000000..60c38855f9 --- /dev/null +++ b/layout/reftests/pixel-rounding/border-height-5.html @@ -0,0 +1,47 @@ +<!DOCTYPE HTML> +<html> +<head> +<title>Pixel rounding testcase</title> +<style type="text/css"> + +html, body { margin: 0; border: none; padding: 0; } +div { position: absolute; } + +</style> +</head> +<body> + +<!-- one border --> +<div style="top: 10px; left: 10px; width: 10px; border-top: 11.5px solid green"></div> +<div style="top: 10px; left: 30px; height: 10.5px; border-right: 10px solid green"></div> +<div style="top: 10px; left: 50px; width: 10px; border-bottom: 11.5px solid green"></div> +<div style="top: 10px; left: 70px; height: 10.5px; border-left: 10px solid green"></div> + +<!-- two adjacent borders --> +<div style="top: 10px; left: 90px; border-top: 11.5px solid green; border-right: 10px solid green"></div> +<div style="top: 10px; left: 110px; border-bottom: 11.5px solid green; border-right: 10px solid green"></div> +<div style="top: 10px; left: 130px; border-top: 11.5px solid green; border-left: 10px solid green"></div> +<div style="top: 10px; left: 150px; border-bottom: 11.5px solid green; border-left: 10px solid green"></div> + +<!-- two opposite borders --> +<div style="top: 10px; left: 170px; width: 10px; border-top: 6.5px solid green; border-bottom: 5px solid green;"></div> +<div style="top: 10px; left: 190px; width: 10px; border-top: 5px solid green; border-bottom: 6.5px solid green;"></div> +<div style="top: 10px; left: 210px; height: 10.5px; border-right: 5px solid green; border-left: 5px solid green"></div> + +<!-- three borders --> +<div style="top: 10px; left: 230px; border-right: 5px solid green; border-bottom: 11.5px solid green; border-left: 5px solid green"></div> +<div style="top: 10px; left: 250px; border-right: 5px solid green; border-top: 11.5px solid green; border-left: 5px solid green"></div> +<div style="top: 10px; left: 270px; border-top: 5px solid green; border-bottom: 6.5px solid green; border-left: 10px solid green"></div> +<div style="top: 10px; left: 290px; border-top: 6.5px solid green; border-bottom: 5px solid green; border-left: 10px solid green"></div> +<div style="top: 10px; left: 310px; border-top: 5px solid green; border-bottom: 6.5px solid green; border-right: 10px solid green"></div> +<div style="top: 10px; left: 330px; border-top: 6.5px solid green; border-bottom: 5px solid green; border-right: 10px solid green"></div> + +<!-- four borders --> +<div style="top: 10px; left: 350px; border-top: 6.5px solid green; border-right: 5px solid green; border-bottom: 5px solid green; border-left: 5px solid green"></div> +<div style="top: 10px; left: 370px; border-top: 5px solid green; border-right: 5px solid green; border-bottom: 6.5px solid green; border-left: 5px solid green"></div> + +<!-- border around space --> +<div style="top: 30px; left: 10px; border: 10px solid green; height: 10.5px; width: 10px"></div> + +</body> +</html> |