wpt / css / css-masking / clip-path / clip-path-rect-001.html

Status: PASS | Duration: 8ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/css/css-masking/clip-path/clip-path-rect-001.html

<!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>

/css/css-masking/clip-path/reference/clip-path-rectangle-ref.html

<!DOCTYPE html>
<html>
<head>
    <title>CSS Reftest Reference</title>
    <link rel="author" title="Dirk Schulze" href="mailto:dschulze@adobe.com">
</head>
<body>
    <p>The test passes if there is a green box.</p>
    <div style="margin-top: 50px; margin-left: 50px; position: absolute; width: 150px; height: 100px; background-color: green;"></div>
</body>
</html>