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,3790 @@
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 CSS specification
19
+ * The whole file has been fully type annotated.
20
+ * http://www.w3.org/TR/DOM-Level-2-Style/css.html
21
+ * @externs
22
+ * @author stevey@google.com (Steve Yegge)
23
+ *
24
+ * TODO(nicksantos): When there are no more occurrences of w3c_range.js and
25
+ * gecko_dom.js being included directly in BUILD files, bug dbeam to split the
26
+ * bottom part of this file into a separate externs.
27
+ */
28
+
29
+ /**
30
+ * @constructor
31
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/stylesheets.html#StyleSheets-StyleSheet
32
+ */
33
+ function StyleSheet() {}
34
+
35
+ /**
36
+ * @type {string}
37
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/stylesheets.html#StyleSheets-StyleSheet-type
38
+ */
39
+ StyleSheet.prototype.type;
40
+
41
+ /**
42
+ * @type {boolean}
43
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/stylesheets.html#StyleSheets-StyleSheet-disabled
44
+ */
45
+ StyleSheet.prototype.disabled;
46
+
47
+ /**
48
+ * @type {Node}
49
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/stylesheets.html#StyleSheets-StyleSheet-owner
50
+ */
51
+ StyleSheet.prototype.ownerNode;
52
+
53
+ /**
54
+ * @type {StyleSheet}
55
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/stylesheets.html#StyleSheets-StyleSheet-parentStyleSheet
56
+ */
57
+ StyleSheet.prototype.parentStyleSheet;
58
+
59
+ /**
60
+ * @type {string}
61
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/stylesheets.html#StyleSheets-StyleSheet-href
62
+ */
63
+ StyleSheet.prototype.href;
64
+
65
+ /**
66
+ * @type {string}
67
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/stylesheets.html#StyleSheets-StyleSheet-title
68
+ */
69
+ StyleSheet.prototype.title;
70
+
71
+ /**
72
+ * @type {MediaList}
73
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/stylesheets.html#StyleSheets-StyleSheet-media
74
+ */
75
+ StyleSheet.prototype.media;
76
+
77
+ /**
78
+ * @constructor
79
+ * @implements {IArrayLike<!StyleSheet>}
80
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/stylesheets.html#StyleSheets-StyleSheetList
81
+ */
82
+ function StyleSheetList() {}
83
+
84
+ /**
85
+ * @type {number}
86
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/stylesheets.html#StyleSheets-StyleSheetList-length
87
+ */
88
+ StyleSheetList.prototype.length;
89
+
90
+ /**
91
+ * @param {number} index
92
+ * @return {StyleSheet}
93
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/stylesheets.html#StyleSheets-StyleSheetList-item
94
+ */
95
+ StyleSheetList.prototype.item = function(index) {};
96
+
97
+ /**
98
+ * @constructor
99
+ * @implements {IArrayLike<!MediaList>}
100
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/stylesheets.html#StyleSheets-MediaList
101
+ */
102
+ function MediaList() {}
103
+
104
+ /**
105
+ * @type {string}
106
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/stylesheets.html#StyleSheets-MediaList-mediaText
107
+ */
108
+ MediaList.prototype.mediaText;
109
+
110
+ /**
111
+ * @type {number}
112
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/stylesheets.html#StyleSheets-MediaList-length
113
+ */
114
+ MediaList.prototype.length;
115
+
116
+ /**
117
+ * @param {number} index
118
+ * @return {string}
119
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/stylesheets.html#StyleSheets-MediaList-item
120
+ */
121
+ MediaList.prototype.item = function(index) {};
122
+
123
+ /**
124
+ * @interface
125
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/stylesheets.html#StyleSheets-LinkStyle
126
+ */
127
+ function LinkStyle() {}
128
+
129
+ /**
130
+ * @type {StyleSheet}
131
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/stylesheets.html#StyleSheets-LinkStyle-sheet
132
+ */
133
+ LinkStyle.prototype.sheet;
134
+
135
+ /**
136
+ * @constructor
137
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/stylesheets.html#StyleSheets-StyleSheet-DocumentStyle
138
+ */
139
+ function DocumentStyle() {}
140
+
141
+ /**
142
+ * @type {StyleSheetList}
143
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/stylesheets.html#StyleSheets-StyleSheet-DocumentStyle-styleSheets
144
+ */
145
+ DocumentStyle.prototype.styleSheets;
146
+
147
+ /**
148
+ * Type of the `options` parameter for the `CSSStyleSheet` constructor.
149
+ *
150
+ * The actual property definitions are in wicg_constructable_stylesheets.js,
151
+ * which must be explicitly passed to the compiler in order to use them. This
152
+ * record is defined here since CSSStyleSheet cannot be redefined with its
153
+ * optional init parameter.
154
+ * @record
155
+ * @see https://wicg.github.io/construct-stylesheets/#dictdef-cssstylesheetinit
156
+ */
157
+ function CSSStyleSheetInit() {}
158
+
159
+ /**
160
+ * @constructor
161
+ * @extends {StyleSheet}
162
+ * @param {CSSStyleSheetInit=} options
163
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSStyleSheet
164
+ * @see https://wicg.github.io/construct-stylesheets/#dom-cssstylesheet-cssstylesheet
165
+ */
166
+ function CSSStyleSheet(options) {}
167
+
168
+ /**
169
+ * @type {CSSRule}
170
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSStyleSheet-ownerRule
171
+ */
172
+ CSSStyleSheet.prototype.ownerRule;
173
+
174
+ /**
175
+ * @type {CSSRuleList}
176
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSStyleSheet-cssRules
177
+ */
178
+ CSSStyleSheet.prototype.cssRules;
179
+
180
+ /**
181
+ * @param {string} rule
182
+ * @param {number} index
183
+ * @return {number}
184
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSStyleSheet-insertRule
185
+ */
186
+ CSSStyleSheet.prototype.insertRule = function(rule, index) {};
187
+
188
+ /**
189
+ * @param {number} index
190
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSStyleSheet-deleteRule
191
+ * @return {undefined}
192
+ */
193
+ CSSStyleSheet.prototype.deleteRule = function(index) {};
194
+
195
+ /**
196
+ * @constructor
197
+ * @implements {IArrayLike<!CSSRule>}
198
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSRuleList
199
+ */
200
+ function CSSRuleList() {}
201
+
202
+ /**
203
+ * @type {number}
204
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSRuleList-length
205
+ */
206
+ CSSRuleList.prototype.length;
207
+
208
+ /**
209
+ * @param {number} index
210
+ * @return {CSSRule}
211
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSRuleList-item
212
+ */
213
+ CSSRuleList.prototype.item = function(index) {};
214
+
215
+ /**
216
+ * @constructor
217
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSRule
218
+ */
219
+ function CSSRule() {}
220
+
221
+ /**
222
+ * @type {number}
223
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSRule-ruleType
224
+ */
225
+ CSSRule.prototype.type;
226
+
227
+ /**
228
+ * @type {string}
229
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSRule-cssText
230
+ */
231
+ CSSRule.prototype.cssText;
232
+
233
+ /**
234
+ * @type {CSSStyleSheet}
235
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSRule-sheet
236
+ */
237
+ CSSRule.prototype.parentStyleSheet;
238
+
239
+ /**
240
+ * @type {CSSRule}
241
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSRule-parentRule
242
+ */
243
+ CSSRule.prototype.parentRule;
244
+
245
+ /**
246
+ * @type {CSSStyleDeclaration}
247
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSStyleRule
248
+ */
249
+ CSSRule.prototype.style;
250
+
251
+ /**
252
+ * Indicates that the rule is a {@see CSSUnknownRule}.
253
+ * @const {number}
254
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSRule-ruleType
255
+ */
256
+ CSSRule.UNKNOWN_RULE;
257
+
258
+ /**
259
+ * Indicates that the rule is a {@see CSSStyleRule}.
260
+ * @const {number}
261
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSRule-ruleType
262
+ */
263
+ CSSRule.STYLE_RULE;
264
+
265
+ /**
266
+ * Indicates that the rule is a {@see CSSCharsetRule}.
267
+ * @const {number}
268
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSRule-ruleType
269
+ */
270
+ CSSRule.CHARSET_RULE;
271
+
272
+ /**
273
+ * Indicates that the rule is a {@see CSSImportRule}.
274
+ * @const {number}
275
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSRule-ruleType
276
+ */
277
+ CSSRule.IMPORT_RULE;
278
+
279
+ /**
280
+ * Indicates that the rule is a {@see CSSMediaRule}.
281
+ * @const {number}
282
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSRule-ruleType
283
+ */
284
+ CSSRule.MEDIA_RULE;
285
+
286
+ /**
287
+ * Indicates that the rule is a {@see CSSFontFaceRule}.
288
+ * @const {number}
289
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSRule-ruleType
290
+ */
291
+ CSSRule.FONT_FACE_RULE;
292
+
293
+ /**
294
+ * Indicates that the rule is a {@see CSSPageRule}.
295
+ * @const {number}
296
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSRule-ruleType
297
+ */
298
+ CSSRule.PAGE_RULE;
299
+
300
+ /**
301
+ * @constructor
302
+ * @see https://developer.mozilla.org/docs/Web/API/StylePropertyMap
303
+ */
304
+ function StylePropertyMapReadonly() {}
305
+
306
+ /**
307
+ * @const {number}
308
+ * @see https://developer.mozilla.org/docs/Web/API/StylePropertyMapReadOnly/size
309
+ */
310
+ StylePropertyMapReadonly.prototype.size;
311
+
312
+ /**
313
+ * @param {string} property
314
+ * @return {(!CSSStyleValue|undefined)}
315
+ * @see https://developer.mozilla.org/docs/Web/API/StylePropertyMapReadOnly/get
316
+ */
317
+ StylePropertyMapReadonly.prototype.get = function(property) {}
318
+
319
+ /**
320
+ * @param {string} property
321
+ * @return {!Array<!CSSStyleValue>}
322
+ * @see https://developer.mozilla.org/docs/Web/API/StylePropertyMapReadOnly/getAll
323
+ */
324
+ StylePropertyMapReadonly.prototype.getAll = function(property) {}
325
+
326
+ /**
327
+ * @param {string} property
328
+ * @return {boolean}
329
+ * @see https://developer.mozilla.org/docs/Web/API/StylePropertyMapReadOnly/has
330
+ */
331
+ StylePropertyMapReadonly.prototype.has = function(property) {}
332
+
333
+ /**
334
+ * @param {function(!Array<!CSSStyleValue>, string, !StylePropertyMapReadOnly): void} callbackfn
335
+ * @param {*=} opt_thisArg
336
+ * @see https://developer.mozilla.org/docs/Web/API/StylePropertyMapReadOnly/forEach
337
+ */
338
+ StylePropertyMapReadonly.prototype.forEach = function(callbackfn, opt_thisArg) {}
339
+
340
+ /**
341
+ * @constructor
342
+ * @extends {StylePropertyMapReadOnly}
343
+ * @see https://developer.mozilla.org/docs/Web/API/StylePropertyMap
344
+ */
345
+ function StylePropertyMap() {}
346
+
347
+ /**
348
+ * @param {string} property
349
+ * @param {...(CSSStyleValue|string)} values
350
+
351
+ * @return {undefined}
352
+ * @see https://developer.mozilla.org/docs/Web/API/StylePropertyMap/append
353
+ */
354
+ StylePropertyMap.prototype.append = function(property, values) {};
355
+
356
+ /**
357
+ * @return {undefined}
358
+ * @see https://developer.mozilla.org/docs/Web/API/StylePropertyMap/clear
359
+ */
360
+ StylePropertyMap.prototype.clear = function() {};
361
+
362
+ /**
363
+ * @param {string} property
364
+ * @return {undefined}
365
+ * @see https://developer.mozilla.org/docs/Web/API/StylePropertyMap/delete
366
+ */
367
+ StylePropertyMap.prototype.delete = function(property) {};
368
+
369
+ /**
370
+ * @param {string} property
371
+ * @param {...(CSSStyleValue|string)} values
372
+ * @return {undefined}
373
+ * @see https://developer.mozilla.org/docs/Web/API/StylePropertyMap/set
374
+ */
375
+ StylePropertyMap.prototype.set = function(property, values) {};
376
+
377
+ /**
378
+ * @constructor
379
+ * @extends {CSSRule}
380
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSStyleRule
381
+ */
382
+ function CSSStyleRule() {}
383
+
384
+ /**
385
+ * @type {string}
386
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSStyleRule-selectorText
387
+ */
388
+ CSSStyleRule.prototype.selectorText;
389
+
390
+ /**
391
+ * @type {CSSStyleDeclaration}
392
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSStyleRule-style
393
+ */
394
+ CSSStyleRule.prototype.style;
395
+
396
+ /**
397
+ * @type {!StylePropertyMap}
398
+ * @see https://developer.mozilla.org/docs/Web/API/CSSStyleRule/styleMap
399
+ */
400
+ CSSStyleRule.prototype.styleMap;
401
+
402
+ /**
403
+ * @constructor
404
+ * @extends {CSSRule}
405
+ * @see https://www.w3.org/TR/css-conditional-3/#the-csssupportsrule-interface
406
+ */
407
+ function CSSSupportsRule() {}
408
+
409
+ /**
410
+ * @type {string}
411
+ */
412
+ CSSSupportsRule.prototype.conditionText;
413
+
414
+ /**
415
+ * @type {!CSSRuleList}
416
+ */
417
+ CSSSupportsRule.prototype.cssRules;
418
+
419
+ /**
420
+ * @constructor
421
+ * @extends {CSSRule}
422
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSMediaRule
423
+ */
424
+ function CSSMediaRule() {}
425
+
426
+ /**
427
+ * @type {MediaList}
428
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSMediaRule-mediaTypes
429
+ */
430
+ CSSMediaRule.prototype.media;
431
+
432
+ /**
433
+ * @type {CSSRuleList}
434
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSMediaRule-cssRules
435
+ */
436
+ CSSMediaRule.prototype.cssRules;
437
+
438
+ /**
439
+ * @param {string} rule
440
+ * @param {number} index
441
+ * @return {number}
442
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSMediaRule-insertRule
443
+ */
444
+ CSSMediaRule.prototype.insertRule = function(rule, index) {};
445
+
446
+ /**
447
+ * @param {number} index
448
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSMediaRule-deleteRule
449
+ * @return {undefined}
450
+ */
451
+ CSSMediaRule.prototype.deleteRule = function(index) {};
452
+
453
+ /**
454
+ * @constructor
455
+ * @extends {CSSRule}
456
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSFontFaceRule
457
+ */
458
+ function CSSFontFaceRule() {}
459
+
460
+ /**
461
+ * @type {CSSStyleDeclaration}
462
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSFontFaceRule-style
463
+ */
464
+ CSSFontFaceRule.prototype.style;
465
+
466
+ /**
467
+ * @constructor
468
+ * @extends {CSSRule}
469
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSPageRule
470
+ */
471
+ function CSSPageRule() {}
472
+
473
+ /**
474
+ * @type {string}
475
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSPageRule-name
476
+ */
477
+ CSSPageRule.prototype.selectorText;
478
+
479
+ /**
480
+ * @type {CSSStyleDeclaration}
481
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSPageRule-style
482
+ */
483
+ CSSPageRule.prototype.style;
484
+
485
+ /**
486
+ * @constructor
487
+ * @extends {CSSRule}
488
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSImportRule
489
+ */
490
+ function CSSImportRule() {}
491
+
492
+ /**
493
+ * @type {string}
494
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSImportRule-href
495
+ */
496
+ CSSImportRule.prototype.href;
497
+
498
+ /**
499
+ * @type {MediaList}
500
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSImportRule-media
501
+ */
502
+ CSSImportRule.prototype.media;
503
+
504
+ /**
505
+ * @type {CSSStyleSheet}
506
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSImportRule-styleSheet
507
+ */
508
+ CSSImportRule.prototype.styleSheet;
509
+
510
+ /**
511
+ * @constructor
512
+ * @extends {CSSRule}
513
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSCharsetRule
514
+ */
515
+ function CSSCharsetRule() {}
516
+
517
+ /**
518
+ * @type {string}
519
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSCharsetRule-encoding
520
+ */
521
+ CSSCharsetRule.prototype.encoding;
522
+
523
+ /**
524
+ * @constructor
525
+ * @extends {CSSRule}
526
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSUnknownRule
527
+ */
528
+ function CSSUnknownRule() {}
529
+
530
+ /**
531
+ * @constructor
532
+ * @extends {CSSProperties}
533
+ * @implements {IObject<(string|number), string>}
534
+ * @implements {IArrayLike<string>}
535
+ * @implements {Iterable<string>}
536
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSStyleDeclaration
537
+ */
538
+ function CSSStyleDeclaration() {}
539
+
540
+ /**
541
+ * @type {string}
542
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSStyleDeclaration-cssText
543
+ */
544
+ CSSStyleDeclaration.prototype.cssText;
545
+
546
+ /**
547
+ * @type {number}
548
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSStyleDeclaration-length
549
+ */
550
+ CSSStyleDeclaration.prototype.length;
551
+
552
+ /**
553
+ * @type {CSSRule}
554
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSStyleDeclaration-parentRule
555
+ */
556
+ CSSStyleDeclaration.prototype.parentRule;
557
+
558
+ /**
559
+ * @param {string} propertyName
560
+ * @return {CSSValue}
561
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSStyleDeclaration-getPropertyCSSValue
562
+ */
563
+ CSSStyleDeclaration.prototype.getPropertyCSSValue = function(propertyName) {};
564
+
565
+ /**
566
+ * @param {string} propertyName
567
+ * @return {string}
568
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSStyleDeclaration-getPropertyPriority
569
+ */
570
+ CSSStyleDeclaration.prototype.getPropertyPriority = function(propertyName) {};
571
+
572
+ /**
573
+ * @param {string} propertyName
574
+ * @return {string}
575
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSStyleDeclaration-getPropertyValue
576
+ */
577
+ CSSStyleDeclaration.prototype.getPropertyValue = function(propertyName) {};
578
+
579
+ /**
580
+ * @param {number} index
581
+ * @return {string}
582
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSStyleDeclaration-item
583
+ */
584
+ CSSStyleDeclaration.prototype.item = function(index) {};
585
+
586
+ /**
587
+ * @param {string} propertyName
588
+ * @return {string}
589
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSStyleDeclaration-removeProperty
590
+ */
591
+ CSSStyleDeclaration.prototype.removeProperty = function(propertyName) {};
592
+
593
+ /**
594
+ * @param {string} propertyName
595
+ * @param {string} value
596
+ * @param {string=} opt_priority
597
+ * @return {undefined}
598
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSStyleDeclaration-setProperty
599
+ */
600
+ CSSStyleDeclaration.prototype.setProperty = function(
601
+ propertyName, value, opt_priority) {};
602
+
603
+ /**
604
+ * @type {string}
605
+ * @see https://drafts.csswg.org/css-view-transitions/#propdef-view-transition-name
606
+ */
607
+ CSSStyleDeclaration.prototype.viewTransitionName;
608
+
609
+ // IE-specific
610
+
611
+ /**
612
+ * @param {string} name
613
+ * @param {number=} opt_flags
614
+ * @return {string|number|boolean|null}
615
+ * @see http://msdn.microsoft.com/en-us/library/ms536429(VS.85).aspx
616
+ */
617
+ CSSStyleDeclaration.prototype.getAttribute = function(name, opt_flags) {};
618
+
619
+ /**
620
+ * @param {string} name
621
+ * @return {string|number|boolean|null}
622
+ * @see http://msdn.microsoft.com/en-us/library/aa358797(VS.85).aspx
623
+ */
624
+ CSSStyleDeclaration.prototype.getExpression = function(name) {};
625
+
626
+ /**
627
+ * @param {string} name
628
+ * @param {number=} opt_flags
629
+ * @return {boolean}
630
+ * @see http://msdn.microsoft.com/en-us/library/ms536696(VS.85).aspx
631
+ */
632
+ CSSStyleDeclaration.prototype.removeAttribute = function(name, opt_flags) {};
633
+
634
+ /**
635
+ * @param {string} name
636
+ * @return {boolean}
637
+ * @see http://msdn.microsoft.com/en-us/library/aa358798(VS.85).aspx
638
+ */
639
+ CSSStyleDeclaration.prototype.removeExpression = function(name) {};
640
+
641
+ /**
642
+ * @deprecated
643
+ * @param {string} name
644
+ * @param {*} value
645
+ * @param {number=} opt_flags
646
+ * @see http://msdn.microsoft.com/en-us/library/ms536739(VS.85).aspx
647
+ * @return {undefined}
648
+ */
649
+ CSSStyleDeclaration.prototype.setAttribute = function(
650
+ name, value, opt_flags) {};
651
+
652
+ /**
653
+ * @param {string} name
654
+ * @param {string} expr
655
+ * @param {string=} opt_language
656
+ * @return {undefined}
657
+ * @see http://msdn.microsoft.com/en-us/library/ms531196(VS.85).aspx
658
+ */
659
+ CSSStyleDeclaration.prototype.setExpression = function(
660
+ name, expr, opt_language) {};
661
+
662
+ /**
663
+ * Some properties are declared on CSSProperties. Here are the missing ones.
664
+ * @see https://developer.mozilla.org/docs/Web/CSS
665
+ */
666
+ /** @type {string} */ CSSStyleDeclaration.prototype.accentColor;
667
+ /** @type {string} */ CSSStyleDeclaration.prototype.alignmentBaseline;
668
+ /** @type {string} */ CSSStyleDeclaration.prototype.animationComposition;
669
+ /** @type {string} */ CSSStyleDeclaration.prototype.appearance;
670
+ /** @type {string} */ CSSStyleDeclaration.prototype.backgroundClip;
671
+ /** @type {string} */ CSSStyleDeclaration.prototype.backgroundOrigin;
672
+ /** @type {string} */ CSSStyleDeclaration.prototype.baselineShift;
673
+ /** @type {string} */ CSSStyleDeclaration.prototype.baselineSource;
674
+ /** @type {string} */ CSSStyleDeclaration.prototype.borderBlock;
675
+ /** @type {string} */ CSSStyleDeclaration.prototype.borderBlockColor;
676
+ /** @type {string} */ CSSStyleDeclaration.prototype.borderBlockEnd;
677
+ /** @type {string} */ CSSStyleDeclaration.prototype.borderBlockEndColor;
678
+ /** @type {string} */ CSSStyleDeclaration.prototype.borderBlockEndStyle;
679
+ /** @type {string} */ CSSStyleDeclaration.prototype.borderBlockEndWidth;
680
+ /** @type {string} */ CSSStyleDeclaration.prototype.borderBlockStart;
681
+ /** @type {string} */ CSSStyleDeclaration.prototype.borderBlockStartColor;
682
+ /** @type {string} */ CSSStyleDeclaration.prototype.borderBlockStartStyle;
683
+ /** @type {string} */ CSSStyleDeclaration.prototype.borderBlockStartWidth;
684
+ /** @type {string} */ CSSStyleDeclaration.prototype.borderBlockStyle;
685
+ /** @type {string} */ CSSStyleDeclaration.prototype.borderBlockWidth;
686
+ /** @type {string} */ CSSStyleDeclaration.prototype.borderEndEndRadius;
687
+ /** @type {string} */ CSSStyleDeclaration.prototype.borderEndStartRadius;
688
+ /** @type {string} */ CSSStyleDeclaration.prototype.borderInline;
689
+ /** @type {string} */ CSSStyleDeclaration.prototype.borderInlineColor;
690
+ /** @type {string} */ CSSStyleDeclaration.prototype.borderInlineEnd;
691
+ /** @type {string} */ CSSStyleDeclaration.prototype.borderInlineEndColor;
692
+ /** @type {string} */ CSSStyleDeclaration.prototype.borderInlineEndStyle;
693
+ /** @type {string} */ CSSStyleDeclaration.prototype.borderInlineEndWidth;
694
+ /** @type {string} */ CSSStyleDeclaration.prototype.borderInlineStart;
695
+ /** @type {string} */ CSSStyleDeclaration.prototype.borderInlineStartColor;
696
+ /** @type {string} */ CSSStyleDeclaration.prototype.borderInlineStartStyle;
697
+ /** @type {string} */ CSSStyleDeclaration.prototype.borderInlineStartWidth;
698
+ /** @type {string} */ CSSStyleDeclaration.prototype.borderInlineStyle;
699
+ /** @type {string} */ CSSStyleDeclaration.prototype.borderInlineWidth;
700
+ /** @type {string} */ CSSStyleDeclaration.prototype.borderStartEndRadius;
701
+ /** @type {string} */ CSSStyleDeclaration.prototype.borderStartStartRadius;
702
+ /** @type {string} */ CSSStyleDeclaration.prototype.breakAfter;
703
+ /** @type {string} */ CSSStyleDeclaration.prototype.breakBefore;
704
+ /** @type {string} */ CSSStyleDeclaration.prototype.breakInside;
705
+ /** @type {string} */ CSSStyleDeclaration.prototype.caretColor;
706
+ /** @type {string} */ CSSStyleDeclaration.prototype.clipRule;
707
+ /** @type {string} */ CSSStyleDeclaration.prototype.colorInterpolation;
708
+ /** @type {string} */ CSSStyleDeclaration.prototype.colorInterpolationFilters;
709
+ /** @type {string} */ CSSStyleDeclaration.prototype.columnCount;
710
+ /** @type {string} */ CSSStyleDeclaration.prototype.columnFill;
711
+ /** @type {string} */ CSSStyleDeclaration.prototype.columnGap;
712
+ /** @type {string} */ CSSStyleDeclaration.prototype.columnRule;
713
+ /** @type {string} */ CSSStyleDeclaration.prototype.columnRuleColor;
714
+ /** @type {string} */ CSSStyleDeclaration.prototype.columnRuleStyle;
715
+ /** @type {string} */ CSSStyleDeclaration.prototype.columnRuleWidth;
716
+ /** @type {string} */ CSSStyleDeclaration.prototype.columnSpan;
717
+ /** @type {string} */ CSSStyleDeclaration.prototype.columnWidth;
718
+ /** @type {string} */ CSSStyleDeclaration.prototype.columns;
719
+ /** @type {string} */ CSSStyleDeclaration.prototype.containIntrinsicBlockSize;
720
+ /** @type {string} */ CSSStyleDeclaration.prototype.containIntrinsicHeight;
721
+ /** @type {string} */ CSSStyleDeclaration.prototype.containIntrinsicInlineSize;
722
+ /** @type {string} */ CSSStyleDeclaration.prototype.containIntrinsicSize;
723
+ /** @type {string} */ CSSStyleDeclaration.prototype.containIntrinsicWidth;
724
+ /** @type {string} */ CSSStyleDeclaration.prototype.container;
725
+ /** @type {string} */ CSSStyleDeclaration.prototype.counterSet;
726
+ /** @type {string} */ CSSStyleDeclaration.prototype.dominantBaseline;
727
+ /** @type {string} */ CSSStyleDeclaration.prototype.float;
728
+ /** @type {string} */ CSSStyleDeclaration.prototype.floodColor;
729
+ /** @type {string} */ CSSStyleDeclaration.prototype.floodOpacity;
730
+ /** @type {string} */ CSSStyleDeclaration.prototype.fontFeatureSettings;
731
+ /** @type {string} */ CSSStyleDeclaration.prototype.fontKerning;
732
+ /** @type {string} */ CSSStyleDeclaration.prototype.fontOpticalSizing;
733
+ /** @type {string} */ CSSStyleDeclaration.prototype.fontPalette;
734
+ /** @type {string} */ CSSStyleDeclaration.prototype.fontSynthesis;
735
+ /** @type {string} */ CSSStyleDeclaration.prototype.fontSynthesisSmallCaps;
736
+ /** @type {string} */ CSSStyleDeclaration.prototype.fontSynthesisStyle;
737
+ /** @type {string} */ CSSStyleDeclaration.prototype.fontSynthesisWeight;
738
+ /** @type {string} */ CSSStyleDeclaration.prototype.fontVariantAlternates;
739
+ /** @type {string} */ CSSStyleDeclaration.prototype.fontVariantCaps;
740
+ /** @type {string} */ CSSStyleDeclaration.prototype.fontVariantEastAsian;
741
+ /** @type {string} */ CSSStyleDeclaration.prototype.fontVariantLigatures;
742
+ /** @type {string} */ CSSStyleDeclaration.prototype.fontVariantNumeric;
743
+ /** @type {string} */ CSSStyleDeclaration.prototype.fontVariantPosition;
744
+ /** @type {string} */ CSSStyleDeclaration.prototype.fontVariationSettings;
745
+ /** @type {string} */ CSSStyleDeclaration.prototype.forcedColorAdjust;
746
+ /** @type {string} */ CSSStyleDeclaration.prototype.gridColumnGap;
747
+ /** @type {string} */ CSSStyleDeclaration.prototype.gridGap;
748
+ /** @type {string} */ CSSStyleDeclaration.prototype.gridRowGap;
749
+ /** @type {string} */ CSSStyleDeclaration.prototype.hyphenateCharacter;
750
+ /** @type {string} */ CSSStyleDeclaration.prototype.hyphens;
751
+ /** @type {string} */ CSSStyleDeclaration.prototype.imageRendering;
752
+ /** @type {string} */ CSSStyleDeclaration.prototype.justifyItems;
753
+ /** @type {string} */ CSSStyleDeclaration.prototype.justifySelf;
754
+ /** @type {string} */ CSSStyleDeclaration.prototype.lightingColor;
755
+ /** @type {string} */ CSSStyleDeclaration.prototype.lineBreak;
756
+ /** @type {string} */ CSSStyleDeclaration.prototype.marginBlock;
757
+ /** @type {string} */ CSSStyleDeclaration.prototype.marginBlockEnd;
758
+ /** @type {string} */ CSSStyleDeclaration.prototype.marginBlockStart;
759
+ /** @type {string} */ CSSStyleDeclaration.prototype.marginInline;
760
+ /** @type {string} */ CSSStyleDeclaration.prototype.marginInlineEnd;
761
+ /** @type {string} */ CSSStyleDeclaration.prototype.marginInlineStart;
762
+ /** @type {string} */ CSSStyleDeclaration.prototype.marker;
763
+ /** @type {string} */ CSSStyleDeclaration.prototype.markerEnd;
764
+ /** @type {string} */ CSSStyleDeclaration.prototype.markerMid;
765
+ /** @type {string} */ CSSStyleDeclaration.prototype.markerStart;
766
+ /** @type {string} */ CSSStyleDeclaration.prototype.mask;
767
+ /** @type {string} */ CSSStyleDeclaration.prototype.maskClip;
768
+ /** @type {string} */ CSSStyleDeclaration.prototype.maskComposite;
769
+ /** @type {string} */ CSSStyleDeclaration.prototype.maskMode;
770
+ /** @type {string} */ CSSStyleDeclaration.prototype.maskOrigin;
771
+ /** @type {string} */ CSSStyleDeclaration.prototype.maskPosition;
772
+ /** @type {string} */ CSSStyleDeclaration.prototype.maskRepeat;
773
+ /** @type {string} */ CSSStyleDeclaration.prototype.maskSize;
774
+ /** @type {string} */ CSSStyleDeclaration.prototype.maskType;
775
+ /** @type {string} */ CSSStyleDeclaration.prototype.mathDepth;
776
+ /** @type {string} */ CSSStyleDeclaration.prototype.mathStyle;
777
+ /** @type {string} */ CSSStyleDeclaration.prototype.maxBlockSize;
778
+ /** @type {string} */ CSSStyleDeclaration.prototype.maxInlineSize;
779
+ /** @type {string} */ CSSStyleDeclaration.prototype.minBlockSize;
780
+ /** @type {string} */ CSSStyleDeclaration.prototype.minInlineSize;
781
+ /** @type {string} */ CSSStyleDeclaration.prototype.offsetAnchor;
782
+ /** @type {string} */ CSSStyleDeclaration.prototype.offsetDistance;
783
+ /** @type {string} */ CSSStyleDeclaration.prototype.offsetPath;
784
+ /** @type {string} */ CSSStyleDeclaration.prototype.offsetPosition;
785
+ /** @type {string} */ CSSStyleDeclaration.prototype.offsetRotate;
786
+ /** @type {string} */ CSSStyleDeclaration.prototype.overflowAnchor;
787
+ /** @type {string} */ CSSStyleDeclaration.prototype.overflowClipMargin;
788
+ /** @type {string} */ CSSStyleDeclaration.prototype.overscrollBehaviorBlock;
789
+ /** @type {string} */ CSSStyleDeclaration.prototype.overscrollBehaviorInline;
790
+ /** @type {string} */ CSSStyleDeclaration.prototype.overscrollBehaviorX;
791
+ /** @type {string} */ CSSStyleDeclaration.prototype.overscrollBehaviorY;
792
+ /** @type {string} */ CSSStyleDeclaration.prototype.paddingBlock;
793
+ /** @type {string} */ CSSStyleDeclaration.prototype.paddingBlockEnd;
794
+ /** @type {string} */ CSSStyleDeclaration.prototype.paddingBlockStart;
795
+ /** @type {string} */ CSSStyleDeclaration.prototype.paddingInline;
796
+ /** @type {string} */ CSSStyleDeclaration.prototype.paddingInlineEnd;
797
+ /** @type {string} */ CSSStyleDeclaration.prototype.paddingInlineStart;
798
+ /** @type {string} */ CSSStyleDeclaration.prototype.paintOrder;
799
+ /** @type {string} */ CSSStyleDeclaration.prototype.placeContent;
800
+ /** @type {string} */ CSSStyleDeclaration.prototype.placeItems;
801
+ /** @type {string} */ CSSStyleDeclaration.prototype.placeSelf;
802
+ /** @type {string} */ CSSStyleDeclaration.prototype.printColorAdjust;
803
+ /** @type {string} */ CSSStyleDeclaration.prototype.rowGap;
804
+ /** @type {string} */ CSSStyleDeclaration.prototype.rubyAlign;
805
+ /** @type {string} */ CSSStyleDeclaration.prototype.rubyPosition;
806
+ /** @type {string} */ CSSStyleDeclaration.prototype.scrollBehavior;
807
+ /** @type {string} */ CSSStyleDeclaration.prototype.scrollMargin;
808
+ /** @type {string} */ CSSStyleDeclaration.prototype.scrollMarginBlock;
809
+ /** @type {string} */ CSSStyleDeclaration.prototype.scrollMarginBlockEnd;
810
+ /** @type {string} */ CSSStyleDeclaration.prototype.scrollMarginBlockStart;
811
+ /** @type {string} */ CSSStyleDeclaration.prototype.scrollMarginBottom;
812
+ /** @type {string} */ CSSStyleDeclaration.prototype.scrollMarginInline;
813
+ /** @type {string} */ CSSStyleDeclaration.prototype.scrollMarginInlineEnd;
814
+ /** @type {string} */ CSSStyleDeclaration.prototype.scrollMarginInlineStart;
815
+ /** @type {string} */ CSSStyleDeclaration.prototype.scrollMarginLeft;
816
+ /** @type {string} */ CSSStyleDeclaration.prototype.scrollMarginRight;
817
+ /** @type {string} */ CSSStyleDeclaration.prototype.scrollMarginTop;
818
+ /** @type {string} */ CSSStyleDeclaration.prototype.scrollSnapAlign;
819
+ /** @type {string} */ CSSStyleDeclaration.prototype.scrollSnapStop;
820
+ /** @type {string} */ CSSStyleDeclaration.prototype.scrollSnapType;
821
+ /** @type {string} */ CSSStyleDeclaration.prototype.scrollbarColor;
822
+ /** @type {string} */ CSSStyleDeclaration.prototype.scrollbarGutter;
823
+ /** @type {string} */ CSSStyleDeclaration.prototype.scrollbarWidth;
824
+ /** @type {string} */ CSSStyleDeclaration.prototype.shapeImageThreshold;
825
+ /** @type {string} */ CSSStyleDeclaration.prototype.shapeMargin;
826
+ /** @type {string} */ CSSStyleDeclaration.prototype.shapeOutside;
827
+ /** @type {string} */ CSSStyleDeclaration.prototype.shapeRendering;
828
+ /** @type {string} */ CSSStyleDeclaration.prototype.stopColor;
829
+ /** @type {string} */ CSSStyleDeclaration.prototype.stopOpacity;
830
+ /** @type {string} */ CSSStyleDeclaration.prototype.tabSize;
831
+ /** @type {string} */ CSSStyleDeclaration.prototype.textAlignLast;
832
+ /** @type {string} */ CSSStyleDeclaration.prototype.textAnchor;
833
+ /** @type {string} */ CSSStyleDeclaration.prototype.textCombineUpright;
834
+ /** @type {string} */ CSSStyleDeclaration.prototype.textDecorationSkipInk;
835
+ /** @type {string} */ CSSStyleDeclaration.prototype.textDecorationThickness;
836
+ /** @type {string} */ CSSStyleDeclaration.prototype.textEmphasis;
837
+ /** @type {string} */ CSSStyleDeclaration.prototype.textEmphasisColor;
838
+ /** @type {string} */ CSSStyleDeclaration.prototype.textEmphasisPosition;
839
+ /** @type {string} */ CSSStyleDeclaration.prototype.textEmphasisStyle;
840
+ /** @type {string} */ CSSStyleDeclaration.prototype.textOrientation;
841
+ /** @type {string} */ CSSStyleDeclaration.prototype.textRendering;
842
+ /** @type {string} */ CSSStyleDeclaration.prototype.textUnderlineOffset;
843
+ /** @type {string} */ CSSStyleDeclaration.prototype.textUnderlinePosition;
844
+ /** @type {string} */ CSSStyleDeclaration.prototype.textWrap;
845
+ /** @type {string} */ CSSStyleDeclaration.prototype.textWrapMode;
846
+ /** @type {string} */ CSSStyleDeclaration.prototype.textWrapStyle;
847
+ /** @type {string} */ CSSStyleDeclaration.prototype.transformBox;
848
+ /** @type {string} */ CSSStyleDeclaration.prototype.transitionBehavior;
849
+ /** @type {string} */ CSSStyleDeclaration.prototype.vectorEffect;
850
+ /** @type {string} */ CSSStyleDeclaration.prototype.whiteSpaceCollapse;
851
+ /** @type {string} */ CSSStyleDeclaration.prototype.wordBreak;
852
+
853
+ /**
854
+ * @constructor
855
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSValue
856
+ */
857
+ function CSSValue() {}
858
+
859
+ /**
860
+ * @type {string}
861
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSValue-cssText
862
+ */
863
+ CSSValue.prototype.cssText;
864
+
865
+ /**
866
+ * @type {number}
867
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSValue-cssValueType
868
+ */
869
+ CSSValue.prototype.cssValueType;
870
+
871
+ /**
872
+ * @const {number}
873
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSValue-types
874
+ */
875
+ CSSValue.CSS_INHERIT;
876
+
877
+ /**
878
+ * @const {number}
879
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSValue-types
880
+ */
881
+ CSSValue.CSS_PRIMITIVE_VALUE;
882
+
883
+ /**
884
+ * @const {number}
885
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSValue-types
886
+ */
887
+ CSSValue.CSS_VALUE_LIST;
888
+
889
+ /**
890
+ * @const {number}
891
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSValue-types
892
+ */
893
+ CSSValue.CSS_CUSTOM;
894
+
895
+ /**
896
+ * @constructor
897
+ * @extends {CSSValue}
898
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSPrimitiveValue
899
+ */
900
+ function CSSPrimitiveValue() {}
901
+
902
+ /**
903
+ * @type {number}
904
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSPrimitiveValue
905
+ */
906
+ CSSPrimitiveValue.prototype.primitiveType;
907
+
908
+ /**
909
+ * @const {number}
910
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSPrimitiveValue
911
+ */
912
+ CSSPrimitiveValue.CSS_UNKNOWN;
913
+
914
+ /**
915
+ * @const {number}
916
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSPrimitiveValue
917
+ */
918
+ CSSPrimitiveValue.CSS_NUMBER;
919
+
920
+ /**
921
+ * @const {number}
922
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSPrimitiveValue
923
+ */
924
+ CSSPrimitiveValue.CSS_PERCENTAGE;
925
+
926
+ /**
927
+ * @const {number}
928
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSPrimitiveValue
929
+ */
930
+ CSSPrimitiveValue.CSS_EMS;
931
+
932
+ /**
933
+ * @const {number}
934
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSPrimitiveValue
935
+ */
936
+ CSSPrimitiveValue.CSS_EXS;
937
+
938
+ /**
939
+ * @const {number}
940
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSPrimitiveValue
941
+ */
942
+ CSSPrimitiveValue.CSS_PX;
943
+
944
+ /**
945
+ * @const {number}
946
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSPrimitiveValue
947
+ */
948
+ CSSPrimitiveValue.CSS_CM;
949
+
950
+ /**
951
+ * @const {number}
952
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSPrimitiveValue
953
+ */
954
+ CSSPrimitiveValue.CSS_MM;
955
+
956
+ /**
957
+ * @const {number}
958
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSPrimitiveValue
959
+ */
960
+ CSSPrimitiveValue.CSS_IN;
961
+
962
+ /**
963
+ * @const {number}
964
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSPrimitiveValue
965
+ */
966
+ CSSPrimitiveValue.CSS_PT;
967
+
968
+ /**
969
+ * @const {number}
970
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSPrimitiveValue
971
+ */
972
+ CSSPrimitiveValue.CSS_PC;
973
+
974
+ /**
975
+ * @const {number}
976
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSPrimitiveValue
977
+ */
978
+ CSSPrimitiveValue.CSS_DEG;
979
+
980
+ /**
981
+ * @const {number}
982
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSPrimitiveValue
983
+ */
984
+ CSSPrimitiveValue.CSS_RAD;
985
+
986
+ /**
987
+ * @const {number}
988
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSPrimitiveValue
989
+ */
990
+ CSSPrimitiveValue.CSS_GRAD;
991
+
992
+ /**
993
+ * @const {number}
994
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSPrimitiveValue
995
+ */
996
+ CSSPrimitiveValue.CSS_MS;
997
+
998
+ /**
999
+ * @const {number}
1000
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSPrimitiveValue
1001
+ */
1002
+ CSSPrimitiveValue.CSS_S;
1003
+
1004
+ /**
1005
+ * @const {number}
1006
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSPrimitiveValue
1007
+ */
1008
+ CSSPrimitiveValue.CSS_HZ;
1009
+
1010
+ /**
1011
+ * @const {number}
1012
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSPrimitiveValue
1013
+ */
1014
+ CSSPrimitiveValue.CSS_KHZ;
1015
+
1016
+ /**
1017
+ * @const {number}
1018
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSPrimitiveValue
1019
+ */
1020
+ CSSPrimitiveValue.CSS_DIMENSION;
1021
+
1022
+ /**
1023
+ * @const {number}
1024
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSPrimitiveValue
1025
+ */
1026
+ CSSPrimitiveValue.CSS_STRING;
1027
+
1028
+ /**
1029
+ * @const {number}
1030
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSPrimitiveValue
1031
+ */
1032
+ CSSPrimitiveValue.CSS_URI;
1033
+
1034
+ /**
1035
+ * @const {number}
1036
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSPrimitiveValue
1037
+ */
1038
+ CSSPrimitiveValue.CSS_IDENT;
1039
+
1040
+ /**
1041
+ * @const {number}
1042
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSPrimitiveValue
1043
+ */
1044
+ CSSPrimitiveValue.CSS_ATTR;
1045
+
1046
+ /**
1047
+ * @const {number}
1048
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSPrimitiveValue
1049
+ */
1050
+ CSSPrimitiveValue.CSS_COUNTER;
1051
+
1052
+ /**
1053
+ * @const {number}
1054
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSPrimitiveValue
1055
+ */
1056
+ CSSPrimitiveValue.CSS_RECT;
1057
+
1058
+ /**
1059
+ * @const {number}
1060
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSPrimitiveValue
1061
+ */
1062
+ CSSPrimitiveValue.CSS_RGBCOLOR;
1063
+
1064
+ /**
1065
+ * @return {Counter}
1066
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSPrimitiveValue-getCounterValue
1067
+ * @throws DOMException {@see DomException.INVALID_ACCESS_ERR}
1068
+ */
1069
+ CSSPrimitiveValue.prototype.getCounterValue = function() {};
1070
+
1071
+ /**
1072
+ * @param {number} unitType
1073
+ * @return {number}
1074
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSPrimitiveValue-getFloatValue
1075
+ * @throws DOMException {@see DomException.INVALID_ACCESS_ERR}
1076
+ */
1077
+ CSSPrimitiveValue.prototype.getFloatValue = function(unitType) {};
1078
+
1079
+ /**
1080
+ * @return {RGBColor}
1081
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSPrimitiveValue-getRGBColorValue
1082
+ * @throws DOMException {@see DomException.INVALID_ACCESS_ERR}
1083
+ */
1084
+ CSSPrimitiveValue.prototype.getRGBColorValue = function() {};
1085
+
1086
+ /**
1087
+ * @return {Rect}
1088
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSPrimitiveValue-getRectValue
1089
+ * @throws DOMException {@see DomException.INVALID_ACCESS_ERR}
1090
+ */
1091
+ CSSPrimitiveValue.prototype.getRectValue = function() {};
1092
+
1093
+ /**
1094
+ * @return {string}
1095
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSPrimitiveValue-getStringValue
1096
+ * @throws DOMException {@see DomException.INVALID_ACCESS_ERR}
1097
+ */
1098
+ CSSPrimitiveValue.prototype.getStringValue = function() {};
1099
+
1100
+ /**
1101
+ * @param {number} unitType
1102
+ * @param {number} floatValue
1103
+ * @return {undefined}
1104
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSPrimitiveValue-setFloatValue
1105
+ * @throws DOMException {@see DomException.INVALID_ACCESS_ERR},
1106
+ * {@see DomException.NO_MODIFICATION_ALLOWED_ERR}
1107
+ */
1108
+ CSSPrimitiveValue.prototype.setFloatValue = function(unitType, floatValue) {};
1109
+
1110
+ /**
1111
+ * @param {number} stringType
1112
+ * @param {string} stringValue
1113
+ * @return {undefined}
1114
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSPrimitiveValue-setStringValue
1115
+ * @throws DOMException {@see DomException.INVALID_ACCESS_ERR},
1116
+ * {@see DomException.NO_MODIFICATION_ALLOWED_ERR}
1117
+ */
1118
+ CSSPrimitiveValue.prototype.setStringValue = function(
1119
+ stringType, stringValue) {};
1120
+
1121
+ /**
1122
+ * @constructor
1123
+ * @extends {CSSValue}
1124
+ * @implements {IArrayLike<!CSSValue>}
1125
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSValueList
1126
+ */
1127
+ function CSSValueList() {}
1128
+
1129
+ /**
1130
+ * @type {number}
1131
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSValueList-length
1132
+ */
1133
+ CSSValueList.prototype.length;
1134
+
1135
+ /**
1136
+ * @param {number} index
1137
+ * @return {CSSValue}
1138
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSValueList-item
1139
+ */
1140
+ CSSValueList.prototype.item = function(index) {};
1141
+
1142
+ /**
1143
+ * @constructor
1144
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-RGBColor
1145
+ */
1146
+ function RGBColor() {}
1147
+
1148
+ /**
1149
+ * @type {CSSPrimitiveValue}
1150
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-RGBColor-red
1151
+ */
1152
+ RGBColor.prototype.red;
1153
+
1154
+ /**
1155
+ * @type {CSSPrimitiveValue}
1156
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-RGBColor-green
1157
+ */
1158
+ RGBColor.prototype.green;
1159
+
1160
+ /**
1161
+ * @type {CSSPrimitiveValue}
1162
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-RGBColor-blue
1163
+ */
1164
+ RGBColor.prototype.blue;
1165
+
1166
+ /**
1167
+ * @constructor
1168
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-Rect
1169
+ */
1170
+ function Rect() {}
1171
+
1172
+ /**
1173
+ * @type {CSSPrimitiveValue}
1174
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-Rect-top
1175
+ */
1176
+ Rect.prototype.top;
1177
+
1178
+ /**
1179
+ * @type {CSSPrimitiveValue}
1180
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-Rect-right
1181
+ */
1182
+ Rect.prototype.right;
1183
+
1184
+ /**
1185
+ * @type {CSSPrimitiveValue}
1186
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-Rect-bottom
1187
+ */
1188
+ Rect.prototype.bottom;
1189
+
1190
+ /**
1191
+ * @type {CSSPrimitiveValue}
1192
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-Rect-left
1193
+ */
1194
+ Rect.prototype.left;
1195
+
1196
+ /**
1197
+ * @constructor
1198
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-Counter
1199
+ */
1200
+ function Counter() {}
1201
+
1202
+ /**
1203
+ * @type {string}
1204
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-Counter-identifier
1205
+ */
1206
+ Counter.prototype.identifier;
1207
+
1208
+ /**
1209
+ * @type {string}
1210
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-Counter-listStyle
1211
+ */
1212
+ Counter.prototype.listStyle;
1213
+
1214
+ /**
1215
+ * @type {string}
1216
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-Counter-separator
1217
+ */
1218
+ Counter.prototype.separator;
1219
+
1220
+ /**
1221
+ * @interface
1222
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-ViewCSS
1223
+ */
1224
+ function ViewCSS() {}
1225
+
1226
+ /**
1227
+ * @param {Element} elt
1228
+ * @param {?string=} opt_pseudoElt This argument is required according to the
1229
+ * CSS2 specification, but optional in all major browsers. See the note at
1230
+ * https://developer.mozilla.org/en-US/docs/Web/API/Window.getComputedStyle
1231
+ * @return {?CSSStyleDeclaration}
1232
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSview-getComputedStyle
1233
+ * @see https://bugzilla.mozilla.org/show_bug.cgi?id=548397
1234
+ */
1235
+ ViewCSS.prototype.getComputedStyle = function(elt, opt_pseudoElt) {};
1236
+
1237
+ /**
1238
+ * @constructor
1239
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-DocumentCSS
1240
+ */
1241
+ function DocumentCSS() {}
1242
+
1243
+ /**
1244
+ * @param {Element} elt
1245
+ * @param {string} pseudoElt
1246
+ * @return {CSSStyleDeclaration}
1247
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-DocumentCSS-getOverrideStyle
1248
+ */
1249
+ DocumentCSS.prototype.getOverrideStyle = function(elt, pseudoElt) {};
1250
+
1251
+ /**
1252
+ * @constructor
1253
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-DOMImplementationCSS
1254
+ */
1255
+ function DOMImplementationCSS() {}
1256
+
1257
+ /**
1258
+ * @param {string} title
1259
+ * @param {string} media
1260
+ * @return {CSSStyleSheet}
1261
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-DOMImplementationCSS-createCSSStyleSheet
1262
+ * @throws DOMException {@see DomException.SYNTAX_ERR}
1263
+ */
1264
+ DOMImplementationCSS.prototype.createCSSStyleSheet = function(title, media) {};
1265
+
1266
+ /**
1267
+ * @record
1268
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-ElementCSSInlineStyle
1269
+ */
1270
+ function ElementCSSInlineStyle() {}
1271
+
1272
+ /**
1273
+ * @type {CSSStyleDeclaration}
1274
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-ElementCSSInlineStyle-style
1275
+ */
1276
+ ElementCSSInlineStyle.prototype.style;
1277
+
1278
+ /**
1279
+ * @constructor
1280
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties
1281
+ */
1282
+ function CSSProperties() {}
1283
+
1284
+ // CSS 2 properties
1285
+
1286
+ /**
1287
+ * @type {string}
1288
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-azimuth
1289
+ */
1290
+ CSSProperties.prototype.azimuth;
1291
+
1292
+ /**
1293
+ * @type {string}
1294
+ * @see https://drafts.fxtf.org/filter-effects-2/#BackdropFilterProperty
1295
+ */
1296
+ CSSProperties.prototype.backdropFilter;
1297
+
1298
+ /**
1299
+ * @type {string}
1300
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-background
1301
+ */
1302
+ CSSProperties.prototype.background;
1303
+
1304
+ /**
1305
+ * @type {string}
1306
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-backgroundAttachment
1307
+ */
1308
+ CSSProperties.prototype.backgroundAttachment;
1309
+
1310
+ /**
1311
+ * @type {string}
1312
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-backgroundColor
1313
+ */
1314
+ CSSProperties.prototype.backgroundColor;
1315
+
1316
+ /**
1317
+ * @type {string}
1318
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-backgroundImage
1319
+ */
1320
+ CSSProperties.prototype.backgroundImage;
1321
+
1322
+ /**
1323
+ * @type {string}
1324
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-backgroundPosition
1325
+ */
1326
+ CSSProperties.prototype.backgroundPosition;
1327
+
1328
+ /**
1329
+ * @type {string}
1330
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-backgroundRepeat
1331
+ */
1332
+ CSSProperties.prototype.backgroundRepeat;
1333
+
1334
+ /**
1335
+ * @type {string}
1336
+ * @see http://www.w3.org/TR/css3-background/#the-background-size
1337
+ */
1338
+ CSSProperties.prototype.backgroundSize;
1339
+
1340
+ /**
1341
+ * @implicitCast
1342
+ * @type {string}
1343
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-border
1344
+ */
1345
+ CSSProperties.prototype.border;
1346
+
1347
+ /**
1348
+ * @type {string}
1349
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-borderCollapse
1350
+ */
1351
+ CSSProperties.prototype.borderCollapse;
1352
+
1353
+ /**
1354
+ * @type {string}
1355
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-borderColor
1356
+ */
1357
+ CSSProperties.prototype.borderColor;
1358
+
1359
+ /**
1360
+ * @type {string}
1361
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-borderSpacing
1362
+ */
1363
+ CSSProperties.prototype.borderSpacing;
1364
+
1365
+ /**
1366
+ * @type {string}
1367
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSPrimitiveValue-borderStyle
1368
+ */
1369
+ CSSProperties.prototype.borderStyle;
1370
+
1371
+ /**
1372
+ * @type {string}
1373
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-borderTop
1374
+ */
1375
+ CSSProperties.prototype.borderTop;
1376
+
1377
+ /**
1378
+ * @type {string}
1379
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-borderRight
1380
+ */
1381
+ CSSProperties.prototype.borderRight;
1382
+
1383
+ /**
1384
+ * @type {string}
1385
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-borderBottom
1386
+ */
1387
+ CSSProperties.prototype.borderBottom;
1388
+
1389
+ /**
1390
+ * @type {string}
1391
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-borderLeft
1392
+ */
1393
+ CSSProperties.prototype.borderLeft;
1394
+
1395
+ /**
1396
+ * @type {string}
1397
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-borderTopColor
1398
+ */
1399
+ CSSProperties.prototype.borderTopColor;
1400
+
1401
+ /**
1402
+ * @type {string}
1403
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-borderRightColor
1404
+ */
1405
+ CSSProperties.prototype.borderRightColor;
1406
+
1407
+ /**
1408
+ * @type {string}
1409
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-borderBottomColor
1410
+ */
1411
+ CSSProperties.prototype.borderBottomColor;
1412
+
1413
+ /**
1414
+ * @type {string}
1415
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-borderLeftColor
1416
+ */
1417
+ CSSProperties.prototype.borderLeftColor;
1418
+
1419
+ /**
1420
+ * @type {string}
1421
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-borderTopStyle
1422
+ */
1423
+ CSSProperties.prototype.borderTopStyle;
1424
+
1425
+ /**
1426
+ * @type {string}
1427
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-borderRightStyle
1428
+ */
1429
+ CSSProperties.prototype.borderRightStyle;
1430
+
1431
+ /**
1432
+ * @type {string}
1433
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-borderBottomStyle
1434
+ */
1435
+ CSSProperties.prototype.borderBottomStyle;
1436
+
1437
+ /**
1438
+ * @type {string}
1439
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-borderLeftStyle
1440
+ */
1441
+ CSSProperties.prototype.borderLeftStyle;
1442
+
1443
+ /**
1444
+ * @type {string|number}
1445
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-borderTopWidth
1446
+ */
1447
+ CSSProperties.prototype.borderTopWidth;
1448
+
1449
+ /**
1450
+ * @type {string|number}
1451
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-borderRightWidth
1452
+ */
1453
+ CSSProperties.prototype.borderRightWidth;
1454
+
1455
+ /**
1456
+ * @type {string|number}
1457
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-borderBottomWidth
1458
+ */
1459
+ CSSProperties.prototype.borderBottomWidth;
1460
+
1461
+ /**
1462
+ * @type {string|number}
1463
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-borderLeftWidth
1464
+ */
1465
+ CSSProperties.prototype.borderLeftWidth;
1466
+
1467
+ /**
1468
+ * @type {string|number}
1469
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-borderWidth
1470
+ */
1471
+ CSSProperties.prototype.borderWidth;
1472
+
1473
+ /**
1474
+ * @type {string|number}
1475
+ * @see http://www.w3.org/TR/css3-background/#the-border-radius
1476
+ */
1477
+ CSSProperties.prototype.borderRadius;
1478
+
1479
+ /**
1480
+ * @type {string|number}
1481
+ * @see http://www.w3.org/TR/css3-background/#the-border-radius
1482
+ */
1483
+ CSSProperties.prototype.borderBottomLeftRadius;
1484
+
1485
+ /**
1486
+ * @type {string|number}
1487
+ * @see http://www.w3.org/TR/css3-background/#the-border-radius
1488
+ */
1489
+ CSSProperties.prototype.borderBottomRightRadius;
1490
+
1491
+ /**
1492
+ * @type {string|number}
1493
+ * @see http://www.w3.org/TR/css3-background/#the-border-radius
1494
+ */
1495
+ CSSProperties.prototype.borderTopLeftRadius;
1496
+
1497
+ /**
1498
+ * @type {string|number}
1499
+ * @see http://www.w3.org/TR/css3-background/#the-border-radius
1500
+ */
1501
+ CSSProperties.prototype.borderTopRightRadius;
1502
+
1503
+ /**
1504
+ * @type {string}
1505
+ * @see http://www.w3.org/TR/css3-background/#the-border-image-source
1506
+ */
1507
+ CSSProperties.prototype.borderImageSource;
1508
+
1509
+ /**
1510
+ * @type {string|number}
1511
+ * @see http://www.w3.org/TR/css3-background/#the-border-image-slice
1512
+ */
1513
+ CSSProperties.prototype.borderImageSlice;
1514
+
1515
+ /**
1516
+ * @type {string|number}
1517
+ * @see http://www.w3.org/TR/css3-background/#the-border-image-width
1518
+ */
1519
+ CSSProperties.prototype.borderImageWidth;
1520
+
1521
+ /**
1522
+ * @type {string|number}
1523
+ * @see http://www.w3.org/TR/css3-background/#the-border-image-outset
1524
+ */
1525
+ CSSProperties.prototype.borderImageOutset;
1526
+
1527
+ /**
1528
+ * @type {string}
1529
+ * @see http://www.w3.org/TR/css3-background/#the-border-image-repeat
1530
+ */
1531
+ CSSProperties.prototype.borderImageRepeat;
1532
+
1533
+ /**
1534
+ * @type {string}
1535
+ * @see http://www.w3.org/TR/css3-background/#the-border-image
1536
+ */
1537
+ CSSProperties.prototype.borderImage;
1538
+
1539
+ /**
1540
+ * @type {string}
1541
+ * @see https://www.w3.org/TR/1998/REC-CSS2-19980512/visuren.html#propdef-bottom
1542
+ */
1543
+ CSSProperties.prototype.bottom;
1544
+
1545
+ /**
1546
+ * @type {string}
1547
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-captionSide
1548
+ */
1549
+ CSSProperties.prototype.captionSide;
1550
+
1551
+ /**
1552
+ * @type {string}
1553
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-clear
1554
+ */
1555
+ CSSProperties.prototype.clear;
1556
+
1557
+ /**
1558
+ * @type {string}
1559
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-clip
1560
+ */
1561
+ CSSProperties.prototype.clip;
1562
+
1563
+ /**
1564
+ * @type {string}
1565
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-color
1566
+ */
1567
+ CSSProperties.prototype.color;
1568
+
1569
+ /**
1570
+ * @type {string}
1571
+ * @see https://drafts.csswg.org/css-color-adjust/#color-scheme-prop
1572
+ */
1573
+ CSSProperties.prototype.colorScheme;
1574
+
1575
+ /**
1576
+ * @type {string}
1577
+ * @see http://www.w3.org/TR/css-contain-2/#contain-property
1578
+ */
1579
+ CSSProperties.prototype.contain;
1580
+
1581
+ /**
1582
+ * @type {string}
1583
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-content
1584
+ */
1585
+ CSSProperties.prototype.content;
1586
+
1587
+ /**
1588
+ * @type {string}
1589
+ * @see http://www.w3.org/TR/css-contain-2/#content-visibility
1590
+ */
1591
+ CSSProperties.prototype.contentVisibility;
1592
+
1593
+ /**
1594
+ * @type {string}
1595
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-counterIncrement
1596
+ */
1597
+ CSSProperties.prototype.counterIncrement;
1598
+
1599
+ /**
1600
+ * @type {string}
1601
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-counterReset
1602
+ */
1603
+ CSSProperties.prototype.counterReset;
1604
+
1605
+ /**
1606
+ * This is not an official part of the W3C spec. In practice, this is a settable
1607
+ * property that works cross-browser. It is used in goog.dom.setProperties() and
1608
+ * needs to be extern'd so the --disambiguate_properties JS compiler pass works.
1609
+ * @type {string}
1610
+ */
1611
+ CSSProperties.prototype.cssText;
1612
+
1613
+ /**
1614
+ * @type {string}
1615
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-cue
1616
+ */
1617
+ CSSProperties.prototype.cue;
1618
+
1619
+ /**
1620
+ * @type {string}
1621
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-cueAfter
1622
+ */
1623
+ CSSProperties.prototype.cueAfter;
1624
+
1625
+ /**
1626
+ * @type {string}
1627
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-cueBefore
1628
+ */
1629
+ CSSProperties.prototype.cueBefore;
1630
+
1631
+ /**
1632
+ * @type {string}
1633
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-cursor
1634
+ */
1635
+ CSSProperties.prototype.cursor;
1636
+
1637
+ /**
1638
+ * @type {string}
1639
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-direction
1640
+ */
1641
+ CSSProperties.prototype.direction;
1642
+
1643
+ /**
1644
+ * @type {string}
1645
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-display
1646
+ */
1647
+ CSSProperties.prototype.display;
1648
+
1649
+ /**
1650
+ * @type {string}
1651
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-elevation
1652
+ */
1653
+ CSSProperties.prototype.elevation;
1654
+
1655
+ /**
1656
+ * @type {string}
1657
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-emptyCells
1658
+ */
1659
+ CSSProperties.prototype.emptyCells;
1660
+
1661
+ /**
1662
+ * @type {string}
1663
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-cssFloat
1664
+ */
1665
+ CSSProperties.prototype.cssFloat;
1666
+
1667
+ /**
1668
+ * @type {string}
1669
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-font
1670
+ */
1671
+ CSSProperties.prototype.font;
1672
+
1673
+ /**
1674
+ * @type {string}
1675
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-fontFamily
1676
+ */
1677
+ CSSProperties.prototype.fontFamily;
1678
+
1679
+ /**
1680
+ * @type {string|number}
1681
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-fontSize
1682
+ */
1683
+ CSSProperties.prototype.fontSize;
1684
+
1685
+ /**
1686
+ * @type {string}
1687
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-fontSizeAdjust
1688
+ */
1689
+ CSSProperties.prototype.fontSizeAdjust;
1690
+
1691
+ /**
1692
+ * @type {string}
1693
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-fontStretch
1694
+ */
1695
+ CSSProperties.prototype.fontStretch;
1696
+
1697
+ /**
1698
+ * @type {string}
1699
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-fontStyle
1700
+ */
1701
+ CSSProperties.prototype.fontStyle;
1702
+
1703
+ /**
1704
+ * @type {string}
1705
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-fontVariant
1706
+ */
1707
+ CSSProperties.prototype.fontVariant;
1708
+
1709
+ /**
1710
+ * @type {string}
1711
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-fontWeight
1712
+ */
1713
+ CSSProperties.prototype.fontWeight;
1714
+
1715
+ /**
1716
+ * @type {string}
1717
+ * @see https://www.w3.org/TR/css-align-3/#propdef-gap
1718
+ */
1719
+ CSSProperties.prototype.gap;
1720
+
1721
+ /**
1722
+ * @type {string}
1723
+ * @see https://www.w3.org/TR/css-grid-1/#propdef-grid
1724
+ */
1725
+ CSSProperties.prototype.grid;
1726
+
1727
+ /**
1728
+ * @type {string}
1729
+ * @see https://www.w3.org/TR/css-grid-1/#propdef-grid-area
1730
+ */
1731
+ CSSProperties.prototype.gridArea;
1732
+
1733
+ /**
1734
+ * @type {string}
1735
+ * @see https://www.w3.org/TR/css-grid-1/#propdef-grid-auto-columns
1736
+ */
1737
+ CSSProperties.prototype.gridAutoColumns;
1738
+
1739
+ /**
1740
+ * @type {string}
1741
+ * @see https://www.w3.org/TR/css-grid-1/#propdef-grid-auto-flow
1742
+ */
1743
+ CSSProperties.prototype.gridAutoFlow;
1744
+
1745
+ /**
1746
+ * @type {string}
1747
+ * @see https://www.w3.org/TR/css-grid-1/#propdef-grid-auto-rows
1748
+ */
1749
+ CSSProperties.prototype.gridAutoRows;
1750
+
1751
+ /**
1752
+ * @type {string}
1753
+ * @see https://www.w3.org/TR/css-grid-1/#propdef-grid-column
1754
+ */
1755
+ CSSProperties.prototype.gridColumn;
1756
+
1757
+ /**
1758
+ * @type {string}
1759
+ * @see https://www.w3.org/TR/css-grid-1/#propdef-grid-column-end
1760
+ */
1761
+ CSSProperties.prototype.gridColumnEnd;
1762
+
1763
+ /**
1764
+ * @type {string}
1765
+ * @see https://www.w3.org/TR/css-grid-1/#propdef-grid-column-start
1766
+ */
1767
+ CSSProperties.prototype.gridColumnStart;
1768
+
1769
+ /**
1770
+ * @type {string}
1771
+ * @see https://www.w3.org/TR/css-grid-1/#propdef-grid-row
1772
+ */
1773
+ CSSProperties.prototype.gridRow;
1774
+
1775
+ /**
1776
+ * @type {string}
1777
+ * @see https://www.w3.org/TR/css-grid-1/#propdef-grid-row-end
1778
+ */
1779
+ CSSProperties.prototype.gridRowEnd;
1780
+
1781
+ /**
1782
+ * @type {string}
1783
+ * @see https://www.w3.org/TR/css-grid-1/#propdef-grid-row-start
1784
+ */
1785
+ CSSProperties.prototype.gridRowStart;
1786
+
1787
+ /**
1788
+ * @type {string}
1789
+ * @see https://www.w3.org/TR/css-grid-1/#propdef-grid-template
1790
+ */
1791
+ CSSProperties.prototype.gridTemplate;
1792
+
1793
+ /**
1794
+ * @type {string}
1795
+ * @see https://www.w3.org/TR/css-grid-1/#propdef-grid-template-areas
1796
+ */
1797
+ CSSProperties.prototype.gridTemplateAreas;
1798
+
1799
+ /**
1800
+ * @type {string}
1801
+ * @see https://www.w3.org/TR/css-grid-1/#propdef-grid-template-columns
1802
+ */
1803
+ CSSProperties.prototype.gridTemplateColumns;
1804
+
1805
+ /**
1806
+ * @type {string}
1807
+ * @see https://www.w3.org/TR/css-grid-1/#propdef-grid-template-rows
1808
+ */
1809
+ CSSProperties.prototype.gridTemplateRows;
1810
+
1811
+ /**
1812
+ * @type {string|number}
1813
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-height
1814
+ */
1815
+ CSSProperties.prototype.height;
1816
+
1817
+ /**
1818
+ * @type {string}
1819
+ * @see https://drafts.csswg.org/css-logical/#propdef-inset
1820
+ */
1821
+ CSSProperties.prototype.inset;
1822
+
1823
+ /**
1824
+ * @type {string}
1825
+ * @see https://drafts.csswg.org/css-logical/#position-properties
1826
+ */
1827
+ CSSProperties.prototype.insetBlock;
1828
+
1829
+ /**
1830
+ * @type {string}
1831
+ * @see https://drafts.csswg.org/css-logical/#position-properties
1832
+ */
1833
+ CSSProperties.prototype.insetBlockEnd;
1834
+
1835
+ /**
1836
+ * @type {string}
1837
+ * @see https://drafts.csswg.org/css-logical/#position-properties
1838
+ */
1839
+ CSSProperties.prototype.insetBlockStart;
1840
+
1841
+ /**
1842
+ * @type {string}
1843
+ * @see https://drafts.csswg.org/css-logical/#position-properties
1844
+ */
1845
+ CSSProperties.prototype.insetInline;
1846
+
1847
+ /**
1848
+ * @type {string}
1849
+ * @see https://drafts.csswg.org/css-logical/#position-properties
1850
+ */
1851
+ CSSProperties.prototype.insetInlineEnd;
1852
+
1853
+ /**
1854
+ * @type {string}
1855
+ * @see https://drafts.csswg.org/css-logical/#position-properties
1856
+ */
1857
+ CSSProperties.prototype.insetInlineStart;
1858
+
1859
+ /**
1860
+ * @type {string}
1861
+ * @see https://www.w3.org/TR/1998/REC-CSS2-19980512/visuren.html#propdef-left
1862
+ */
1863
+ CSSProperties.prototype.left;
1864
+
1865
+ /**
1866
+ * @type {string}
1867
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-letterSpacing
1868
+ */
1869
+ CSSProperties.prototype.letterSpacing;
1870
+
1871
+ /**
1872
+ * @type {string|number}
1873
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-lineHeight
1874
+ */
1875
+ CSSProperties.prototype.lineHeight;
1876
+
1877
+ /**
1878
+ * @type {string}
1879
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-listStyle
1880
+ */
1881
+ CSSProperties.prototype.listStyle;
1882
+
1883
+ /**
1884
+ * @type {string}
1885
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-listStyleImage
1886
+ */
1887
+ CSSProperties.prototype.listStyleImage;
1888
+
1889
+ /**
1890
+ * @type {string}
1891
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-listStylePosition
1892
+ */
1893
+ CSSProperties.prototype.listStylePosition;
1894
+
1895
+ /**
1896
+ * @type {string}
1897
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-listStyleType
1898
+ */
1899
+ CSSProperties.prototype.listStyleType;
1900
+
1901
+ /**
1902
+ * @type {string|number}
1903
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-margin
1904
+ */
1905
+ CSSProperties.prototype.margin;
1906
+
1907
+ /**
1908
+ * @type {string|number}
1909
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-marginTop
1910
+ */
1911
+ CSSProperties.prototype.marginTop;
1912
+
1913
+ /**
1914
+ * @type {string|number}
1915
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-marginRight
1916
+ */
1917
+ CSSProperties.prototype.marginRight;
1918
+
1919
+ /**
1920
+ * @type {string|number}
1921
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-marginBottom
1922
+ */
1923
+ CSSProperties.prototype.marginBottom;
1924
+
1925
+ /**
1926
+ * @type {string|number}
1927
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-marginLeft
1928
+ */
1929
+ CSSProperties.prototype.marginLeft;
1930
+
1931
+ /**
1932
+ * @type {string}
1933
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-markerOffset
1934
+ */
1935
+ CSSProperties.prototype.markerOffset;
1936
+
1937
+ /**
1938
+ * @type {string}
1939
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-marks
1940
+ */
1941
+ CSSProperties.prototype.marks;
1942
+
1943
+ /**
1944
+ * @type {string|number}
1945
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-maxHeight
1946
+ */
1947
+ CSSProperties.prototype.maxHeight;
1948
+
1949
+ /**
1950
+ * @type {string|number}
1951
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-maxWidth
1952
+ */
1953
+ CSSProperties.prototype.maxWidth;
1954
+
1955
+ /**
1956
+ * @type {string|number}
1957
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-minHeight
1958
+ */
1959
+ CSSProperties.prototype.minHeight;
1960
+
1961
+ /**
1962
+ * @type {string|number}
1963
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-minWidth
1964
+ */
1965
+ CSSProperties.prototype.minWidth;
1966
+
1967
+ /**
1968
+ * @type {string}
1969
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-orphans
1970
+ */
1971
+ CSSProperties.prototype.orphans;
1972
+
1973
+ /**
1974
+ * @type {string}
1975
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-outline
1976
+ */
1977
+ CSSProperties.prototype.outline;
1978
+
1979
+ /**
1980
+ * @type {string}
1981
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-outlineColor
1982
+ */
1983
+ CSSProperties.prototype.outlineColor;
1984
+
1985
+ /**
1986
+ * @type {string}
1987
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-outlineStyle
1988
+ */
1989
+ CSSProperties.prototype.outlineStyle;
1990
+
1991
+ /**
1992
+ * @type {string|number}
1993
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-outlineWidth
1994
+ */
1995
+ CSSProperties.prototype.outlineWidth;
1996
+
1997
+ /**
1998
+ * @type {string}
1999
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-overflow
2000
+ */
2001
+ CSSProperties.prototype.overflow;
2002
+
2003
+ /**
2004
+ * @type {string}
2005
+ * @see https://drafts.csswg.org/css-scroll-anchoring/#exclusion-api
2006
+ */
2007
+ CSSProperties.prototype.overflowAnchor;
2008
+
2009
+ /**
2010
+ * @type {string}
2011
+ * @see https://drafts.csswg.org/css-overflow/#overflow-clip-margin
2012
+ */
2013
+ CSSProperties.prototype.overflowClipMargin;
2014
+
2015
+ /**
2016
+ * @type {string}
2017
+ * @see https://drafts.csswg.org/css-text/#overflow-wrap-property
2018
+ */
2019
+ CSSProperties.prototype.overflowWrap;
2020
+
2021
+ /**
2022
+ * @type {string}
2023
+ * @see https://drafts.csswg.org/css-overflow/#overflow-properties
2024
+ */
2025
+ CSSProperties.prototype.overflowX;
2026
+
2027
+ /**
2028
+ * @type {string}
2029
+ * @see https://drafts.csswg.org/css-overflow/#overflow-properties
2030
+ */
2031
+ CSSProperties.prototype.overflowY;
2032
+
2033
+ /**
2034
+ * @type {string}
2035
+ * @see https://www.w3.org/TR/css-overscroll-1/#propdef-overscroll-behavior
2036
+ */
2037
+ CSSProperties.prototype.overscrollBehavior;
2038
+
2039
+ /**
2040
+ * @type {string|number}
2041
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-padding
2042
+ */
2043
+ CSSProperties.prototype.padding;
2044
+
2045
+ /**
2046
+ * @type {string|number}
2047
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-paddingTop
2048
+ */
2049
+ CSSProperties.prototype.paddingTop;
2050
+
2051
+ /**
2052
+ * @type {string|number}
2053
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-paddingRight
2054
+ */
2055
+ CSSProperties.prototype.paddingRight;
2056
+
2057
+ /**
2058
+ * @type {string|number}
2059
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-paddingBottom
2060
+ */
2061
+ CSSProperties.prototype.paddingBottom;
2062
+
2063
+ /**
2064
+ * @type {string|number}
2065
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-paddingLeft
2066
+ */
2067
+ CSSProperties.prototype.paddingLeft;
2068
+
2069
+ /**
2070
+ * @type {string}
2071
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-page
2072
+ */
2073
+ CSSProperties.prototype.page;
2074
+
2075
+ /**
2076
+ * @type {string}
2077
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-pageBreakAfter
2078
+ */
2079
+ CSSProperties.prototype.pageBreakAfter;
2080
+
2081
+ /**
2082
+ * @type {string}
2083
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-pageBreakBefore
2084
+ */
2085
+ CSSProperties.prototype.pageBreakBefore;
2086
+
2087
+ /**
2088
+ * @type {string}
2089
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-pageBreakInside
2090
+ */
2091
+ CSSProperties.prototype.pageBreakInside;
2092
+
2093
+ /**
2094
+ * @type {string}
2095
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-pause
2096
+ */
2097
+ CSSProperties.prototype.pause;
2098
+
2099
+ /**
2100
+ * @type {string}
2101
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-pauseAfter
2102
+ */
2103
+ CSSProperties.prototype.pauseAfter;
2104
+
2105
+ /**
2106
+ * @type {string}
2107
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-pauseBefore
2108
+ */
2109
+ CSSProperties.prototype.pauseBefore;
2110
+
2111
+ /**
2112
+ * @type {string}
2113
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-pitch
2114
+ */
2115
+ CSSProperties.prototype.pitch;
2116
+
2117
+ /**
2118
+ * @type {string}
2119
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-pitchRange
2120
+ */
2121
+ CSSProperties.prototype.pitchRange;
2122
+
2123
+ /**
2124
+ * @type {string}
2125
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-playDuring
2126
+ */
2127
+ CSSProperties.prototype.playDuring;
2128
+
2129
+ /**
2130
+ * @type {string}
2131
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-position
2132
+ */
2133
+ CSSProperties.prototype.position;
2134
+
2135
+ /**
2136
+ * @type {string}
2137
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-quotes
2138
+ */
2139
+ CSSProperties.prototype.quotes;
2140
+
2141
+ /**
2142
+ * @type {string}
2143
+ * @see http://www.w3.org/TR/css3-ui/#resize
2144
+ */
2145
+ CSSProperties.prototype.resize;
2146
+
2147
+ /**
2148
+ * @type {string}
2149
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-richness
2150
+ */
2151
+ CSSProperties.prototype.richness;
2152
+
2153
+ /**
2154
+ * @type {string}
2155
+ * @see https://www.w3.org/TR/1998/REC-CSS2-19980512/visuren.html#propdef-right
2156
+ */
2157
+ CSSProperties.prototype.right;
2158
+
2159
+ /**
2160
+ * @type {string}
2161
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-size
2162
+ */
2163
+ CSSProperties.prototype.size;
2164
+
2165
+ /**
2166
+ * @type {string}
2167
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-speak
2168
+ */
2169
+ CSSProperties.prototype.speak;
2170
+
2171
+ /**
2172
+ * @type {string}
2173
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-speakHeader
2174
+ */
2175
+ CSSProperties.prototype.speakHeader;
2176
+
2177
+ /**
2178
+ * @type {string}
2179
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-speakNumeral
2180
+ */
2181
+ CSSProperties.prototype.speakNumeral;
2182
+
2183
+ /**
2184
+ * @type {string}
2185
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-speakPunctuation
2186
+ */
2187
+ CSSProperties.prototype.speakPunctuation;
2188
+
2189
+ /**
2190
+ * @type {string}
2191
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-speechRate
2192
+ */
2193
+ CSSProperties.prototype.speechRate;
2194
+
2195
+ /**
2196
+ * @type {string}
2197
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-stress
2198
+ */
2199
+ CSSProperties.prototype.stress;
2200
+
2201
+ /**
2202
+ * @type {string}
2203
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-tableLayout
2204
+ */
2205
+ CSSProperties.prototype.tableLayout;
2206
+
2207
+ /**
2208
+ * @type {string}
2209
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-textAlign
2210
+ */
2211
+ CSSProperties.prototype.textAlign;
2212
+
2213
+ /**
2214
+ * @type {string}
2215
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-textDecoration
2216
+ */
2217
+ CSSProperties.prototype.textDecoration;
2218
+
2219
+ /**
2220
+ * @type {string}
2221
+ * @see https://www.w3.org/TR/css-text-decor-3/#text-decoration-line-property
2222
+ */
2223
+ CSSProperties.prototype.textDecorationLine;
2224
+
2225
+ /**
2226
+ * @type {string}
2227
+ * @see https://www.w3.org/TR/css-text-decor-3/#text-decoration-style-property
2228
+ */
2229
+ CSSProperties.prototype.textDecorationStyle;
2230
+
2231
+ /**
2232
+ * @type {string}
2233
+ * @see https://www.w3.org/TR/css-text-decor-3/#text-decoration-color-property
2234
+ */
2235
+ CSSProperties.prototype.textDecorationColor;
2236
+
2237
+ /**
2238
+ * @type {string}
2239
+ * @see https://www.w3.org/TR/css-text-decor-3/#text-underline-position-property
2240
+ */
2241
+ CSSProperties.prototype.textDecorationPosition;
2242
+
2243
+ /**
2244
+ * @type {string}
2245
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-textIndent
2246
+ */
2247
+ CSSProperties.prototype.textIndent;
2248
+
2249
+ /**
2250
+ * @type {string}
2251
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-textShadow
2252
+ */
2253
+ CSSProperties.prototype.textShadow;
2254
+
2255
+ /**
2256
+ * @type {string}
2257
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-textTransform
2258
+ */
2259
+ CSSProperties.prototype.textTransform;
2260
+
2261
+ /**
2262
+ * @type {string}
2263
+ * @see https://www.w3.org/TR/1998/REC-CSS2-19980512/visuren.html#propdef-top
2264
+ */
2265
+ CSSProperties.prototype.top;
2266
+
2267
+ /**
2268
+ * @type {string}
2269
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-unicodeBidi
2270
+ */
2271
+ CSSProperties.prototype.unicodeBidi;
2272
+
2273
+ /**
2274
+ * @type {string}
2275
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-verticalAlign
2276
+ */
2277
+ CSSProperties.prototype.verticalAlign;
2278
+
2279
+ /**
2280
+ * @type {string}
2281
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-visibility
2282
+ */
2283
+ CSSProperties.prototype.visibility;
2284
+
2285
+ /**
2286
+ * @type {string}
2287
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-voiceFamily
2288
+ */
2289
+ CSSProperties.prototype.voiceFamily;
2290
+
2291
+ /**
2292
+ * @type {string}
2293
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-volume
2294
+ */
2295
+ CSSProperties.prototype.volume;
2296
+
2297
+ /**
2298
+ * @type {string}
2299
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-whiteSpace
2300
+ */
2301
+ CSSProperties.prototype.whiteSpace;
2302
+
2303
+ /**
2304
+ * @type {string}
2305
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-widows
2306
+ */
2307
+ CSSProperties.prototype.widows;
2308
+
2309
+ /**
2310
+ * @type {string|number}
2311
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-width
2312
+ */
2313
+ CSSProperties.prototype.width;
2314
+
2315
+ /**
2316
+ * @type {string}
2317
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-wordSpacing
2318
+ */
2319
+ CSSProperties.prototype.wordSpacing;
2320
+
2321
+ /**
2322
+ * @type {string}
2323
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-wordWrap
2324
+ */
2325
+ CSSProperties.prototype.wordWrap;
2326
+
2327
+ /**
2328
+ * @type {string|number}
2329
+ * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSProperties-zIndex
2330
+ */
2331
+ CSSProperties.prototype.zIndex;
2332
+
2333
+ // CSS 3 properties
2334
+
2335
+ /**
2336
+ * @type {string}
2337
+ * @see http://www.w3.org/TR/css3-background/#box-shadow
2338
+ */
2339
+ CSSProperties.prototype.boxShadow;
2340
+
2341
+ /**
2342
+ * @type {string}
2343
+ * @see http://www.w3.org/TR/css3-ui/#box-sizing
2344
+ */
2345
+ CSSProperties.prototype.boxSizing;
2346
+
2347
+ /**
2348
+ * @type {string|number}
2349
+ * @see http://www.w3.org/TR/css3-color/#transparency
2350
+ */
2351
+ CSSProperties.prototype.opacity;
2352
+
2353
+ /**
2354
+ * @type {string}
2355
+ * @see https://www.w3.org/TR/css-ui-3/#outline-offset
2356
+ */
2357
+ CSSProperties.prototype.outlineOffset;
2358
+
2359
+ /**
2360
+ * @type {string}
2361
+ * @see http://www.w3.org/TR/css3-ui/#text-overflow
2362
+ */
2363
+ CSSProperties.prototype.textOverflow;
2364
+
2365
+ // CSS 3 animations
2366
+
2367
+ /**
2368
+ * @type {string|number}
2369
+ * @see https://www.w3.org/TR/css-animations-1/#animation
2370
+ */
2371
+ CSSProperties.prototype.animation;
2372
+
2373
+ /**
2374
+ * @type {string}
2375
+ * @see https://www.w3.org/TR/css-animations-1/#animation-delay
2376
+ */
2377
+ CSSProperties.prototype.animationDelay;
2378
+
2379
+ /**
2380
+ * @type {string}
2381
+ * @see https://www.w3.org/TR/css-animations-1/#animation-direction
2382
+ */
2383
+ CSSProperties.prototype.animationDirection;
2384
+
2385
+ /**
2386
+ * @type {string}
2387
+ * @see https://www.w3.org/TR/css-animations-1/#animation-duration
2388
+ */
2389
+ CSSProperties.prototype.animationDuration;
2390
+
2391
+ /**
2392
+ * @type {string}
2393
+ * @see https://www.w3.org/TR/css-animations-1/#animation-fill-mode
2394
+ */
2395
+ CSSProperties.prototype.animationFillMode;
2396
+
2397
+ /**
2398
+ * @type {string|number}
2399
+ * @see https://www.w3.org/TR/css-animations-1/#animation-iteration-count
2400
+ */
2401
+ CSSProperties.prototype.animationIterationCount;
2402
+
2403
+ /**
2404
+ * @type {string}
2405
+ * @see https://www.w3.org/TR/css-animations-1/#animation-name
2406
+ */
2407
+ CSSProperties.prototype.animationName;
2408
+
2409
+ /**
2410
+ * @type {string}
2411
+ * @see https://www.w3.org/TR/css-animations-1/#animation-play-state
2412
+ */
2413
+ CSSProperties.prototype.animationPlayState;
2414
+
2415
+ /**
2416
+ * @type {string}
2417
+ * @see https://www.w3.org/TR/css-animations-1/#animation-timing-function
2418
+ */
2419
+ CSSProperties.prototype.animationTimingFunction;
2420
+
2421
+ // CSS 3 transforms
2422
+
2423
+ /**
2424
+ * @type {string}
2425
+ * @see http://www.w3.org/TR/css3-2d-transforms/#backface-visibility-property
2426
+ */
2427
+ CSSProperties.prototype.backfaceVisibility;
2428
+
2429
+ /**
2430
+ * @type {string}
2431
+ * @see http://www.w3.org/TR/css3-2d-transforms/#perspective
2432
+ */
2433
+ CSSProperties.prototype.perspective;
2434
+
2435
+ /**
2436
+ * @type {string|number}
2437
+ * @see http://www.w3.org/TR/css3-2d-transforms/#perspective-origin
2438
+ */
2439
+ CSSProperties.prototype.perspectiveOrigin;
2440
+
2441
+ /**
2442
+ * @type {string}
2443
+ * @see http://www.w3.org/TR/css3-2d-transforms/#effects
2444
+ */
2445
+ CSSProperties.prototype.transform;
2446
+
2447
+ /**
2448
+ * @type {string|number}
2449
+ * @see http://www.w3.org/TR/css3-2d-transforms/#transform-origin
2450
+ */
2451
+ CSSProperties.prototype.transformOrigin;
2452
+
2453
+ /**
2454
+ * @type {string}
2455
+ * @see http://www.w3.org/TR/css3-2d-transforms/#transform-style
2456
+ */
2457
+ CSSProperties.prototype.transformStyle;
2458
+
2459
+ // CSS 3 transitions
2460
+
2461
+ /**
2462
+ * @type {string}
2463
+ * @see http://www.w3.org/TR/css3-transitions/#transition
2464
+ */
2465
+ CSSProperties.prototype.transition;
2466
+
2467
+ /**
2468
+ * @type {string}
2469
+ * @see http://www.w3.org/TR/css3-transitions/#transition-delay
2470
+ */
2471
+ CSSProperties.prototype.transitionDelay;
2472
+
2473
+ /**
2474
+ * @type {string}
2475
+ * @see http://www.w3.org/TR/css3-transitions/#transition-duration
2476
+ */
2477
+ CSSProperties.prototype.transitionDuration;
2478
+
2479
+ /**
2480
+ * @type {string}
2481
+ * @see http://www.w3.org/TR/css3-transitions/#transition-property-property
2482
+ */
2483
+ CSSProperties.prototype.transitionProperty;
2484
+
2485
+ /**
2486
+ * @type {string}
2487
+ * @see http://www.w3.org/TR/css3-transitions/#transition-timing-function
2488
+ */
2489
+ CSSProperties.prototype.transitionTimingFunction;
2490
+
2491
+ /**
2492
+ * @type {string}
2493
+ * @see http://www.w3.org/TR/SVG11/interact.html#PointerEventsProperty
2494
+ */
2495
+ CSSProperties.prototype.pointerEvents;
2496
+
2497
+ // CSS Compositing 1
2498
+
2499
+ /**
2500
+ * @type {string}
2501
+ * @see https://www.w3.org/TR/compositing-1/#mix-blend-mode
2502
+ */
2503
+ CSSProperties.prototype.mixBlendMode;
2504
+
2505
+ /**
2506
+ * @type {string}
2507
+ * @see https://www.w3.org/TR/compositing-1/#isolation
2508
+ */
2509
+ CSSProperties.prototype.isolation;
2510
+
2511
+ /**
2512
+ * @type {string}
2513
+ * @see https://www.w3.org/TR/compositing-1/#background-blend-mode
2514
+ */
2515
+ CSSProperties.prototype.backgroundBlendMode;
2516
+
2517
+
2518
+ // CSS Flexbox 1
2519
+
2520
+
2521
+ /**
2522
+ * @type {string}
2523
+ * @see https://www.w3.org/TR/css-flexbox-1/#align-content-property
2524
+ */
2525
+ CSSProperties.prototype.alignContent;
2526
+
2527
+ /**
2528
+ * @type {string}
2529
+ * @see https://www.w3.org/TR/css-flexbox-1/#align-items-property
2530
+ */
2531
+ CSSProperties.prototype.alignItems;
2532
+
2533
+ /**
2534
+ * @type {string}
2535
+ * @see https://www.w3.org/TR/css-flexbox-1/#align-items-property
2536
+ */
2537
+ CSSProperties.prototype.alignSelf;
2538
+
2539
+ /**
2540
+ * @type {string}
2541
+ * @see https://www.w3.org/TR/css-flexbox-1/#flex-property
2542
+ */
2543
+ CSSProperties.prototype.flex;
2544
+
2545
+ /**
2546
+ * @type {string}
2547
+ * @see https://www.w3.org/TR/css-flexbox-1/#flex-basis-property
2548
+ */
2549
+ CSSProperties.prototype.flexBasis;
2550
+
2551
+ /**
2552
+ * @type {string}
2553
+ * @see https://www.w3.org/TR/css-flexbox-1/#flex-direction-property
2554
+ */
2555
+ CSSProperties.prototype.flexDirection;
2556
+
2557
+ /**
2558
+ * @type {string}
2559
+ * @see https://www.w3.org/TR/css-flexbox-1/#flex-flow-property
2560
+ */
2561
+ CSSProperties.prototype.flexFlow;
2562
+
2563
+ /**
2564
+ * @type {number}
2565
+ * @see https://www.w3.org/TR/css-flexbox-1/#flex-grow-property
2566
+ */
2567
+ CSSProperties.prototype.flexGrow;
2568
+
2569
+ /**
2570
+ * @type {number}
2571
+ * @see https://www.w3.org/TR/css-flexbox-1/#flex-shrink-property
2572
+ */
2573
+ CSSProperties.prototype.flexShrink;
2574
+
2575
+ /**
2576
+ * @type {string}
2577
+ * @see https://www.w3.org/TR/css-flexbox-1/#flex-wrap-property
2578
+ */
2579
+ CSSProperties.prototype.flexWrap;
2580
+
2581
+ /**
2582
+ * @type {string}
2583
+ * @see https://www.w3.org/TR/css-flexbox-1/#justify-content-property
2584
+ */
2585
+ CSSProperties.prototype.justifyContent;
2586
+
2587
+ /**
2588
+ * @type {number}
2589
+ * @see https://www.w3.org/TR/css-flexbox-1/#order-property
2590
+ */
2591
+ CSSProperties.prototype.order;
2592
+
2593
+ // Externs for CSS Will Change Module Level 1
2594
+ // http://www.w3.org/TR/css-will-change/
2595
+
2596
+ /**
2597
+ * @type {string}
2598
+ * @see http://www.w3.org/TR/css-will-change-1/#will-change
2599
+ */
2600
+ CSSProperties.prototype.willChange;
2601
+
2602
+ /**
2603
+ * @type {string}
2604
+ * @see https://www.w3.org/TR/css-ui-4/#propdef-user-select
2605
+ */
2606
+ CSSProperties.prototype.userSelect;
2607
+
2608
+ // CSS 3 Images
2609
+
2610
+ /**
2611
+ * @type {string}
2612
+ * @see https://www.w3.org/TR/css3-images/#the-object-fit
2613
+ */
2614
+ CSSProperties.prototype.objectFit;
2615
+
2616
+ /**
2617
+ * @type {string}
2618
+ * @see https://www.w3.org/TR/css3-images/#object-position
2619
+ */
2620
+ CSSProperties.prototype.objectPosition;
2621
+
2622
+ // CSS Masking
2623
+
2624
+ /**
2625
+ * @type {string}
2626
+ * @see https://www.w3.org/TR/css-masking-1/
2627
+ */
2628
+ CSSProperties.prototype.clipPath;
2629
+
2630
+ /**
2631
+ * @type {string}
2632
+ * @see https://www.w3.org/TR/css-masking-1/
2633
+ */
2634
+ CSSProperties.prototype.maskImage;
2635
+
2636
+ // CSS Containment
2637
+
2638
+ /**
2639
+ * @type {string}
2640
+ * @see https://www.w3.org/TR/css-contain-1/
2641
+ */
2642
+ CSSProperties.prototype.contain;
2643
+
2644
+ // SVG Fill Properties
2645
+
2646
+ /**
2647
+ * @type {string}
2648
+ * @see https://www.w3.org/TR/fill-stroke-3/#fill-shorthand
2649
+ */
2650
+ CSSProperties.prototype.fill;
2651
+
2652
+ /**
2653
+ * @type {string}
2654
+ * @see https://www.w3.org/TR/fill-stroke-3/#fill-opacity
2655
+ */
2656
+ CSSProperties.prototype.fillOpacity;
2657
+
2658
+ /**
2659
+ * @type {string}
2660
+ * @see https://www.w3.org/TR/fill-stroke-3/#fill-rule
2661
+ */
2662
+ CSSProperties.prototype.fillRule;
2663
+
2664
+ // SVG Stroke Properties
2665
+
2666
+ /**
2667
+ * @type {string}
2668
+ * @see https://www.w3.org/TR/svg-strokes/
2669
+ */
2670
+ CSSProperties.prototype.stroke;
2671
+
2672
+ /**
2673
+ * @type {string}
2674
+ * @see https://www.w3.org/TR/svg-strokes/
2675
+ */
2676
+ CSSProperties.prototype.strokeAlignment;
2677
+
2678
+ /**
2679
+ * @type {string}
2680
+ * @see https://www.w3.org/TR/svg-strokes/
2681
+ */
2682
+ CSSProperties.prototype.strokeOpacity;
2683
+
2684
+ /**
2685
+ * @type {string}
2686
+ * @see https://www.w3.org/TR/svg-strokes/
2687
+ */
2688
+ CSSProperties.prototype.strokeWidth;
2689
+
2690
+ /**
2691
+ * @type {string}
2692
+ * @see https://www.w3.org/TR/svg-strokes/
2693
+ */
2694
+ CSSProperties.prototype.strokeLinecap;
2695
+
2696
+ /**
2697
+ * @type {string}
2698
+ * @see https://www.w3.org/TR/svg-strokes/
2699
+ */
2700
+ CSSProperties.prototype.strokeLinejoin;
2701
+
2702
+ /**
2703
+ * @type {string}
2704
+ * @see https://www.w3.org/TR/svg-strokes/
2705
+ */
2706
+ CSSProperties.prototype.strokeMiterlimit;
2707
+
2708
+ /**
2709
+ * @type {string}
2710
+ * @see https://www.w3.org/TR/svg-strokes/
2711
+ */
2712
+ CSSProperties.prototype.strokeDasharray;
2713
+
2714
+ /**
2715
+ * @type {string}
2716
+ * @see https://www.w3.org/TR/svg-strokes/
2717
+ */
2718
+ CSSProperties.prototype.strokeDashoffset;
2719
+
2720
+ /**
2721
+ * @type {string}
2722
+ * @see https://www.w3.org/TR/svg-strokes/
2723
+ */
2724
+ CSSProperties.prototype.strokeDashcorner;
2725
+
2726
+ /**
2727
+ * @type {string}
2728
+ * @see https://www.w3.org/TR/svg-strokes/
2729
+ */
2730
+ CSSProperties.prototype.strokeDashadjust;
2731
+
2732
+ /**
2733
+ * TODO(dbeam): Put this in separate file named w3c_cssom.js.
2734
+ * Externs for the CSSOM View Module.
2735
+ * @see http://www.w3.org/TR/cssom-view/
2736
+ */
2737
+
2738
+ // http://www.w3.org/TR/cssom-view/#extensions-to-the-window-interface
2739
+
2740
+ /**
2741
+ * @param {string} media_query_list
2742
+ * @return {!MediaQueryList}
2743
+ * @see http://www.w3.org/TR/cssom-view/#dom-window-matchmedia
2744
+ */
2745
+ Window.prototype.matchMedia = function(media_query_list) {};
2746
+
2747
+ /**
2748
+ * @type {number}
2749
+ * @see http://www.w3.org/TR/cssom-view/#dom-window-innerwidth
2750
+ */
2751
+ Window.prototype.innerWidth;
2752
+
2753
+ /**
2754
+ * @type {number}
2755
+ * @see http://www.w3.org/TR/cssom-view/#dom-window-innerheight
2756
+ */
2757
+ Window.prototype.innerHeight;
2758
+
2759
+ /**
2760
+ * @type {number}
2761
+ * @see http://www.w3.org/TR/cssom-view/#dom-window-scrollx
2762
+ */
2763
+ Window.prototype.scrollX;
2764
+
2765
+ /**
2766
+ * @type {number}
2767
+ * @see http://www.w3.org/TR/cssom-view/#dom-window-pagexoffset
2768
+ */
2769
+ Window.prototype.pageXOffset;
2770
+
2771
+ /**
2772
+ * @type {number}
2773
+ * @see http://www.w3.org/TR/cssom-view/#dom-window-scrolly
2774
+ */
2775
+ Window.prototype.scrollY;
2776
+
2777
+ /**
2778
+ * @type {number}
2779
+ * @see http://www.w3.org/TR/cssom-view/#dom-window-pageyoffset
2780
+ */
2781
+ Window.prototype.pageYOffset;
2782
+
2783
+ /**
2784
+ * @typedef {{
2785
+ * left: (number|undefined),
2786
+ * top: (number|undefined),
2787
+ * behavior: (string|undefined)
2788
+ * }}
2789
+ * @see https://www.w3.org/TR/cssom-view/#dictdef-scrolltooptions
2790
+ */
2791
+ var ScrollToOptions;
2792
+
2793
+ /**
2794
+ * @record
2795
+ * @see https://www.w3.org/TR/cssom-view/#dictdef-scrollintoviewoptions
2796
+ */
2797
+ function ScrollIntoViewOptions() {}
2798
+
2799
+ /** @type {string|undefined} */
2800
+ ScrollIntoViewOptions.prototype.behavior;
2801
+
2802
+ /** @type {string|undefined} */
2803
+ ScrollIntoViewOptions.prototype.block;
2804
+
2805
+ /** @type {string|undefined} */
2806
+ ScrollIntoViewOptions.prototype.inline;
2807
+
2808
+ /**
2809
+ * @param {number|!ScrollToOptions} scrollToOptionsOrX
2810
+ * @param {number=} opt_y
2811
+ * @see http://www.w3.org/TR/cssom-view/#dom-window-scroll
2812
+ * @return {undefined}
2813
+ */
2814
+ Window.prototype.scroll = function(scrollToOptionsOrX, opt_y) {};
2815
+
2816
+ /**
2817
+ * @param {number|!ScrollToOptions} scrollToOptionsOrX
2818
+ * @param {number=} opt_y
2819
+ * @see http://www.w3.org/TR/cssom-view/#dom-window-scrollto
2820
+ * @return {undefined}
2821
+ */
2822
+ Window.prototype.scrollTo = function(scrollToOptionsOrX, opt_y) {};
2823
+
2824
+ /**
2825
+ * @param {number|!ScrollToOptions} scrollToOptionsOrX
2826
+ * @param {number=} opt_y
2827
+ * @see http://www.w3.org/TR/cssom-view/#dom-window-scrollby
2828
+ * @return {undefined}
2829
+ */
2830
+ Window.prototype.scrollBy = function(scrollToOptionsOrX, opt_y) {};
2831
+
2832
+ /**
2833
+ * @type {number}
2834
+ * @see http://www.w3.org/TR/cssom-view/#dom-window-screenx
2835
+ */
2836
+ Window.prototype.screenX;
2837
+
2838
+ /**
2839
+ * @type {number}
2840
+ * @see http://www.w3.org/TR/cssom-view/#dom-window-screeny
2841
+ */
2842
+ Window.prototype.screenY;
2843
+
2844
+ /**
2845
+ * @type {number}
2846
+ * @see http://www.w3.org/TR/cssom-view/#dom-window-outerwidth
2847
+ */
2848
+ Window.prototype.outerWidth;
2849
+
2850
+ /**
2851
+ * @type {number}
2852
+ * @see http://www.w3.org/TR/cssom-view/#dom-window-outerheight
2853
+ */
2854
+ Window.prototype.outerHeight;
2855
+
2856
+ /**
2857
+ * @type {number}
2858
+ * @see https://www.w3.org/TR/cssom-view/#dom-window-devicepixelratio
2859
+ */
2860
+ Window.prototype.devicePixelRatio;
2861
+
2862
+ /**
2863
+ * @param {number} x
2864
+ * @param {number} y
2865
+ * @return {undefined}
2866
+ * @see https://www.w3.org/TR/cssom-view/#dom-window-moveto
2867
+ */
2868
+ Window.prototype.moveTo = function(x, y) {};
2869
+
2870
+ /**
2871
+ * @param {number} x
2872
+ * @param {number} y
2873
+ * @return {undefined}
2874
+ * @see https://www.w3.org/TR/cssom-view/#dom-window-moveby
2875
+ */
2876
+ Window.prototype.moveBy = function(x, y) {};
2877
+
2878
+ /**
2879
+ * @param {number} x
2880
+ * @param {number} y
2881
+ * @return {undefined}
2882
+ * @see https://www.w3.org/TR/cssom-view/#dom-window-resizeto
2883
+ */
2884
+ Window.prototype.resizeTo = function(x, y) {};
2885
+
2886
+ /**
2887
+ * @param {number} x
2888
+ * @param {number} y
2889
+ * @return {undefined}
2890
+ * @see https://www.w3.org/TR/cssom-view/#dom-window-resizeby
2891
+ */
2892
+ Window.prototype.resizeBy = function(x, y) {};
2893
+
2894
+ /**
2895
+ * @constructor
2896
+ * @implements {EventTarget}
2897
+ * @see http://www.w3.org/TR/cssom-view/#mediaquerylist
2898
+ */
2899
+ function MediaQueryList() {}
2900
+
2901
+ /**
2902
+ * @type {string}
2903
+ * @see http://www.w3.org/TR/cssom-view/#dom-mediaquerylist-media
2904
+ */
2905
+ MediaQueryList.prototype.media;
2906
+
2907
+ /**
2908
+ * @type {boolean}
2909
+ * @see http://www.w3.org/TR/cssom-view/#dom-mediaquerylist-matches
2910
+ */
2911
+ MediaQueryList.prototype.matches;
2912
+
2913
+ /**
2914
+ * @param {MediaQueryListListener} listener
2915
+ * @see http://www.w3.org/TR/cssom-view/#dom-mediaquerylist-addlistener
2916
+ * @return {undefined}
2917
+ */
2918
+ MediaQueryList.prototype.addListener = function(listener) {};
2919
+
2920
+ /**
2921
+ * @param {MediaQueryListListener} listener
2922
+ * @see http://www.w3.org/TR/cssom-view/#dom-mediaquerylist-removelistener
2923
+ * @return {undefined}
2924
+ */
2925
+ MediaQueryList.prototype.removeListener = function(listener) {};
2926
+
2927
+ /** @override Not available in some browsers; use addListener instead. */
2928
+ MediaQueryList.prototype.addEventListener = function(
2929
+ type, listener, opt_options) {};
2930
+
2931
+ /** @override Not available in old browsers; use removeListener instead. */
2932
+ MediaQueryList.prototype.removeEventListener = function(
2933
+ type, listener, opt_options) {};
2934
+
2935
+ /** @override */
2936
+ MediaQueryList.prototype.dispatchEvent = function(evt) {};
2937
+
2938
+ /**
2939
+ * @typedef {(function(!MediaQueryList) : void)}
2940
+ * @see http://www.w3.org/TR/cssom-view/#mediaquerylistlistener
2941
+ */
2942
+ var MediaQueryListListener;
2943
+
2944
+ /**
2945
+ * @see https://developer.mozilla.org/en-US/docs/Web/API/MediaQueryListEvent
2946
+ * @constructor
2947
+ * @extends {Event}
2948
+ */
2949
+ function MediaQueryListEvent() {}
2950
+
2951
+ /**
2952
+ * A boolean value; returns true if the document currently matches the media
2953
+ * query list, false if not.
2954
+ * @const {boolean}
2955
+ */
2956
+ MediaQueryListEvent.prototype.matches;
2957
+
2958
+ /**
2959
+ * A String representing a serialized media query.
2960
+ * @const {string}
2961
+ */
2962
+ MediaQueryListEvent.prototype.media;
2963
+
2964
+ /**
2965
+ * @constructor
2966
+ * @see http://www.w3.org/TR/cssom-view/#screen
2967
+ */
2968
+ function Screen() {}
2969
+
2970
+ /**
2971
+ * @type {number}
2972
+ * @see http://www.w3.org/TR/cssom-view/#dom-screen-availwidth
2973
+ */
2974
+ Screen.prototype.availWidth;
2975
+
2976
+ /**
2977
+ * @type {number}
2978
+ * @see http://www.w3.org/TR/cssom-view/#dom-screen-availheight
2979
+ */
2980
+ Screen.prototype.availHeight;
2981
+
2982
+ /**
2983
+ * @type {number}
2984
+ * @see http://www.w3.org/TR/cssom-view/#dom-screen-width
2985
+ */
2986
+ Screen.prototype.width;
2987
+
2988
+ /**
2989
+ * @type {number}
2990
+ * @see http://www.w3.org/TR/cssom-view/#dom-screen-height
2991
+ */
2992
+ Screen.prototype.height;
2993
+
2994
+ /**
2995
+ * @type {number}
2996
+ * @see http://www.w3.org/TR/cssom-view/#dom-screen-colordepth
2997
+ */
2998
+ Screen.prototype.colorDepth;
2999
+
3000
+ /**
3001
+ * @type {number}
3002
+ * @see http://www.w3.org/TR/cssom-view/#dom-screen-pixeldepth
3003
+ */
3004
+ Screen.prototype.pixelDepth;
3005
+
3006
+
3007
+ // http://www.w3.org/TR/cssom-view/#extensions-to-the-document-interface
3008
+
3009
+ /**
3010
+ * @param {number} x
3011
+ * @param {number} y
3012
+ * @return {?Element}
3013
+ * @see http://www.w3.org/TR/cssom-view/#dom-document-elementfrompoint
3014
+ */
3015
+ Document.prototype.elementFromPoint = function(x, y) {};
3016
+
3017
+ /**
3018
+ * @param {number} x
3019
+ * @param {number} y
3020
+ * @return {!IArrayLike<!Element>}
3021
+ * @see http://www.w3.org/TR/cssom-view/#dom-document-elementsfrompoint
3022
+ */
3023
+ Document.prototype.elementsFromPoint = function(x, y) {};
3024
+
3025
+ /**
3026
+ * @param {number} x
3027
+ * @param {number} y
3028
+ * @return {CaretPosition}
3029
+ * @see http://www.w3.org/TR/cssom-view/#dom-document-caretpositionfrompoint
3030
+ */
3031
+ Document.prototype.caretPositionFromPoint = function(x, y) {};
3032
+
3033
+ /**
3034
+ * @type {Element}
3035
+ * @see http://dev.w3.org/csswg/cssom-view/#dom-document-scrollingelement
3036
+ */
3037
+ Document.prototype.scrollingElement;
3038
+
3039
+ /**
3040
+ * @constructor
3041
+ * @see http://www.w3.org/TR/cssom-view/#caretposition
3042
+ */
3043
+ function CaretPosition() {}
3044
+
3045
+ /**
3046
+ * @type {Node}
3047
+ * @see http://www.w3.org/TR/cssom-view/#dom-caretposition-offsetnode
3048
+ */
3049
+ CaretPosition.prototype.offsetNode;
3050
+
3051
+ /**
3052
+ * @type {number}
3053
+ * @see http://www.w3.org/TR/cssom-view/#dom-caretposition-offset
3054
+ */
3055
+ CaretPosition.prototype.offset;
3056
+
3057
+ /**
3058
+ * @type {!StylePropertyMap}
3059
+ */
3060
+ Element.prototype.attributeStyleMap;
3061
+
3062
+ // http://www.w3.org/TR/cssom-view/#extensions-to-the-element-interface
3063
+
3064
+ /**
3065
+ * @return {!ClientRectList}
3066
+ * @see http://www.w3.org/TR/cssom-view/#dom-element-getclientrects
3067
+ */
3068
+ Element.prototype.getClientRects = function() {};
3069
+
3070
+ /**
3071
+ * @return {!DOMRect}
3072
+ * @see http://www.w3.org/TR/cssom-view/#dom-element-getboundingclientrect
3073
+ */
3074
+ Element.prototype.getBoundingClientRect = function() {};
3075
+
3076
+ /**
3077
+ * @param {(boolean|ScrollIntoViewOptions)=} top
3078
+ * @see http://www.w3.org/TR/cssom-view/#dom-element-scrollintoview
3079
+ * @return {undefined}
3080
+ */
3081
+ Element.prototype.scrollIntoView = function(top) {};
3082
+
3083
+ /**
3084
+ * @param {number|!ScrollToOptions} scrollToOptionsOrX
3085
+ * @param {number=} opt_y
3086
+ * @see https://www.w3.org/TR/cssom-view/#extension-to-the-element-interface
3087
+ * @return {undefined}
3088
+ */
3089
+ Element.prototype.scrollTo = function(scrollToOptionsOrX, opt_y) {};
3090
+
3091
+ /**
3092
+ * @type {number}
3093
+ * @see http://www.w3.org/TR/cssom-view/#dom-element-scrolltop
3094
+ */
3095
+ Element.prototype.scrollTop;
3096
+
3097
+ /**
3098
+ * @type {number}
3099
+ * @see http://www.w3.org/TR/cssom-view/#dom-element-scrollleft
3100
+ */
3101
+ Element.prototype.scrollLeft;
3102
+
3103
+ /**
3104
+ * @type {number}
3105
+ * @see http://www.w3.org/TR/cssom-view/#dom-element-scrollwidth
3106
+ */
3107
+ Element.prototype.scrollWidth;
3108
+
3109
+ /**
3110
+ * @type {number}
3111
+ * @see http://www.w3.org/TR/cssom-view/#dom-element-scrollheight
3112
+ */
3113
+ Element.prototype.scrollHeight;
3114
+
3115
+ /**
3116
+ * @type {string}
3117
+ * @see https://www.w3.org/TR/css-scroll-snap-1/
3118
+ */
3119
+ Element.prototype.scrollPadding;
3120
+
3121
+ /**
3122
+ * @type {string}
3123
+ * @see https://www.w3.org/TR/css-scroll-snap-1/
3124
+ */
3125
+ Element.prototype.scrollPaddingBlock;
3126
+
3127
+ /**
3128
+ * @type {string}
3129
+ * @see https://www.w3.org/TR/css-scroll-snap-1/
3130
+ */
3131
+ Element.prototype.scrollPaddingBlockEnd;
3132
+
3133
+ /**
3134
+ * @type {string}
3135
+ * @see https://www.w3.org/TR/css-scroll-snap-1/
3136
+ */
3137
+ Element.prototype.scrollPaddingBlockStart;
3138
+
3139
+ /**
3140
+ * @type {string}
3141
+ * @see https://www.w3.org/TR/css-scroll-snap-1/
3142
+ */
3143
+ Element.prototype.scrollPaddingBottom;
3144
+
3145
+ /**
3146
+ * @type {string}
3147
+ * @see https://www.w3.org/TR/css-scroll-snap-1/
3148
+ */
3149
+ Element.prototype.scrollPaddingInline;
3150
+
3151
+ /**
3152
+ * @type {string}
3153
+ * @see https://www.w3.org/TR/css-scroll-snap-1/
3154
+ */
3155
+ Element.prototype.scrollPaddingInlineEnd;
3156
+
3157
+ /**
3158
+ * @type {string}
3159
+ * @see https://www.w3.org/TR/css-scroll-snap-1/
3160
+ */
3161
+ Element.prototype.scrollPaddingInlineStart;
3162
+
3163
+ /**
3164
+ * @type {string}
3165
+ * @see https://www.w3.org/TR/css-scroll-snap-1/
3166
+ */
3167
+ Element.prototype.scrollPaddingLeft;
3168
+
3169
+ /**
3170
+ * @type {string}
3171
+ * @see https://www.w3.org/TR/css-scroll-snap-1/
3172
+ */
3173
+ Element.prototype.scrollPaddingRight;
3174
+
3175
+ /**
3176
+ * @type {string}
3177
+ * @see https://www.w3.org/TR/css-scroll-snap-1/
3178
+ */
3179
+ Element.prototype.scrollPaddingTop;
3180
+
3181
+ /**
3182
+ * @type {number}
3183
+ * @see http://www.w3.org/TR/cssom-view/#dom-element-clienttop
3184
+ */
3185
+ Element.prototype.clientTop;
3186
+
3187
+ /**
3188
+ * @type {number}
3189
+ * @see http://www.w3.org/TR/cssom-view/#dom-element-clientleft
3190
+ */
3191
+ Element.prototype.clientLeft;
3192
+
3193
+ /**
3194
+ * @type {number}
3195
+ * @see http://www.w3.org/TR/cssom-view/#dom-element-clientwidth
3196
+ */
3197
+ Element.prototype.clientWidth;
3198
+
3199
+ /**
3200
+ * @type {number}
3201
+ * @see http://www.w3.org/TR/cssom-view/#dom-element-clientheight
3202
+ */
3203
+ Element.prototype.clientHeight;
3204
+
3205
+ /**
3206
+ * @record
3207
+ * @see https://drafts.csswg.org/cssom-view/#dictdef-checkvisibilityoptions
3208
+ */
3209
+ function CheckVisibilityOptions() {}
3210
+
3211
+ /** @type {(boolean|undefined)} */
3212
+ CheckVisibilityOptions.prototype.checkOpacity;
3213
+
3214
+ /** @type {(boolean|undefined)} */
3215
+ CheckVisibilityOptions.prototype.checkVisibilityCSS;
3216
+
3217
+ /** @type {(boolean|undefined)} */
3218
+ CheckVisibilityOptions.prototype.contentVisibilityAuto;
3219
+
3220
+ /** @type {(boolean|undefined)} */
3221
+ CheckVisibilityOptions.prototype.opacityProperty;
3222
+
3223
+ /** @type {(boolean|undefined)} */
3224
+ CheckVisibilityOptions.prototype.visibilityProperty;
3225
+
3226
+ /**
3227
+ * @param {CheckVisibilityOptions=} options
3228
+ * @return {boolean}
3229
+ * @see https://drafts.csswg.org/cssom-view/#dom-element-checkvisibility
3230
+ */
3231
+ Element.prototype.checkVisibility = function(options) {};
3232
+
3233
+ // http://www.w3.org/TR/cssom-view/#extensions-to-the-htmlelement-interface
3234
+
3235
+ /**
3236
+ * @type {Element}
3237
+ * @see http://www.w3.org/TR/cssom-view/#dom-htmlelement-offsetparent
3238
+ */
3239
+ HTMLElement.prototype.offsetParent;
3240
+
3241
+ /**
3242
+ * @type {number}
3243
+ * @see http://www.w3.org/TR/cssom-view/#dom-htmlelement-offsettop
3244
+ */
3245
+ HTMLElement.prototype.offsetTop;
3246
+
3247
+ /**
3248
+ * @type {number}
3249
+ * @see http://www.w3.org/TR/cssom-view/#dom-htmlelement-offsetleft
3250
+ */
3251
+ HTMLElement.prototype.offsetLeft;
3252
+
3253
+ /**
3254
+ * @type {number}
3255
+ * @see http://www.w3.org/TR/cssom-view/#dom-htmlelement-offsetwidth
3256
+ */
3257
+ HTMLElement.prototype.offsetWidth;
3258
+
3259
+ /**
3260
+ * @type {number}
3261
+ * @see http://www.w3.org/TR/cssom-view/#dom-htmlelement-offsetheight
3262
+ */
3263
+ HTMLElement.prototype.offsetHeight;
3264
+
3265
+
3266
+ // http://www.w3.org/TR/cssom-view/#extensions-to-the-range-interface
3267
+
3268
+ /**
3269
+ * @return {!ClientRectList}
3270
+ * @see http://www.w3.org/TR/cssom-view/#dom-range-getclientrects
3271
+ */
3272
+ Range.prototype.getClientRects = function() {};
3273
+
3274
+ /**
3275
+ * @return {!DOMRect}
3276
+ * @see http://www.w3.org/TR/cssom-view/#dom-range-getboundingclientrect
3277
+ */
3278
+ Range.prototype.getBoundingClientRect = function() {};
3279
+
3280
+
3281
+ // http://www.w3.org/TR/cssom-view/#extensions-to-the-mouseevent-interface
3282
+
3283
+ // MouseEvent: screen{X,Y} and client{X,Y} are in DOM Level 2/3 Event as well,
3284
+ // so it seems like a specification issue. I've emailed www-style@w3.org in
3285
+ // hopes of resolving the conflict, but in the mean time they can live here
3286
+ // (http://lists.w3.org/Archives/Public/www-style/2012May/0039.html).
3287
+
3288
+ /**
3289
+ * @type {number}
3290
+ * @see http://www.w3.org/TR/cssom-view/#dom-mouseevent-screenx
3291
+ */
3292
+ // MouseEvent.prototype.screenX;
3293
+
3294
+ /**
3295
+ * @type {number}
3296
+ * @see http://www.w3.org/TR/cssom-view/#dom-mouseevent-screeny
3297
+ */
3298
+ // MouseEvent.prototype.screenY;
3299
+
3300
+ /**
3301
+ * @type {number}
3302
+ * @see http://www.w3.org/TR/cssom-view/#dom-mouseevent-pagex
3303
+ */
3304
+ MouseEvent.prototype.pageX;
3305
+
3306
+ /**
3307
+ * @type {number}
3308
+ * @see http://www.w3.org/TR/cssom-view/#dom-mouseevent-pagey
3309
+ */
3310
+ MouseEvent.prototype.pageY;
3311
+
3312
+ /**
3313
+ * @type {number}
3314
+ * @see http://www.w3.org/TR/cssom-view/#dom-mouseevent-clientx
3315
+ */
3316
+ // MouseEvent.prototype.clientX;
3317
+
3318
+ /**
3319
+ * @type {number}
3320
+ * @see http://www.w3.org/TR/cssom-view/#dom-mouseevent-clienty
3321
+ */
3322
+ // MouseEvent.prototype.clientY;
3323
+
3324
+ /**
3325
+ * @type {number}
3326
+ * @see http://www.w3.org/TR/cssom-view/#dom-mouseevent-x
3327
+ */
3328
+ MouseEvent.prototype.x;
3329
+
3330
+ /**
3331
+ * @type {number}
3332
+ * @see http://www.w3.org/TR/cssom-view/#dom-mouseevent-y
3333
+ */
3334
+ MouseEvent.prototype.y;
3335
+
3336
+ /**
3337
+ * @type {number}
3338
+ * @see http://www.w3.org/TR/cssom-view/#dom-mouseevent-offsetx
3339
+ */
3340
+ MouseEvent.prototype.offsetX;
3341
+
3342
+ /**
3343
+ * @type {number}
3344
+ * @see http://www.w3.org/TR/cssom-view/#dom-mouseevent-offsety
3345
+ */
3346
+ MouseEvent.prototype.offsetY;
3347
+
3348
+
3349
+ // http://www.w3.org/TR/cssom-view/#rectangles
3350
+
3351
+ /**
3352
+ * @constructor
3353
+ * @see http://www.w3.org/TR/cssom-view/#the-clientrectlist-interface
3354
+ * @implements {IArrayLike<!DOMRect>}
3355
+ */
3356
+ function ClientRectList() {}
3357
+
3358
+ /**
3359
+ * @type {number}
3360
+ * @see http://www.w3.org/TR/cssom-view/#dom-clientrectlist-length
3361
+ */
3362
+ ClientRectList.prototype.length;
3363
+
3364
+ /**
3365
+ * @param {number} index
3366
+ * @return {?DOMRect}
3367
+ * @see http://www.w3.org/TR/cssom-view/#dom-clientrectlist-item
3368
+ */
3369
+ ClientRectList.prototype.item = function(index) {};
3370
+
3371
+ /**
3372
+ * @constructor
3373
+ * http://www.w3.org/TR/css3-conditional/#CSS-interface
3374
+ */
3375
+ function CSSInterface() {}
3376
+
3377
+ /**
3378
+ * @param {string} ident
3379
+ * @return {string}
3380
+ * @see http://www.w3.org/TR/cssom/#the-css.escape()-method
3381
+ * @throws DOMException {@see DOMException.INVALID_CHARACTER_ERR}
3382
+ */
3383
+ CSSInterface.prototype.escape = function(ident) {};
3384
+
3385
+ /**
3386
+ * @param {string} property
3387
+ * @param {string=} opt_value
3388
+ * @return {boolean}
3389
+ */
3390
+ CSSInterface.prototype.supports = function(property, opt_value) {};
3391
+
3392
+ /**
3393
+ * @typedef {{
3394
+ * name: string,
3395
+ * syntax: (string|undefined),
3396
+ * inherits: boolean,
3397
+ * initialValue: (string|undefined),
3398
+ * }}
3399
+ * @see https://www.w3.org/TR/css-properties-values-api-1/#the-propertydefinition-dictionary
3400
+ */
3401
+ var PropertyDefinition;
3402
+
3403
+ /**
3404
+ * @param {PropertyDefinition} propertyDefinition
3405
+ * @return {undefined}
3406
+ * @see https://www.w3.org/TR/css-properties-values-api-1/#the-registerproperty-function
3407
+ * @throws {DOMException|TypeError} {@see DOMException.InvalidModificationError}, {@see DOMException.SyntaxError}
3408
+ */
3409
+ CSSInterface.prototype.registerProperty = function(propertyDefinition) {};
3410
+
3411
+ /**
3412
+ * TODO(nicksantos): This suppress tag probably isn't needed, and
3413
+ * should be removed.
3414
+ * @suppress {duplicate}
3415
+ * @type {CSSInterface}
3416
+ */
3417
+ var CSS;
3418
+
3419
+ /** @type {CSSInterface} */
3420
+ Window.prototype.CSS;
3421
+
3422
+ // http://dev.w3.org/csswg/css-font-loading/
3423
+
3424
+ /**
3425
+ * Set of possible string values: 'error', 'loaded', 'loading', 'unloaded'.
3426
+ * @typedef {string}
3427
+ * @see http://dev.w3.org/csswg/css-font-loading/#enumdef-fontfaceloadstatus
3428
+ */
3429
+ var FontFaceLoadStatus;
3430
+
3431
+ /**
3432
+ * @typedef {{
3433
+ * display: (string|undefined),
3434
+ * style: (string|undefined),
3435
+ * weight: (string|undefined),
3436
+ * stretch: (string|undefined),
3437
+ * unicodeRange: (string|undefined),
3438
+ * variant: (string|undefined),
3439
+ * featureSettings: (string|undefined)
3440
+ * }}
3441
+ * @see http://dev.w3.org/csswg/css-font-loading/#dictdef-fontfacedescriptors
3442
+ */
3443
+ var FontFaceDescriptors;
3444
+
3445
+ /**
3446
+ * @constructor
3447
+ * @param {string} fontFamily
3448
+ * @param {(string|ArrayBuffer|ArrayBufferView)} source
3449
+ * @param {!FontFaceDescriptors=} opt_descriptors
3450
+ * @see http://dev.w3.org/csswg/css-font-loading/#font-face-constructor
3451
+ */
3452
+ function FontFace(fontFamily, source, opt_descriptors) {}
3453
+
3454
+ /**
3455
+ * @type {string}
3456
+ * @see http://dev.w3.org/csswg/css-font-loading/#dom-fontface-family
3457
+ */
3458
+ FontFace.prototype.family;
3459
+
3460
+ /**
3461
+ * @type {string}
3462
+ * @see http://dev.w3.org/csswg/css-font-loading/#dom-fontface-style
3463
+ */
3464
+ FontFace.prototype.style;
3465
+
3466
+ /**
3467
+ * @type {string}
3468
+ * @see http://dev.w3.org/csswg/css-font-loading/#dom-fontface-weight
3469
+ */
3470
+ FontFace.prototype.weight;
3471
+
3472
+ /**
3473
+ * @type {string}
3474
+ * @see http://dev.w3.org/csswg/css-font-loading/#dom-fontface-stretch
3475
+ */
3476
+ FontFace.prototype.stretch;
3477
+
3478
+ /**
3479
+ * @type {string}
3480
+ * @see http://dev.w3.org/csswg/css-font-loading/#dom-fontface-unicoderange
3481
+ */
3482
+ FontFace.prototype.unicodeRange;
3483
+
3484
+ /**
3485
+ * @type {string}
3486
+ * @see http://dev.w3.org/csswg/css-font-loading/#dom-fontface-variant
3487
+ */
3488
+ FontFace.prototype.variant;
3489
+
3490
+ /**
3491
+ * @type {string}
3492
+ * @see http://dev.w3.org/csswg/css-font-loading/#dom-fontface-featuresettings
3493
+ */
3494
+ FontFace.prototype.featureSettings;
3495
+
3496
+ /**
3497
+ * @type {string}
3498
+ * @see http://dev.w3.org/csswg/css-font-loading/#dom-fontface-variationsettings
3499
+ */
3500
+ FontFace.prototype.variationSettings;
3501
+
3502
+ /**
3503
+ * @type {string}
3504
+ * @see http://dev.w3.org/csswg/css-font-loading/#dom-fontface-display
3505
+ */
3506
+ FontFace.prototype.display;
3507
+
3508
+ /**
3509
+ * @type {string}
3510
+ * @see http://dev.w3.org/csswg/css-font-loading/#dom-fontface-ascentoverride
3511
+ */
3512
+ FontFace.prototype.ascentOverride;
3513
+
3514
+ /**
3515
+ * @type {string}
3516
+ * @see http://dev.w3.org/csswg/css-font-loading/#dom-fontface-descentoverride
3517
+ */
3518
+ FontFace.prototype.descentOverride;
3519
+
3520
+ /**
3521
+ * @type {string}
3522
+ * @see http://dev.w3.org/csswg/css-font-loading/#dom-fontface-linegapoverride
3523
+ */
3524
+ FontFace.prototype.lineGapOverride;
3525
+
3526
+ /**
3527
+ * @type {!FontFaceLoadStatus}
3528
+ * @see http://dev.w3.org/csswg/css-font-loading/#dom-fontface-status
3529
+ */
3530
+ FontFace.prototype.status;
3531
+
3532
+ /**
3533
+ * @return {!Promise<!FontFace>}
3534
+ * @see http://dev.w3.org/csswg/css-font-loading/#font-face-load
3535
+ */
3536
+ FontFace.prototype.load = function() {};
3537
+
3538
+ /**
3539
+ * @type {!Promise<!FontFace>}
3540
+ * @see http://dev.w3.org/csswg/css-font-loading/#dom-fontface-loaded
3541
+ */
3542
+ FontFace.prototype.loaded;
3543
+
3544
+ /**
3545
+ * @typedef {{
3546
+ * fontfaces: (Array<!FontFace>|undefined)
3547
+ * }}
3548
+ * @see http://dev.w3.org/css-font-loading/#dictdef-fontfacesetloadeventinit
3549
+ */
3550
+ var FontFaceSetLoadEventInit;
3551
+
3552
+ /**
3553
+ * @constructor
3554
+ * @param {string} type
3555
+ * @param {!FontFaceSetLoadEventInit=} eventInitDict
3556
+ * @extends {Event}
3557
+ * @see https://drafts.csswg.org/css-font-loading/#fontfacesetloadevent
3558
+ */
3559
+ function FontFaceSetLoadEvent(type, eventInitDict) {}
3560
+
3561
+ /**
3562
+ * @type {!Array<!FontFace>}
3563
+ * @see http://dev.w3.org/css-font-loading/#dom-fontfacesetloadevent-fontfaces
3564
+ */
3565
+ FontFaceSetLoadEvent.prototype.fontfaces;
3566
+
3567
+ /**
3568
+ * Set of possible string values: 'loaded', 'loading'.
3569
+ * @typedef {string}
3570
+ * @see http://dev.w3.org/csswg/css-font-loading/#enumdef-fontfacesetloadstatus
3571
+ */
3572
+ var FontFaceSetLoadStatus;
3573
+
3574
+ /**
3575
+ * @interface
3576
+ * @extends {EventTarget}
3577
+ * @see http://dev.w3.org/csswg/css-font-loading/#FontFaceSet-interface
3578
+ */
3579
+ function FontFaceSet() {}
3580
+
3581
+ // Event handlers
3582
+ // http://dev.w3.org/csswg/css-font-loading/#FontFaceSet-events
3583
+
3584
+ /** @type {?function (Event)} */ FontFaceSet.prototype.onloading;
3585
+ /** @type {?function (Event)} */ FontFaceSet.prototype.onloadingdone;
3586
+ /** @type {?function (Event)} */ FontFaceSet.prototype.onloadingerror;
3587
+
3588
+ /**
3589
+ * @param {!FontFace} value
3590
+ * @see http://dev.w3.org/csswg/css-font-loading/#dom-fontfaceset-add
3591
+ * @return {undefined}
3592
+ */
3593
+ FontFaceSet.prototype.add = function(value) {};
3594
+
3595
+ /**
3596
+ * @see http://dev.w3.org/csswg/css-font-loading/#dom-fontfaceset-clear
3597
+ * @return {undefined}
3598
+ */
3599
+ FontFaceSet.prototype.clear = function() {};
3600
+
3601
+ /**
3602
+ * @param {!FontFace} value
3603
+ * @see http://dev.w3.org/csswg/css-font-loading/#dom-fontfaceset-delete
3604
+ * @return {undefined}
3605
+ */
3606
+ FontFaceSet.prototype.delete = function(value) {};
3607
+
3608
+ /**
3609
+ * @param {!FontFace} font
3610
+ * @return {boolean}
3611
+ * @see http://dev.w3.org/csswg/css-font-loading/#dom-fontfaceset-has
3612
+ */
3613
+ FontFaceSet.prototype.has = function(font) {};
3614
+
3615
+ /**
3616
+ * @param {function(!FontFace, number, !FontFaceSet)} callback
3617
+ * @param {?Object=} selfObj
3618
+ * see http://dev.w3.org/csswg/css-font-loading/#dom-fontfaceset-foreach
3619
+ * @return {undefined}
3620
+ */
3621
+ FontFaceSet.prototype.forEach = function(callback, selfObj) {};
3622
+
3623
+ /**
3624
+ * @param {string} font
3625
+ * @param {string=} opt_text
3626
+ * @return {!Promise<!Array<!FontFace>>}
3627
+ * @see http://dev.w3.org/csswg/css-font-loading/#dom-fontfaceset-load
3628
+ */
3629
+ FontFaceSet.prototype.load = function(font, opt_text) {};
3630
+
3631
+ /**
3632
+ * @param {string} font
3633
+ * @param {string=} opt_text
3634
+ * @return {boolean}
3635
+ * @see http://dev.w3.org/csswg/css-font-loading/#dom-fontfaceset-check
3636
+ */
3637
+ FontFaceSet.prototype.check = function(font, opt_text) {};
3638
+
3639
+ /**
3640
+ * @type {!Promise<!FontFaceSet>}
3641
+ * @see http://dev.w3.org/csswg/css-font-loading/#dom-fontfaceset-ready
3642
+ */
3643
+ FontFaceSet.prototype.ready;
3644
+
3645
+ /**
3646
+ * @type {FontFaceSetLoadStatus}
3647
+ * @see http://dev.w3.org/csswg/css-font-loading/#dom-fontfaceset-status
3648
+ */
3649
+ FontFaceSet.prototype.status;
3650
+
3651
+ /**
3652
+ * @constructor
3653
+ * @param {string} type
3654
+ * @param {{
3655
+ * animationName: (string|undefined),
3656
+ * elapsedTime: (number|undefined),
3657
+ * pseudoElement: (string|undefined)
3658
+ * }=} opt_animationEventInitDict
3659
+ * @extends {Event}
3660
+ * @see https://drafts.csswg.org/css-animations/#interface-animationevent
3661
+ */
3662
+ function AnimationEvent(type, opt_animationEventInitDict) {};
3663
+
3664
+ /**
3665
+ * @type {string}
3666
+ * @see https://drafts.csswg.org/css-animations/#dom-animationevent-animationname
3667
+ */
3668
+ AnimationEvent.prototype.animationName;
3669
+
3670
+ /**
3671
+ * @type {number}
3672
+ * @see https://drafts.csswg.org/css-animations/#dom-animationevent-elapsedtime
3673
+ */
3674
+ AnimationEvent.prototype.elapsedTime;
3675
+
3676
+ /**
3677
+ * @type {string}
3678
+ * @see https://drafts.csswg.org/css-animations/#dom-animationevent-pseudoelement
3679
+ */
3680
+ AnimationEvent.prototype.pseudoElement;
3681
+
3682
+ /**
3683
+ * @record
3684
+ * @extends {EventInit}
3685
+ * @see https://www.w3.org/TR/css-transitions-1/#dictdef-transitioneventinit
3686
+ */
3687
+ function TransitionEventInit() {};
3688
+
3689
+ /**
3690
+ * @type {string}
3691
+ * @see https://www.w3.org/TR/css-transitions-1/#dom-transitioneventinit-propertyname
3692
+ */
3693
+ TransitionEventInit.prototype.propertyName;
3694
+
3695
+ /**
3696
+ * @type {number}
3697
+ * @see https://www.w3.org/TR/css-transitions-1/#dom-transitioneventinit-elapsedtime
3698
+ */
3699
+ TransitionEventInit.prototype.elapsedTime;
3700
+
3701
+ /**
3702
+ * @type {string}
3703
+ * @see https://www.w3.org/TR/css-transitions-1/#dom-transitioneventinit-pseudoelement
3704
+ */
3705
+ TransitionEventInit.prototype.pseudoElement;
3706
+
3707
+ /**
3708
+ * @constructor
3709
+ * @param {string} type
3710
+ * @param {!TransitionEventInit=} transitionEventInitDict
3711
+ * @extends {Event}
3712
+ * @see https://www.w3.org/TR/css-transitions-1/#interface-transitionevent
3713
+ */
3714
+ function TransitionEvent(type, transitionEventInitDict) {};
3715
+
3716
+ /**
3717
+ * @type {string}
3718
+ * @see https://www.w3.org/TR/css-transitions-1/#Events-TransitionEvent-propertyName
3719
+ */
3720
+ TransitionEvent.prototype.propertyName;
3721
+
3722
+ /**
3723
+ * @type {number}
3724
+ * @see https://www.w3.org/TR/css-transitions-1/#Events-TransitionEvent-elapsedTime
3725
+ */
3726
+ TransitionEvent.prototype.elapsedTime;
3727
+
3728
+ /**
3729
+ * @type {string}
3730
+ * @see https://www.w3.org/TR/css-transitions-1/#Events-TransitionEvent-pseudoElement
3731
+ */
3732
+ TransitionEvent.prototype.pseudoElement;
3733
+
3734
+ /**
3735
+ * @constructor
3736
+ * @extends {CSSRule}
3737
+ * @see http://dev.w3.org/csswg/css-animations/#csskeyframerule
3738
+ */
3739
+ function CSSKeyframeRule() {}
3740
+
3741
+ /**
3742
+ * @type {string}
3743
+ * @see https://drafts.csswg.org/css-animations/#dom-csskeyframerule-keytext
3744
+ */
3745
+ CSSKeyframeRule.prototype.keyText;
3746
+
3747
+ /**
3748
+ * @type {!CSSStyleDeclaration}
3749
+ * @see https://drafts.csswg.org/css-animations/#dom-csskeyframerule-style
3750
+ */
3751
+ CSSKeyframeRule.prototype.style;
3752
+
3753
+
3754
+ /**
3755
+ * @constructor
3756
+ * @extends {CSSRule}
3757
+ * @see http://dev.w3.org/csswg/css-animations/#csskeyframesrule
3758
+ */
3759
+ function CSSKeyframesRule() {}
3760
+
3761
+ /**
3762
+ * @see https://drafts.csswg.org/css-animations/#dom-csskeyframesrule-name
3763
+ * @type {string}
3764
+ */
3765
+ CSSKeyframesRule.prototype.name;
3766
+
3767
+ /**
3768
+ * @see https://drafts.csswg.org/css-animations/#dom-csskeyframesrule-cssrules
3769
+ * @type {!CSSRuleList}
3770
+ */
3771
+ CSSKeyframesRule.prototype.cssRules;
3772
+
3773
+ /**
3774
+ * @see https://drafts.csswg.org/css-animations/#dom-csskeyframesrule-findrule
3775
+ * @param {string} key The key text for the rule to find.
3776
+ * @return {?CSSKeyframeRule}
3777
+ */
3778
+ CSSKeyframesRule.prototype.findRule = function(key) {};
3779
+
3780
+ /**
3781
+ * @see https://drafts.csswg.org/css-animations/#dom-csskeyframesrule-appendrule
3782
+ * @param {string} rule The text for the rule to append.
3783
+ */
3784
+ CSSKeyframesRule.prototype.appendRule = function(rule) {};
3785
+
3786
+ /**
3787
+ * @see https://drafts.csswg.org/css-animations/#dom-csskeyframesrule-deleterule
3788
+ * @param {string} key The key text for the rule to delete.
3789
+ */
3790
+ CSSKeyframesRule.prototype.deleteRule = function(key) {};