Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / clip-path-crash.html
blob5a4f689ac47081f469022f11605151f41c0672c6
1 <!DOCTYPE html>
2 <style>
3 .box {
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>
10 </style>
11 <script src="../../resources/run-after-layout-and-paint.js"></script>
12 <script>
13 if (window.testRunner) {
14 testRunner.dumpAsText();
15 testRunner.waitUntilDone();
17 onload = function() {
18 runAfterLayoutAndPaint(function() {
19 if (window.testRunner)
20 testRunner.notifyDone();
21 });
23 </script>
24 <div class="box"></div>
25 This test passes if it doesn't crash.