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,226 @@
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
+ * @fileoverview Definitions for all the Flash Object JavaScript methods. This
18
+ * file depends on w3c_dom2.js.
19
+ * Created from
20
+ * http://www.adobe.com/support/flash/publishexport/scriptingwithflash/scriptingwithflash_03.html
21
+ *
22
+ * @externs
23
+ */
24
+
25
+
26
+ // Standard Methods.
27
+
28
+ /**
29
+ * Call a Flash function exported by ExternalInterface.
30
+ * @param {string} xmlString The XML string passed to Flash. The outer element
31
+ * should be {@code <invoke>}. A sample invocation string:
32
+ * {@code <invoke name="function_name" returntype="javascript">
33
+ * <string>test</string></invoke>}
34
+ * @return {string} The serialized return value from Flash that you can eval.
35
+ */
36
+ HTMLObjectElement.prototype.CallFunction = function(xmlString) {};
37
+
38
+ /**
39
+ * Returns the value of the Flash variable specified by varName or null if the
40
+ * variable does not exist.
41
+ * @param {string} varName The variable name.
42
+ * @return {?string} The variable value.
43
+ */
44
+ HTMLObjectElement.prototype.GetVariable = function(varName) {};
45
+
46
+ /**
47
+ * Activates the frame number specified by `frameNumber` in the current
48
+ * movie.
49
+ * @param {number} frameNumber A non-negative integer frame number.
50
+ * @return {undefined}
51
+ */
52
+ HTMLObjectElement.prototype.GotoFrame = function(frameNumber) {};
53
+
54
+ /**
55
+ * @return {boolean} Whether the movie is currently playing.
56
+ */
57
+ HTMLObjectElement.prototype.IsPlaying = function() {};
58
+
59
+ /**
60
+ * Loads the movie identified by `url` to the layer specified by
61
+ * `layerNumber`.
62
+ * @param {number} layerNumber The layer number.
63
+ * @param {string} url The movie URL.
64
+ * @return {undefined}
65
+ */
66
+ HTMLObjectElement.prototype.LoadMovie = function(layerNumber, url) {};
67
+
68
+ /**
69
+ * Pans a zoomed-in movie to the coordinates specified by x and y. Use mode to
70
+ * specify whether the values for x and y are pixels or a percent of the window.
71
+ * When mode is 0, the coordinates are pixels; when mode is 1, the coordinates
72
+ * are percent of the window.
73
+ * @param {number} x The x-coordinate.
74
+ * @param {number} y The y-coordinate.
75
+ * @param {number} mode The mode.
76
+ * @return {undefined}
77
+ */
78
+ HTMLObjectElement.prototype.Pan = function(x, y, mode) {};
79
+
80
+ /**
81
+ * @return {number} The percent of the Flash Player movie that has streamed
82
+ * into the browser so far; Possible values are from 0 to 100.
83
+ */
84
+ HTMLObjectElement.prototype.PercentLoaded = function() {};
85
+
86
+ /**
87
+ * Starts playing the movie.
88
+ * @return {undefined}
89
+ */
90
+ HTMLObjectElement.prototype.Play = function() {};
91
+
92
+ /**
93
+ * Goes to the first frame.
94
+ * @return {undefined}
95
+ */
96
+ HTMLObjectElement.prototype.Rewind = function() {};
97
+
98
+ /**
99
+ * Sets the value of the flash variable.
100
+ * @param {string} variableName The variable name.
101
+ * @param {string} value The value.
102
+ * @return {undefined}
103
+ */
104
+ HTMLObjectElement.prototype.SetVariable = function(variableName, value) {};
105
+
106
+ /**
107
+ * Zooms in on a rectangular area of the movie. The units of the coordinates
108
+ * are in twips (1440 units per inch).
109
+ * @param {number} left The left coordinate.
110
+ * @param {number} top The top coordinate.
111
+ * @param {number} right The right coordinate.
112
+ * @param {number} bottom The bottom coordinate.
113
+ * @return {undefined}
114
+ */
115
+ HTMLObjectElement.prototype.SetZoomRect = function(left, top, right, bottom) {};
116
+
117
+ /**
118
+ * Stops playing the movie.
119
+ * @return {undefined}
120
+ */
121
+ HTMLObjectElement.prototype.StopPlay = function() {};
122
+
123
+ /**
124
+ * @return {number} The total number of frames in the movie.
125
+ */
126
+ HTMLObjectElement.prototype.TotalFrames = function() {};
127
+
128
+ /**
129
+ * Zooms the view by a relative scale factor.
130
+ * @param {number} percent The percentage scale factor, should be an integer.
131
+ * @return {undefined}
132
+ */
133
+ HTMLObjectElement.prototype.Zoom = function(percent) {};
134
+
135
+
136
+ // TellTarget Methods.
137
+
138
+ /**
139
+ * Executes the action in the timeline specified by `target` in the
140
+ * specified frame.
141
+ * @param {string} target The timeline.
142
+ * @param {number} frameNumber The frame number.
143
+ * @return {undefined}
144
+ */
145
+ HTMLObjectElement.prototype.TCallFrame = function(target, frameNumber) {};
146
+
147
+ /**
148
+ * Executes the action in the timeline specified by `target` in the
149
+ * specified frame.
150
+ * @param {string} target The timeline.
151
+ * @param {string} label The frame label.
152
+ * @return {undefined}
153
+ */
154
+ HTMLObjectElement.prototype.TCallLabel = function(target, label) {};
155
+
156
+ /**
157
+ * Returns the number of the current frame for the specified timeline.
158
+ * @param {string} target The timeline.
159
+ * @return {number} The number of the current frame.
160
+ */
161
+ HTMLObjectElement.prototype.TCurentFrame = function(target) {};
162
+
163
+ /**
164
+ * Returns the label of the current frame for the specified timeline.
165
+ * @param {string} target The timeline.
166
+ * @return {string} The label of the current frame, empty string if no
167
+ * current frame.
168
+ */
169
+ HTMLObjectElement.prototype.TCurrentLabel = function(target) {};
170
+
171
+ /**
172
+ * Returns a string indicating the value of the property in the
173
+ * specified timeline.
174
+ * @param {string} target The timeline.
175
+ * @param {number} property The integer corresponding to the desired property.
176
+ * @return {string} The value of the property.
177
+ */
178
+ HTMLObjectElement.prototype.TGetProperty = function(target, property) {};
179
+
180
+ /**
181
+ * Returns a number indicating the value of the property in the specified
182
+ * timeline.
183
+ * @param {string} target The timeline.
184
+ * @param {number} property The integer corresponding to the desired property.
185
+ * @return {number} A number indicating the value of the property.
186
+ */
187
+ HTMLObjectElement.prototype.TGetPropertyAsNumber = function(target, property) {};
188
+
189
+ /**
190
+ * Goes to the specified frame number in the specified timeline.
191
+ * @param {string} target The timeline.
192
+ * @param {number} frameNumber The frame number.
193
+ * @return {undefined}
194
+ */
195
+ HTMLObjectElement.prototype.TGotoFrame = function(target, frameNumber) {};
196
+
197
+ /**
198
+ * Goes to the specified frame label in the specified timeline.
199
+ * @param {string} target The timeline.
200
+ * @param {string} label The framelabel.
201
+ * @return {undefined}
202
+ */
203
+ HTMLObjectElement.prototype.TGotoLabel = function(target, label) {};
204
+
205
+ /**
206
+ * Plays the specified timeline.
207
+ * @param {number} target The timeline.
208
+ * @return {undefined}
209
+ */
210
+ HTMLObjectElement.prototype.TPlay = function(target) {};
211
+
212
+ /**
213
+ * Sets the value of the property in the specified timeline.
214
+ * @param {number} target The timeline.
215
+ * @param {number} property The integer corresponding to the desired property.
216
+ * @param {string|number} value The value.
217
+ * @return {undefined}
218
+ */
219
+ HTMLObjectElement.prototype.TSetProperty = function(target, property, value) {};
220
+
221
+ /**
222
+ * Stops the specified timeline.
223
+ * @param {number} target The timeline.
224
+ * @return {undefined}
225
+ */
226
+ HTMLObjectElement.prototype.TStopPlay = function(target) {};
@@ -0,0 +1,126 @@
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 Gecko's custom CSS properties. Copied from:
19
+ * http://mxr.mozilla.org/mozilla2.0/source/dom/interfaces/css/nsIDOMCSS2Properties.idl
20
+ *
21
+ * @externs
22
+ * @author nicksantos@google.com (Nick Santos)
23
+ */
24
+
25
+
26
+ /** @type {string} */ CSSProperties.prototype.MozAppearance;
27
+ /** @type {string} */ CSSProperties.prototype.MozBackfaceVisibility;
28
+ /** @type {string} */ CSSProperties.prototype.MozBackgroundClip;
29
+ /** @type {string} */ CSSProperties.prototype.MozBackgroundInlinePolicy;
30
+ /** @type {string} */ CSSProperties.prototype.MozBackgroundOrigin;
31
+ /** @type {string} */ CSSProperties.prototype.MozBinding;
32
+ /** @type {string} */ CSSProperties.prototype.MozBorderBottomColors;
33
+ /** @type {string} */ CSSProperties.prototype.MozBorderEnd;
34
+ /** @type {string} */ CSSProperties.prototype.MozBorderEndColor;
35
+ /** @type {string} */ CSSProperties.prototype.MozBorderEndStyle;
36
+ /** @type {string} */ CSSProperties.prototype.MozBorderEndWidth;
37
+ /** @type {string} */ CSSProperties.prototype.MozBorderImage;
38
+ /** @type {string} */ CSSProperties.prototype.MozBorderLeftColors;
39
+ /** @type {string} */ CSSProperties.prototype.MozBorderRadius;
40
+ /** @type {string} */ CSSProperties.prototype.MozBorderRadiusTopleft;
41
+ /** @type {string} */ CSSProperties.prototype.MozBorderRadiusTopright;
42
+ /** @type {string} */ CSSProperties.prototype.MozBorderRadiusBottomleft;
43
+ /** @type {string} */ CSSProperties.prototype.MozBorderRadiusBottomright;
44
+ /** @type {string} */ CSSProperties.prototype.MozBorderRightColors;
45
+ /** @type {string} */ CSSProperties.prototype.MozBorderStart;
46
+ /** @type {string} */ CSSProperties.prototype.MozBorderStartColor;
47
+ /** @type {string} */ CSSProperties.prototype.MozBorderStartStyle;
48
+ /** @type {string} */ CSSProperties.prototype.MozBorderStartWidth;
49
+ /** @type {string} */ CSSProperties.prototype.MozBorderTopColors;
50
+ /** @type {string} */ CSSProperties.prototype.MozBoxAlign;
51
+ /** @type {string} */ CSSProperties.prototype.MozBoxDirection;
52
+ /** @type {string} */ CSSProperties.prototype.MozBoxFlex;
53
+ /** @type {string} */ CSSProperties.prototype.MozBoxOrdinalGroup;
54
+ /** @type {string} */ CSSProperties.prototype.MozBoxOrient;
55
+ /** @type {string} */ CSSProperties.prototype.MozBoxPack;
56
+ /** @type {string} */ CSSProperties.prototype.MozBoxSizing;
57
+ /** @type {string} */ CSSProperties.prototype.MozBoxShadow;
58
+ /** @type {string} */ CSSProperties.prototype.MozColumnCount;
59
+ /** @type {string} */ CSSProperties.prototype.MozColumnGap;
60
+ /** @type {string} */ CSSProperties.prototype.MozColumnRule;
61
+ /** @type {string} */ CSSProperties.prototype.MozColumnRuleColor;
62
+ /** @type {string} */ CSSProperties.prototype.MozColumnRuleStyle;
63
+ /** @type {string} */ CSSProperties.prototype.MozColumnRuleWidth;
64
+ /** @type {string} */ CSSProperties.prototype.MozColumnWidth;
65
+ /** @type {string} */ CSSProperties.prototype.MozFloatEdge;
66
+ /** @type {string} */ CSSProperties.prototype.MozFontFeatureSettings;
67
+ /** @type {string} */ CSSProperties.prototype.MozFontLanguageOverride;
68
+ /** @type {string} */ CSSProperties.prototype.MozForceBrokenImageIcon;
69
+ /** @type {string} */ CSSProperties.prototype.MozImageRegion;
70
+ /** @type {string} */ CSSProperties.prototype.MozMarginEnd;
71
+ /** @type {string} */ CSSProperties.prototype.MozMarginStart;
72
+ /** @type {number|string} */ CSSProperties.prototype.MozOpacity;
73
+ /** @type {string} */ CSSProperties.prototype.MozOutline;
74
+ /** @type {string} */ CSSProperties.prototype.MozOutlineColor;
75
+ /** @type {string} */ CSSProperties.prototype.MozOutlineOffset;
76
+ /** @type {string} */ CSSProperties.prototype.MozOutlineRadius;
77
+ /** @type {string} */ CSSProperties.prototype.MozOutlineRadiusBottomleft;
78
+ /** @type {string} */ CSSProperties.prototype.MozOutlineRadiusBottomright;
79
+ /** @type {string} */ CSSProperties.prototype.MozOutlineRadiusTopleft;
80
+ /** @type {string} */ CSSProperties.prototype.MozOutlineRadiusTopright;
81
+ /** @type {string} */ CSSProperties.prototype.MozOutlineStyle;
82
+ /** @type {string} */ CSSProperties.prototype.MozOutlineWidth;
83
+ /** @type {string} */ CSSProperties.prototype.MozPaddingEnd;
84
+ /** @type {string} */ CSSProperties.prototype.MozPaddingStart;
85
+ /** @type {string} */ CSSProperties.prototype.MozPerspective;
86
+ /** @type {string} */ CSSProperties.prototype.MozStackSizing;
87
+ /** @type {string} */ CSSProperties.prototype.MozTabSize;
88
+ /** @type {string} */ CSSProperties.prototype.MozTransform;
89
+ /** @type {string} */ CSSProperties.prototype.MozTransformOrigin;
90
+ /** @type {string} */ CSSProperties.prototype.MozTransition;
91
+ /** @type {string} */ CSSProperties.prototype.MozTransitionDelay;
92
+ /** @type {string} */ CSSProperties.prototype.MozTransitionDuration;
93
+ /** @type {string} */ CSSProperties.prototype.MozTransitionProperty;
94
+ /** @type {string} */ CSSProperties.prototype.MozTransitionTimingFunction;
95
+ /** @type {string} */ CSSProperties.prototype.MozUserFocus;
96
+ /** @type {string} */ CSSProperties.prototype.MozUserInput;
97
+ /** @type {string} */ CSSProperties.prototype.MozUserModify;
98
+ /** @type {string} */ CSSProperties.prototype.MozUserSelect;
99
+ /** @type {string} */ CSSProperties.prototype.MozWindowShadow;
100
+
101
+
102
+ // These are non-standard Gecko CSSOM properties on Window.prototype.screen.
103
+
104
+ /**
105
+ * @type {number}
106
+ * @see https://developer.mozilla.org/En/DOM/window.screen.availTop
107
+ */
108
+ Screen.prototype.availTop;
109
+
110
+ /**
111
+ * @type {number}
112
+ * @see https://developer.mozilla.org/En/DOM/window.screen.availLeft
113
+ */
114
+ Screen.prototype.availLeft;
115
+
116
+ /**
117
+ * @type {number}
118
+ * @see https://developer.mozilla.org/En/DOM/window.screen.left
119
+ */
120
+ Screen.prototype.left;
121
+
122
+ /**
123
+ * @type {number}
124
+ * @see https://developer.mozilla.org/En/DOM/window.screen.top
125
+ */
126
+ Screen.prototype.top;