blob: 734f16228ae32709e18e09b7a0228fdd87cc2d5d [file] [log] [blame]
<!DOCTYPE html>
<html>
<style>
.composited {
will-change: transform;
}
.clip-path {
-webkit-clip-path: circle(45%);
}
</style>
<!-- There should be a green circle on this page -->
<body>
<img class="composited" onload="load(this)" src="../../images/resources/green-256x256.jpg">
</body>
<script>
function load(element) {
element.classList.add('clip-path');
setTimeout(done, 0);
}
function done() {
if (window.testRunner)
testRunner.notifyDone();
}
if (window.testRunner)
testRunner.waitUntilDone();
</script>
</html>