google-closure-compiler 20250412.0.0-nightly → 20250413.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (131) hide show
  1. package/README.md +5 -30
  2. package/cli.js +3 -4
  3. package/externs/browser/decorators.js +276 -0
  4. package/externs/browser/deprecated.js +58 -0
  5. package/externs/browser/es6_proxy.js +143 -0
  6. package/externs/browser/fetchapi.js +449 -0
  7. package/externs/browser/fido.js +94 -0
  8. package/externs/browser/flash.js +226 -0
  9. package/externs/browser/gecko_css.js +126 -0
  10. package/externs/browser/gecko_dom.js +479 -0
  11. package/externs/browser/gecko_event.js +86 -0
  12. package/externs/browser/gecko_xml.js +73 -0
  13. package/externs/browser/google_legacy.js +31 -0
  14. package/externs/browser/html5.js +6647 -0
  15. package/externs/browser/ie_css.js +270 -0
  16. package/externs/browser/ie_dom.js +1232 -0
  17. package/externs/browser/ie_event.js +310 -0
  18. package/externs/browser/ie_vml.js +77 -0
  19. package/externs/browser/intersection_observer.js +178 -0
  20. package/externs/browser/intl.js +602 -0
  21. package/externs/browser/iphone.js +204 -0
  22. package/externs/browser/mediakeys.js +305 -0
  23. package/externs/browser/mediasource.js +155 -0
  24. package/externs/browser/nonstandard_anim_timing.js +97 -0
  25. package/externs/browser/nonstandard_audio.js +82 -0
  26. package/externs/browser/nonstandard_console.js +75 -0
  27. package/externs/browser/nonstandard_fileapi.js +1066 -0
  28. package/externs/browser/nonstandard_indexeddb.js +78 -0
  29. package/externs/browser/nonstandard_navigation_timing.js +38 -0
  30. package/externs/browser/nonstandard_selection.js +80 -0
  31. package/externs/browser/page_visibility.js +28 -0
  32. package/externs/browser/streamsapi.js +593 -0
  33. package/externs/browser/svg.js +10016 -0
  34. package/externs/browser/url.js +202 -0
  35. package/externs/browser/v8.js +134 -0
  36. package/externs/browser/w3c_abort.js +89 -0
  37. package/externs/browser/w3c_anim_timing.js +49 -0
  38. package/externs/browser/w3c_aria_mixin.js +286 -0
  39. package/externs/browser/w3c_audio.js +1660 -0
  40. package/externs/browser/w3c_batterystatus.js +85 -0
  41. package/externs/browser/w3c_clipboard.js +74 -0
  42. package/externs/browser/w3c_clipboardevent.js +47 -0
  43. package/externs/browser/w3c_composition_event.js +93 -0
  44. package/externs/browser/w3c_css.js +3790 -0
  45. package/externs/browser/w3c_css3d.js +199 -0
  46. package/externs/browser/w3c_device_sensor_event.js +122 -0
  47. package/externs/browser/w3c_dom1.js +1160 -0
  48. package/externs/browser/w3c_dom2.js +3151 -0
  49. package/externs/browser/w3c_dom3.js +555 -0
  50. package/externs/browser/w3c_dom4.js +289 -0
  51. package/externs/browser/w3c_elementtraversal.js +116 -0
  52. package/externs/browser/w3c_event.js +607 -0
  53. package/externs/browser/w3c_event3.js +77 -0
  54. package/externs/browser/w3c_eventsource.js +110 -0
  55. package/externs/browser/w3c_fileapi.js +302 -0
  56. package/externs/browser/w3c_gamepad.js +113 -0
  57. package/externs/browser/w3c_geolocation.js +130 -0
  58. package/externs/browser/w3c_geometry1.js +899 -0
  59. package/externs/browser/w3c_indexeddb.js +771 -0
  60. package/externs/browser/w3c_keyboardlock.js +47 -0
  61. package/externs/browser/w3c_mediacapabilities.js +206 -0
  62. package/externs/browser/w3c_midi.js +301 -0
  63. package/externs/browser/w3c_navigation.js +72 -0
  64. package/externs/browser/w3c_navigation_timing.js +437 -0
  65. package/externs/browser/w3c_netinfo.js +85 -0
  66. package/externs/browser/w3c_payment_request.js +401 -0
  67. package/externs/browser/w3c_permissions.js +112 -0
  68. package/externs/browser/w3c_permissions_policy.js +78 -0
  69. package/externs/browser/w3c_pointer_events.js +163 -0
  70. package/externs/browser/w3c_pointerlock.js +63 -0
  71. package/externs/browser/w3c_range.js +284 -0
  72. package/externs/browser/w3c_referrer_policy.js +36 -0
  73. package/externs/browser/w3c_requestidlecallback.js +76 -0
  74. package/externs/browser/w3c_rtc.js +3882 -0
  75. package/externs/browser/w3c_screen_orientation.js +53 -0
  76. package/externs/browser/w3c_screen_wake_lock.js +58 -0
  77. package/externs/browser/w3c_selection.js +209 -0
  78. package/externs/browser/w3c_selectors.js +113 -0
  79. package/externs/browser/w3c_serviceworker.js +739 -0
  80. package/externs/browser/w3c_speech.js +426 -0
  81. package/externs/browser/w3c_touch_event.js +296 -0
  82. package/externs/browser/w3c_trusted_types.js +142 -0
  83. package/externs/browser/w3c_vibration.js +38 -0
  84. package/externs/browser/w3c_webcodecs.js +1473 -0
  85. package/externs/browser/w3c_webcrypto.js +839 -0
  86. package/externs/browser/w3c_worklets.js +54 -0
  87. package/externs/browser/w3c_xml.js +533 -0
  88. package/externs/browser/web_animations.js +452 -0
  89. package/externs/browser/web_app_manifest.js +50 -0
  90. package/externs/browser/webassembly.js +223 -0
  91. package/externs/browser/webgl.js +3409 -0
  92. package/externs/browser/webgl2.js +2727 -0
  93. package/externs/browser/webgl2_compute.js +1609 -0
  94. package/externs/browser/webkit_css.js +456 -0
  95. package/externs/browser/webkit_dom.js +118 -0
  96. package/externs/browser/webkit_event.js +46 -0
  97. package/externs/browser/webkit_notifications.js +258 -0
  98. package/externs/browser/webkit_usercontent.js +55 -0
  99. package/externs/browser/weblocksapi.js +125 -0
  100. package/externs/browser/webstorage.js +171 -0
  101. package/externs/browser/whatwg_bitmap_context.js +37 -0
  102. package/externs/browser/whatwg_console.js +152 -0
  103. package/externs/browser/whatwg_encoding.js +99 -0
  104. package/externs/browser/whatwg_file_system.js +296 -0
  105. package/externs/browser/wicg_attribution_reporting.js +42 -0
  106. package/externs/browser/wicg_compression_stream.js +60 -0
  107. package/externs/browser/wicg_constructable_stylesheets.js +60 -0
  108. package/externs/browser/wicg_entries.js +169 -0
  109. package/externs/browser/wicg_file_handling.js +41 -0
  110. package/externs/browser/wicg_file_system_access.js +191 -0
  111. package/externs/browser/wicg_floc.js +41 -0
  112. package/externs/browser/wicg_ink.js +89 -0
  113. package/externs/browser/wicg_resizeobserver.js +100 -0
  114. package/externs/browser/wicg_scheduler.js +62 -0
  115. package/externs/browser/wicg_trust_token.js +89 -0
  116. package/externs/browser/wicg_uach.js +100 -0
  117. package/externs/browser/window.js +190 -0
  118. package/externs/es3.js +2716 -0
  119. package/externs/es5.js +284 -0
  120. package/externs/es6.js +2554 -0
  121. package/externs/es6_collections.js +323 -0
  122. package/index.js +13 -16
  123. package/lib/grunt/index.js +71 -92
  124. package/lib/grunt/vinyl-stream.js +12 -18
  125. package/lib/gulp/concat-to-json.js +30 -18
  126. package/lib/gulp/index.js +174 -181
  127. package/lib/gulp/json-to-vinyl.js +8 -8
  128. package/lib/node/{closure-compiler.js → index.js} +27 -51
  129. package/lib/utils.js +16 -14
  130. package/package.json +19 -16
  131. package/lib/logger.js +0 -89
