| 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 Event.prototype.stopImmediatePropagation = function() {} | 58 Event.prototype.stopImmediatePropagation = function() {} |
| 59 | 59 |
| 60 /** @param {Element} element */ | 60 /** @param {Element} element */ |
| 61 window.getComputedStyle = function(element) {} | 61 window.getComputedStyle = function(element) {} |
| 62 /** @param {*} message */ | 62 /** @param {*} message */ |
| 63 function postMessage(message) {} | 63 function postMessage(message) {} |
| 64 | 64 |
| 65 /** @type {*} */ | 65 /** @type {*} */ |
| 66 window.testRunner = null; | 66 window.testRunner = null; |
| 67 | 67 |
| 68 window.isUnderTest = false; | |
| 69 | |
| 70 /** | 68 /** |
| 71 * @constructor | 69 * @constructor |
| 72 */ | 70 */ |
| 73 function WebKitMutation(callback) | 71 function WebKitMutation(callback) |
| 74 { | 72 { |
| 75 this.type = ""; | 73 this.type = ""; |
| 76 /** @type {Node} */ this.target = null; | 74 /** @type {Node} */ this.target = null; |
| 77 /** @type {Array.<Node>} */ this.addedNodes = []; | 75 /** @type {Array.<Node>} */ this.addedNodes = []; |
| 78 /** @type {Array.<Node>} */ this.removedNodes = []; | 76 /** @type {Array.<Node>} */ this.removedNodes = []; |
| 79 } | 77 } |
| (...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 301 var difflib = {}; | 299 var difflib = {}; |
| 302 difflib.stringAsLines = function(text) { return []; } | 300 difflib.stringAsLines = function(text) { return []; } |
| 303 /** @constructor */ | 301 /** @constructor */ |
| 304 difflib.SequenceMatcher = function(baseText, newText) { } | 302 difflib.SequenceMatcher = function(baseText, newText) { } |
| 305 difflib.SequenceMatcher.prototype.get_opcodes = function() { return []; } | 303 difflib.SequenceMatcher.prototype.get_opcodes = function() { return []; } |
| 306 | 304 |
| 307 /** @constructor */ | 305 /** @constructor */ |
| 308 WebInspector.CodeMirrorTextEditor = function(url, delegate) { } | 306 WebInspector.CodeMirrorTextEditor = function(url, delegate) { } |
| 309 | 307 |
| 310 WebInspector.ProfileURLRegExp = ""; | 308 WebInspector.ProfileURLRegExp = ""; |
| OLD | NEW |