blob: 5a4f689ac47081f469022f11605151f41c0672c6 [file] [log] [blame]
<!DOCTYPE html>
<style>
.box {
-webkit-animation: inset-anim 2s linear
}
@-webkit-keyframes inset-anim {
from { -webkit-clip-path: inset(0); }
to { -webkit-clip-path: inset(20%);</style>
</style>
<script src="../../resources/run-after-layout-and-paint.js"></script>
<script>
if (window.testRunner) {
testRunner.dumpAsText();
testRunner.waitUntilDone();
}
onload = function() {
runAfterLayoutAndPaint(function() {
if (window.testRunner)
testRunner.notifyDone();
});
};
</script>
<div class="box"></div>
This test passes if it doesn't crash.