| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 /** | 5 /** |
| 6 * @fileoverview Externs to be declared to properly compile JS code. | 6 * @fileoverview Externs to be declared to properly compile JS code. |
| 7 * @externs | 7 * @externs |
| 8 */ | 8 */ |
| 9 | 9 |
| 10 var performance = {}; | 10 var performance = {}; |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 */ | 56 */ |
| 57 Animation.prototype.finished; | 57 Animation.prototype.finished; |
| 58 | 58 |
| 59 document.timeline = {}; | 59 document.timeline = {}; |
| 60 | 60 |
| 61 /** | 61 /** |
| 62 * @param {!AnimationEffect} effect | 62 * @param {!AnimationEffect} effect |
| 63 * @return {!Animation} | 63 * @return {!Animation} |
| 64 */ | 64 */ |
| 65 document.timeline.play = function(effect) {}; | 65 document.timeline.play = function(effect) {}; |
| 66 |
| 67 /** |
| 68 * @param {!number} index |
| 69 * @return {undefined} |
| 70 */ |
| 71 Element.prototype.selectIndex = function(index) {}; |
| OLD | NEW |