summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-backgrounds/border-radius-dynamic-from-no-radius-ref.html
blob: e0ab6ce4414b107b4ca6a3fce8d6f5976d9bd7db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!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: 99px;
  }
</style>
<p>Should be a green circle below</p>
<div id="outer">
  <div id="inner"></div>
</div>