OLD | NEW |
1 /** | 1 /** |
2 * @fileoverview Temporary externs until compiler/compiler.jar catches up. | 2 * @fileoverview Temporary externs until compiler/compiler.jar catches up. |
3 * @externs | 3 * @externs |
4 */ | 4 */ |
5 | 5 |
6 /** | 6 /** |
7 * Creates a new HTML Document. | 7 * Creates a new HTML Document. |
8 * @see http://dom.spec.whatwg.org/#dom-domimplementation-createhtmldocument | 8 * @see http://dom.spec.whatwg.org/#dom-domimplementation-createhtmldocument |
9 * @param {string=} opt_title The title to give the new HTML document. | 9 * @param {string=} opt_title The title to give the new HTML document. |
10 */ | 10 */ |
11 document.implementation.createHTMLDocument = function(opt_title) {}; | 11 document.implementation.createHTMLDocument = function(opt_title) {}; |
| 12 |
| 13 /** |
| 14 * @see http://www.whatwg.org/specs/web-apps/current-work/#popstateevent |
| 15 * @constructor |
| 16 * @extends {Event} |
| 17 * |
| 18 * @param {string} type |
| 19 * @param {{state: *}=} opt_eventInitDict |
| 20 */ |
| 21 function PopStateEvent(type, opt_eventInitDict) {} |
OLD | NEW |