diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /layout/reftests/pixel-rounding/rounded-background-color-height-top-5.html | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'layout/reftests/pixel-rounding/rounded-background-color-height-top-5.html')
-rw-r--r-- | layout/reftests/pixel-rounding/rounded-background-color-height-top-5.html | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/layout/reftests/pixel-rounding/rounded-background-color-height-top-5.html b/layout/reftests/pixel-rounding/rounded-background-color-height-top-5.html new file mode 100644 index 000000000..f55313919 --- /dev/null +++ b/layout/reftests/pixel-rounding/rounded-background-color-height-top-5.html @@ -0,0 +1,74 @@ +<!DOCTYPE HTML> +<html> +<head> +<title>Pixel rounding testcase</title> +<style type="text/css"> + +html, body { margin: 0; border: none; padding: 0; } + +body > div { margin: 10px; height: 80px; position: relative; } + +body > div > div { + position: absolute; top: 0px; left: 0; height: 10.5px; width: 10px; +} + +body > div > div { background: green; } + +.tl { top: 20px; } +.tr { margin-top: 40px; } +.bl { left: 20px; } +.br { margin-left: 40px; } + +div.one > div.tl { border-top-left-radius: 1px; } +div.one > div.tr { border-top-right-radius: 1px; } +div.one > div.bl { border-bottom-left-radius: 1px; } +div.one > div.br { border-bottom-right-radius: 1px; } +div.four > div.tl { border-top-left-radius: 4px; } +div.four > div.tr { border-top-right-radius: 4px; } +div.four > div.bl { border-bottom-left-radius: 4px; } +div.four > div.br { border-bottom-right-radius: 4px; } + +</style> +</head> +<body> + +<div class="one"> +<div></div> +<div class="tl"></div> +<div class="tr"></div> +<div class="bl"></div> +<div class="br"></div> +<div class="tl tr"></div> +<div class="tl bl"></div> +<div class="tl br"></div> +<div class="tr bl"></div> +<div class="tr br"></div> +<div class="bl br"></div> +<div class="tl tr bl"></div> +<div class="tl tr br"></div> +<div class="tl bl br"></div> +<div class="tr bl br"></div> +<div class="tl tr bl br"></div> +</div> + +<div class="four"> +<div></div> +<div class="tl"></div> +<div class="tr"></div> +<div class="bl"></div> +<div class="br"></div> +<div class="tl tr"></div> +<div class="tl bl"></div> +<div class="tl br"></div> +<div class="tr bl"></div> +<div class="tr br"></div> +<div class="bl br"></div> +<div class="tl tr bl"></div> +<div class="tl tr br"></div> +<div class="tl bl br"></div> +<div class="tr bl br"></div> +<div class="tl tr bl br"></div> +</div> + +</body> +</html> |