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/border-radius/corner-split.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/border-radius/corner-split.html')
-rw-r--r-- | layout/reftests/border-radius/corner-split.html | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/layout/reftests/border-radius/corner-split.html b/layout/reftests/border-radius/corner-split.html new file mode 100644 index 000000000..59d26aa1e --- /dev/null +++ b/layout/reftests/border-radius/corner-split.html @@ -0,0 +1,32 @@ +<!DOCTYPE html> +<html> + <head> + <style type="text/css"> +#borders, .cover { + position: absolute; + top: 0px; + left: 0px; +} +#borders { + width: 50px; + height: 25px; + border-radius: 75px; + border-top: 50px solid red; + border-bottom: 100px solid blue; + border-left: 25px solid green; + border-right: 100px solid black; +} + </style> + </head> + <body> + <div id="borders"></div> +<svg width="178" height="178" class="cover"> + <rect x="0" y="0" width="175" height="175" rx="75" ry="75" fill="none" stroke="orange" stroke-width="3" /> + <line x1="145" y1="15" x2="75" y2="50" stroke="orange" stroke-width="3" /> + <line x1="153.033004761" y1="153.033004761" x2="75" y2="75" stroke="orange" stroke-width="3" /> + <line x1="9.580468178" y1="136.678131104" x2="25" y2="75" stroke="orange" stroke-width="3" /> + <line x1="15.000000954" y1="30.000001907" x2="31.386978149" y2="62.773956299" stroke="orange" stroke-width="3" /> + <path d="M75,50 L75,75 L25,75 A50,25 0 0,1 75,50" fill="none" stroke="orange" stroke-width="3" /> +</svg> + </body> +</html> |