Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <div id="target">This test passes if it does not crash.</div> | |
| 2 <script> | |
| 3 let effect = new KeyframeEffect(null, null, { duration: 1000}); | |
|
alancutter (OOO until 2018)
2017/06/26 04:38:47
Remove space after {.
suzyh_UTC10 (ex-contributor)
2017/06/27 05:12:15
Done.
| |
| 4 let animation = new Animation(effect); | |
| 5 | |
| 6 if (window.testRunner) { | |
| 7 testRunner.waitUntilDone(); | |
| 8 testRunner.dumpAsText(); | |
| 9 requestAnimationFrame(function() { | |
| 10 testRunner.notifyDone(); | |
| 11 }); | |
| 12 } | |
| 13 </script> | |
| 14 <style> | |
| 15 @keyframes frame { } | |
| 16 </style> | |
| OLD | NEW |