blob: 195668ddd8e5fe9b8f844a3f8579eb0e01801ab5 [file] [log] [blame]
commit-queue@webkit.orgd0a74832014-10-30 03:27:24 +00001<!DOCTYPE html>
2<html>
3<head>
4 <style>
5 h1 {
6 -webkit-animation-name: spacing;
7 -webkit-animation-duration: 1s;
8 }
9 @-webkit-keyframes spacing {
10 0% {
11 word-spacing: normal
12 }
13 20% {
14 word-spacing: 100px
15 }
16 40% {
17 word-spacing: 200%
18 }
19 60% {
20 word-spacing: 20em
21 }
22 80% {
23 word-spacing: 300%
24 }
25 100% { }
26 }
27 </style>
28</head>
29<script>
30if (window.testRunner)
31 testRunner.dumpAsText();
32</script>
33<body>
34<h1>PASS if no assert or crash in debug.</h1>
35</body>
36</html>