Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <style> | |
| 2 @-webkit-keyframes test { | |
| 3 from { line-height: 25vw; } | |
|
dstockwell
2013/11/27 01:18:15
Can we add cases that cover this to one of the int
alancutter (OOO until 2018)
2013/11/27 04:55:25
Done.
| |
| 4 to { line-height: 50vh; } | |
| 5 } | |
| 6 #test { | |
| 7 -webkit-animation: test 1s; | |
| 8 } | |
| 9 </style> | |
| 10 This tests animating viewport units. It passes if it doesn't crash. | |
| 11 <div id="test"></div> | |
| 12 <script> | |
| 13 if (window.testRunner) { | |
| 14 testRunner.dumpAsText(); | |
| 15 testRunner.waitUntilDone(); | |
| 16 window.requestAnimationFrame(function() { | |
| 17 testRunner.notifyDone(); | |
| 18 }); | |
| 19 } | |
| 20 </script> | |
| OLD | NEW |