Upstream version 5.34.92.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / animations / empty-keyframes-composited.html
1 <!DOCTYPE html>
2
3 <style>
4 p {
5   -webkit-transform: rotateX(0deg);
6   -webkit-animation: 1s test;
7 }
8 @-webkit-keyframes test {
9   0% {
10   }
11 }
12 </style>
13
14 <p>Tests an animation where all keyframes are empty, applied to an element which is composited.
15 <p>This test passes if it doesn't crash.
16
17 <script>
18 if (window.testRunner)
19     testRunner.dumpAsText();
20 </script>