| OLD | NEW |
| 1 <!-- | 1 <!-- |
| 2 Copyright 2012 Google Inc. All Rights Reserved. | 2 Copyright 2012 Google Inc. All Rights Reserved. |
| 3 | 3 |
| 4 Licensed under the Apache License, Version 2.0 (the "License"); | 4 Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 you may not use this file except in compliance with the License. | 5 you may not use this file except in compliance with the License. |
| 6 You may obtain a copy of the License at | 6 You may obtain a copy of the License at |
| 7 | 7 |
| 8 http://www.apache.org/licenses/LICENSE-2.0 | 8 http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | 9 |
| 10 Unless required by applicable law or agreed to in writing, software | 10 Unless required by applicable law or agreed to in writing, software |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 "use strict"; | 48 "use strict"; |
| 49 | 49 |
| 50 var anim = [ | 50 var anim = [ |
| 51 {clip: 'rect(300px, 400px, 300px, 400px)'}, | 51 {clip: 'rect(300px, 400px, 300px, 400px)'}, |
| 52 {clip: 'rect(0px, 800px, 600px, 0px)'}, | 52 {clip: 'rect(0px, 800px, 600px, 0px)'}, |
| 53 ]; | 53 ]; |
| 54 | 54 |
| 55 document.timeline.play( | 55 document.timeline.play( |
| 56 new Animation(document.querySelector('#test'), anim, {duration: 1 * 1000, fi
ll: 'forwards'})); | 56 new Animation(document.querySelector('#test'), anim, {duration: 1 * 1000, fi
ll: 'forwards'})); |
| 57 </script> | 57 </script> |
| OLD | NEW |