blob: 85747d66c2b12d2b520dde7b2a089d1b60380a0e [file] [edit]
<!DOCTYPE html>
<html>
<head>
<style>
.box {
width: 100px;
height: 100px;
background-color: blue;
}
.composited {
transform: translateZ(0);
}
.clipped {
clip-path: inset(50%);
}
</style>
</head>
<body>
<div class="composited box"></div>
<div class="clipped composited box"></div>
</body>
</html>