blob: 475e53e0f0a79287b69a3c483370d0766617cac9 [file] [log] [blame]
<!DOCTYPE html>
<style>
.error {
width: 100px;
height: 100px;
background-color: red;
position: absolute;
}
.test {
width: 200px;
height: 50px;
background-color: green;
-webkit-clip-path: url(#c);
}
</style>
<div class="error"></div>
<div class="test"></div>
<div class="test"></div>
<svg>
<defs>
<clipPath id="c" clipPathUnits="objectBoundingBox">
<rect width="0.5" height="1"/>
</clipPath>
</defs>
</svg>