summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-masking/clip-path/clip-path-rect-001.html
blob: 1645d45829946a5dfd149ec0d28bfaa049c97c4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
  <title>CSS Masking: Test clip-path property and rect function</title>
  <link rel="help" href="https://drafts.csswg.org/css-shapes-1/#funcdef-basic-shape-rect">
  <link rel="match" href="reference/clip-path-rectangle-ref.html">
  <meta name="assert" content="The clip-path property takes the basic shape
	'rect()' for clipping. On pass you should see a green rect.">
</head>
<style>
  #rect {
    width: 400px;
    height: 200px;
    background-color: green;
    clip-path: rect(50px 200px 150px 50px);
  }
</style>
<body>
  <p>The test passes if there is a green box.</p>
  <div id="rect"></div>
</body>
</html>