Wed, 31 Dec 2014 13:27:57 +0100
Ignore runtime configuration files generated during quality assurance.
michael@0 | 1 | <!DOCTYPE html> |
michael@0 | 2 | <html class="reftest-wait"> |
michael@0 | 3 | <meta charset="utf-8"> |
michael@0 | 4 | <head> |
michael@0 | 5 | <style type="text/css"> |
michael@0 | 6 | @font-face { |
michael@0 | 7 | font-family: foo; |
michael@0 | 8 | src: url(resources/svg-glyph-extents.otf); |
michael@0 | 9 | } |
michael@0 | 10 | body { |
michael@0 | 11 | font-family: foo; |
michael@0 | 12 | font-size: 10px; |
michael@0 | 13 | } |
michael@0 | 14 | @keyframes test { |
michael@0 | 15 | from { |
michael@0 | 16 | font-size: 100px; |
michael@0 | 17 | } |
michael@0 | 18 | to { |
michael@0 | 19 | font-size: 10px; |
michael@0 | 20 | } |
michael@0 | 21 | } |
michael@0 | 22 | div { |
michael@0 | 23 | display: inline-block; |
michael@0 | 24 | height: 100px; |
michael@0 | 25 | width: 100px; |
michael@0 | 26 | animation-duration: 3s; |
michael@0 | 27 | animation-name: test; |
michael@0 | 28 | } |
michael@0 | 29 | </style> |
michael@0 | 30 | <script type="text/javascript"> |
michael@0 | 31 | function setup() { |
michael@0 | 32 | var e = document.getElementById("watchme"); |
michael@0 | 33 | e.addEventListener("animationend", listener, false); |
michael@0 | 34 | } |
michael@0 | 35 | function listener() { |
michael@0 | 36 | document.documentElement.className = ""; |
michael@0 | 37 | } |
michael@0 | 38 | </script> |
michael@0 | 39 | </head> |
michael@0 | 40 | <body onload="setup()"> |
michael@0 | 41 | <div>A</div> |
michael@0 | 42 | <div id="watchme">B</div> |
michael@0 | 43 | <div>C</div> |
michael@0 | 44 | <div>D</div> |
michael@0 | 45 | </body> |
michael@0 | 46 | </html> |