22 lines
641 B
HTML
22 lines
641 B
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(25% 50% 75% 12.5%);
|
|
}
|
|
</style>
|
|
<body>
|
|
<p>The test passes if there is a green box.</p>
|
|
<div id="rect"></div>
|
|
</body>
|
|
</html>
|