trisquel-icecat/icecat/layout/reftests/svg/1976116.html
2025-10-06 02:35:48 -06:00

18 lines
370 B
HTML

<!doctype html>
<html>
<style>
.b {
clip-path: url(#clip1);
background-color: green;
}
</style>
<body>
<svg class="b" width="200" height="100" xmlns="http://www.w3.org/2000/svg">
<defs>
<clipPath id="clip1">
<rect x="0" y="0" width="100" height="20" />
</clipPath>
</defs>
</svg>
</body>
</html>