diff options
Diffstat (limited to '')
-rw-r--r-- | layout/reftests/pixel-rounding/border-height-6.html | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/layout/reftests/pixel-rounding/border-height-6.html b/layout/reftests/pixel-rounding/border-height-6.html new file mode 100644 index 0000000000..124fa68e28 --- /dev/null +++ b/layout/reftests/pixel-rounding/border-height-6.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.6px solid green"></div> +<div style="top: 10px; left: 30px; height: 10.6px; border-right: 10px solid green"></div> +<div style="top: 10px; left: 50px; width: 10px; border-bottom: 11.6px solid green"></div> +<div style="top: 10px; left: 70px; height: 10.6px; border-left: 10px solid green"></div> + +<!-- two adjacent borders --> +<div style="top: 10px; left: 90px; border-top: 11.6px solid green; border-right: 10px solid green"></div> +<div style="top: 10px; left: 110px; border-bottom: 11.6px solid green; border-right: 10px solid green"></div> +<div style="top: 10px; left: 130px; border-top: 11.6px solid green; border-left: 10px solid green"></div> +<div style="top: 10px; left: 150px; border-bottom: 11.6px solid green; border-left: 10px solid green"></div> + +<!-- two opposite borders --> +<div style="top: 10px; left: 170px; width: 10px; border-top: 6.6px solid green; border-bottom: 5px solid green;"></div> +<div style="top: 10px; left: 190px; width: 10px; border-top: 5px solid green; border-bottom: 6.6px solid green;"></div> +<div style="top: 10px; left: 210px; height: 10.6px; 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.6px solid green; border-left: 5px solid green"></div> +<div style="top: 10px; left: 250px; border-right: 5px solid green; border-top: 11.6px solid green; border-left: 5px solid green"></div> +<div style="top: 10px; left: 270px; border-top: 5px solid green; border-bottom: 6.6px solid green; border-left: 10px solid green"></div> +<div style="top: 10px; left: 290px; border-top: 6.6px 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.6px solid green; border-right: 10px solid green"></div> +<div style="top: 10px; left: 330px; border-top: 6.6px solid green; border-bottom: 5px solid green; border-right: 10px solid green"></div> + +<!-- four borders --> +<div style="top: 10px; left: 350px; border-top: 6.6px 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.6px solid green; border-left: 5px solid green"></div> + +<!-- border around space --> +<div style="top: 30px; left: 10px; border: 10px solid green; height: 10.6px; width: 10px"></div> + +</body> +</html> |