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/curved-border-background-nogap.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/curved-border-background-nogap.html')
-rw-r--r-- | layout/reftests/border-radius/curved-border-background-nogap.html | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/layout/reftests/border-radius/curved-border-background-nogap.html b/layout/reftests/border-radius/curved-border-background-nogap.html new file mode 100644 index 000000000..01207e7f0 --- /dev/null +++ b/layout/reftests/border-radius/curved-border-background-nogap.html @@ -0,0 +1,36 @@ +<!DOCTYPE html> +<style> + /* + Turns out that the antialiasing on the outer edge of a block with + border-radius is not consistent if the width and border-width are changed + even if the resulting shape should look the same. So clip out the part + that's too far from the center + */ + div.outer { + width: 100px; + height: 100px; + overflow: hidden; + } + /* We want the following constraints to be satisfied: + 1) Entire inner div content area is contained inside the 100px square. + 2) Entire 100px square is contained inside the outer circle of the inner + div's border. + + This requires that the inner div width/height be < 100px and that the + radius of the outer circle be at least 50 * sqrt(2). Let's go with a 75px + radius for that outer circle. We then need to shift our inner div up and + to the left by 25px to center it in the clipping region. + */ + + div.inner { + width: 50px; + height: 50px; + border: 50px solid black; + background: black; + border-radius: 100px; + position: relative; + top: -25px; + left: -25px; + } +</style> +<div class="outer"><div class="inner"></div></div> |