wpt / css / css-masking / clip-path / clip-path-shape-hline-vline-keywords.html

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

/css/css-masking/clip-path/clip-path-shape-hline-vline-keywords.html

<!DOCTYPE html>
<html>
<head>
  <title>CSS Masking: Test clip-path property and shape function hline/vline keywords</title>
  <link rel="help" href="https://drafts.csswg.org/css-shapes-2/#funcdef-shape">
  <link rel="match" href="reference/green-100x100.html">
  <meta name="assert" content="Test that center and edge keywords work in hline and vline">
</head>
<style>
  #shape {
    width: 200px;
    height: 200px;
    background-color: green;
    clip-path: shape(from top left,
                    hline to center,
                    vline to center,
                    hline to left,
                    close);
  }
</style>
<body>
  <div id="shape"></div>
</body>
</html>

/css/css-masking/clip-path/reference/green-100x100.html

<!DOCTYPE html>
<div style="width: 100px; height: 100px; background-color: green"></div>