OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 28 matching lines...) Expand all Loading... |
39 console.trace = function() {} | 39 console.trace = function() {} |
40 | 40 |
41 /** @param {boolean=} param */ | 41 /** @param {boolean=} param */ |
42 Element.prototype.scrollIntoViewIfNeeded = function(param) {} | 42 Element.prototype.scrollIntoViewIfNeeded = function(param) {} |
43 /** @type {boolean} */ | 43 /** @type {boolean} */ |
44 Event.prototype.isMetaOrCtrlForTest = false; | 44 Event.prototype.isMetaOrCtrlForTest = false; |
45 /** @param {...*} vararg */ | 45 /** @param {...*} vararg */ |
46 Event.prototype.initWebKitWheelEvent = function(vararg) {} | 46 Event.prototype.initWebKitWheelEvent = function(vararg) {} |
47 Event.prototype.stopImmediatePropagation = function() {} | 47 Event.prototype.stopImmediatePropagation = function() {} |
48 | 48 |
| 49 /** |
| 50 * @constructor |
| 51 * @extends {KeyboardEvent} |
| 52 * @param {string} eventType |
| 53 * @param {Object=} properties |
| 54 */ |
| 55 window.KeyboardEvent = function(eventType, properties) {} |
| 56 |
49 /** @param {Element} element */ | 57 /** @param {Element} element */ |
50 window.getComputedStyle = function(element) {} | 58 window.getComputedStyle = function(element) {} |
51 /** @param {*} message */ | 59 /** @param {*} message */ |
52 function postMessage(message) {} | 60 function postMessage(message) {} |
53 | 61 |
54 /** @type {*} */ | 62 /** @type {*} */ |
55 window.testRunner = null; | 63 window.testRunner = null; |
56 | 64 |
57 /** | 65 /** |
58 * @constructor | 66 * @constructor |
(...skipping 424 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
483 | 491 |
484 WebInspector.settings.continuousPainting = /** type {WebInspector.Setting} */ {
} | 492 WebInspector.settings.continuousPainting = /** type {WebInspector.Setting} */ {
} |
485 WebInspector.settings.showDebugBorders = /** type {WebInspector.Setting} */ { } | 493 WebInspector.settings.showDebugBorders = /** type {WebInspector.Setting} */ { } |
486 WebInspector.settings.showScrollBottleneckRects = /** type {WebInspector.Setting
} */ { } | 494 WebInspector.settings.showScrollBottleneckRects = /** type {WebInspector.Setting
} */ { } |
487 WebInspector.settings.forceCompositingMode = /** type {WebInspector.Setting} */
{ } | 495 WebInspector.settings.forceCompositingMode = /** type {WebInspector.Setting} */
{ } |
488 WebInspector.settings.showFPSCounter = /** type {WebInspector.Setting} */ { } | 496 WebInspector.settings.showFPSCounter = /** type {WebInspector.Setting} */ { } |
489 WebInspector.settings.showPaintRects = /** type {WebInspector.Setting} */ { } | 497 WebInspector.settings.showPaintRects = /** type {WebInspector.Setting} */ { } |
490 | 498 |
491 /** @type {boolean} */ | 499 /** @type {boolean} */ |
492 window.dispatchStandaloneTestRunnerMessages; | 500 window.dispatchStandaloneTestRunnerMessages; |
OLD | NEW |