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,1232 @@
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 all the extensions over the
19
+ * W3C's DOM specification by IE in JScript. This file depends on
20
+ * w3c_dom2.js. The whole file has NOT been fully type annotated.
21
+ *
22
+ * When a non-standard extension appears in both Gecko and IE, we put
23
+ * it in gecko_dom.js
24
+ *
25
+ * @externs
26
+ * @author stevey@google.com (Steve Yegge)
27
+ */
28
+
29
+ // TODO(nicksantos): Rewrite all the DOM interfaces as interfaces, instead
30
+ // of kludging them as an inheritance hierarchy.
31
+
32
+ /**
33
+ * @constructor
34
+ * @extends {Document}
35
+ * @see http://msdn.microsoft.com/en-us/library/ms757878(VS.85).aspx
36
+ */
37
+ function XMLDOMDocument() {}
38
+
39
+ /**
40
+ * @type {boolean}
41
+ * @see http://msdn.microsoft.com/en-us/library/ms761398(VS.85).aspx
42
+ */
43
+ XMLDOMDocument.prototype.async;
44
+
45
+ /**
46
+ * @type {!Function}
47
+ * @see http://msdn.microsoft.com/en-us/library/ms762647(VS.85).aspx
48
+ */
49
+ XMLDOMDocument.prototype.ondataavailable;
50
+
51
+ /**
52
+ * @type {!Function}
53
+ * @see http://msdn.microsoft.com/en-us/library/ms764640(VS.85).aspx
54
+ */
55
+ XMLDOMDocument.prototype.onreadystatechange;
56
+
57
+ /**
58
+ * @type {!Function}
59
+ * @see http://msdn.microsoft.com/en-us/library/ms753795(VS.85).aspx
60
+ */
61
+ XMLDOMDocument.prototype.ontransformnode;
62
+
63
+ /**
64
+ * @type {Object}
65
+ * @see http://msdn.microsoft.com/en-us/library/ms756041(VS.85).aspx
66
+ */
67
+ XMLDOMDocument.prototype.parseError;
68
+
69
+ /**
70
+ * @type {boolean}
71
+ * @see http://msdn.microsoft.com/en-us/library/ms761353(VS.85).aspx
72
+ */
73
+ XMLDOMDocument.prototype.preserveWhiteSpace;
74
+
75
+ /**
76
+ * @type {number}
77
+ * @see http://msdn.microsoft.com/en-us/library/ms753702(VS.85).aspx
78
+ */
79
+ XMLDOMDocument.prototype.readyState;
80
+
81
+ /**
82
+ * @see http://msdn.microsoft.com/en-us/library/ms762283(VS.85).aspx
83
+ * @type {boolean}
84
+ */
85
+ XMLDOMDocument.prototype.resolveExternals;
86
+
87
+ /**
88
+ * @see http://msdn.microsoft.com/en-us/library/ms760290(v=vs.85).aspx
89
+ * @param {string} name
90
+ * @param {*} value
91
+ * @return {undefined}
92
+ */
93
+ XMLDOMDocument.prototype.setProperty = function(name, value) {};
94
+
95
+ /**
96
+ * @type {string}
97
+ * @see http://msdn.microsoft.com/en-us/library/ms767669(VS.85).aspx
98
+ */
99
+ XMLDOMDocument.prototype.url;
100
+
101
+ /**
102
+ * @type {boolean}
103
+ * @see http://msdn.microsoft.com/en-us/library/ms762791(VS.85).aspx
104
+ */
105
+ XMLDOMDocument.prototype.validateOnParse;
106
+
107
+ /**
108
+ * @see http://msdn.microsoft.com/en-us/library/ms763830(VS.85).aspx
109
+ * @return {undefined}
110
+ */
111
+ XMLDOMDocument.prototype.abort = function() {};
112
+
113
+ /**
114
+ * @param {*} type
115
+ * @param {string} name
116
+ * @param {string} namespaceURI
117
+ * @return {Node}
118
+ * @see http://msdn.microsoft.com/en-us/library/ms757901(VS.85).aspx
119
+ * @nosideeffects
120
+ */
121
+ XMLDOMDocument.prototype.createNode = function(type, name, namespaceURI) {};
122
+
123
+ /**
124
+ * @param {string} xmlString
125
+ * @return {boolean}
126
+ * @see http://msdn.microsoft.com/en-us/library/ms754585(VS.85).aspx
127
+ * @override
128
+ */
129
+ XMLDOMDocument.prototype.loadXML = function(xmlString) {};
130
+
131
+ /**
132
+ * @param {string} id
133
+ * @return {Node}
134
+ * @see http://msdn.microsoft.com/en-us/library/ms766397(VS.85).aspx
135
+ */
136
+ XMLDOMDocument.prototype.nodeFromID = function(id) {};
137
+
138
+ //==============================================================================
139
+ // XMLNode methods and properties
140
+ // In a real DOM hierarchy, XMLDOMDocument inherits from XMLNode and Document.
141
+ // Since we can't express that in our type system, we put XMLNode properties
142
+ // on Node.
143
+
144
+ /**
145
+ * @type {string}
146
+ * @see http://msdn.microsoft.com/en-us/library/ms767570(VS.85).aspx
147
+ */
148
+ Node.prototype.baseName;
149
+
150
+ /**
151
+ * @type {?string}
152
+ * @see http://msdn.microsoft.com/en-us/library/ms762763(VS.85).aspx
153
+ */
154
+ Node.prototype.dataType;
155
+
156
+ /**
157
+ * @type {Node}
158
+ * @see http://msdn.microsoft.com/en-us/library/ms764733(VS.85).aspx
159
+ */
160
+ Node.prototype.definition;
161
+
162
+ /**
163
+ * IE5 used document instead of ownerDocument.
164
+ * Old versions of WebKit used document instead of contentDocument.
165
+ * @type {Document}
166
+ */
167
+ Node.prototype.document;
168
+
169
+
170
+ /**
171
+ * Inserts the given HTML text into the element at the location.
172
+ * @param {string} sWhere Where to insert the HTML text, one of 'beforeBegin',
173
+ * 'afterBegin', 'beforeEnd', 'afterEnd'.
174
+ * @param {!TrustedHTML|string} sText HTML text to insert.
175
+ * @see http://msdn.microsoft.com/en-us/library/ms536452(VS.85).aspx
176
+ * @return {undefined}
177
+ */
178
+ Node.prototype.insertAdjacentHTML = function(sWhere, sText) {};
179
+
180
+ /**
181
+ * @type {*}
182
+ * @see http://msdn.microsoft.com/en-us/library/ms762308(VS.85).aspx
183
+ */
184
+ Node.prototype.nodeTypedValue;
185
+
186
+ /**
187
+ * @type {string}
188
+ * @see http://msdn.microsoft.com/en-us/library/ms757895(VS.85).aspx
189
+ */
190
+ Node.prototype.nodeTypeString;
191
+
192
+ /**
193
+ * @type {boolean}
194
+ * @see http://msdn.microsoft.com/en-us/library/ms762237(VS.85).aspx
195
+ */
196
+ Node.prototype.parsed;
197
+
198
+ /**
199
+ * @type {boolean}
200
+ * @see http://msdn.microsoft.com/en-us/library/ms753816(VS.85).aspx
201
+ */
202
+ Node.prototype.specified;
203
+
204
+ /**
205
+ * @type {string}
206
+ * @see http://msdn.microsoft.com/en-us/library/ms762687(VS.85).aspx
207
+ */
208
+ Node.prototype.text;
209
+
210
+ /**
211
+ * @type {string}
212
+ * @see http://msdn.microsoft.com/en-us/library/ms755989(VS.85).aspx
213
+ */
214
+ Node.prototype.xml;
215
+
216
+ /**
217
+ * @param {string} expression An XPath expression.
218
+ * @return {!NodeList<!Node>}
219
+ * @see http://msdn.microsoft.com/en-us/library/ms754523(VS.85).aspx
220
+ * @nosideeffects
221
+ */
222
+ Node.prototype.selectNodes = function(expression) {};
223
+
224
+ /**
225
+ * @param {string} expression An XPath expression.
226
+ * @return {Node}
227
+ * @see http://msdn.microsoft.com/en-us/library/ms757846(VS.85).aspx
228
+ * @nosideeffects
229
+ */
230
+ Node.prototype.selectSingleNode = function(expression) {};
231
+
232
+ /**
233
+ * @param {Node} stylesheet XSLT stylesheet.
234
+ * @return {string}
235
+ * @see http://msdn.microsoft.com/en-us/library/ms761399(VS.85).aspx
236
+ * @nosideeffects
237
+ */
238
+ Node.prototype.transformNode = function(stylesheet) {};
239
+
240
+ /**
241
+ * @param {Node} stylesheet XSLT stylesheet.
242
+ * @param {Object} outputObject
243
+ * @see http://msdn.microsoft.com/en-us/library/ms766561(VS.85).aspx
244
+ * @return {Object}
245
+ */
246
+ Node.prototype.transformNodeToObject =
247
+ function(stylesheet, outputObject) {};
248
+
249
+ //==============================================================================
250
+ // Node methods
251
+
252
+ /**
253
+ * @param {boolean=} opt_bRemoveChildren Whether to remove the entire sub-tree.
254
+ * Defaults to false.
255
+ * @return {Node} The object that was removed.
256
+ * @see http://msdn.microsoft.com/en-us/library/ms536708(VS.85).aspx
257
+ */
258
+ Node.prototype.removeNode = function(opt_bRemoveChildren) {};
259
+
260
+ /**
261
+ * @constructor
262
+ */
263
+ function ClipboardData() {}
264
+
265
+ /**
266
+ * @see http://msdn.microsoft.com/en-us/library/ms535220(VS.85).aspx
267
+ * @param {string=} opt_type Type of clipboard data to clear. 'Text' or
268
+ * 'URL' or 'File' or 'HTML' or 'Image'.
269
+ * @return {undefined}
270
+ */
271
+ ClipboardData.prototype.clearData = function(opt_type) {};
272
+
273
+ /**
274
+ * @see http://msdn.microsoft.com/en-us/library/ms535220(VS.85).aspx
275
+ * @param {string} type Type of clipboard data to set ('Text' or 'URL').
276
+ * @param {string} data Data to set
277
+ * @return {boolean} Whether the data were set correctly.
278
+ */
279
+ ClipboardData.prototype.setData = function(type, data) {};
280
+
281
+ /**
282
+ * @see http://msdn.microsoft.com/en-us/library/ms535220(VS.85).aspx
283
+ * @param {string} type Type of clipboard data to get ('Text' or 'URL').
284
+ * @return {string} The current data
285
+ */
286
+ ClipboardData.prototype.getData = function(type) { };
287
+
288
+ /**
289
+ * @see http://msdn.microsoft.com/en-us/library/ms535220(VS.85).aspx
290
+ * @type {ClipboardData}
291
+ */
292
+ Window.prototype.clipboardData;
293
+
294
+ /**
295
+ * @see http://msdn.microsoft.com/en-us/library/ms533724(VS.85).aspx
296
+ */
297
+ Window.prototype.dialogHeight;
298
+
299
+ /**
300
+ * @see http://msdn.microsoft.com/en-us/library/ms533725(VS.85).aspx
301
+ */
302
+ Window.prototype.dialogLeft;
303
+
304
+ /**
305
+ * @see http://msdn.microsoft.com/en-us/library/ms533726(VS.85).aspx
306
+ */
307
+ Window.prototype.dialogTop;
308
+
309
+ /**
310
+ * @see http://msdn.microsoft.com/en-us/library/ms533727(VS.85).aspx
311
+ */
312
+ Window.prototype.dialogWidth;
313
+
314
+ /**
315
+ * @see http://msdn.microsoft.com/en-us/library/ms535863(VS.85).aspx
316
+ */
317
+ Window.prototype.event;
318
+
319
+ /**
320
+ * @see http://msdn.microsoft.com/en-us/library/cc197012(VS.85).aspx
321
+ */
322
+ Window.prototype.maxConnectionsPer1_0Server;
323
+
324
+ /**
325
+ * @see http://msdn.microsoft.com/en-us/library/cc197013(VS.85).aspx
326
+ */
327
+ Window.prototype.maxConnectionsPerServer;
328
+
329
+ /**
330
+ * @see http://msdn.microsoft.com/en-us/library/ms534198(VS.85).aspx
331
+ */
332
+ Window.prototype.offscreenBuffering;
333
+
334
+ /**
335
+ * @see http://msdn.microsoft.com/en-us/library/ms534389(VS.85).aspx
336
+ * @type {number|undefined}
337
+ */
338
+ Window.prototype.screenLeft;
339
+
340
+ /**
341
+ * @see http://msdn.microsoft.com/en-us/library/ms534389(VS.85).aspx
342
+ * @type {number|undefined}
343
+ */
344
+ Window.prototype.screenTop;
345
+
346
+ // Functions
347
+
348
+ /**
349
+ * @param {string} event
350
+ * @param {Function} handler
351
+ * @see http://msdn.microsoft.com/en-us/library/ms536343(VS.85).aspx
352
+ */
353
+ Window.prototype.attachEvent;
354
+
355
+ /**
356
+ * @see http://msdn.microsoft.com/en-us/library/ms536392(VS.85).aspx
357
+ */
358
+ Window.prototype.createPopup;
359
+
360
+ /**
361
+ * @param {string} event
362
+ * @param {Function} handler
363
+ * @see http://msdn.microsoft.com/en-us/library/ms536411(VS.85).aspx
364
+ */
365
+ Window.prototype.detachEvent;
366
+
367
+ /**
368
+ * @see http://msdn.microsoft.com/en-us/library/ms536420(VS.85).aspx
369
+ */
370
+ Window.prototype.execScript;
371
+
372
+
373
+ /**
374
+ * @see http://msdn.microsoft.com/en-us/library/ms536638(VS.85).aspx
375
+ */
376
+ Window.prototype.navigate;
377
+
378
+ /**
379
+ * @see http://msdn.microsoft.com/en-us/library/ms536738(VS.85).aspx
380
+ */
381
+ Window.prototype.setActive;
382
+
383
+ /**
384
+ * @see http://msdn.microsoft.com/en-us/library/ms536758(VS.85).aspx
385
+ */
386
+ Window.prototype.showHelp;
387
+
388
+ /**
389
+ * @see http://msdn.microsoft.com/en-us/library/ms536761(VS.85).aspx
390
+ */
391
+ Window.prototype.showModelessDialog;
392
+
393
+ /**
394
+ * @see http://msdn.microsoft.com/en-us/library/ms535246%28v=vs.85%29.aspx
395
+ * @const {!Object}
396
+ */
397
+ Window.prototype.external;
398
+
399
+ /**
400
+ * @see https://msdn.microsoft.com/en-us/ie/dn265046(v=vs.94)
401
+ * @const {!Object}
402
+ */
403
+ Window.prototype.msCrypto;
404
+
405
+ /**
406
+ * @type {boolean}
407
+ * @implicitCast
408
+ * @see http://msdn.microsoft.com/en-us/library/ie/ms533072(v=vs.85).aspx
409
+ */
410
+ HTMLFrameElement.prototype.allowTransparency;
411
+
412
+ /**
413
+ * @type {Window}
414
+ * @see http://msdn.microsoft.com/en-us/library/ms533692(VS.85).aspx
415
+ */
416
+ HTMLFrameElement.prototype.contentWindow;
417
+
418
+ /**
419
+ * @type {boolean}
420
+ * @implicitCast
421
+ * @see http://msdn.microsoft.com/en-us/library/ie/ms533072(v=vs.85).aspx
422
+ */
423
+ HTMLIFrameElement.prototype.allowTransparency;
424
+
425
+ /**
426
+ * @see http://msdn.microsoft.com/en-us/library/ms536385(VS.85).aspx
427
+ */
428
+ HTMLBodyElement.prototype.createControlRange;
429
+
430
+ /**
431
+ * @type {string}
432
+ * @see http://msdn.microsoft.com/en-us/library/ms534359(VS.85).aspx
433
+ */
434
+ HTMLScriptElement.prototype.readyState;
435
+
436
+ /**
437
+ * @type {string}
438
+ * @see http://msdn.microsoft.com/en-us/library/ms534359(VS.85).aspx
439
+ */
440
+ HTMLIFrameElement.prototype.readyState;
441
+
442
+ /**
443
+ * @type {string}
444
+ * @see http://msdn.microsoft.com/en-us/library/ms534359(VS.85).aspx
445
+ */
446
+ HTMLImageElement.prototype.readyState;
447
+
448
+ /**
449
+ * @type {string}
450
+ * @see http://msdn.microsoft.com/en-us/library/ms534359(VS.85).aspx
451
+ */
452
+ HTMLObjectElement.prototype.readyState;
453
+
454
+
455
+ /**
456
+ * @constructor
457
+ */
458
+ function ControlRange() {}
459
+
460
+ ControlRange.prototype.add;
461
+ ControlRange.prototype.addElement;
462
+ ControlRange.prototype.execCommand;
463
+ ControlRange.prototype.item;
464
+ ControlRange.prototype.queryCommandEnabled;
465
+ ControlRange.prototype.queryCommandIndeterm;
466
+ ControlRange.prototype.queryCommandState;
467
+ ControlRange.prototype.queryCommandSupported;
468
+ ControlRange.prototype.queryCommandValue;
469
+ ControlRange.prototype.remove;
470
+ ControlRange.prototype.scrollIntoView;
471
+ ControlRange.prototype.select;
472
+
473
+ /**
474
+ * @constructor
475
+ * @see http://msdn.microsoft.com/en-us/library/ms535872.aspx
476
+ */
477
+ function TextRange() {}
478
+
479
+ /**
480
+ * @see http://msdn.microsoft.com/en-us/library/ms533538(VS.85).aspx
481
+ */
482
+ TextRange.prototype.boundingHeight;
483
+
484
+ /**
485
+ * @see http://msdn.microsoft.com/en-us/library/ms533539(VS.85).aspx
486
+ */
487
+ TextRange.prototype.boundingLeft;
488
+
489
+ /**
490
+ * @see http://msdn.microsoft.com/en-us/library/ms533540(VS.85).aspx
491
+ */
492
+ TextRange.prototype.boundingTop;
493
+
494
+ /**
495
+ * @see http://msdn.microsoft.com/en-us/library/ms533541(VS.85).aspx
496
+ */
497
+ TextRange.prototype.boundingWidth;
498
+
499
+ /**
500
+ * @see http://msdn.microsoft.com/en-us/library/ms533874(VS.85).aspx
501
+ */
502
+ TextRange.prototype.htmlText;
503
+
504
+ /**
505
+ * @see http://msdn.microsoft.com/en-us/library/ms534200(VS.85).aspx
506
+ */
507
+ TextRange.prototype.offsetLeft;
508
+
509
+ /**
510
+ * @see http://msdn.microsoft.com/en-us/library/ms534303(VS.85).aspx
511
+ */
512
+ TextRange.prototype.offsetTop;
513
+
514
+ /**
515
+ * @type {string}
516
+ * @see http://msdn.microsoft.com/en-us/library/ms534676(VS.85).aspx
517
+ */
518
+ TextRange.prototype.text;
519
+
520
+ /**
521
+ * @param {boolean=} opt_toStart
522
+ * @see http://msdn.microsoft.com/en-us/library/ms536371(VS.85).aspx
523
+ */
524
+ TextRange.prototype.collapse;
525
+
526
+ /**
527
+ * @see http://msdn.microsoft.com/en-us/library/ms536373(VS.85).aspx
528
+ */
529
+ TextRange.prototype.compareEndPoints;
530
+
531
+ /**
532
+ * @see http://msdn.microsoft.com/en-us/library/ms536416(VS.85).aspx
533
+ */
534
+ TextRange.prototype.duplicate;
535
+
536
+ /**
537
+ * @see http://msdn.microsoft.com/en-us/library/ms536419(VS.85).aspx
538
+ */
539
+ TextRange.prototype.execCommand;
540
+
541
+ /**
542
+ * @see http://msdn.microsoft.com/en-us/library/ms536421(VS.85).aspx
543
+ */
544
+ TextRange.prototype.expand;
545
+
546
+ /**
547
+ * @see http://msdn.microsoft.com/en-us/library/ms536422(VS.85).aspx
548
+ */
549
+ TextRange.prototype.findText;
550
+
551
+ /**
552
+ * @see http://msdn.microsoft.com/en-us/library/ms536432(VS.85).aspx
553
+ */
554
+ TextRange.prototype.getBookmark;
555
+
556
+ /**
557
+ * @see http://msdn.microsoft.com/en-us/library/ms536433(VS.85).aspx
558
+ */
559
+ TextRange.prototype.getBoundingClientRect;
560
+
561
+ /**
562
+ * @see http://msdn.microsoft.com/en-us/library/ms536435(VS.85).aspx
563
+ */
564
+ TextRange.prototype.getClientRects;
565
+
566
+ /**
567
+ * @param {TextRange|ControlRange} range
568
+ * @return {boolean}
569
+ * @see http://msdn.microsoft.com/en-us/library/ms536450(VS.85).aspx
570
+ */
571
+ TextRange.prototype.inRange;
572
+
573
+ /**
574
+ * @see http://msdn.microsoft.com/en-us/library/ms536458(VS.85).aspx
575
+ */
576
+ TextRange.prototype.isEqual;
577
+
578
+ /**
579
+ * @see http://msdn.microsoft.com/en-us/library/ms536616(VS.85).aspx
580
+ */
581
+ TextRange.prototype.move;
582
+
583
+ /**
584
+ * @see http://msdn.microsoft.com/en-us/library/ms536620(VS.85).aspx
585
+ */
586
+ TextRange.prototype.moveEnd;
587
+
588
+ /**
589
+ * @param {string} unit
590
+ * @param {number=} opt_count
591
+ * @see http://msdn.microsoft.com/en-us/library/ms536623(VS.85).aspx
592
+ */
593
+ TextRange.prototype.moveStart;
594
+
595
+ /**
596
+ * @see http://msdn.microsoft.com/en-us/library/ms536628(VS.85).aspx
597
+ */
598
+ TextRange.prototype.moveToBookmark;
599
+
600
+ /**
601
+ * @see http://msdn.microsoft.com/en-us/library/ms536630(VS.85).aspx
602
+ */
603
+ TextRange.prototype.moveToElementText;
604
+
605
+ /**
606
+ * @see http://msdn.microsoft.com/en-us/library/ms536632(VS.85).aspx
607
+ */
608
+ TextRange.prototype.moveToPoint;
609
+
610
+ /**
611
+ * @see http://msdn.microsoft.com/en-us/library/ms536654(VS.85).aspx
612
+ * @return {?Element}
613
+ */
614
+ TextRange.prototype.parentElement;
615
+
616
+ /**
617
+ * @see http://msdn.microsoft.com/en-us/library/ms536656(VS.85).aspx
618
+ */
619
+ TextRange.prototype.pasteHTML;
620
+
621
+ /**
622
+ * @see http://msdn.microsoft.com/en-us/library/ms536676(VS.85).aspx
623
+ */
624
+ TextRange.prototype.queryCommandEnabled;
625
+
626
+ /**
627
+ * @see http://msdn.microsoft.com/en-us/library/ms536678(VS.85).aspx
628
+ */
629
+ TextRange.prototype.queryCommandIndeterm;
630
+
631
+ /**
632
+ * @see http://msdn.microsoft.com/en-us/library/ms536679(VS.85).aspx
633
+ */
634
+ TextRange.prototype.queryCommandState;
635
+
636
+ /**
637
+ * @see http://msdn.microsoft.com/en-us/library/ms536681(VS.85).aspx
638
+ */
639
+ TextRange.prototype.queryCommandSupported;
640
+
641
+ /**
642
+ * @see http://msdn.microsoft.com/en-us/library/ms536683(VS.85).aspx
643
+ */
644
+ TextRange.prototype.queryCommandValue;
645
+
646
+ /**
647
+ * @see http://msdn.microsoft.com/en-us/library/ms536730(VS.85).aspx
648
+ */
649
+ TextRange.prototype.scrollIntoView;
650
+
651
+ /**
652
+ * @return {undefined}
653
+ * @see http://msdn.microsoft.com/en-us/library/ms536735(VS.85).aspx
654
+ */
655
+ TextRange.prototype.select = function() {};
656
+
657
+ /**
658
+ * @param {string} how
659
+ * @param {TextRange|ControlRange} sourceRange
660
+ * @see http://msdn.microsoft.com/en-us/library/ms536745(VS.85).aspx
661
+ */
662
+ TextRange.prototype.setEndPoint;
663
+
664
+ /**
665
+ * @constructor
666
+ * @see http://msdn.microsoft.com/en-us/library/ms537447(VS.85).aspx
667
+ */
668
+ function controlRange() {}
669
+
670
+
671
+ Document.prototype.loadXML;
672
+
673
+
674
+ // http://msdn.microsoft.com/en-us/library/ms531073(VS.85).aspx
675
+
676
+ /**
677
+ * @see http://msdn.microsoft.com/en-us/library/ms533553(VS.85).aspx
678
+ */
679
+ Document.prototype.charset;
680
+
681
+ /**
682
+ * @see http://msdn.microsoft.com/en-us/library/ms533693(VS.85).aspx
683
+ */
684
+ Document.prototype.cookie;
685
+
686
+ /**
687
+ * @see http://msdn.microsoft.com/en-us/library/ms533731(VS.85).aspx
688
+ */
689
+ Document.prototype.dir;
690
+
691
+ /**
692
+ * @see http://msdn.microsoft.com/en-us/library/cc196988(VS.85).aspx
693
+ */
694
+ Document.prototype.documentMode;
695
+
696
+ /**
697
+ * @see http://msdn.microsoft.com/en-us/library/ms533747(VS.85).aspx
698
+ */
699
+ Document.prototype.expando;
700
+
701
+ /**
702
+ * @see http://msdn.microsoft.com/en-us/library/ms533750(VS.85).aspx
703
+ */
704
+ Document.prototype.fileCreatedDate;
705
+
706
+ /**
707
+ * @see http://msdn.microsoft.com/en-us/library/ms533751(VS.85).aspx
708
+ */
709
+ Document.prototype.fileModifiedDate;
710
+
711
+ /**
712
+ * @see http://msdn.microsoft.com/en-us/library/ms533752(VS.85).aspx
713
+ */
714
+ Document.prototype.fileSize;
715
+
716
+ /**
717
+ * @see http://msdn.microsoft.com/en-us/library/ms534331(VS.85).aspx
718
+ * @type {?Window}
719
+ */
720
+ Document.prototype.parentWindow;
721
+
722
+ /**
723
+ * @see http://msdn.microsoft.com/en-us/library/ms534353(VS.85).aspx
724
+ */
725
+ Document.prototype.protocol;
726
+
727
+ /**
728
+ * @type {string}
729
+ * @see http://msdn.microsoft.com/en-us/library/ms534359(VS.85).aspx
730
+ */
731
+ HTMLDocument.prototype.readyState;
732
+
733
+ /**
734
+ * @see http://msdn.microsoft.com/en-us/library/ms534704(VS.85).aspx
735
+ */
736
+ Document.prototype.uniqueID;
737
+
738
+ /**
739
+ * @see http://msdn.microsoft.com/en-us/library/ms534709(VS.85).aspx
740
+ */
741
+ Document.prototype.URLUnencoded;
742
+
743
+ /**
744
+ * @see http://msdn.microsoft.com/en-us/library/ms535155(VS.85).aspx
745
+ */
746
+ Document.prototype.XMLDocument;
747
+
748
+ /**
749
+ * @see http://msdn.microsoft.com/en-us/library/ms535163(VS.85).aspx
750
+ */
751
+ Document.prototype.XSLDocument;
752
+
753
+ // functions
754
+
755
+ /**
756
+ * @param {string} event
757
+ * @param {Function} handler
758
+ * @see http://msdn.microsoft.com/en-us/library/ms536343(VS.85).aspx
759
+ */
760
+ Document.prototype.attachEvent;
761
+
762
+ /**
763
+ * @see http://msdn.microsoft.com/en-us/library/ms536390(VS.85).aspx
764
+ */
765
+ Document.prototype.createEventObject;
766
+
767
+ /**
768
+ * @see http://msdn.microsoft.com/en-us/library/ms531194(VS.85).aspx
769
+ */
770
+ Document.prototype.createStyleSheet;
771
+
772
+ /**
773
+ * @param {string} event
774
+ * @param {Function} handler
775
+ * @see http://msdn.microsoft.com/en-us/library/ms536411(VS.85).aspx
776
+ */
777
+ Document.prototype.detachEvent;
778
+
779
+ /**
780
+ * @see http://msdn.microsoft.com/en-us/library/ms536425(VS.85).aspx
781
+ */
782
+ Document.prototype.focus;
783
+
784
+ /**
785
+ * @see http://msdn.microsoft.com/en-us/library/ms536614(VS.85).aspx
786
+ */
787
+ Document.prototype.mergeAttributes;
788
+
789
+ /**
790
+ * @see http://msdn.microsoft.com/en-us/library/ms536685(VS.85).aspx
791
+ */
792
+ Document.prototype.recalc;
793
+
794
+ /**
795
+ * @see http://msdn.microsoft.com/en-us/library/ms536689(VS.85).aspx
796
+ */
797
+ Document.prototype.releaseCapture;
798
+
799
+ /**
800
+ * @see http://msdn.microsoft.com/en-us/library/ms536738(VS.85).aspx
801
+ */
802
+ Document.prototype.setActive;
803
+
804
+
805
+ // collections
806
+
807
+ /**
808
+ * @see http://msdn.microsoft.com/en-us/library/ms537434(VS.85).aspx
809
+ */
810
+ Document.prototype.all;
811
+
812
+ /**
813
+ * @see http://msdn.microsoft.com/en-us/library/ms537445(VS.85).aspx
814
+ */
815
+ Document.prototype.childNodes;
816
+
817
+ /**
818
+ * @see http://msdn.microsoft.com/en-us/library/ms537459(VS.85).aspx
819
+ */
820
+ Document.prototype.frames;
821
+
822
+ /**
823
+ * @see http://msdn.microsoft.com/en-us/library/ms537470(VS.85).aspx
824
+ */
825
+ Document.prototype.namespaces;
826
+
827
+ /**
828
+ * @see http://msdn.microsoft.com/en-us/library/ms537487(VS.85).aspx
829
+ * @type {!HTMLCollection<!HTMLScriptElement>}
830
+ */
831
+ Document.prototype.scripts;
832
+
833
+ /**
834
+ * @param {string} sUrl
835
+ * @return {number}
836
+ * @see http://msdn.microsoft.com/en-us/library/ms535922(VS.85).aspx
837
+ */
838
+ Element.prototype.addBehavior = function(sUrl) {};
839
+
840
+ /**
841
+ * @param {string} event
842
+ * @param {Function} handler
843
+ * @see http://msdn.microsoft.com/en-us/library/mm536343(v=vs.85).aspx
844
+ */
845
+ Element.prototype.attachEvent;
846
+
847
+ /**
848
+ * @type {boolean}
849
+ * @see http://msdn.microsoft.com/en-us/library/ms533546(VS.85).aspx
850
+ */
851
+ Element.prototype.canHaveChildren;
852
+
853
+ /**
854
+ * @type {string}
855
+ * @see http://msdn.microsoft.com/en-us/library/ms533559(v=vs.85).aspx
856
+ */
857
+ Element.prototype.classid;
858
+
859
+ /**
860
+ * @param {number} iCoordX Integer that specifies the client window coordinate
861
+ * of x.
862
+ * @param {number} iCoordY Integer that specifies the client window coordinate
863
+ * of y.
864
+ * @return {string} The component of an element located at the specified
865
+ * coordinates.
866
+ * @see http://msdn.microsoft.com/en-us/library/ms536375(VS.85).aspx
867
+ * @nosideeffects
868
+ */
869
+ Element.prototype.componentFromPoint = function(iCoordX, iCoordY) {};
870
+
871
+
872
+ /**
873
+ * TODO(tjgq): Make this string once existing usages have been migrated.
874
+ * @type {string|boolean}
875
+ * @see http://msdn.microsoft.com/en-us/library/ms533690(VS.85).aspx
876
+ */
877
+ Element.prototype.contentEditable;
878
+
879
+ /**
880
+ * @type {string}
881
+ * @see https://developer.mozilla.org/docs/Web/API/HTMLElement/enterKeyHint
882
+ */
883
+ Element.prototype.enterKeyHint;
884
+
885
+ /**
886
+ * @type {string}
887
+ * @see https://developer.mozilla.org/docs/Web/API/HTMLElement/inputMode
888
+ */
889
+ Element.prototype.inputMode;
890
+
891
+ /**
892
+ * @return {TextRange}
893
+ * @see http://msdn.microsoft.com/en-us/library/ms536401(VS.85).aspx
894
+ */
895
+ Element.prototype.createTextRange;
896
+
897
+ /**
898
+ * @see http://msdn.microsoft.com/en-us/library/ms535231(VS.85).aspx
899
+ * @type {?CSSStyleDeclaration}
900
+ */
901
+ Element.prototype.currentStyle;
902
+
903
+ /**
904
+ * @param {string} event
905
+ * @param {Function} handler
906
+ * @see http://msdn.microsoft.com/en-us/library/ie/ms536411(v=vs.85).aspx
907
+ */
908
+ Element.prototype.detachEvent;
909
+
910
+ /**
911
+ * @param {string=} opt_action
912
+ * @see http://msdn.microsoft.com/en-us/library/ms536414%28VS.85%29.aspx
913
+ * @return {undefined}
914
+ */
915
+ Element.prototype.doScroll = function(opt_action) {};
916
+
917
+ /**
918
+ * @see http://msdn.microsoft.com/en-us/library/ms536423(VS.85).aspx
919
+ */
920
+ Element.prototype.fireEvent;
921
+
922
+ /**
923
+ * @type {boolean}
924
+ * @see http://msdn.microsoft.com/en-us/library/ms533783(VS.85).aspx
925
+ */
926
+ Element.prototype.hideFocus;
927
+
928
+ /**
929
+ * @type {string}
930
+ * @implicitCast
931
+ *
932
+ * TODO(lharker): remove the @implicitCast to enforce assigning an explicit
933
+ * string to innerText instead of relying on coercion.
934
+ *
935
+ * @see http://msdn.microsoft.com/en-us/library/ms533899.aspx
936
+ */
937
+ Element.prototype.innerText;
938
+
939
+ /**
940
+ * @type {boolean}
941
+ * @see http://msdn.microsoft.com/en-us/library/ms537838(VS.85).aspx
942
+ */
943
+ Element.prototype.isContentEditable;
944
+
945
+ /**
946
+ * @see http://msdn.microsoft.com/en-us/library/ms531395(v=vs.85).aspx
947
+ * NOTE: Left untyped to avoid conflict with subclasses.
948
+ */
949
+ Element.prototype.load;
950
+
951
+ /**
952
+ * @param {number} pointerId Id of the pointer that is assign to the element.
953
+ * @see http://msdn.microsoft.com/en-us/library/ie/hh771882(v=vs.85).aspx
954
+ * @return {undefined}
955
+ */
956
+ Element.prototype.msSetPointerCapture = function(pointerId) {};
957
+
958
+ /**
959
+ * @param {number} pointerId
960
+ * @see http://msdn.microsoft.com/en-us/library/ie/hh771880.aspx
961
+ * @return {undefined}
962
+ */
963
+ Element.prototype.msReleasePointerCapture = function(pointerId) {};
964
+
965
+ /**
966
+ * @type {?function(Event)}
967
+ * @see http://msdn.microsoft.com/en-us/library/ms536903(v=vs.85).aspx
968
+ */
969
+ Element.prototype.onbeforedeactivate;
970
+
971
+ /**
972
+ * @type {?function(Event)}
973
+ * @see http://msdn.microsoft.com/en-us/library/ms536945(VS.85).aspx
974
+ */
975
+ Element.prototype.onmouseenter;
976
+
977
+ /**
978
+ * @type {?function(Event)}
979
+ * @see http://msdn.microsoft.com/en-us/library/ms536946(VS.85).aspx
980
+ */
981
+ Element.prototype.onmouseleave;
982
+
983
+ /**
984
+ * @see http://msdn.microsoft.com/en-us/library/ms536689(VS.85).aspx
985
+ * @return {undefined}
986
+ */
987
+ Element.prototype.releaseCapture = function() {};
988
+
989
+ /**
990
+ * @param {number} iID
991
+ * @return {boolean}
992
+ * @see http://msdn.microsoft.com/en-us/library/ms536700(VS.85).aspx
993
+ */
994
+ Element.prototype.removeBehavior = function(iID) {};
995
+
996
+ /**
997
+ * @see http://msdn.microsoft.com/en-us/library/aa703996(VS.85).aspx
998
+ */
999
+ Element.prototype.runtimeStyle;
1000
+
1001
+ /**
1002
+ * @param {string} sStoreName The arbitrary name assigned to a persistent object
1003
+ * in a UserData store.
1004
+ * @see http://msdn.microsoft.com/en-us/library/ms531403(v=vs.85).aspx
1005
+ * @return {undefined}
1006
+ */
1007
+ Element.prototype.save = function(sStoreName) {};
1008
+
1009
+ /**
1010
+ * @param {boolean=} opt_bContainerCapture Events originating in a container are
1011
+ * captured by the container. Defaults to true.
1012
+ * @see http://msdn.microsoft.com/en-us/library/ms536742(VS.85).aspx
1013
+ * @return {undefined}
1014
+ */
1015
+ Element.prototype.setCapture = function(opt_bContainerCapture) {};
1016
+
1017
+ /**
1018
+ * @see http://msdn.microsoft.com/en-us/library/ms534635(VS.85).aspx
1019
+ */
1020
+ Element.prototype.sourceIndex;
1021
+
1022
+ /**
1023
+ * @type {string}
1024
+ * @see http://msdn.microsoft.com/en-us/library/ms537840.aspx
1025
+ */
1026
+ Element.prototype.unselectable;
1027
+
1028
+ /**
1029
+ * @constructor
1030
+ * @see http://msdn.microsoft.com/en-us/library/aa752462(v=vs.85).aspx
1031
+ */
1032
+ function HTMLFiltersCollection() {}
1033
+
1034
+ /**
1035
+ * @see http://msdn.microsoft.com/en-us/library/aa752463(v=vs.85).aspx
1036
+ * @type {number}
1037
+ */
1038
+ HTMLFiltersCollection.prototype.length;
1039
+
1040
+ /**
1041
+ * @see http://msdn.microsoft.com/en-us/library/ms537452(v=vs.85).aspx
1042
+ * @type {HTMLFiltersCollection}
1043
+ */
1044
+ Element.prototype.filters;
1045
+
1046
+ /**
1047
+ * @constructor
1048
+ * @see http://msdn.microsoft.com/en-us/library/ms532853(v=vs.85).aspx
1049
+ */
1050
+ function HTMLFilter() {}
1051
+
1052
+ /**
1053
+ * @see http://msdn.microsoft.com/en-us/library/ms532954(v=vs.85).aspx
1054
+ * @return {undefined}
1055
+ */
1056
+ HTMLFilter.prototype.apply = function() {};
1057
+
1058
+ /**
1059
+ * @constructor
1060
+ * @extends {HTMLFilter}
1061
+ * @see http://msdn.microsoft.com/en-us/library/ms532967(v=vs.85).aspx
1062
+ */
1063
+ function AlphaFilter() {}
1064
+
1065
+ /**
1066
+ * @see http://msdn.microsoft.com/en-us/library/ms532910(v=vs.85).aspx
1067
+ * @type {number}
1068
+ */
1069
+ AlphaFilter.prototype.Opacity;
1070
+
1071
+ /**
1072
+ * @constructor
1073
+ * @extends {HTMLFilter}
1074
+ * @see http://msdn.microsoft.com/en-us/library/ms532969(v=vs.85).aspx
1075
+ */
1076
+ function AlphaImageLoaderFilter() {}
1077
+
1078
+ /**
1079
+ * @see http://msdn.microsoft.com/en-us/library/ms532920(v=vs.85).aspx
1080
+ * @type {string}
1081
+ */
1082
+ AlphaImageLoaderFilter.prototype.sizingMethod;
1083
+
1084
+ // For IE, returns an object representing key-value pairs for all the global
1085
+ // variables prefixed with str, e.g. test*
1086
+
1087
+ /** @param {*=} opt_str
1088
+ */
1089
+ function RuntimeObject(opt_str) {}
1090
+
1091
+
1092
+ /**
1093
+ * @type {StyleSheet}
1094
+ * @see http://msdn.microsoft.com/en-us/library/dd347030(VS.85).aspx
1095
+ */
1096
+ HTMLStyleElement.prototype.styleSheet;
1097
+
1098
+
1099
+ /**
1100
+ * IE implements Cross Origin Resource Sharing (cross-domain XMLHttpRequests)
1101
+ * via the XDomainRequest object.
1102
+ *
1103
+ * @constructor
1104
+ * @see http://msdn.microsoft.com/en-us/library/cc288060(v=vs.85).aspx
1105
+ * @see http://www.w3.org/TR/cors/
1106
+ */
1107
+ function XDomainRequest() {}
1108
+
1109
+ /**
1110
+ * Aborts the request.
1111
+ * @see http://msdn.microsoft.com/en-us/library/cc288129(v=vs.85).aspx
1112
+ * @return {undefined}
1113
+ */
1114
+ XDomainRequest.prototype.abort = function() {};
1115
+
1116
+ /**
1117
+ * Sets the method and URL for the request.
1118
+ * @param {string} bstrMethod Either "GET" or "POST"
1119
+ * @param {string} bstrUrl The target URL
1120
+ * @see http://msdn.microsoft.com/en-us/library/cc288168(v=vs.85).aspx
1121
+ * @return {undefined}
1122
+ */
1123
+ XDomainRequest.prototype.open = function(bstrMethod, bstrUrl) {};
1124
+
1125
+ /**
1126
+ * Sends the request.
1127
+ * @param {string=} varBody The POST body to send to the server. If omitted,
1128
+ * the behavior is identical to sending an empty string.
1129
+ * @see http://msdn.microsoft.com/en-us/library/cc288207(v=vs.85).aspx
1130
+ * @return {undefined}
1131
+ */
1132
+ XDomainRequest.prototype.send = function(varBody) {};
1133
+
1134
+ /**
1135
+ * Called if the request could not be completed. Note that error information is
1136
+ * not available.
1137
+ * @see http://msdn.microsoft.com/en-us/library/ms536930%28v=VS.85%29.aspx
1138
+ * @type {?function()}
1139
+ */
1140
+ XDomainRequest.prototype.onerror;
1141
+
1142
+ /**
1143
+ * Called when the response has finished.
1144
+ * @see http://msdn.microsoft.com/en-us/library/ms536942%28v=VS.85%29.aspx
1145
+ * @type {?function()}
1146
+ */
1147
+ XDomainRequest.prototype.onload;
1148
+
1149
+ /**
1150
+ * Called every time part of the response has been received.
1151
+ * @see http://msdn.microsoft.com/en-us/library/cc197058%28v=VS.85%29.aspx
1152
+ * @type {?function()}
1153
+ */
1154
+ XDomainRequest.prototype.onprogress;
1155
+
1156
+ /**
1157
+ * Called if the timeout period has elapsed.
1158
+ * @see http://msdn.microsoft.com/en-us/library/cc197061%28v=VS.85%29.aspx
1159
+ * @type {?function()}
1160
+ */
1161
+ XDomainRequest.prototype.ontimeout;
1162
+
1163
+ /**
1164
+ * The current response body.
1165
+ * @see http://msdn.microsoft.com/en-us/library/cc287956%28v=VS.85%29.aspx
1166
+ * @type {string}
1167
+ */
1168
+ XDomainRequest.prototype.responseText;
1169
+
1170
+ /**
1171
+ * The timeout (in milliseconds) for the request.
1172
+ * @type {number}
1173
+ */
1174
+ XDomainRequest.prototype.timeout;
1175
+
1176
+ /**
1177
+ * The Content-Type of the response, or an empty string.
1178
+ * @type {string}
1179
+ */
1180
+ XDomainRequest.prototype.contentType;
1181
+
1182
+ /**
1183
+ * @type {string}
1184
+ * @see http://msdn.microsoft.com/en-us/library/ms533542(v=vs.85).aspx
1185
+ */
1186
+ Navigator.prototype.browserLanguage;
1187
+
1188
+ /**
1189
+ * @type {number}
1190
+ * @see https://msdn.microsoft.com/en-us/library/ie/hh772144(v=vs.85).aspx
1191
+ */
1192
+ Navigator.prototype.msMaxTouchPoints;
1193
+
1194
+ /**
1195
+ * @type {boolean}
1196
+ * @see http://blogs.msdn.com/b/ie/archive/2011/09/20/touch-input-for-ie10-and-metro-style-apps.aspx
1197
+ */
1198
+ Navigator.prototype.msPointerEnabled;
1199
+
1200
+ /**
1201
+ * @param {(!File|!Blob)} blob
1202
+ * @param {string=} opt_defaultName
1203
+ * @return {boolean}
1204
+ * @see https://msdn.microsoft.com/en-us/library/hh772331(v=vs.85).aspx
1205
+ */
1206
+ Navigator.prototype.msSaveBlob = function(blob, opt_defaultName) {};
1207
+
1208
+ /**
1209
+ * @param {(!File|!Blob)} blob
1210
+ * @param {string=} opt_defaultName
1211
+ * @return {boolean}
1212
+ * @see https://msdn.microsoft.com/en-us/library/hh772332(v=vs.85).aspx
1213
+ */
1214
+ Navigator.prototype.msSaveOrOpenBlob = function(blob, opt_defaultName) {};
1215
+
1216
+ /**
1217
+ * @type {number}
1218
+ * @see http://msdn.microsoft.com/en-us/library/ms533721(v=vs.85).aspx
1219
+ */
1220
+ Screen.prototype.deviceXDPI;
1221
+
1222
+ /**
1223
+ * @type {number}
1224
+ * @see http://msdn.microsoft.com/en-us/library/ms534128%28v=vs.85%29.aspx
1225
+ */
1226
+ Screen.prototype.logicalXDPI;
1227
+
1228
+ /**
1229
+ * @type {number}
1230
+ * @see http://msdn.microsoft.com/en-us/library/ms534130%28v=vs.85%29.aspx
1231
+ */
1232
+ Screen.prototype.logicalYDPI;