@@ -0,0 +1,3151 @@
1
+ /*
2
+ * Copyright 2008 The Closure Compiler Authors
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+
17
+ /**
18
+ * @fileoverview Definitions for W3C's DOM Level 2 specification.
19
+ * This file depends on w3c_dom1.js.
20
+ * The whole file has been fully type annotated.
21
+ * Created from
22
+ * http://www.w3.org/TR/REC-DOM-Level-1/ecma-script-language-binding.html
23
+ *
24
+ * @externs
25
+ */
26
+
27
+ /**
28
+ * @param {string} s id.
29
+ * @return {Element}
30
+ * @nosideeffects
31
+ * @see https://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/core.html#ID-getElBId
32
+ */
33
+ Document.prototype.getElementById = function(s) {};
34
+
35
+ /**
36
+ * @param {?string} namespaceURI
37
+ * @param {string} qualifiedName
38
+ * @param {string=} opt_typeExtension
39
+ * @return {!Element}
40
+ * @see https://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/core.html#ID-DocCrElNS
41
+ */
42
+ Document.prototype.createElementNS = function(
43
+ namespaceURI, qualifiedName, opt_typeExtension) {};
44
+
45
+ /**
46
+ * @param {?string} namespaceURI
47
+ * @param {string} qualifiedName
48
+ * @return {!Attr}
49
+ * @see https://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/core.html#ID-DocCrElNS
50
+ */
51
+ Document.prototype.createAttributeNS = function(namespaceURI, qualifiedName) {};
52
+
53
+ /**
54
+ * @param {Node} root
55
+ * @param {number=} whatToShow
56
+ * @param {NodeFilter=} filter
57
+ * @param {boolean=} entityReferenceExpansion
58
+ * @return {!NodeIterator}
59
+ * @see https://www.w3.org/TR/2000/REC-DOM-Level-2-Traversal-Range-20001113/traversal.html#Traversal-Document
60
+ * @see https://dom.spec.whatwg.org/#interface-document
61
+ * @nosideeffects
62
+ */
63
+ Document.prototype.createNodeIterator = function(
64
+ root, whatToShow, filter, entityReferenceExpansion) {};
65
+
66
+ /**
67
+ * @param {Node} root
68
+ * @param {number=} whatToShow
69
+ * @param {NodeFilter=} filter
70
+ * @param {boolean=} entityReferenceExpansion
71
+ * @return {!TreeWalker}
72
+ * @see https://www.w3.org/TR/2000/REC-DOM-Level-2-Traversal-Range-20001113/traversal.html#Traversal-Document
73
+ * @see https://dom.spec.whatwg.org/#interface-document
74
+ * @nosideeffects
75
+ */
76
+ Document.prototype.createTreeWalker = function(
77
+ root, whatToShow, filter, entityReferenceExpansion) {};
78
+
79
+ /**
80
+ * @param {string} namespace
81
+ * @param {string} name
82
+ * @return {!NodeList<!Element>}
83
+ * @nosideeffects
84
+ * @see https://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/core.html#ID-getElBTNNS
85
+ */
86
+ Document.prototype.getElementsByTagNameNS = function(namespace, name) {};
87
+
88
+ /**
89
+ * @param {!Node} externalNode
90
+ * @param {boolean=} deep
91
+ * @return {!Node}
92
+ * @see https://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/core.html#Core-Document-importNode
93
+ */
94
+ Document.prototype.importNode = function(externalNode, deep) {};
95
+
96
+ /**
97
+ * @constructor
98
+ * @implements {IObject<(string|number),T>}
99
+ * @implements {IArrayLike<T>}
100
+ * @implements {Iterable<T>}
101
+ * @template T
102
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-75708506
103
+ */
104
+ function HTMLCollection() {}
105
+
106
+ /**
107
+ * @type {number}
108
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-40057551
109
+ */
110
+ HTMLCollection.prototype.length;
111
+
112
+ /**
113
+ * @param {number} index
114
+ * @return {T|null}
115
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-33262535
116
+ * @nosideeffects
117
+ */
118
+ HTMLCollection.prototype.item = function(index) {};
119
+
120
+ /**
121
+ * @param {string} name
122
+ * @return {T|null}
123
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-21069976
124
+ * @nosideeffects
125
+ */
126
+ HTMLCollection.prototype.namedItem = function(name) {};
127
+
128
+ /**
129
+ * @constructor
130
+ * @extends {HTMLCollection<HTMLOptionElement>}
131
+ * @see https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#htmloptionscollection
132
+ */
133
+ function HTMLOptionsCollection() {}
134
+
135
+ /**
136
+ * @type {number}
137
+ * @see https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#dom-htmloptionscollection-length
138
+ * @nosideeffects
139
+ */
140
+ HTMLOptionsCollection.prototype.length;
141
+
142
+ /**
143
+ * @param {HTMLOptionElement|HTMLOptGroupElement} element
144
+ * @param {HTMLElement|number=} before
145
+ * @return {undefined}
146
+ * @see https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#dom-htmloptionscollection-add
147
+ */
148
+ HTMLOptionsCollection.prototype.add = function(element, before) {};
149
+
150
+ /**
151
+ * NOTE(tjgq): The HTMLOptionsCollection#item method is inherited from
152
+ * HTMLCollection, but it must be declared explicitly to work around an error
153
+ * when building a jsinterop library for GWT.
154
+ * @param {number} index
155
+ * @return {HTMLOptionElement}
156
+ * @override
157
+ * @nosideeffects
158
+ */
159
+ HTMLOptionsCollection.prototype.item = function(index) {};
160
+
161
+ /**
162
+ * @param {number} index
163
+ * @return {undefined}
164
+ * @see https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#dom-htmloptionscollection-remove
165
+ */
166
+ HTMLOptionsCollection.prototype.remove = function(index) {};
167
+
168
+ /**
169
+ * @constructor
170
+ * @extends {Document}
171
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-26809268
172
+ */
173
+ function HTMLDocument() {}
174
+
175
+ /**
176
+ * @type {string}
177
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-18446827
178
+ */
179
+ HTMLDocument.prototype.title;
180
+
181
+ /**
182
+ * @type {string}
183
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-95229140
184
+ */
185
+ HTMLDocument.prototype.referrer;
186
+
187
+ /**
188
+ * @type {string}
189
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-2250147
190
+ */
191
+ HTMLDocument.prototype.domain;
192
+
193
+ /**
194
+ * @type {string}
195
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-46183437
196
+ */
197
+ HTMLDocument.prototype.URL;
198
+
199
+ /**
200
+ * @type {!HTMLBodyElement}
201
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-56360201
202
+ */
203
+ HTMLDocument.prototype.body;
204
+
205
+ /**
206
+ * @type {!HTMLCollection<!HTMLImageElement>}
207
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-90379117
208
+ */
209
+ HTMLDocument.prototype.images;
210
+
211
+ /**
212
+ * @type {!HTMLCollection<!HTMLAppletElement>}
213
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-85113862
214
+ */
215
+ HTMLDocument.prototype.applets;
216
+
217
+ /**
218
+ * @type {!HTMLCollection<(!HTMLAnchorElement|!HTMLAreaElement)>}
219
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-7068919
220
+ */
221
+ HTMLDocument.prototype.links;
222
+
223
+ /**
224
+ * @type {!HTMLCollection<!HTMLFormElement>}
225
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-1689064
226
+ */
227
+ HTMLDocument.prototype.forms;
228
+
229
+ /**
230
+ * @type {!HTMLCollection<!HTMLAnchorElement>}
231
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-7577272
232
+ */
233
+ HTMLDocument.prototype.anchors;
234
+
235
+ /**
236
+ * @type {string}
237
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-8747038
238
+ */
239
+ HTMLDocument.prototype.cookie;
240
+
241
+ /**
242
+ * @param {string=} opt_mimeType
243
+ * @param {string=} opt_replace
244
+ * @return {undefined}
245
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-72161170
246
+ * Even though official spec says "no parameters" some old browsers might take
247
+ * optional parameters:
248
+ * https://msdn.microsoft.com/en-us/library/ms536652(v=vs.85).aspx
249
+ * @override
250
+ */
251
+ HTMLDocument.prototype.open = function(opt_mimeType, opt_replace) {};
252
+
253
+ /**
254
+ * @param {string} elementName
255
+ * @return {!NodeList<!Element>}
256
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-71555259
257
+ * @nosideeffects
258
+ */
259
+ HTMLDocument.prototype.getElementsByName = function(elementName) {};
260
+
261
+
262
+ /**
263
+ @typedef {{
264
+ createNodeIterator: function(Node, number=, NodeFilter=, boolean=) :
265
+ NodeIterator, createTreeWalker: function(Node, number=, NodeFilter=, boolean=) :
266
+ TreeWalker
267
+ }}
268
+ */
269
+ var TraversalDocument;
270
+
271
+ /**
272
+ * @record
273
+ * @see http://www.w3.org/TR/DOM-Level-2-Traversal-Range/traversal.html#Traversal-NodeFilter
274
+ */
275
+ function NodeFilter() {}
276
+
277
+ /* Constants for whatToShow */
278
+ /** @const {number} */ NodeFilter.SHOW_ALL;
279
+ /** @const {number} */ NodeFilter.SHOW_ATTRIBUTE;
280
+ /** @const {number} */ NodeFilter.SHOW_CDATA_SECTION;
281
+ /** @const {number} */ NodeFilter.SHOW_COMMENT;
282
+ /** @const {number} */ NodeFilter.SHOW_DOCUMENT;
283
+ /** @const {number} */ NodeFilter.SHOW_DOCUMENT_FRAGMENT;
284
+ /** @const {number} */ NodeFilter.SHOW_DOCUMENT_TYPE;
285
+ /** @const {number} */ NodeFilter.SHOW_ELEMENT;
286
+ /** @const {number} */ NodeFilter.SHOW_ENTITY;
287
+ /** @const {number} */ NodeFilter.SHOW_ENTITY_REFERENCE;
288
+ /** @const {number} */ NodeFilter.SHOW_NOTATION;
289
+ /** @const {number} */ NodeFilter.SHOW_PROCESSING_INSTRUCTION;
290
+ /** @const {number} */ NodeFilter.SHOW_TEXT;
291
+
292
+ /* Consants for acceptNode */
293
+ /** @const {number} */ NodeFilter.FILTER_ACCEPT;
294
+ /** @const {number} */ NodeFilter.FILTER_REJECT;
295
+ /** @const {number} */ NodeFilter.FILTER_SKIP;
296
+
297
+ /**
298
+ * @param {Node} n
299
+ * @return {number} Any of NodeFilter.FILTER_* constants.
300
+ * @see http://www.w3.org/TR/DOM-Level-2-Traversal-Range/traversal.html#Traversal-NodeFilter-acceptNode
301
+ */
302
+ NodeFilter.prototype.acceptNode = function(n) {};
303
+
304
+ /**
305
+ * @interface
306
+ * @see http://www.w3.org/TR/DOM-Level-2-Traversal-Range/traversal.html#Traversal-NodeIterator
307
+ */
308
+ function NodeIterator() {}
309
+
310
+ /**
311
+ * Detach and invalidate the NodeIterator.
312
+ * @see http://www.w3.org/TR/DOM-Level-2-Traversal-Range/traversal.html#Traversal-NodeIterator-detach
313
+ * @return {undefined}
314
+ */
315
+ NodeIterator.prototype.detach = function() {};
316
+
317
+ /**
318
+ * @return {Node} Next node in the set.
319
+ * @see http://www.w3.org/TR/DOM-Level-2-Traversal-Range/traversal.html#Traversal-NodeIterator-nextNode
320
+ */
321
+ NodeIterator.prototype.nextNode = function() {};
322
+
323
+ /**
324
+ * @return {Node} Previous node in the set.
325
+ * @see http://www.w3.org/TR/DOM-Level-2-Traversal-Range/traversal.html#Traversal-NodeIterator-previousNode
326
+ */
327
+ NodeIterator.prototype.previousNode = function() {};
328
+
329
+ /** @type {NodeFilter} */
330
+ NodeIterator.prototype.filter;
331
+
332
+ /** @type {boolean} */
333
+ NodeIterator.prototype.pointerBeforeReferenceNode;
334
+
335
+ /** @type {Node} */
336
+ NodeIterator.prototype.referenceNode;
337
+
338
+ /** @type {Node} */
339
+ NodeIterator.prototype.root;
340
+
341
+ /** @type {number} */
342
+ NodeIterator.prototype.whatToShow;
343
+
344
+ /**
345
+ * @interface
346
+ * @see http://www.w3.org/TR/DOM-Level-2-Traversal-Range/traversal.html#Traversal-TreeWalker
347
+ */
348
+ function TreeWalker() {}
349
+
350
+ /**
351
+ * @return {?Node} The new Node or null.
352
+ * @see http://www.w3.org/TR/DOM-Level-2-Traversal-Range/traversal.html#Traversal-TreeWalker-firstChild
353
+ */
354
+ TreeWalker.prototype.firstChild = function() {};
355
+
356
+ /**
357
+ * @return {?Node} The new Node or null..
358
+ * @see http://www.w3.org/TR/DOM-Level-2-Traversal-Range/traversal.html#Traversal-TreeWalker-lastChild
359
+ */
360
+ TreeWalker.prototype.lastChild = function() {};
361
+
362
+ /**
363
+ * @return {?Node} The new Node or null.
364
+ * @see http://www.w3.org/TR/DOM-Level-2-Traversal-Range/traversal.html#Traversal-TreeWalker-nextNode
365
+ */
366
+ TreeWalker.prototype.nextNode = function() {};
367
+
368
+ /**
369
+ * @return {?Node} The new Node or null.
370
+ * @see http://www.w3.org/TR/DOM-Level-2-Traversal-Range/traversal.html#Traversal-TreeWalker-nextSibling
371
+ */
372
+ TreeWalker.prototype.nextSibling = function() {};
373
+
374
+ /**
375
+ * @return {?Node} The new Node or null.
376
+ * @see http://www.w3.org/TR/DOM-Level-2-Traversal-Range/traversal.html#Traversal-TreeWalker-parentNode
377
+ */
378
+ TreeWalker.prototype.parentNode = function() {};
379
+
380
+ /**
381
+ * @return {?Node} The new Node or null.
382
+ * @see http://www.w3.org/TR/DOM-Level-2-Traversal-Range/traversal.html#Traversal-TreeWalker-previousNode
383
+ */
384
+ TreeWalker.prototype.previousNode = function() {};
385
+
386
+ /**
387
+ * @return {?Node} The new Node or null.
388
+ * @see http://www.w3.org/TR/DOM-Level-2-Traversal-Range/traversal.html#Traversal-TreeWalker-previousSibling
389
+ */
390
+ TreeWalker.prototype.previousSibling = function() {};
391
+
392
+ /**
393
+ * @type {Node}
394
+ */
395
+ TreeWalker.prototype.root;
396
+
397
+ /**
398
+ * @type {number}
399
+ */
400
+ TreeWalker.prototype.whatToShow;
401
+
402
+ /**
403
+ * @type {NodeFilter}
404
+ */
405
+ TreeWalker.prototype.filter;
406
+
407
+ /**
408
+ * @type {boolean}
409
+ */
410
+ TreeWalker.prototype.expandEntityReference;
411
+
412
+ /**
413
+ * @type {Node}
414
+ */
415
+ TreeWalker.prototype.currentNode;
416
+
417
+ /**
418
+ * @constructor
419
+ * @extends {Element}
420
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-58190037
421
+ */
422
+ function HTMLElement() {}
423
+
424
+ /**
425
+ * @type {string}
426
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-78276800
427
+ */
428
+ HTMLElement.prototype.title;
429
+
430
+ /**
431
+ * @type {!CSSStyleDeclaration}
432
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-ElementCSSInlineStyle
433
+ */
434
+ HTMLElement.prototype.style;
435
+
436
+ /**
437
+ * @type {string}
438
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-59132807
439
+ */
440
+ HTMLElement.prototype.lang;
441
+
442
+ /**
443
+ * @type {string}
444
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-52460740
445
+ */
446
+ HTMLElement.prototype.dir;
447
+
448
+ /**
449
+ * @implicitCast
450
+ * @type {string}
451
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-95362176
452
+ */
453
+ HTMLElement.prototype.className;
454
+
455
+ /**
456
+ * @return {undefined}
457
+ * @see https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/click
458
+ * @override
459
+ */
460
+ HTMLElement.prototype.click = function() {};
461
+
462
+ /**
463
+ * @type {string}
464
+ * @see https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/outerText
465
+ */
466
+ HTMLElement.prototype.outerText;
467
+
468
+ /**
469
+ * @type {string|null}
470
+ * @see https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/popover
471
+ */
472
+ HTMLElement.prototype.popover;
473
+
474
+ /**
475
+ * @return {undefined}
476
+ * @see https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/hidePopover
477
+ */
478
+ HTMLElement.prototype.hidePopover = function() {};
479
+
480
+ /**
481
+ * @return {undefined}
482
+ * @see https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/showPopover
483
+ */
484
+ HTMLElement.prototype.showPopover = function() {};
485
+
486
+ /**
487
+ * @param {boolean=} force
488
+ * @return {boolean}
489
+ * @see https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/togglePopover
490
+ */
491
+ HTMLElement.prototype.togglePopover = function(force) {};
492
+
493
+ /**
494
+ * @type {number}
495
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-40676705
496
+ */
497
+ HTMLElement.prototype.tabIndex;
498
+
499
+ /**
500
+ * @constructor
501
+ * @extends {HTMLElement}
502
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-33759296
503
+ */
504
+ function HTMLHtmlElement() {}
505
+
506
+ /**
507
+ * @type {string}
508
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-9383775
509
+ */
510
+ HTMLHtmlElement.prototype.version;
511
+
512
+ /**
513
+ * @constructor
514
+ * @extends {HTMLElement}
515
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-77253168
516
+ */
517
+ function HTMLHeadElement() {}
518
+
519
+ /**
520
+ * @type {string}
521
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-96921909
522
+ */
523
+ HTMLHeadElement.prototype.profile;
524
+
525
+ /**
526
+ * @constructor
527
+ * @extends {HTMLElement}
528
+ * @implements {LinkStyle}
529
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-35143001
530
+ */
531
+ function HTMLLinkElement() {}
532
+
533
+ /**
534
+ * @type {boolean}
535
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-87355129
536
+ */
537
+ HTMLLinkElement.prototype.disabled;
538
+
539
+ /**
540
+ * @type {string}
541
+ * @see https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/fetchPriority
542
+ */
543
+ HTMLLinkElement.prototype.fetchPriority;
544
+
545
+ /**
546
+ * @type {string}
547
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-63954491
548
+ */
549
+ HTMLLinkElement.prototype.charset;
550
+
551
+ /**
552
+ * @type {string}
553
+ * @implicitCast
554
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-33532588
555
+ */
556
+ HTMLLinkElement.prototype.href;
557
+
558
+ /**
559
+ * @type {string}
560
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-85145682
561
+ */
562
+ HTMLLinkElement.prototype.hreflang;
563
+
564
+ /**
565
+ * @type {string}
566
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-75813125
567
+ */
568
+ HTMLLinkElement.prototype.media;
569
+
570
+ /**
571
+ * @type {string}
572
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-41369587
573
+ */
574
+ HTMLLinkElement.prototype.rel;
575
+
576
+ /**
577
+ * @type {string}
578
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-40715461
579
+ */
580
+ HTMLLinkElement.prototype.rev;
581
+
582
+ /**
583
+ * @type {string}
584
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-84183095
585
+ */
586
+ HTMLLinkElement.prototype.target;
587
+
588
+ /**
589
+ * @type {string}
590
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-32498296
591
+ */
592
+ HTMLLinkElement.prototype.type;
593
+
594
+ /** @type {StyleSheet} */
595
+ HTMLLinkElement.prototype.sheet;
596
+
597
+ /**
598
+ * @type {!DOMTokenList}
599
+ * @see https://github.com/WICG/webpackage/blob/master/explainers/subresource-loading.md
600
+ */
601
+ HTMLLinkElement.prototype.resources;
602
+
603
+ /**
604
+ * @constructor
605
+ * @extends {HTMLElement}
606
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-79243169
607
+ */
608
+ function HTMLTitleElement() {}
609
+
610
+ /**
611
+ * @type {string}
612
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-77500413
613
+ */
614
+ HTMLTitleElement.prototype.text;
615
+
616
+ /**
617
+ * @constructor
618
+ * @extends {HTMLElement}
619
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-37041454
620
+ */
621
+ function HTMLMetaElement() {}
622
+
623
+ /**
624
+ * @type {string}
625
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-87670826
626
+ */
627
+ HTMLMetaElement.prototype.content;
628
+
629
+ /**
630
+ * @type {string}
631
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-77289449
632
+ */
633
+ HTMLMetaElement.prototype.httpEquiv;
634
+
635
+ /**
636
+ * @type {string}
637
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-31037081
638
+ */
639
+ HTMLMetaElement.prototype.name;
640
+
641
+ /**
642
+ * @type {string}
643
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-35993789
644
+ */
645
+ HTMLMetaElement.prototype.scheme;
646
+
647
+ /**
648
+ * @constructor
649
+ * @extends {HTMLElement}
650
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-73629039
651
+ */
652
+ function HTMLBaseElement() {}
653
+
654
+ /**
655
+ * @type {string}
656
+ * @implicitCast
657
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-65382887
658
+ */
659
+ HTMLBaseElement.prototype.href;
660
+
661
+ /**
662
+ * @type {string}
663
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-73844298
664
+ */
665
+ HTMLBaseElement.prototype.target;
666
+
667
+ /**
668
+ * @constructor
669
+ * @extends {HTMLElement}
670
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-85283003
671
+ */
672
+ function HTMLIsIndexElement() {}
673
+
674
+ /**
675
+ * @type {HTMLFormElement}
676
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-87069980
677
+ */
678
+ HTMLIsIndexElement.prototype.form;
679
+
680
+ /**
681
+ * @type {string}
682
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-33589862
683
+ */
684
+ HTMLIsIndexElement.prototype.prompt;
685
+
686
+ /**
687
+ * @constructor
688
+ * @extends {HTMLElement}
689
+ * @implements {LinkStyle}
690
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-16428977
691
+ */
692
+ function HTMLStyleElement() {}
693
+
694
+ /**
695
+ * @type {boolean}
696
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-51162010
697
+ */
698
+ HTMLStyleElement.prototype.disabled;
699
+
700
+ /**
701
+ * @type {string}
702
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-76412738
703
+ */
704
+ HTMLStyleElement.prototype.media;
705
+
706
+ /**
707
+ * @type {string}
708
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-22472002
709
+ */
710
+ HTMLStyleElement.prototype.type;
711
+
712
+ /** @type {StyleSheet} */
713
+ HTMLStyleElement.prototype.sheet;
714
+
715
+ /**
716
+ * @constructor
717
+ * @extends {HTMLElement}
718
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-62018039
719
+ */
720
+ function HTMLBodyElement() {}
721
+
722
+ /**
723
+ * @type {string}
724
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-59424581
725
+ */
726
+ HTMLBodyElement.prototype.aLink;
727
+
728
+ /**
729
+ * @type {string}
730
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-37574810
731
+ */
732
+ HTMLBodyElement.prototype.background;
733
+
734
+ /**
735
+ * @type {string}
736
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-24940084
737
+ */
738
+ HTMLBodyElement.prototype.bgColor;
739
+
740
+ /**
741
+ * @type {string}
742
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-7662206
743
+ */
744
+ HTMLBodyElement.prototype.link;
745
+
746
+ /**
747
+ * @type {string}
748
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-73714763
749
+ */
750
+ HTMLBodyElement.prototype.text;
751
+
752
+ /**
753
+ * @type {string}
754
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-83224305
755
+ */
756
+ HTMLBodyElement.prototype.vLink;
757
+
758
+ /**
759
+ * @constructor
760
+ * @extends {HTMLCollection<T>}
761
+ * @implements {IObject<string, (T|RadioNodeList<T>)>}
762
+ * @implements {IArrayLike<T>}
763
+ * @template T
764
+ * @see https://html.spec.whatwg.org/multipage/infrastructure.html#the-htmlformcontrolscollection-interface
765
+ */
766
+ function HTMLFormControlsCollection() {}
767
+
768
+ /**
769
+ * @param {string} name
770
+ * @return {T|RadioNodeList<T>|null}
771
+ * @see https://html.spec.whatwg.org/multipage/infrastructure.html#dom-htmlformcontrolscollection-nameditem
772
+ * @nosideeffects
773
+ * @override
774
+ */
775
+ HTMLFormControlsCollection.prototype.namedItem = function(name) {};
776
+
777
+ /**
778
+ * @constructor
779
+ * @extends {HTMLElement}
780
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-40002357
781
+ */
782
+ function HTMLFormElement() {}
783
+
784
+ /**
785
+ * @type {!HTMLFormControlsCollection<!HTMLElement>}
786
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-76728479
787
+ */
788
+ HTMLFormElement.prototype.elements;
789
+
790
+ /**
791
+ * @type {number}
792
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#HTML-HTMLFormElement-length
793
+ */
794
+ HTMLFormElement.prototype.length;
795
+
796
+ /**
797
+ * @type {string}
798
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-22051454
799
+ */
800
+ HTMLFormElement.prototype.name;
801
+
802
+ /**
803
+ * @type {string}
804
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-19661795
805
+ */
806
+ HTMLFormElement.prototype.acceptCharset;
807
+
808
+ /**
809
+ * @type {string}
810
+ * @implicitCast
811
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-74049184
812
+ */
813
+ HTMLFormElement.prototype.action;
814
+
815
+ /**
816
+ * @type {string}
817
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-84227810
818
+ */
819
+ HTMLFormElement.prototype.enctype;
820
+
821
+ /**
822
+ * @type {string}
823
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-82545539
824
+ */
825
+ HTMLFormElement.prototype.method;
826
+
827
+ /**
828
+ * @type {string}
829
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-6512890
830
+ */
831
+ HTMLFormElement.prototype.target;
832
+
833
+ /**
834
+ * @return {undefined}
835
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-76767676
836
+ */
837
+ HTMLFormElement.prototype.submit = function() {};
838
+
839
+ /**
840
+ * @return {undefined}
841
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-76767677
842
+ */
843
+ HTMLFormElement.prototype.reset = function() {};
844
+
845
+ /**
846
+ * @constructor
847
+ * @extends {HTMLElement}
848
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-94282980
849
+ */
850
+ function HTMLSelectElement() {}
851
+
852
+ /**
853
+ * @type {string}
854
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-58783172
855
+ */
856
+ HTMLSelectElement.prototype.type;
857
+
858
+ /**
859
+ * @type {number}
860
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-85676760
861
+ */
862
+ HTMLSelectElement.prototype.selectedIndex;
863
+
864
+ /**
865
+ * @type {string}
866
+ * @implicitCast
867
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-59351919
868
+ */
869
+ HTMLSelectElement.prototype.value;
870
+
871
+ /**
872
+ * @type {number}
873
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-5933486
874
+ */
875
+ HTMLSelectElement.prototype.length;
876
+
877
+ /**
878
+ * @type {HTMLFormElement}
879
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-20489458
880
+ */
881
+ HTMLSelectElement.prototype.form;
882
+
883
+ /**
884
+ * @type {!HTMLOptionsCollection}
885
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-30606413
886
+ */
887
+ HTMLSelectElement.prototype.options;
888
+
889
+ /**
890
+ * @type {boolean}
891
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-79102918
892
+ */
893
+ HTMLSelectElement.prototype.disabled;
894
+
895
+ /**
896
+ * @type {boolean}
897
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-13246613
898
+ */
899
+ HTMLSelectElement.prototype.multiple;
900
+
901
+ /**
902
+ * @type {string}
903
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-41636323
904
+ */
905
+ HTMLSelectElement.prototype.name;
906
+
907
+ /**
908
+ * @type {number}
909
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-18293826
910
+ */
911
+ HTMLSelectElement.prototype.size;
912
+
913
+ /**
914
+ * @param {HTMLElement} element
915
+ * @param {HTMLElement=} opt_before
916
+ * @return {undefined}
917
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-14493106
918
+ */
919
+ HTMLSelectElement.prototype.add = function(element, opt_before) {};
920
+
921
+ /**
922
+ * @return {undefined}
923
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-28216144
924
+ * @override
925
+ */
926
+ HTMLSelectElement.prototype.blur = function() {};
927
+
928
+ /**
929
+ * @return {undefined}
930
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-32130014
931
+ * @override
932
+ */
933
+ HTMLSelectElement.prototype.focus = function() {};
934
+
935
+ /**
936
+ * @param {number=} opt_index
937
+ * @return {undefined}
938
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-33404570
939
+ * @override
940
+ */
941
+ HTMLSelectElement.prototype.remove = function(opt_index) {};
942
+
943
+ /**
944
+ * @constructor
945
+ * @extends {HTMLElement}
946
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-38450247
947
+ */
948
+ function HTMLOptGroupElement() {}
949
+
950
+ /**
951
+ * @type {boolean}
952
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-15518803
953
+ */
954
+ HTMLOptGroupElement.prototype.disabled;
955
+
956
+ /**
957
+ * @type {string}
958
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-95806054
959
+ */
960
+ HTMLOptGroupElement.prototype.label;
961
+
962
+ /**
963
+ * @constructor
964
+ * @extends {HTMLElement}
965
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-70901257
966
+ */
967
+ function HTMLOptionElement() {}
968
+
969
+ /**
970
+ * @type {boolean}
971
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-37770574
972
+ */
973
+ HTMLOptionElement.prototype.defaultSelected;
974
+
975
+ /**
976
+ * @type {boolean}
977
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-23482473
978
+ */
979
+ HTMLOptionElement.prototype.disabled;
980
+
981
+ /**
982
+ * @type {HTMLFormElement}
983
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-17116503
984
+ */
985
+ HTMLOptionElement.prototype.form;
986
+
987
+ /**
988
+ * @type {number}
989
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-14038413
990
+ */
991
+ HTMLOptionElement.prototype.index;
992
+
993
+ /**
994
+ * @type {string}
995
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-40736115
996
+ */
997
+ HTMLOptionElement.prototype.label;
998
+
999
+ /**
1000
+ * @type {boolean}
1001
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-70874476
1002
+ */
1003
+ HTMLOptionElement.prototype.selected;
1004
+
1005
+ /**
1006
+ * @type {string}
1007
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-48154426
1008
+ */
1009
+ HTMLOptionElement.prototype.text;
1010
+
1011
+ /**
1012
+ * @type {string}
1013
+ * @implicitCast
1014
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-6185554
1015
+ */
1016
+ HTMLOptionElement.prototype.value;
1017
+
1018
+
1019
+
1020
+ /**
1021
+ * @constructor
1022
+ * @extends {HTMLOptionElement}
1023
+ * @param {*=} opt_text
1024
+ * @param {*=} opt_value
1025
+ * @param {*=} opt_defaultSelected
1026
+ * @param {*=} opt_selected
1027
+ */
1028
+ function Option(opt_text, opt_value, opt_defaultSelected, opt_selected) {}
1029
+
1030
+
1031
+
1032
+ /**
1033
+ * @constructor
1034
+ * @extends {HTMLElement}
1035
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-6043025
1036
+ */
1037
+ function HTMLInputElement() {}
1038
+
1039
+ /**
1040
+ * @type {string}
1041
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-15328520
1042
+ */
1043
+ HTMLInputElement.prototype.accept;
1044
+
1045
+ /**
1046
+ * @type {string}
1047
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-59914154
1048
+ */
1049
+ HTMLInputElement.prototype.accessKey;
1050
+
1051
+ /**
1052
+ * @type {string}
1053
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-96991182
1054
+ */
1055
+ HTMLInputElement.prototype.align;
1056
+
1057
+ /**
1058
+ * @type {string}
1059
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-92701314
1060
+ */
1061
+ HTMLInputElement.prototype.alt;
1062
+
1063
+ /**
1064
+ * @type {boolean}
1065
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-30233917
1066
+ */
1067
+ HTMLInputElement.prototype.checked;
1068
+
1069
+ /**
1070
+ * @type {boolean}
1071
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-20509171
1072
+ */
1073
+ HTMLInputElement.prototype.defaultChecked;
1074
+
1075
+ /**
1076
+ * @type {string}
1077
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-26091157
1078
+ */
1079
+ HTMLInputElement.prototype.defaultValue;
1080
+
1081
+ /**
1082
+ * @type {boolean}
1083
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-50886781
1084
+ */
1085
+ HTMLInputElement.prototype.disabled;
1086
+
1087
+ /**
1088
+ * @type {HTMLFormElement}
1089
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-63239895
1090
+ */
1091
+ HTMLInputElement.prototype.form;
1092
+
1093
+ /**
1094
+ * @type {number}
1095
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-54719353
1096
+ */
1097
+ HTMLInputElement.prototype.maxLength;
1098
+
1099
+ /**
1100
+ * @type {string}
1101
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-89658498
1102
+ */
1103
+ HTMLInputElement.prototype.name;
1104
+
1105
+ /**
1106
+ * @type {boolean}
1107
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-88461592
1108
+ */
1109
+ HTMLInputElement.prototype.readOnly;
1110
+
1111
+ /**
1112
+ * @type {number}
1113
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-79659438
1114
+ */
1115
+ HTMLInputElement.prototype.size;
1116
+
1117
+ /**
1118
+ * @type {string}
1119
+ * @implicitCast
1120
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-97320704
1121
+ */
1122
+ HTMLInputElement.prototype.src;
1123
+
1124
+ /**
1125
+ * @type {number}
1126
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-62176355
1127
+ */
1128
+ HTMLInputElement.prototype.tabIndex;
1129
+
1130
+ /**
1131
+ * @type {string}
1132
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-62883744
1133
+ */
1134
+ HTMLInputElement.prototype.type;
1135
+
1136
+ /**
1137
+ * @type {string}
1138
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-32463706
1139
+ */
1140
+ HTMLInputElement.prototype.useMap;
1141
+
1142
+ /**
1143
+ * @type {string}
1144
+ * @implicitCast
1145
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-49531485
1146
+ */
1147
+ HTMLInputElement.prototype.value;
1148
+
1149
+ /**
1150
+ * @return {undefined}
1151
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-26838235
1152
+ * @override
1153
+ */
1154
+ HTMLInputElement.prototype.blur = function() {};
1155
+
1156
+ /**
1157
+ * @return {undefined}
1158
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-2651361
1159
+ * @override
1160
+ */
1161
+ HTMLInputElement.prototype.click = function() {};
1162
+
1163
+ /**
1164
+ * @return {undefined}
1165
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-65996295
1166
+ * @override
1167
+ */
1168
+ HTMLInputElement.prototype.focus = function() {};
1169
+
1170
+ /**
1171
+ * @return {undefined}
1172
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-34677168
1173
+ */
1174
+ HTMLInputElement.prototype.select = function() {};
1175
+
1176
+ /**
1177
+ * @constructor
1178
+ * @extends {HTMLElement}
1179
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-24874179
1180
+ */
1181
+ function HTMLTextAreaElement() {}
1182
+
1183
+ /**
1184
+ * @type {string}
1185
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-93102991
1186
+ */
1187
+ HTMLTextAreaElement.prototype.accessKey;
1188
+
1189
+ /**
1190
+ * @type {number}
1191
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-51387225
1192
+ */
1193
+ HTMLTextAreaElement.prototype.cols;
1194
+
1195
+ /**
1196
+ * @type {string}
1197
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-36152213
1198
+ */
1199
+ HTMLTextAreaElement.prototype.defaultValue;
1200
+
1201
+ /**
1202
+ * @type {boolean}
1203
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-98725443
1204
+ */
1205
+ HTMLTextAreaElement.prototype.disabled;
1206
+
1207
+ /**
1208
+ * @type {HTMLFormElement}
1209
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-18911464
1210
+ */
1211
+ HTMLTextAreaElement.prototype.form;
1212
+
1213
+ /**
1214
+ * @type {string}
1215
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-70715578
1216
+ */
1217
+ HTMLTextAreaElement.prototype.name;
1218
+
1219
+ /**
1220
+ * @type {boolean}
1221
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-39131423
1222
+ */
1223
+ HTMLTextAreaElement.prototype.readOnly;
1224
+
1225
+ /**
1226
+ * @type {number}
1227
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-46975887
1228
+ */
1229
+ HTMLTextAreaElement.prototype.rows;
1230
+
1231
+ /**
1232
+ * @type {number}
1233
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-60363303
1234
+ */
1235
+ HTMLTextAreaElement.prototype.tabIndex;
1236
+
1237
+ /**
1238
+ * @type {string}
1239
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#HTML-HTMLTextAreaElement-type
1240
+ */
1241
+ HTMLTextAreaElement.prototype.type;
1242
+
1243
+ /**
1244
+ * @type {string}
1245
+ * @implicitCast
1246
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-70715579
1247
+ */
1248
+ HTMLTextAreaElement.prototype.value;
1249
+
1250
+ /**
1251
+ * @return {undefined}
1252
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-6750689
1253
+ * @override
1254
+ */
1255
+ HTMLTextAreaElement.prototype.blur = function() {};
1256
+
1257
+ /**
1258
+ * @return {undefined}
1259
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-39055426
1260
+ * @override
1261
+ */
1262
+ HTMLTextAreaElement.prototype.focus = function() {};
1263
+
1264
+ /**
1265
+ * @return {undefined}
1266
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-48880622
1267
+ */
1268
+ HTMLTextAreaElement.prototype.select = function() {};
1269
+
1270
+ /**
1271
+ * @type {string}
1272
+ * @see https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/wrap
1273
+ */
1274
+ HTMLTextAreaElement.prototype.wrap;
1275
+
1276
+ /**
1277
+ * @type {string}
1278
+ */
1279
+ HTMLTextAreaElement.prototype.dirName;
1280
+
1281
+ /**
1282
+ * @constructor
1283
+ * @extends {HTMLElement}
1284
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-34812697
1285
+ */
1286
+ function HTMLButtonElement() {}
1287
+
1288
+ /**
1289
+ * @type {string}
1290
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-73169431
1291
+ */
1292
+ HTMLButtonElement.prototype.accessKey;
1293
+
1294
+ /**
1295
+ * @type {boolean}
1296
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-92757155
1297
+ */
1298
+ HTMLButtonElement.prototype.disabled;
1299
+
1300
+ /**
1301
+ * @type {HTMLFormElement}
1302
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-71254493
1303
+ */
1304
+ HTMLButtonElement.prototype.form;
1305
+
1306
+ /**
1307
+ * @type {string}
1308
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-11029910
1309
+ */
1310
+ HTMLButtonElement.prototype.name;
1311
+
1312
+ /**
1313
+ * @type {number}
1314
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-39190908
1315
+ */
1316
+ HTMLButtonElement.prototype.tabIndex;
1317
+
1318
+ /**
1319
+ * @type {string}
1320
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-27430092
1321
+ */
1322
+ HTMLButtonElement.prototype.type;
1323
+
1324
+ /**
1325
+ * @type {string}
1326
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-72856782
1327
+ */
1328
+ HTMLButtonElement.prototype.value;
1329
+
1330
+ /**
1331
+ * @constructor
1332
+ * @extends {HTMLElement}
1333
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-13691394
1334
+ */
1335
+ function HTMLLabelElement() {}
1336
+
1337
+ /**
1338
+ * @type {string}
1339
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-43589892
1340
+ */
1341
+ HTMLLabelElement.prototype.accessKey;
1342
+
1343
+ /**
1344
+ * @type {HTMLFormElement}
1345
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-32480901
1346
+ */
1347
+ HTMLLabelElement.prototype.form;
1348
+
1349
+ /**
1350
+ * @type {string}
1351
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-96509813
1352
+ */
1353
+ HTMLLabelElement.prototype.htmlFor;
1354
+
1355
+ /**
1356
+ * @constructor
1357
+ * @extends {HTMLElement}
1358
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-7365882
1359
+ */
1360
+ function HTMLFieldSetElement() {}
1361
+
1362
+ /**
1363
+ * @type {HTMLFormElement}
1364
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-75392630
1365
+ */
1366
+ HTMLFieldSetElement.prototype.form;
1367
+
1368
+ /**
1369
+ * @type {boolean}
1370
+ * @see https://www.w3.org/TR/html5/forms.html#attr-fieldset-disabled
1371
+ */
1372
+ HTMLFieldSetElement.prototype.disabled;
1373
+
1374
+ /**
1375
+ * @constructor
1376
+ * @extends {HTMLElement}
1377
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-21482039
1378
+ */
1379
+ function HTMLLegendElement() {}
1380
+
1381
+ /**
1382
+ * @type {string}
1383
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-11297832
1384
+ */
1385
+ HTMLLegendElement.prototype.accessKey;
1386
+
1387
+ /**
1388
+ * @type {string}
1389
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-79538067
1390
+ */
1391
+ HTMLLegendElement.prototype.align;
1392
+
1393
+ /**
1394
+ * @type {HTMLFormElement}
1395
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-29594519
1396
+ */
1397
+ HTMLLegendElement.prototype.form;
1398
+
1399
+ /**
1400
+ * @constructor
1401
+ * @extends {HTMLElement}
1402
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-86834457
1403
+ */
1404
+ function HTMLUListElement() {}
1405
+
1406
+ /**
1407
+ * @type {boolean}
1408
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-39864178
1409
+ */
1410
+ HTMLUListElement.prototype.compact;
1411
+
1412
+ /**
1413
+ * @type {string}
1414
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-96874670
1415
+ */
1416
+ HTMLUListElement.prototype.type;
1417
+
1418
+ /**
1419
+ * @constructor
1420
+ * @extends {HTMLElement}
1421
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-58056027
1422
+ */
1423
+ function HTMLOListElement() {}
1424
+
1425
+ /**
1426
+ * @type {boolean}
1427
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-76448506
1428
+ */
1429
+ HTMLOListElement.prototype.compact;
1430
+
1431
+ /**
1432
+ * @type {number}
1433
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-14793325
1434
+ */
1435
+ HTMLOListElement.prototype.start;
1436
+
1437
+ /**
1438
+ * @type {string}
1439
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-40971103
1440
+ */
1441
+ HTMLOListElement.prototype.type;
1442
+
1443
+ /**
1444
+ * @constructor
1445
+ * @extends {HTMLElement}
1446
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-52368974
1447
+ */
1448
+ function HTMLDListElement() {}
1449
+
1450
+ /**
1451
+ * @type {boolean}
1452
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-21738539
1453
+ */
1454
+ HTMLDListElement.prototype.compact;
1455
+
1456
+ /**
1457
+ * @constructor
1458
+ * @extends {HTMLElement}
1459
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-71600284
1460
+ */
1461
+ function HTMLDirectoryElement() {}
1462
+
1463
+ /**
1464
+ * @type {boolean}
1465
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-75317739
1466
+ */
1467
+ HTMLDirectoryElement.prototype.compact;
1468
+
1469
+ /**
1470
+ * @constructor
1471
+ * @extends {HTMLElement}
1472
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-72509186
1473
+ * @see http://www.w3.org/html/wg/drafts/html/master/interactive-elements.html#the-menu-element
1474
+ */
1475
+ function HTMLMenuElement() {}
1476
+
1477
+ /**
1478
+ * @type {boolean}
1479
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-68436464
1480
+ */
1481
+ HTMLMenuElement.prototype.compact;
1482
+
1483
+ /**
1484
+ * @constructor
1485
+ * @extends {HTMLElement}
1486
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-74680021
1487
+ */
1488
+ function HTMLLIElement() {}
1489
+
1490
+ /**
1491
+ * @type {string}
1492
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-52387668
1493
+ */
1494
+ HTMLLIElement.prototype.type;
1495
+
1496
+ /**
1497
+ * @type {number}
1498
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-45496263
1499
+ */
1500
+ HTMLLIElement.prototype.value;
1501
+
1502
+ /**
1503
+ * @constructor
1504
+ * @extends {HTMLElement}
1505
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-22445964
1506
+ */
1507
+ function HTMLDivElement() {}
1508
+
1509
+ /**
1510
+ * @type {string}
1511
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-70908791
1512
+ */
1513
+ HTMLDivElement.prototype.align;
1514
+
1515
+ /**
1516
+ * @constructor
1517
+ * @extends {HTMLElement}
1518
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-84675076
1519
+ */
1520
+ function HTMLParagraphElement() {}
1521
+
1522
+ /**
1523
+ * @type {string}
1524
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-53465507
1525
+ */
1526
+ HTMLParagraphElement.prototype.align;
1527
+
1528
+ /**
1529
+ * @constructor
1530
+ * @extends {HTMLElement}
1531
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-43345119
1532
+ */
1533
+ function HTMLHeadingElement() {}
1534
+
1535
+ /**
1536
+ * @type {string}
1537
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-6796462
1538
+ */
1539
+ HTMLHeadingElement.prototype.align;
1540
+
1541
+ /**
1542
+ * @constructor
1543
+ * @extends {HTMLElement}
1544
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-70319763
1545
+ */
1546
+ function HTMLQuoteElement() {}
1547
+
1548
+ /**
1549
+ * @type {string}
1550
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-53895598
1551
+ */
1552
+ HTMLQuoteElement.prototype.cite;
1553
+
1554
+ /**
1555
+ * @constructor
1556
+ * @extends {HTMLElement}
1557
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-11383425
1558
+ */
1559
+ function HTMLPreElement() {}
1560
+
1561
+ /**
1562
+ * @type {number}
1563
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-13894083
1564
+ */
1565
+ HTMLPreElement.prototype.width;
1566
+
1567
+ /**
1568
+ * @constructor
1569
+ * @extends {HTMLElement}
1570
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-56836063
1571
+ */
1572
+ function HTMLBRElement() {}
1573
+
1574
+ /**
1575
+ * @type {string}
1576
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-82703081
1577
+ */
1578
+ HTMLBRElement.prototype.clear;
1579
+
1580
+ /**
1581
+ * @constructor
1582
+ * @extends {HTMLElement}
1583
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-32774408
1584
+ */
1585
+ function HTMLBaseFontElement() {}
1586
+
1587
+ /**
1588
+ * @type {string}
1589
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-87502302
1590
+ */
1591
+ HTMLBaseFontElement.prototype.color;
1592
+
1593
+ /**
1594
+ * @type {string}
1595
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-88128969
1596
+ */
1597
+ HTMLBaseFontElement.prototype.face;
1598
+
1599
+ /**
1600
+ * @type {number}
1601
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-38930424
1602
+ */
1603
+ HTMLBaseFontElement.prototype.size;
1604
+
1605
+ /**
1606
+ * @constructor
1607
+ * @extends {HTMLElement}
1608
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-43943847
1609
+ */
1610
+ function HTMLFontElement() {}
1611
+
1612
+ /**
1613
+ * @type {string}
1614
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-53532975
1615
+ */
1616
+ HTMLFontElement.prototype.color;
1617
+
1618
+ /**
1619
+ * @type {string}
1620
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-55715655
1621
+ */
1622
+ HTMLFontElement.prototype.face;
1623
+
1624
+ /**
1625
+ * @type {string}
1626
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-90127284
1627
+ */
1628
+ HTMLFontElement.prototype.size;
1629
+
1630
+ /**
1631
+ * @constructor
1632
+ * @extends {HTMLElement}
1633
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-68228811
1634
+ */
1635
+ function HTMLHRElement() {}
1636
+
1637
+ /**
1638
+ * @type {string}
1639
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-15235012
1640
+ */
1641
+ HTMLHRElement.prototype.align;
1642
+
1643
+ /**
1644
+ * @type {boolean}
1645
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-79813978
1646
+ */
1647
+ HTMLHRElement.prototype.noShade;
1648
+
1649
+ /**
1650
+ * @type {string}
1651
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-77612587
1652
+ */
1653
+ HTMLHRElement.prototype.size;
1654
+
1655
+ /**
1656
+ * @type {string}
1657
+ * @implicitCast
1658
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-87744198
1659
+ */
1660
+ HTMLHRElement.prototype.width;
1661
+
1662
+ /**
1663
+ * @constructor
1664
+ * @extends {HTMLElement}
1665
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-79359609
1666
+ */
1667
+ function HTMLModElement() {}
1668
+
1669
+ /**
1670
+ * @type {string}
1671
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-75101708
1672
+ */
1673
+ HTMLModElement.prototype.cite;
1674
+
1675
+ /**
1676
+ * @type {string}
1677
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-88432678
1678
+ */
1679
+ HTMLModElement.prototype.dateTime;
1680
+
1681
+ /**
1682
+ * @constructor
1683
+ * @extends {HTMLElement}
1684
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-48250443
1685
+ */
1686
+ function HTMLAnchorElement() {}
1687
+
1688
+ /**
1689
+ * @type {string}
1690
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-89647724
1691
+ */
1692
+ HTMLAnchorElement.prototype.accessKey;
1693
+
1694
+ /**
1695
+ * @type {string}
1696
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-67619266
1697
+ */
1698
+ HTMLAnchorElement.prototype.charset;
1699
+
1700
+ /**
1701
+ * @type {string}
1702
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-92079539
1703
+ */
1704
+ HTMLAnchorElement.prototype.coords;
1705
+
1706
+ /**
1707
+ * @type {string}
1708
+ * @implicitCast
1709
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-88517319
1710
+ */
1711
+ HTMLAnchorElement.prototype.href;
1712
+
1713
+ /**
1714
+ * @type {string}
1715
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-87358513
1716
+ */
1717
+ HTMLAnchorElement.prototype.hreflang;
1718
+
1719
+ /**
1720
+ * @type {string}
1721
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-32783304
1722
+ */
1723
+ HTMLAnchorElement.prototype.name;
1724
+
1725
+ /**
1726
+ * @type {string}
1727
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-3815891
1728
+ */
1729
+ HTMLAnchorElement.prototype.rel;
1730
+
1731
+ /**
1732
+ * @type {string}
1733
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-58259771
1734
+ */
1735
+ HTMLAnchorElement.prototype.rev;
1736
+
1737
+ /**
1738
+ * @type {string}
1739
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-49899808
1740
+ */
1741
+ HTMLAnchorElement.prototype.shape;
1742
+
1743
+ /**
1744
+ * @type {number}
1745
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-41586466
1746
+ */
1747
+ HTMLAnchorElement.prototype.tabIndex;
1748
+
1749
+ /**
1750
+ * @type {string}
1751
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-6414197
1752
+ */
1753
+ HTMLAnchorElement.prototype.target;
1754
+
1755
+ /**
1756
+ * @type {string}
1757
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-63938221
1758
+ */
1759
+ HTMLAnchorElement.prototype.type;
1760
+
1761
+ /**
1762
+ * @return {undefined}
1763
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-65068939
1764
+ * @override
1765
+ */
1766
+ HTMLAnchorElement.prototype.blur = function() {};
1767
+
1768
+ /**
1769
+ * @return {undefined}
1770
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-47150313
1771
+ * @override
1772
+ */
1773
+ HTMLAnchorElement.prototype.focus = function() {};
1774
+
1775
+ /**
1776
+ * @type {string}
1777
+ * @implicitCast
1778
+ * @see https://wicg.github.io/attribution-reporting-api/#idl-index
1779
+ */
1780
+ HTMLAnchorElement.prototype.attributionSrc;
1781
+
1782
+ /**
1783
+ * @constructor
1784
+ * @extends {HTMLElement}
1785
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-17701901
1786
+ */
1787
+ function HTMLImageElement() {}
1788
+
1789
+ /**
1790
+ * @type {string}
1791
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-3211094
1792
+ */
1793
+ HTMLImageElement.prototype.align;
1794
+
1795
+ /**
1796
+ * @type {string}
1797
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-95636861
1798
+ */
1799
+ HTMLImageElement.prototype.alt;
1800
+
1801
+ /**
1802
+ * @type {string}
1803
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-136671
1804
+ */
1805
+ HTMLImageElement.prototype.border;
1806
+
1807
+ /**
1808
+ * @type {string}
1809
+ * @see https://developer.mozilla.org/docs/Web/API/HTMLImageElement/fetchPriority
1810
+ */
1811
+ HTMLImageElement.prototype.fetchPriority;
1812
+
1813
+ /**
1814
+ * @type {number}
1815
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-91561496
1816
+ */
1817
+ HTMLImageElement.prototype.height;
1818
+
1819
+ /**
1820
+ * @type {number}
1821
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-53675471
1822
+ */
1823
+ HTMLImageElement.prototype.hspace;
1824
+
1825
+ /**
1826
+ * @type {boolean}
1827
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-58983880
1828
+ */
1829
+ HTMLImageElement.prototype.isMap;
1830
+
1831
+ /**
1832
+ * @type {string}
1833
+ * @see https://html.spec.whatwg.org/multipage/embedded-content.html#dom-img-loading
1834
+ */
1835
+ HTMLImageElement.prototype.loading;
1836
+
1837
+ /**
1838
+ * @type {string}
1839
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-77376969
1840
+ */
1841
+ HTMLImageElement.prototype.longDesc;
1842
+
1843
+ /**
1844
+ * @type {string}
1845
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-91256910
1846
+ */
1847
+ HTMLImageElement.prototype.lowSrc;
1848
+
1849
+ /**
1850
+ * @type {string}
1851
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-47534097
1852
+ */
1853
+ HTMLImageElement.prototype.name;
1854
+
1855
+ /**
1856
+ * @type {string}
1857
+ * @implicitCast
1858
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-87762984
1859
+ */
1860
+ HTMLImageElement.prototype.src;
1861
+
1862
+ /**
1863
+ * @type {string}
1864
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-35981181
1865
+ */
1866
+ HTMLImageElement.prototype.useMap;
1867
+
1868
+ /**
1869
+ * @type {number}
1870
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-85374897
1871
+ */
1872
+ HTMLImageElement.prototype.vspace;
1873
+
1874
+ /**
1875
+ * @type {number}
1876
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-13839076
1877
+ */
1878
+ HTMLImageElement.prototype.width;
1879
+
1880
+ /**
1881
+ * @type {string}
1882
+ * @implicitCast
1883
+ * @see https://wicg.github.io/attribution-reporting-api/#idl-index
1884
+ */
1885
+ HTMLImageElement.prototype.attributionSrc;
1886
+
1887
+ /**
1888
+ * @constructor
1889
+ * @extends {HTMLElement}
1890
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-9893177
1891
+ */
1892
+ function HTMLObjectElement() {}
1893
+
1894
+ /**
1895
+ * @type {string}
1896
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-16962097
1897
+ */
1898
+ HTMLObjectElement.prototype.align;
1899
+
1900
+ /**
1901
+ * @type {string}
1902
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-47783837
1903
+ */
1904
+ HTMLObjectElement.prototype.archive;
1905
+
1906
+ /**
1907
+ * @type {string}
1908
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-82818419
1909
+ */
1910
+ HTMLObjectElement.prototype.border;
1911
+
1912
+ /**
1913
+ * @type {string}
1914
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-75241146
1915
+ */
1916
+ HTMLObjectElement.prototype.code;
1917
+
1918
+ /**
1919
+ * @type {string}
1920
+ * @implicitCast
1921
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-25709136
1922
+ */
1923
+ HTMLObjectElement.prototype.codeBase;
1924
+
1925
+ /**
1926
+ * @type {string}
1927
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-19945008
1928
+ */
1929
+ HTMLObjectElement.prototype.codeType;
1930
+
1931
+ /**
1932
+ * @type {Document}
1933
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-38538621
1934
+ */
1935
+ HTMLObjectElement.prototype.contentDocument;
1936
+
1937
+ /**
1938
+ * @type {string}
1939
+ * @implicitCast
1940
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-81766986
1941
+ */
1942
+ HTMLObjectElement.prototype.data;
1943
+
1944
+ /**
1945
+ * @type {boolean}
1946
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-942770
1947
+ */
1948
+ HTMLObjectElement.prototype.declare;
1949
+
1950
+ /**
1951
+ * @type {HTMLFormElement}
1952
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-46094773
1953
+ */
1954
+ HTMLObjectElement.prototype.form;
1955
+
1956
+ /**
1957
+ * @type {string}
1958
+ * @implicitCast
1959
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-88925838
1960
+ */
1961
+ HTMLObjectElement.prototype.height;
1962
+
1963
+ /**
1964
+ * @type {number}
1965
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-17085376
1966
+ */
1967
+ HTMLObjectElement.prototype.hspace;
1968
+
1969
+ /**
1970
+ * @type {string}
1971
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-20110362
1972
+ */
1973
+ HTMLObjectElement.prototype.name;
1974
+
1975
+ /**
1976
+ * @type {string}
1977
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-25039673
1978
+ */
1979
+ HTMLObjectElement.prototype.standby;
1980
+
1981
+ /**
1982
+ * @type {number}
1983
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-27083787
1984
+ */
1985
+ HTMLObjectElement.prototype.tabIndex;
1986
+
1987
+ /**
1988
+ * @type {string}
1989
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-91665621
1990
+ */
1991
+ HTMLObjectElement.prototype.type;
1992
+
1993
+ /**
1994
+ * @type {string}
1995
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-6649772
1996
+ */
1997
+ HTMLObjectElement.prototype.useMap;
1998
+
1999
+ /**
2000
+ * @type {number}
2001
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-8682483
2002
+ */
2003
+ HTMLObjectElement.prototype.vspace;
2004
+
2005
+ /**
2006
+ * @type {string}
2007
+ * @implicitCast
2008
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-38538620
2009
+ */
2010
+ HTMLObjectElement.prototype.width;
2011
+
2012
+ /**
2013
+ * @constructor
2014
+ * @extends {HTMLElement}
2015
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-64077273
2016
+ */
2017
+ function HTMLParamElement() {}
2018
+
2019
+ /**
2020
+ * @type {string}
2021
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-59871447
2022
+ */
2023
+ HTMLParamElement.prototype.name;
2024
+
2025
+ /**
2026
+ * @type {string}
2027
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-18179888
2028
+ */
2029
+ HTMLParamElement.prototype.type;
2030
+
2031
+ /**
2032
+ * @type {string}
2033
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-77971357
2034
+ */
2035
+ HTMLParamElement.prototype.value;
2036
+
2037
+ /**
2038
+ * @type {string}
2039
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-23931872
2040
+ */
2041
+ HTMLParamElement.prototype.valueType;
2042
+
2043
+ /**
2044
+ * @constructor
2045
+ * @extends {HTMLElement}
2046
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-31006348
2047
+ */
2048
+ function HTMLAppletElement() {}
2049
+
2050
+ /**
2051
+ * @type {string}
2052
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-8049912
2053
+ */
2054
+ HTMLAppletElement.prototype.align;
2055
+
2056
+ /**
2057
+ * @type {string}
2058
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-58610064
2059
+ */
2060
+ HTMLAppletElement.prototype.alt;
2061
+
2062
+ /**
2063
+ * @type {string}
2064
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-14476360
2065
+ */
2066
+ HTMLAppletElement.prototype.archive;
2067
+
2068
+ /**
2069
+ * @type {string}
2070
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-61509645
2071
+ */
2072
+ HTMLAppletElement.prototype.code;
2073
+
2074
+ /**
2075
+ * @type {string}
2076
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-6581160
2077
+ */
2078
+ HTMLAppletElement.prototype.codeBase;
2079
+
2080
+ /**
2081
+ * @type {string}
2082
+ * @implicitCast
2083
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-90184867
2084
+ */
2085
+ HTMLAppletElement.prototype.height;
2086
+
2087
+ /**
2088
+ * @type {number}
2089
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-1567197
2090
+ */
2091
+ HTMLAppletElement.prototype.hspace;
2092
+
2093
+ /**
2094
+ * @type {string}
2095
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-39843695
2096
+ */
2097
+ HTMLAppletElement.prototype.name;
2098
+
2099
+ /**
2100
+ * @type {string}
2101
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-93681523
2102
+ */
2103
+ HTMLAppletElement.prototype.object;
2104
+
2105
+ /**
2106
+ * @type {number}
2107
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-22637173
2108
+ */
2109
+ HTMLAppletElement.prototype.vspace;
2110
+
2111
+ /**
2112
+ * @type {string}
2113
+ * @implicitCast
2114
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-16526327
2115
+ */
2116
+ HTMLAppletElement.prototype.width;
2117
+
2118
+ /**
2119
+ * @constructor
2120
+ * @extends {HTMLElement}
2121
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-94109203
2122
+ */
2123
+ function HTMLMapElement() {}
2124
+
2125
+ /**
2126
+ * @type {HTMLCollection<!HTMLAreaElement>}
2127
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-71838730
2128
+ */
2129
+ HTMLMapElement.prototype.areas;
2130
+
2131
+ /**
2132
+ * @type {string}
2133
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-52696514
2134
+ */
2135
+ HTMLMapElement.prototype.name;
2136
+
2137
+ /**
2138
+ * @constructor
2139
+ * @extends {HTMLElement}
2140
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-26019118
2141
+ */
2142
+ function HTMLAreaElement() {}
2143
+
2144
+ /**
2145
+ * @type {string}
2146
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-57944457
2147
+ */
2148
+ HTMLAreaElement.prototype.accessKey;
2149
+
2150
+ /**
2151
+ * @type {string}
2152
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-39775416
2153
+ */
2154
+ HTMLAreaElement.prototype.alt;
2155
+
2156
+ /**
2157
+ * @type {string}
2158
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-66021476
2159
+ */
2160
+ HTMLAreaElement.prototype.coords;
2161
+
2162
+ /**
2163
+ * @type {string}
2164
+ * @implicitCast
2165
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-34672936
2166
+ */
2167
+ HTMLAreaElement.prototype.href;
2168
+
2169
+ /**
2170
+ * @type {boolean}
2171
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-61826871
2172
+ */
2173
+ HTMLAreaElement.prototype.noHref;
2174
+
2175
+ /**
2176
+ * @type {string}
2177
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-85683271
2178
+ */
2179
+ HTMLAreaElement.prototype.shape;
2180
+
2181
+ /**
2182
+ * @type {number}
2183
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-8722121
2184
+ */
2185
+ HTMLAreaElement.prototype.tabIndex;
2186
+
2187
+ /**
2188
+ * @type {string}
2189
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-46054682
2190
+ */
2191
+ HTMLAreaElement.prototype.target;
2192
+
2193
+ /**
2194
+ * @constructor
2195
+ * @extends {HTMLElement}
2196
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-81598695
2197
+ */
2198
+ function HTMLScriptElement() {}
2199
+
2200
+ /**
2201
+ * @type {string}
2202
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-35305677
2203
+ */
2204
+ HTMLScriptElement.prototype.charset;
2205
+
2206
+ /**
2207
+ * @type {boolean}
2208
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-93788534
2209
+ */
2210
+ HTMLScriptElement.prototype.defer;
2211
+
2212
+ /**
2213
+ * @type {string}
2214
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-56700403
2215
+ */
2216
+ HTMLScriptElement.prototype.event;
2217
+
2218
+ /**
2219
+ * @type {string}
2220
+ * @see https://developer.mozilla.org/docs/Web/API/HTMLScriptElement/fetchPriority
2221
+ */
2222
+ HTMLScriptElement.prototype.fetchPriority;
2223
+
2224
+ /**
2225
+ * @type {string}
2226
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-66979266
2227
+ */
2228
+ HTMLScriptElement.prototype.htmlFor;
2229
+
2230
+ /**
2231
+ * @type {?function(!Event)}
2232
+ */
2233
+ HTMLScriptElement.prototype.onreadystatechange;
2234
+
2235
+ /**
2236
+ * @type {string}
2237
+ * @implicitCast
2238
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-75147231
2239
+ */
2240
+ HTMLScriptElement.prototype.src;
2241
+
2242
+ /**
2243
+ * @type {string}
2244
+ * @implicitCast
2245
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-46872999
2246
+ */
2247
+ HTMLScriptElement.prototype.text;
2248
+
2249
+ /**
2250
+ * @type {string}
2251
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-30534818
2252
+ */
2253
+ HTMLScriptElement.prototype.type;
2254
+
2255
+ /**
2256
+ * @type {string}
2257
+ * @implicitCast
2258
+ * @see https://wicg.github.io/attribution-reporting-api/#idl-index
2259
+ */
2260
+ HTMLScriptElement.prototype.attributionSrc;
2261
+
2262
+ /**
2263
+ * @constructor
2264
+ * @extends {HTMLElement}
2265
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-64060425
2266
+ */
2267
+ function HTMLTableElement() {}
2268
+
2269
+ /**
2270
+ * @type {string}
2271
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-23180977
2272
+ */
2273
+ HTMLTableElement.prototype.align;
2274
+
2275
+ /**
2276
+ * @type {string}
2277
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-83532985
2278
+ */
2279
+ HTMLTableElement.prototype.bgColor;
2280
+
2281
+ /**
2282
+ * @type {string}
2283
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-50969400
2284
+ */
2285
+ HTMLTableElement.prototype.border;
2286
+
2287
+ /**
2288
+ * @type {HTMLTableCaptionElement}
2289
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-14594520
2290
+ */
2291
+ HTMLTableElement.prototype.caption;
2292
+
2293
+ /**
2294
+ * @type {string}
2295
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-59162158
2296
+ */
2297
+ HTMLTableElement.prototype.cellPadding;
2298
+
2299
+ /**
2300
+ * @type {string}
2301
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-68907883
2302
+ */
2303
+ HTMLTableElement.prototype.cellSpacing;
2304
+
2305
+ /**
2306
+ * @type {string}
2307
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-64808476
2308
+ */
2309
+ HTMLTableElement.prototype.frame;
2310
+
2311
+ /**
2312
+ * @type {HTMLCollection<!HTMLTableRowElement>}
2313
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-6156016
2314
+ */
2315
+ HTMLTableElement.prototype.rows;
2316
+
2317
+ /**
2318
+ * @type {string}
2319
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-26347553
2320
+ */
2321
+ HTMLTableElement.prototype.rules;
2322
+
2323
+ /**
2324
+ * @type {string}
2325
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-44998528
2326
+ */
2327
+ HTMLTableElement.prototype.summary;
2328
+
2329
+ /**
2330
+ * @type {HTMLCollection<!HTMLTableSectionElement>}
2331
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-63206416
2332
+ */
2333
+ HTMLTableElement.prototype.tBodies;
2334
+
2335
+ /**
2336
+ * @type {HTMLTableSectionElement}
2337
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-64197097
2338
+ */
2339
+ HTMLTableElement.prototype.tFoot;
2340
+
2341
+ /**
2342
+ * @type {HTMLTableSectionElement}
2343
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-9530944
2344
+ */
2345
+ HTMLTableElement.prototype.tHead;
2346
+
2347
+ /**
2348
+ * @type {string}
2349
+ * @implicitCast
2350
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-77447361
2351
+ */
2352
+ HTMLTableElement.prototype.width;
2353
+
2354
+ /**
2355
+ * @return {HTMLElement}
2356
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-96920263
2357
+ */
2358
+ HTMLTableElement.prototype.createCaption = function() {};
2359
+
2360
+ /**
2361
+ * @return {HTMLElement}
2362
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-8453710
2363
+ */
2364
+ HTMLTableElement.prototype.createTFoot = function() {};
2365
+
2366
+ /**
2367
+ * @return {HTMLElement}
2368
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-70313345
2369
+ */
2370
+ HTMLTableElement.prototype.createTHead = function() {};
2371
+
2372
+ /**
2373
+ * @return {undefined}
2374
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-22930071
2375
+ */
2376
+ HTMLTableElement.prototype.deleteCaption = function() {};
2377
+
2378
+ /**
2379
+ * @param {number} index
2380
+ * @return {HTMLElement}
2381
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-13114938
2382
+ */
2383
+ HTMLTableElement.prototype.deleteRow = function(index) {};
2384
+
2385
+ /**
2386
+ * @return {undefined}
2387
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-78363258
2388
+ */
2389
+ HTMLTableElement.prototype.deleteTFoot = function() {};
2390
+
2391
+ /**
2392
+ * @return {undefined}
2393
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-38310198
2394
+ */
2395
+ HTMLTableElement.prototype.deleteTHead = function() {};
2396
+
2397
+ /**
2398
+ * @param {number=} opt_index
2399
+ * @return {HTMLElement}
2400
+ * @see https://www.w3.org/TR/html5/tabular-data.html#htmltableelement
2401
+ */
2402
+ HTMLTableElement.prototype.insertRow = function(opt_index) {};
2403
+
2404
+ /**
2405
+ * @return {!HTMLTableSectionElement}
2406
+ * @see https://developer.mozilla.org/docs/Web/API/HTMLTableElement/createTBody
2407
+ */
2408
+ HTMLTableElement.prototype.createTBody = function() {};
2409
+
2410
+ /**
2411
+ * @constructor
2412
+ * @extends {HTMLElement}
2413
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-12035137
2414
+ */
2415
+ function HTMLTableCaptionElement() {}
2416
+
2417
+ /**
2418
+ * @type {string}
2419
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-79875068
2420
+ */
2421
+ HTMLTableCaptionElement.prototype.align;
2422
+
2423
+ /**
2424
+ * @constructor
2425
+ * @extends {HTMLElement}
2426
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-84150186
2427
+ */
2428
+ function HTMLTableColElement() {}
2429
+
2430
+ /**
2431
+ * @type {string}
2432
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-31128447
2433
+ */
2434
+ HTMLTableColElement.prototype.align;
2435
+
2436
+ /**
2437
+ * @type {string}
2438
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-9447412
2439
+ */
2440
+ HTMLTableColElement.prototype.ch;
2441
+
2442
+ /**
2443
+ * @type {string}
2444
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-57779225
2445
+ */
2446
+ HTMLTableColElement.prototype.chOff;
2447
+
2448
+ /**
2449
+ * @type {number}
2450
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-96511335
2451
+ */
2452
+ HTMLTableColElement.prototype.span;
2453
+
2454
+ /**
2455
+ * @type {string}
2456
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-83291710
2457
+ */
2458
+ HTMLTableColElement.prototype.vAlign;
2459
+
2460
+ /**
2461
+ * @type {string}
2462
+ * @implicitCast
2463
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-25196799
2464
+ */
2465
+ HTMLTableColElement.prototype.width;
2466
+
2467
+ /**
2468
+ * @constructor
2469
+ * @extends {HTMLElement}
2470
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-67417573
2471
+ */
2472
+ function HTMLTableSectionElement() {}
2473
+
2474
+ /**
2475
+ * @type {string}
2476
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-40530119
2477
+ */
2478
+ HTMLTableSectionElement.prototype.align;
2479
+
2480
+ /**
2481
+ * @type {string}
2482
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-83470012
2483
+ */
2484
+ HTMLTableSectionElement.prototype.ch;
2485
+
2486
+ /**
2487
+ * @type {string}
2488
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-53459732
2489
+ */
2490
+ HTMLTableSectionElement.prototype.chOff;
2491
+
2492
+ /**
2493
+ * @type {HTMLCollection<!HTMLTableRowElement>}
2494
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-52092650
2495
+ */
2496
+ HTMLTableSectionElement.prototype.rows;
2497
+
2498
+ /**
2499
+ * @type {string}
2500
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-4379116
2501
+ */
2502
+ HTMLTableSectionElement.prototype.vAlign;
2503
+
2504
+ /**
2505
+ * @param {number} index
2506
+ * @return {HTMLElement}
2507
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-5625626
2508
+ */
2509
+ HTMLTableSectionElement.prototype.deleteRow = function(index) {};
2510
+
2511
+ /**
2512
+ * @param {number=} opt_index
2513
+ * @return {HTMLElement}
2514
+ * @see https://www.w3.org/TR/html5/tabular-data.html#htmltablesectionelement
2515
+ */
2516
+ HTMLTableSectionElement.prototype.insertRow = function(opt_index) {};
2517
+
2518
+ /**
2519
+ * @constructor
2520
+ * @extends {HTMLElement}
2521
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-6986576
2522
+ */
2523
+ function HTMLTableRowElement() {}
2524
+
2525
+ /**
2526
+ * @type {string}
2527
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-74098257
2528
+ */
2529
+ HTMLTableRowElement.prototype.align;
2530
+
2531
+ /**
2532
+ * @type {string}
2533
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-18161327
2534
+ */
2535
+ HTMLTableRowElement.prototype.bgColor;
2536
+
2537
+ /**
2538
+ * @type {HTMLCollection<!HTMLTableCellElement>}
2539
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-67349879
2540
+ */
2541
+ HTMLTableRowElement.prototype.cells;
2542
+
2543
+ /**
2544
+ * @type {string}
2545
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-16230502
2546
+ */
2547
+ HTMLTableRowElement.prototype.ch;
2548
+
2549
+ /**
2550
+ * @type {string}
2551
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-68207461
2552
+ */
2553
+ HTMLTableRowElement.prototype.chOff;
2554
+
2555
+ /**
2556
+ * @type {number}
2557
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-67347567
2558
+ */
2559
+ HTMLTableRowElement.prototype.rowIndex;
2560
+
2561
+ /**
2562
+ * @type {number}
2563
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-79105901
2564
+ */
2565
+ HTMLTableRowElement.prototype.sectionRowIndex;
2566
+
2567
+ /**
2568
+ * @type {string}
2569
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-90000058
2570
+ */
2571
+ HTMLTableRowElement.prototype.vAlign;
2572
+
2573
+ /**
2574
+ * @param {number} index
2575
+ * @return {undefined}
2576
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-11738598
2577
+ */
2578
+ HTMLTableRowElement.prototype.deleteCell = function(index) {};
2579
+
2580
+ /**
2581
+ * @param {number} index
2582
+ * @return {!HTMLElement}
2583
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-68927016
2584
+ */
2585
+ HTMLTableRowElement.prototype.insertCell = function(index) {};
2586
+
2587
+ /**
2588
+ * @constructor
2589
+ * @extends {HTMLElement}
2590
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-82915075
2591
+ */
2592
+ function HTMLTableCellElement() {}
2593
+
2594
+ /**
2595
+ * @type {string}
2596
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-74444037
2597
+ */
2598
+ HTMLTableCellElement.prototype.abbr;
2599
+
2600
+ /**
2601
+ * @type {string}
2602
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-98433879
2603
+ */
2604
+ HTMLTableCellElement.prototype.align;
2605
+
2606
+ /**
2607
+ * @type {string}
2608
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-76554418
2609
+ */
2610
+ HTMLTableCellElement.prototype.axis;
2611
+
2612
+ /**
2613
+ * @type {string}
2614
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-88135431
2615
+ */
2616
+ HTMLTableCellElement.prototype.bgColor;
2617
+
2618
+ /**
2619
+ * @type {number}
2620
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-80748363
2621
+ */
2622
+ HTMLTableCellElement.prototype.cellIndex;
2623
+
2624
+ /**
2625
+ * @type {string}
2626
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-30914780
2627
+ */
2628
+ HTMLTableCellElement.prototype.ch;
2629
+
2630
+ /**
2631
+ * @type {string}
2632
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-20144310
2633
+ */
2634
+ HTMLTableCellElement.prototype.chOff;
2635
+
2636
+ /**
2637
+ * @type {number}
2638
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-84645244
2639
+ */
2640
+ HTMLTableCellElement.prototype.colSpan;
2641
+
2642
+ /**
2643
+ * @type {string}
2644
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-89104817
2645
+ */
2646
+ HTMLTableCellElement.prototype.headers;
2647
+
2648
+ /**
2649
+ * @type {string}
2650
+ * @implicitCast
2651
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-83679212
2652
+ */
2653
+ HTMLTableCellElement.prototype.height;
2654
+
2655
+ /**
2656
+ * @type {boolean}
2657
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-62922045
2658
+ */
2659
+ HTMLTableCellElement.prototype.noWrap;
2660
+
2661
+ /**
2662
+ * @type {number}
2663
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-48237625
2664
+ */
2665
+ HTMLTableCellElement.prototype.rowSpan;
2666
+
2667
+ /**
2668
+ * @type {string}
2669
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-36139952
2670
+ */
2671
+ HTMLTableCellElement.prototype.scope;
2672
+
2673
+ /**
2674
+ * @type {string}
2675
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-58284221
2676
+ */
2677
+ HTMLTableCellElement.prototype.vAlign;
2678
+
2679
+ /**
2680
+ * @type {string}
2681
+ * @implicitCast
2682
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-27480795
2683
+ */
2684
+ HTMLTableCellElement.prototype.width;
2685
+
2686
+ /**
2687
+ * @constructor
2688
+ * @extends {HTMLElement}
2689
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-43829095
2690
+ */
2691
+ function HTMLFrameSetElement() {}
2692
+
2693
+ /**
2694
+ * @type {string}
2695
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-98869594
2696
+ */
2697
+ HTMLFrameSetElement.prototype.cols;
2698
+
2699
+ /**
2700
+ * @type {string}
2701
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-19739247
2702
+ */
2703
+ HTMLFrameSetElement.prototype.rows;
2704
+
2705
+ /**
2706
+ * @constructor
2707
+ * @extends {HTMLElement}
2708
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-97790553
2709
+ */
2710
+ function HTMLFrameElement() {}
2711
+
2712
+ /**
2713
+ * @type {Document}
2714
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-78799536
2715
+ */
2716
+ HTMLFrameElement.prototype.contentDocument;
2717
+
2718
+ /**
2719
+ * @type {string}
2720
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-11858633
2721
+ */
2722
+ HTMLFrameElement.prototype.frameBorder;
2723
+
2724
+ /**
2725
+ * @type {string}
2726
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-7836998
2727
+ */
2728
+ HTMLFrameElement.prototype.longDesc;
2729
+
2730
+ /**
2731
+ * @type {string}
2732
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-55569778
2733
+ */
2734
+ HTMLFrameElement.prototype.marginHeight;
2735
+
2736
+ /**
2737
+ * @type {string}
2738
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-8369969
2739
+ */
2740
+ HTMLFrameElement.prototype.marginWidth;
2741
+
2742
+ /**
2743
+ * @type {string}
2744
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-91128709
2745
+ */
2746
+ HTMLFrameElement.prototype.name;
2747
+
2748
+ /**
2749
+ * @type {boolean}
2750
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-80766578
2751
+ */
2752
+ HTMLFrameElement.prototype.noResize;
2753
+
2754
+ /**
2755
+ * @type {string}
2756
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-45411424
2757
+ */
2758
+ HTMLFrameElement.prototype.scrolling;
2759
+
2760
+ /**
2761
+ * @type {string}
2762
+ * @implicitCast
2763
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-78799535
2764
+ */
2765
+ HTMLFrameElement.prototype.src;
2766
+
2767
+ /**
2768
+ * @constructor
2769
+ * @extends {HTMLElement}
2770
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-50708718
2771
+ */
2772
+ function HTMLIFrameElement() {}
2773
+
2774
+ /**
2775
+ * @type {string}
2776
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-11309947
2777
+ */
2778
+ HTMLIFrameElement.prototype.align;
2779
+
2780
+ /**
2781
+ * @type {Document}
2782
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-67133006
2783
+ */
2784
+ HTMLIFrameElement.prototype.contentDocument;
2785
+
2786
+ /**
2787
+ * @type {string}
2788
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-22463410
2789
+ */
2790
+ HTMLIFrameElement.prototype.frameBorder;
2791
+
2792
+ /**
2793
+ * @type {string}
2794
+ * @implicitCast
2795
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-1678118
2796
+ */
2797
+ HTMLIFrameElement.prototype.height;
2798
+
2799
+ /**
2800
+ * @type {string}
2801
+ * @see https://html.spec.whatwg.org/multipage/iframe-embed-object.html#dom-iframe-loading
2802
+ */
2803
+ HTMLIFrameElement.prototype.loading;
2804
+
2805
+ /**
2806
+ * @type {string}
2807
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-70472105
2808
+ */
2809
+ HTMLIFrameElement.prototype.longDesc;
2810
+
2811
+ /**
2812
+ * @type {string}
2813
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-91371294
2814
+ */
2815
+ HTMLIFrameElement.prototype.marginHeight;
2816
+
2817
+ /**
2818
+ * @type {string}
2819
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-66486595
2820
+ */
2821
+ HTMLIFrameElement.prototype.marginWidth;
2822
+
2823
+ /**
2824
+ * @type {string}
2825
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-96819659
2826
+ */
2827
+ HTMLIFrameElement.prototype.name;
2828
+
2829
+ /**
2830
+ * @type {string}
2831
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-36369822
2832
+ */
2833
+ HTMLIFrameElement.prototype.scrolling;
2834
+
2835
+ /**
2836
+ * @type {string}
2837
+ * @implicitCast
2838
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-43933957
2839
+ */
2840
+ HTMLIFrameElement.prototype.src;
2841
+
2842
+ /**
2843
+ * @type {string}
2844
+ * @implicitCast
2845
+ * @see http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510/html.html#ID-67133005
2846
+ */
2847
+ HTMLIFrameElement.prototype.width;
2848
+
2849
+ /**
2850
+ * @const {number}
2851
+ * @see http://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-258A00AF
2852
+ */
2853
+ DOMException.INVALID_STATE_ERR;
2854
+
2855
+ /**
2856
+ * @const {number}
2857
+ * @see http://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-258A00AF
2858
+ */
2859
+ DOMException.SYNTAX_ERR;
2860
+
2861
+ /**
2862
+ * @const {number}
2863
+ * @see http://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-258A00AF
2864
+ */
2865
+ DOMException.INVALID_MODIFICATION_ERR;
2866
+
2867
+ /**
2868
+ * @const {number}
2869
+ * @see http://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-258A00AF
2870
+ */
2871
+ DOMException.NAMESPACE_ERR;
2872
+
2873
+ /**
2874
+ * @const {number}
2875
+ * @see http://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-258A00AF
2876
+ */
2877
+ DOMException.INVALID_ACCESS_ERR;
2878
+ /**
2879
+ * @type {boolean}
2880
+ * @see https://developer.mozilla.org/en/DOM/window.closed
2881
+ */
2882
+ Window.prototype.closed;
2883
+
2884
+ /**
2885
+ * @type {HTMLObjectElement|HTMLIFrameElement|null}
2886
+ * @see https://developer.mozilla.org/en/DOM/window.frameElement
2887
+ */
2888
+ Window.prototype.frameElement;
2889
+
2890
+ /**
2891
+ * Allows lookup of frames by index or by name.
2892
+ * @type {!Window}
2893
+ * @see https://developer.mozilla.org/en/DOM/window.frames
2894
+ */
2895
+ Window.prototype.frames;
2896
+
2897
+ /**
2898
+ * @type {!History}
2899
+ * @suppress {duplicate}
2900
+ * @see https://developer.mozilla.org/en/DOM/window.history
2901
+ */
2902
+ var history;
2903
+
2904
+ /**
2905
+ * @type {!History}
2906
+ * @see https://developer.mozilla.org/en/DOM/window.history
2907
+ */
2908
+ Window.prototype.history;
2909
+
2910
+ /**
2911
+ * Returns the number of frames (either frame or iframe elements) in the
2912
+ * window.
2913
+ *
2914
+ * @type {number}
2915
+ * @see https://developer.mozilla.org/en/DOM/window.length
2916
+ */
2917
+ Window.prototype.length;
2918
+
2919
+ /**
2920
+ * Location has an exception in the DeclaredGlobalExternsOnWindow pass
2921
+ * so we have to manually include it:
2922
+ * https://github.com/google/closure-compiler/blob/master/src/com/google/javascript/jscomp/DeclaredGlobalExternsOnWindow.java#L116
2923
+ *
2924
+ * @type {!Location}
2925
+ * @implicitCast
2926
+ * @see https://developer.mozilla.org/en/DOM/window.location
2927
+ */
2928
+ Window.prototype.location;
2929
+
2930
+ /**
2931
+
2932
+ * @type {string}
2933
+ * @see https://developer.mozilla.org/en/DOM/window.name
2934
+ */
2935
+ Window.prototype.name;
2936
+
2937
+ /**
2938
+ * @type {!Navigator}
2939
+ * @see https://developer.mozilla.org/en/DOM/window.navigator
2940
+ */
2941
+ Window.prototype.navigator;
2942
+
2943
+ /**
2944
+ * @type {?Window}
2945
+ * @see https://developer.mozilla.org/en/DOM/window.opener
2946
+ */
2947
+ Window.prototype.opener;
2948
+
2949
+ /**
2950
+ * @type {!Window}
2951
+ * @see https://developer.mozilla.org/en/DOM/window.parent
2952
+ */
2953
+ Window.prototype.parent;
2954
+
2955
+ /**
2956
+ * @type {!Window}
2957
+ * @see https://developer.mozilla.org/en/DOM/window.self
2958
+ */
2959
+ Window.prototype.self;
2960
+
2961
+ /**
2962
+ * @type {?string}
2963
+ * @see https://developer.mozilla.org/en/DOM/window.status
2964
+ */
2965
+ Window.prototype.status;
2966
+
2967
+ /**
2968
+ * @interface
2969
+ * @see https://html.spec.whatwg.org/multipage/window-object.html#the-status-bar-barprop-object
2970
+ */
2971
+ function BarProp() {}
2972
+
2973
+ /** @const {boolean} */
2974
+ BarProp.prototype.visible;
2975
+
2976
+ /**
2977
+ * @type {!BarProp}
2978
+ * @see https://developer.mozilla.org/en/DOM/window.locationbar
2979
+ */
2980
+ Window.prototype.locationbar;
2981
+
2982
+ /**
2983
+ * @type {!BarProp}
2984
+ * @see https://developer.mozilla.org/en/DOM/window.menubar
2985
+ */
2986
+ Window.prototype.menubar;
2987
+
2988
+ /**
2989
+ * @type {!BarProp}
2990
+ * @see https://developer.mozilla.org/en/DOM/window.personalbar
2991
+ */
2992
+ Window.prototype.personalbar;
2993
+
2994
+
2995
+ /**
2996
+ * @type {!BarProp}
2997
+ * @see https://developer.mozilla.org/en/DOM/window.scrollbars
2998
+ */
2999
+ Window.prototype.scrollbars;
3000
+
3001
+ /**
3002
+ * @type {!BarProp}
3003
+ * @see https://developer.mozilla.org/en/DOM/window.statusbar
3004
+ */
3005
+ Window.prototype.statusbar;
3006
+
3007
+ /**
3008
+ * @type {!BarProp}
3009
+ * @see https://developer.mozilla.org/en/DOM/window.toolbar
3010
+ */
3011
+ Window.prototype.toolbar;
3012
+
3013
+ /**
3014
+ * @type {!Window}
3015
+ * @see https://developer.mozilla.org/en/DOM/window.self
3016
+ */
3017
+ Window.prototype.top;
3018
+
3019
+ /**
3020
+ * @type {!Window}
3021
+ * @see https://developer.mozilla.org/en/DOM/window.self
3022
+ */
3023
+ Window.prototype.window;
3024
+
3025
+ /**
3026
+ * @param {*} message
3027
+ * @see https://developer.mozilla.org/en/DOM/window.alert
3028
+ * @return {undefined}
3029
+ */
3030
+ Window.prototype.alert = function(message) {};
3031
+
3032
+ /**
3033
+ * @param {*} message
3034
+ * @return {boolean}
3035
+ * @see https://developer.mozilla.org/en/DOM/window.confirm
3036
+ */
3037
+ Window.prototype.confirm = function(message) {};
3038
+
3039
+ /**
3040
+ * @param {string} message
3041
+ * @param {string=} value
3042
+ * @return {?string}
3043
+ * @see https://developer.mozilla.org/en/DOM/window.prompt
3044
+ */
3045
+ Window.prototype.prompt = function(message, value) {};
3046
+
3047
+ /**
3048
+ * @see https://developer.mozilla.org/en/DOM/window.blur
3049
+ * @return {undefined}
3050
+ */
3051
+ Window.prototype.blur = function() {};
3052
+
3053
+ /**
3054
+ * @see https://developer.mozilla.org/en/DOM/window.close
3055
+ * @return {undefined}
3056
+ */
3057
+ Window.prototype.close = function() {};
3058
+
3059
+ /**
3060
+ * @see https://developer.mozilla.org/en/DOM/window.focus
3061
+ * @return {undefined}
3062
+ */
3063
+ Window.prototype.focus = function() {};
3064
+
3065
+ /**
3066
+ * @see https://developer.mozilla.org/en-US/docs/Web/API/Window/print
3067
+ * @return {undefined}
3068
+ */
3069
+ Window.prototype.print = function() {};
3070
+
3071
+ /**
3072
+ * @see https://developer.mozilla.org/en-US/docs/Web/API/Window/stop
3073
+ * @return {undefined}
3074
+ */
3075
+ Window.prototype.stop = function() {};
3076
+
3077
+ /** @typedef {boolean|!AttributionSourceParams} */
3078
+ var BoolOrAttributionSourceParams;
3079
+
3080
+ /**
3081
+ * @param {!URL|string=} url
3082
+ * @param {string=} windowName
3083
+ * @param {string=} windowFeatures
3084
+ * @param {!BoolOrAttributionSourceParams=} replaceOrAttributionParams
3085
+ * @return {Window}
3086
+ * @see https://github.com/WICG/conversion-measurement-api
3087
+ * @see http://msdn.microsoft.com/en-us/library/ms536651(VS.85).aspx
3088
+ */
3089
+ Window.prototype.open = function(
3090
+ url, windowName, windowFeatures, replaceOrAttributionParams) {};
3091
+
3092
+ /**
3093
+ * @type {string}
3094
+ * @see https://developer.mozilla.org/en-US/docs/Web/API/Element/innerHTML
3095
+ * @implicitCast
3096
+ */
3097
+ Element.prototype.innerHTML;
3098
+
3099
+ /**
3100
+ * @type {string}
3101
+ * @implicitCast
3102
+ * @see https://w3c.github.io/DOM-Parsing/#extensions-to-the-element-interface
3103
+ */
3104
+ Element.prototype.outerHTML;
3105
+
3106
+ /**
3107
+ * AttributionSourceParams is a dictionary which contains the same attributes
3108
+ * used by attribution source anchor tags as seen in the link below.
3109
+ * NOTE: Ideally this record would be defined in a separate file, because this
3110
+ * API is not official yet, however, part of the proposed change is a
3111
+ * modification to the `Window.prototype.open` method to allow it to accept one
3112
+ * of these objects.
3113
+ * @record
3114
+ * @see https://github.com/WICG/conversion-measurement-api/tree/main#registering-attribution-sources-for-windowopen-navigations
3115
+ */
3116
+ function AttributionSourceParams() {}
3117
+
3118
+ /**
3119
+ * A DOMString encoding a 64-bit unsigned integer which represents the
3120
+ * event-level data associated with this source. This will be limited to 64 bits
3121
+ * of information but the value can vary for browsers that want a higher level
3122
+ * of privacy.
3123
+ * @type {string}
3124
+ * @see https://github.com/WICG/conversion-measurement-api/tree/main#registering-attribution-sources-for-windowopen-navigations
3125
+ */
3126
+ AttributionSourceParams.prototype.attributionSourceEventId;
3127
+
3128
+ /**
3129
+ * An origin whose eTLD+1 is where attribution will be triggered for this
3130
+ * source.
3131
+ * @type {string}
3132
+ * @see https://github.com/WICG/conversion-measurement-api/tree/main#registering-attribution-sources-for-windowopen-navigations
3133
+ */
3134
+ AttributionSourceParams.prototype.attributionDestination;
3135
+
3136
+ /**
3137
+ * The desired endpoint that the attribution report for this source should go
3138
+ * to. Default is the top level origin of the page.
3139
+ * @type {string|undefined}
3140
+ * @see https://github.com/WICG/conversion-measurement-api/tree/main#registering-attribution-sources-for-windowopen-navigations
3141
+ */
3142
+ AttributionSourceParams.prototype.attributionReportTo;
3143
+
3144
+ /**
3145
+ * Expiry in milliseconds for when the source should be deleted. Default is 30
3146
+ * days, with a maximum value of 30 days. The maximum expiry can also vary
3147
+ * between browsers.
3148
+ * @type {number|undefined}
3149
+ * @see https://github.com/WICG/conversion-measurement-api/tree/main#registering-attribution-sources-for-windowopen-navigations
3150
+ */
3151
+ AttributionSourceParams.prototype.attributionExpiry;