fune/testing/web-platform/tests/css/css-backgrounds/border-radius-dynamic-from-no-radius-ref.html
Emilio Cobos Álvarez 3116f4a8c3 Bug 1554755 - Don't set nsIFrame::mMayHaveRoundedCorners to false when there are non-zero percent borders, as we don't track all sizes that are passed to this function. r=mattwoodrow
I _think_ most of the sizes that get here are going to be equivalent to
mRect.Size(), but that seems really hard to prove.

Differential Revision: https://phabricator.services.mozilla.com/D32754

--HG--
extra : moz-landing-system : lando
2019-05-30 00:10:55 +00:00

20 lines
448 B
HTML

<!doctype html>
<title>CSS Test Reference</title>
<link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
<link rel="author" title="Mozilla" href="https://mozilla.org">
<style>
#outer {
width: 100px;
height: 100px;
}
#inner {
width: 100%;
height: 100%;
background: green;
border-radius: 50px;
}
</style>
<p>Should be a green circle below</p>
<div id="outer">
<div id="inner"></div>
</div>