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 /** | |
Dan Beam
2014/07/23 22:09:24
document these params
Vitaly Pavlenko
2014/07/24 01:09:31
Done.
| |
14 * @constructor | |
15 */ | |
16 function PopStateEvent(type, params) {} | |
OLD | NEW |