summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-masking/clip-path/clip-path-inline-007.html
blob: 9518b587c4f07958c3ec5915204c15495179cb0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<title>clip-path on inline with border-box and border-radius</title>
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#valdef-shape-box-border-box">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#typedef-shape-box">
<link rel="match" href="clip-path-inline-007-ref.html">
<meta name="fuzzy" content="maxDifference=0-62; totalPixels=0-332">
<meta content="ahem" name="flags">
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style>
  .container {
    font: 100px/1 Ahem;
    line-height: 100px;
  }
  .container > span {
    border-radius: 50px;
    clip-path: border-box;
    color: green;
    /* This outline draws outside the border box and should be clipped. */
    outline: 8px solid red;
  }
</style>
<p>Test passes if there is a filled green circle with radius 50px.
<div class="container">
  <span>X</span>
</div>