4 -webkit-animation: inset-anim
2s linear
7 @-webkit-keyframes inset-anim {
8 from { -webkit-clip-path: inset(
0); }
9 to { -webkit-clip-path: inset(
20%);
</style>
11 <script src=
"../../resources/run-after-layout-and-paint.js"></script>
13 if (window
.testRunner
) {
14 testRunner
.dumpAsText();
15 testRunner
.waitUntilDone();
18 runAfterLayoutAndPaint(function() {
19 if (window
.testRunner
)
20 testRunner
.notifyDone();
24 <div class=
"box"></div>
25 This test passes if it doesn't crash.