blob: 9d050a04e80be00a1c68db9e0e3d755130cac59a [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>Tests that clip-path with a composited descendent</title>
<style>
.box {
width: 200px;
height: 200px;
background-color: red;
clip-path: circle(80px at 100px 100px);
}
.box div {
width: 300px;
height: 300px;
background-color: green;
will-change: transform;
}
</style>
</head>
<body>
There should be only one green circle.
<div class="box">
<div></div>
</div>
</body>
</html>