Chromium Code Reviews| 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 24 matching lines...) Expand all Loading... | |
| 35 * @param {!Function} callback | 35 * @param {!Function} callback |
| 36 */ | 36 */ |
| 37 Object.observe = function(object, callback) {} | 37 Object.observe = function(object, callback) {} |
| 38 | 38 |
| 39 /** @type {boolean} */ | 39 /** @type {boolean} */ |
| 40 Event.prototype.isMetaOrCtrlForTest; | 40 Event.prototype.isMetaOrCtrlForTest; |
| 41 | 41 |
| 42 /** @type {string} */ | 42 /** @type {string} */ |
| 43 Event.prototype.code; | 43 Event.prototype.code; |
| 44 | 44 |
| 45 /** @type {boolean} */ | |
| 46 Node.prototype.isConnected; | |
|
pfeldman
2016/09/30 22:29:03
Firefox:
No public signals
Edge:
No public signals
dgozman
2016/09/30 23:28:24
Removed for now :-)
| |
| 47 | |
| 45 /** | 48 /** |
| 46 * TODO(luoe): MouseEvent properties movementX and movementY from the | 49 * TODO(luoe): MouseEvent properties movementX and movementY from the |
| 47 * PointerLock API are not yet standard. Once they are included in | 50 * PointerLock API are not yet standard. Once they are included in |
| 48 * Closure Compiler, these custom externs can be removed. | 51 * Closure Compiler, these custom externs can be removed. |
| 49 */ | 52 */ |
| 50 /** @type {number} */ | 53 /** @type {number} */ |
| 51 MouseEvent.prototype.movementX; | 54 MouseEvent.prototype.movementX; |
| 52 | 55 |
| 53 /** @type {number} */ | 56 /** @type {number} */ |
| 54 MouseEvent.prototype.movementY; | 57 MouseEvent.prototype.movementY; |
| (...skipping 714 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 769 /** @type {(string|!Array<!Gonzales.Node>)} */ | 772 /** @type {(string|!Array<!Gonzales.Node>)} */ |
| 770 this.content; | 773 this.content; |
| 771 } | 774 } |
| 772 | 775 |
| 773 /** | 776 /** |
| 774 * @type {string} | 777 * @type {string} |
| 775 * @see http://heycam.github.io/webidl/#es-DOMException-prototype-object | 778 * @see http://heycam.github.io/webidl/#es-DOMException-prototype-object |
| 776 * TODO(jsbell): DOMException should be a subclass of Error. | 779 * TODO(jsbell): DOMException should be a subclass of Error. |
| 777 */ | 780 */ |
| 778 DOMException.prototype.message; | 781 DOMException.prototype.message; |
| OLD | NEW |