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-shape-hline-vline-keywords.tentative.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<head>
<title>CSS Masking: Test clip-path property and shape function hline/vline keywords</title>
<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>