Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-masking/clip-path/clip-path-rect-004.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<head>
<title>CSS Masking: Test clip-path property and rect function</title>
<link rel="match" href="reference/green-100x100.html">
<meta name="assert" content="The clip-path property takes the basic shape
'rect()' for clipping. On pass you should see a green rect without any red.">
</head>
<style>
#background {
position: absolute;
width: 100px;
height: 100px;
background-color: green;
}
#rect {
position: absolute;
width: 100px;
height: 100px;
background-color: red;
clip-path: rect(50px 0 0 50px);
}
</style>
<body>
<div id="background"></div>
<div id="rect"></div>
</body>
</html>