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/bugs/461512-1.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/bugs/461512-1.html')
-rw-r--r-- | layout/reftests/bugs/461512-1.html | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/layout/reftests/bugs/461512-1.html b/layout/reftests/bugs/461512-1.html new file mode 100644 index 000000000..627c7f392 --- /dev/null +++ b/layout/reftests/bugs/461512-1.html @@ -0,0 +1,59 @@ +<html> + <head> + <style type="text/css"> + body { background-color: white; margin: 0; padding: 0; } + p { + margin: 10px; + padding: 0; + border: 10px solid rgba(200, 160, 120, 0.5); + height: 10px; + } + + /** + * XXX we cannot test the corner by this testing because when the corner + * is joined with anti-aliased, the edge isn't matching with the + * reference. The dashed and dotted line's anti-aliasing are same. + */ + + /* Cover the coners by the white div element */ + div { + position: absolute; + width: 10px; + height: 10px; + background-color: white; + } + div.tr { + right: 10px; + } + div.tl { + left: 10px; + } + div.bl { + left: 10px; + margin-top: 20px; + } + div.br { + right: 10px; + margin-top: 20px; + } + </style> + </head> + <body> + <p style="border-style: solid;"> </p> + <!-- <p style="border-style: dashed;"> </p> --> + <!-- <p style="border-style: dotted;"> </p> --> + <p style="border-style: double;"> </p> + <div class="tr"></div> + <div class="bl"></div> + <p style="border-style: ridge;"> </p> + <div class="tr"></div> + <div class="bl"></div> + <p style="border-style: groove;"> </p> + <div class="tr"></div> + <div class="bl"></div> + <p style="border-style: inset;"> </p> + <div class="tr"></div> + <div class="bl"></div> + <p style="border-style: outset;"> </p> + </body> +</html> |