Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(219)

Side by Side Diff: client/dom/frog/dom_frog.dart

Issue 9317046: Make dart:dom implementation types private so they don't muddle the docs. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | client/dom/generated/src/frog/AbstractWorker.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #library('dom'); 1 #library('dom');
2 2
3 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 3 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
4 // for details. All rights reserved. Use of this source code is governed by a 4 // for details. All rights reserved. Use of this source code is governed by a
5 // BSD-style license that can be found in the LICENSE file. 5 // BSD-style license that can be found in the LICENSE file.
6 6
7 // DO NOT EDIT 7 // DO NOT EDIT
8 // Auto-generated Dart DOM library. 8 // Auto-generated Dart DOM library.
9 9
10 10
11 11
12 12
13 // TODO(sra): What 'window' do we get in a worker? Perhaps this 13 // TODO(sra): What 'window' do we get in a worker? Perhaps this
14 // should return the interface type. 14 // should return the interface type.
15 DOMWindow get window() native "return window;"; 15 DOMWindow get window() native "return window;";
16 16
17 // TODO(vsm): Revert to Dart method when 508 is fixed. 17 // TODO(vsm): Revert to Dart method when 508 is fixed.
18 HTMLDocument get document() native "return window.document;"; 18 HTMLDocument get document() native "return window.document;";
19 19
20 class AbstractWorkerJs extends DOMTypeJs implements AbstractWorker native "*Abst ractWorker" { 20 class _AbstractWorkerJs extends _DOMTypeJs implements AbstractWorker native "*Ab stractWorker" {
21 21
22 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native; 22 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
23 23
24 bool dispatchEvent(EventJs evt) native; 24 bool dispatchEvent(_EventJs evt) native;
25 25
26 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native; 26 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
27 } 27 }
28 28
29 class ArrayBufferJs extends DOMTypeJs implements ArrayBuffer native "*ArrayBuffe r" { 29 class _ArrayBufferJs extends _DOMTypeJs implements ArrayBuffer native "*ArrayBuf fer" {
30 30
31 int get byteLength() native "return this.byteLength;"; 31 int get byteLength() native "return this.byteLength;";
32 32
33 ArrayBufferJs slice(int begin, [int end = null]) native; 33 _ArrayBufferJs slice(int begin, [int end = null]) native;
34 } 34 }
35 35
36 class ArrayBufferViewJs extends DOMTypeJs implements ArrayBufferView native "*Ar rayBufferView" { 36 class _ArrayBufferViewJs extends _DOMTypeJs implements ArrayBufferView native "* ArrayBufferView" {
37 37
38 ArrayBufferJs get buffer() native "return this.buffer;"; 38 _ArrayBufferJs get buffer() native "return this.buffer;";
39 39
40 int get byteLength() native "return this.byteLength;"; 40 int get byteLength() native "return this.byteLength;";
41 41
42 int get byteOffset() native "return this.byteOffset;"; 42 int get byteOffset() native "return this.byteOffset;";
43 } 43 }
44 44
45 class AttrJs extends NodeJs implements Attr native "*Attr" { 45 class _AttrJs extends _NodeJs implements Attr native "*Attr" {
46 46
47 bool get isId() native "return this.isId;"; 47 bool get isId() native "return this.isId;";
48 48
49 String get name() native "return this.name;"; 49 String get name() native "return this.name;";
50 50
51 ElementJs get ownerElement() native "return this.ownerElement;"; 51 _ElementJs get ownerElement() native "return this.ownerElement;";
52 52
53 bool get specified() native "return this.specified;"; 53 bool get specified() native "return this.specified;";
54 54
55 String get value() native "return this.value;"; 55 String get value() native "return this.value;";
56 56
57 void set value(String value) native "this.value = value;"; 57 void set value(String value) native "this.value = value;";
58 } 58 }
59 59
60 class AudioBufferJs extends DOMTypeJs implements AudioBuffer native "*AudioBuffe r" { 60 class _AudioBufferJs extends _DOMTypeJs implements AudioBuffer native "*AudioBuf fer" {
61 61
62 num get duration() native "return this.duration;"; 62 num get duration() native "return this.duration;";
63 63
64 num get gain() native "return this.gain;"; 64 num get gain() native "return this.gain;";
65 65
66 void set gain(num value) native "this.gain = value;"; 66 void set gain(num value) native "this.gain = value;";
67 67
68 int get length() native "return this.length;"; 68 int get length() native "return this.length;";
69 69
70 int get numberOfChannels() native "return this.numberOfChannels;"; 70 int get numberOfChannels() native "return this.numberOfChannels;";
71 71
72 num get sampleRate() native "return this.sampleRate;"; 72 num get sampleRate() native "return this.sampleRate;";
73 73
74 Float32ArrayJs getChannelData(int channelIndex) native; 74 _Float32ArrayJs getChannelData(int channelIndex) native;
75 } 75 }
76 76
77 class AudioBufferSourceNodeJs extends AudioSourceNodeJs implements AudioBufferSo urceNode native "*AudioBufferSourceNode" { 77 class _AudioBufferSourceNodeJs extends _AudioSourceNodeJs implements AudioBuffer SourceNode native "*AudioBufferSourceNode" {
78 78
79 AudioBufferJs get buffer() native "return this.buffer;"; 79 _AudioBufferJs get buffer() native "return this.buffer;";
80 80
81 void set buffer(AudioBufferJs value) native "this.buffer = value;"; 81 void set buffer(_AudioBufferJs value) native "this.buffer = value;";
82 82
83 AudioGainJs get gain() native "return this.gain;"; 83 _AudioGainJs get gain() native "return this.gain;";
84 84
85 bool get loop() native "return this.loop;"; 85 bool get loop() native "return this.loop;";
86 86
87 void set loop(bool value) native "this.loop = value;"; 87 void set loop(bool value) native "this.loop = value;";
88 88
89 bool get looping() native "return this.looping;"; 89 bool get looping() native "return this.looping;";
90 90
91 void set looping(bool value) native "this.looping = value;"; 91 void set looping(bool value) native "this.looping = value;";
92 92
93 AudioParamJs get playbackRate() native "return this.playbackRate;"; 93 _AudioParamJs get playbackRate() native "return this.playbackRate;";
94 94
95 void noteGrainOn(num when, num grainOffset, num grainDuration) native; 95 void noteGrainOn(num when, num grainOffset, num grainDuration) native;
96 96
97 void noteOff(num when) native; 97 void noteOff(num when) native;
98 98
99 void noteOn(num when) native; 99 void noteOn(num when) native;
100 } 100 }
101 101
102 class AudioChannelMergerJs extends AudioNodeJs implements AudioChannelMerger nat ive "*AudioChannelMerger" { 102 class _AudioChannelMergerJs extends _AudioNodeJs implements AudioChannelMerger n ative "*AudioChannelMerger" {
103 } 103 }
104 104
105 class AudioChannelSplitterJs extends AudioNodeJs implements AudioChannelSplitter native "*AudioChannelSplitter" { 105 class _AudioChannelSplitterJs extends _AudioNodeJs implements AudioChannelSplitt er native "*AudioChannelSplitter" {
106 } 106 }
107 107
108 class AudioContextJs extends DOMTypeJs implements AudioContext native "*AudioCon text" { 108 class _AudioContextJs extends _DOMTypeJs implements AudioContext native "*AudioC ontext" {
109 AudioContext() native; 109 AudioContext() native;
110 110
111 111
112 num get currentTime() native "return this.currentTime;"; 112 num get currentTime() native "return this.currentTime;";
113 113
114 AudioDestinationNodeJs get destination() native "return this.destination;"; 114 _AudioDestinationNodeJs get destination() native "return this.destination;";
115 115
116 AudioListenerJs get listener() native "return this.listener;"; 116 _AudioListenerJs get listener() native "return this.listener;";
117 117
118 EventListener get oncomplete() native "return this.oncomplete;"; 118 EventListener get oncomplete() native "return this.oncomplete;";
119 119
120 void set oncomplete(EventListener value) native "this.oncomplete = value;"; 120 void set oncomplete(EventListener value) native "this.oncomplete = value;";
121 121
122 num get sampleRate() native "return this.sampleRate;"; 122 num get sampleRate() native "return this.sampleRate;";
123 123
124 RealtimeAnalyserNodeJs createAnalyser() native; 124 _RealtimeAnalyserNodeJs createAnalyser() native;
125 125
126 BiquadFilterNodeJs createBiquadFilter() native; 126 _BiquadFilterNodeJs createBiquadFilter() native;
127 127
128 AudioBufferJs createBuffer(var buffer_OR_numberOfChannels, var mixToMono_OR_nu mberOfFrames, [num sampleRate = null]) native; 128 _AudioBufferJs createBuffer(var buffer_OR_numberOfChannels, var mixToMono_OR_n umberOfFrames, [num sampleRate = null]) native;
129 129
130 AudioBufferSourceNodeJs createBufferSource() native; 130 _AudioBufferSourceNodeJs createBufferSource() native;
131 131
132 AudioChannelMergerJs createChannelMerger() native; 132 _AudioChannelMergerJs createChannelMerger() native;
133 133
134 AudioChannelSplitterJs createChannelSplitter() native; 134 _AudioChannelSplitterJs createChannelSplitter() native;
135 135
136 ConvolverNodeJs createConvolver() native; 136 _ConvolverNodeJs createConvolver() native;
137 137
138 DelayNodeJs createDelayNode() native; 138 _DelayNodeJs createDelayNode() native;
139 139
140 DynamicsCompressorNodeJs createDynamicsCompressor() native; 140 _DynamicsCompressorNodeJs createDynamicsCompressor() native;
141 141
142 AudioGainNodeJs createGainNode() native; 142 _AudioGainNodeJs createGainNode() native;
143 143
144 HighPass2FilterNodeJs createHighPass2Filter() native; 144 _HighPass2FilterNodeJs createHighPass2Filter() native;
145 145
146 JavaScriptAudioNodeJs createJavaScriptNode(int bufferSize) native; 146 _JavaScriptAudioNodeJs createJavaScriptNode(int bufferSize) native;
147 147
148 LowPass2FilterNodeJs createLowPass2Filter() native; 148 _LowPass2FilterNodeJs createLowPass2Filter() native;
149 149
150 MediaElementAudioSourceNodeJs createMediaElementSource(HTMLMediaElementJs medi aElement) native; 150 _MediaElementAudioSourceNodeJs createMediaElementSource(_HTMLMediaElementJs me diaElement) native;
151 151
152 AudioPannerNodeJs createPanner() native; 152 _AudioPannerNodeJs createPanner() native;
153 153
154 WaveShaperNodeJs createWaveShaper() native; 154 _WaveShaperNodeJs createWaveShaper() native;
155 155
156 void decodeAudioData(ArrayBufferJs audioData, AudioBufferCallback successCallb ack, [AudioBufferCallback errorCallback = null]) native; 156 void decodeAudioData(_ArrayBufferJs audioData, AudioBufferCallback successCall back, [AudioBufferCallback errorCallback = null]) native;
157 157
158 void startRendering() native; 158 void startRendering() native;
159 } 159 }
160 160
161 class AudioDestinationNodeJs extends AudioNodeJs implements AudioDestinationNode native "*AudioDestinationNode" { 161 class _AudioDestinationNodeJs extends _AudioNodeJs implements AudioDestinationNo de native "*AudioDestinationNode" {
162 162
163 int get numberOfChannels() native "return this.numberOfChannels;"; 163 int get numberOfChannels() native "return this.numberOfChannels;";
164 } 164 }
165 165
166 class AudioGainJs extends AudioParamJs implements AudioGain native "*AudioGain" { 166 class _AudioGainJs extends _AudioParamJs implements AudioGain native "*AudioGain " {
167 } 167 }
168 168
169 class AudioGainNodeJs extends AudioNodeJs implements AudioGainNode native "*Audi oGainNode" { 169 class _AudioGainNodeJs extends _AudioNodeJs implements AudioGainNode native "*Au dioGainNode" {
170 170
171 AudioGainJs get gain() native "return this.gain;"; 171 _AudioGainJs get gain() native "return this.gain;";
172 } 172 }
173 173
174 class AudioListenerJs extends DOMTypeJs implements AudioListener native "*AudioL istener" { 174 class _AudioListenerJs extends _DOMTypeJs implements AudioListener native "*Audi oListener" {
175 175
176 num get dopplerFactor() native "return this.dopplerFactor;"; 176 num get dopplerFactor() native "return this.dopplerFactor;";
177 177
178 void set dopplerFactor(num value) native "this.dopplerFactor = value;"; 178 void set dopplerFactor(num value) native "this.dopplerFactor = value;";
179 179
180 num get speedOfSound() native "return this.speedOfSound;"; 180 num get speedOfSound() native "return this.speedOfSound;";
181 181
182 void set speedOfSound(num value) native "this.speedOfSound = value;"; 182 void set speedOfSound(num value) native "this.speedOfSound = value;";
183 183
184 void setOrientation(num x, num y, num z, num xUp, num yUp, num zUp) native; 184 void setOrientation(num x, num y, num z, num xUp, num yUp, num zUp) native;
185 185
186 void setPosition(num x, num y, num z) native; 186 void setPosition(num x, num y, num z) native;
187 187
188 void setVelocity(num x, num y, num z) native; 188 void setVelocity(num x, num y, num z) native;
189 } 189 }
190 190
191 class AudioNodeJs extends DOMTypeJs implements AudioNode native "*AudioNode" { 191 class _AudioNodeJs extends _DOMTypeJs implements AudioNode native "*AudioNode" {
192 192
193 AudioContextJs get context() native "return this.context;"; 193 _AudioContextJs get context() native "return this.context;";
194 194
195 int get numberOfInputs() native "return this.numberOfInputs;"; 195 int get numberOfInputs() native "return this.numberOfInputs;";
196 196
197 int get numberOfOutputs() native "return this.numberOfOutputs;"; 197 int get numberOfOutputs() native "return this.numberOfOutputs;";
198 198
199 void connect(AudioNodeJs destination, int output, int input) native; 199 void connect(_AudioNodeJs destination, int output, int input) native;
200 200
201 void disconnect(int output) native; 201 void disconnect(int output) native;
202 } 202 }
203 203
204 class AudioPannerNodeJs extends AudioNodeJs implements AudioPannerNode native "* AudioPannerNode" { 204 class _AudioPannerNodeJs extends _AudioNodeJs implements AudioPannerNode native "*AudioPannerNode" {
205 205
206 static final int EQUALPOWER = 0; 206 static final int EQUALPOWER = 0;
207 207
208 static final int HRTF = 1; 208 static final int HRTF = 1;
209 209
210 static final int SOUNDFIELD = 2; 210 static final int SOUNDFIELD = 2;
211 211
212 AudioGainJs get coneGain() native "return this.coneGain;"; 212 _AudioGainJs get coneGain() native "return this.coneGain;";
213 213
214 num get coneInnerAngle() native "return this.coneInnerAngle;"; 214 num get coneInnerAngle() native "return this.coneInnerAngle;";
215 215
216 void set coneInnerAngle(num value) native "this.coneInnerAngle = value;"; 216 void set coneInnerAngle(num value) native "this.coneInnerAngle = value;";
217 217
218 num get coneOuterAngle() native "return this.coneOuterAngle;"; 218 num get coneOuterAngle() native "return this.coneOuterAngle;";
219 219
220 void set coneOuterAngle(num value) native "this.coneOuterAngle = value;"; 220 void set coneOuterAngle(num value) native "this.coneOuterAngle = value;";
221 221
222 num get coneOuterGain() native "return this.coneOuterGain;"; 222 num get coneOuterGain() native "return this.coneOuterGain;";
223 223
224 void set coneOuterGain(num value) native "this.coneOuterGain = value;"; 224 void set coneOuterGain(num value) native "this.coneOuterGain = value;";
225 225
226 AudioGainJs get distanceGain() native "return this.distanceGain;"; 226 _AudioGainJs get distanceGain() native "return this.distanceGain;";
227 227
228 int get distanceModel() native "return this.distanceModel;"; 228 int get distanceModel() native "return this.distanceModel;";
229 229
230 void set distanceModel(int value) native "this.distanceModel = value;"; 230 void set distanceModel(int value) native "this.distanceModel = value;";
231 231
232 num get maxDistance() native "return this.maxDistance;"; 232 num get maxDistance() native "return this.maxDistance;";
233 233
234 void set maxDistance(num value) native "this.maxDistance = value;"; 234 void set maxDistance(num value) native "this.maxDistance = value;";
235 235
236 int get panningModel() native "return this.panningModel;"; 236 int get panningModel() native "return this.panningModel;";
237 237
238 void set panningModel(int value) native "this.panningModel = value;"; 238 void set panningModel(int value) native "this.panningModel = value;";
239 239
240 num get refDistance() native "return this.refDistance;"; 240 num get refDistance() native "return this.refDistance;";
241 241
242 void set refDistance(num value) native "this.refDistance = value;"; 242 void set refDistance(num value) native "this.refDistance = value;";
243 243
244 num get rolloffFactor() native "return this.rolloffFactor;"; 244 num get rolloffFactor() native "return this.rolloffFactor;";
245 245
246 void set rolloffFactor(num value) native "this.rolloffFactor = value;"; 246 void set rolloffFactor(num value) native "this.rolloffFactor = value;";
247 247
248 void setOrientation(num x, num y, num z) native; 248 void setOrientation(num x, num y, num z) native;
249 249
250 void setPosition(num x, num y, num z) native; 250 void setPosition(num x, num y, num z) native;
251 251
252 void setVelocity(num x, num y, num z) native; 252 void setVelocity(num x, num y, num z) native;
253 } 253 }
254 254
255 class AudioParamJs extends DOMTypeJs implements AudioParam native "*AudioParam" { 255 class _AudioParamJs extends _DOMTypeJs implements AudioParam native "*AudioParam " {
256 256
257 num get defaultValue() native "return this.defaultValue;"; 257 num get defaultValue() native "return this.defaultValue;";
258 258
259 num get maxValue() native "return this.maxValue;"; 259 num get maxValue() native "return this.maxValue;";
260 260
261 num get minValue() native "return this.minValue;"; 261 num get minValue() native "return this.minValue;";
262 262
263 String get name() native "return this.name;"; 263 String get name() native "return this.name;";
264 264
265 int get units() native "return this.units;"; 265 int get units() native "return this.units;";
266 266
267 num get value() native "return this.value;"; 267 num get value() native "return this.value;";
268 268
269 void set value(num value) native "this.value = value;"; 269 void set value(num value) native "this.value = value;";
270 270
271 void cancelScheduledValues(num startTime) native; 271 void cancelScheduledValues(num startTime) native;
272 272
273 void exponentialRampToValueAtTime(num value, num time) native; 273 void exponentialRampToValueAtTime(num value, num time) native;
274 274
275 void linearRampToValueAtTime(num value, num time) native; 275 void linearRampToValueAtTime(num value, num time) native;
276 276
277 void setTargetValueAtTime(num targetValue, num time, num timeConstant) native; 277 void setTargetValueAtTime(num targetValue, num time, num timeConstant) native;
278 278
279 void setValueAtTime(num value, num time) native; 279 void setValueAtTime(num value, num time) native;
280 280
281 void setValueCurveAtTime(Float32ArrayJs values, num time, num duration) native ; 281 void setValueCurveAtTime(_Float32ArrayJs values, num time, num duration) nativ e;
282 } 282 }
283 283
284 class AudioProcessingEventJs extends EventJs implements AudioProcessingEvent nat ive "*AudioProcessingEvent" { 284 class _AudioProcessingEventJs extends _EventJs implements AudioProcessingEvent n ative "*AudioProcessingEvent" {
285 285
286 AudioBufferJs get inputBuffer() native "return this.inputBuffer;"; 286 _AudioBufferJs get inputBuffer() native "return this.inputBuffer;";
287 287
288 AudioBufferJs get outputBuffer() native "return this.outputBuffer;"; 288 _AudioBufferJs get outputBuffer() native "return this.outputBuffer;";
289 } 289 }
290 290
291 class AudioSourceNodeJs extends AudioNodeJs implements AudioSourceNode native "* AudioSourceNode" { 291 class _AudioSourceNodeJs extends _AudioNodeJs implements AudioSourceNode native "*AudioSourceNode" {
292 } 292 }
293 293
294 class BarInfoJs extends DOMTypeJs implements BarInfo native "*BarInfo" { 294 class _BarInfoJs extends _DOMTypeJs implements BarInfo native "*BarInfo" {
295 295
296 bool get visible() native "return this.visible;"; 296 bool get visible() native "return this.visible;";
297 } 297 }
298 298
299 class BeforeLoadEventJs extends EventJs implements BeforeLoadEvent native "*Befo reLoadEvent" { 299 class _BeforeLoadEventJs extends _EventJs implements BeforeLoadEvent native "*Be foreLoadEvent" {
300 300
301 String get url() native "return this.url;"; 301 String get url() native "return this.url;";
302 } 302 }
303 303
304 class BiquadFilterNodeJs extends AudioNodeJs implements BiquadFilterNode native "*BiquadFilterNode" { 304 class _BiquadFilterNodeJs extends _AudioNodeJs implements BiquadFilterNode nativ e "*BiquadFilterNode" {
305 305
306 static final int ALLPASS = 7; 306 static final int ALLPASS = 7;
307 307
308 static final int BANDPASS = 2; 308 static final int BANDPASS = 2;
309 309
310 static final int HIGHPASS = 1; 310 static final int HIGHPASS = 1;
311 311
312 static final int HIGHSHELF = 4; 312 static final int HIGHSHELF = 4;
313 313
314 static final int LOWPASS = 0; 314 static final int LOWPASS = 0;
315 315
316 static final int LOWSHELF = 3; 316 static final int LOWSHELF = 3;
317 317
318 static final int NOTCH = 6; 318 static final int NOTCH = 6;
319 319
320 static final int PEAKING = 5; 320 static final int PEAKING = 5;
321 321
322 AudioParamJs get Q() native "return this.Q;"; 322 _AudioParamJs get Q() native "return this.Q;";
323 323
324 AudioParamJs get frequency() native "return this.frequency;"; 324 _AudioParamJs get frequency() native "return this.frequency;";
325 325
326 AudioParamJs get gain() native "return this.gain;"; 326 _AudioParamJs get gain() native "return this.gain;";
327 327
328 int get type() native "return this.type;"; 328 int get type() native "return this.type;";
329 329
330 void set type(int value) native "this.type = value;"; 330 void set type(int value) native "this.type = value;";
331 331
332 void getFrequencyResponse(Float32ArrayJs frequencyHz, Float32ArrayJs magRespon se, Float32ArrayJs phaseResponse) native; 332 void getFrequencyResponse(_Float32ArrayJs frequencyHz, _Float32ArrayJs magResp onse, _Float32ArrayJs phaseResponse) native;
333 } 333 }
334 334
335 class BlobJs extends DOMTypeJs implements Blob native "*Blob" { 335 class _BlobJs extends _DOMTypeJs implements Blob native "*Blob" {
336 336
337 int get size() native "return this.size;"; 337 int get size() native "return this.size;";
338 338
339 String get type() native "return this.type;"; 339 String get type() native "return this.type;";
340 340
341 BlobJs webkitSlice([int start = null, int end = null, String contentType = nul l]) native; 341 _BlobJs webkitSlice([int start = null, int end = null, String contentType = nu ll]) native;
342 } 342 }
343 343
344 class CDATASectionJs extends TextJs implements CDATASection native "*CDATASectio n" { 344 class _CDATASectionJs extends _TextJs implements CDATASection native "*CDATASect ion" {
345 } 345 }
346 346
347 class CSSCharsetRuleJs extends CSSRuleJs implements CSSCharsetRule native "*CSSC harsetRule" { 347 class _CSSCharsetRuleJs extends _CSSRuleJs implements CSSCharsetRule native "*CS SCharsetRule" {
348 348
349 String get encoding() native "return this.encoding;"; 349 String get encoding() native "return this.encoding;";
350 350
351 void set encoding(String value) native "this.encoding = value;"; 351 void set encoding(String value) native "this.encoding = value;";
352 } 352 }
353 353
354 class CSSFontFaceRuleJs extends CSSRuleJs implements CSSFontFaceRule native "*CS SFontFaceRule" { 354 class _CSSFontFaceRuleJs extends _CSSRuleJs implements CSSFontFaceRule native "* CSSFontFaceRule" {
355 355
356 CSSStyleDeclarationJs get style() native "return this.style;"; 356 _CSSStyleDeclarationJs get style() native "return this.style;";
357 } 357 }
358 358
359 class CSSImportRuleJs extends CSSRuleJs implements CSSImportRule native "*CSSImp ortRule" { 359 class _CSSImportRuleJs extends _CSSRuleJs implements CSSImportRule native "*CSSI mportRule" {
360 360
361 String get href() native "return this.href;"; 361 String get href() native "return this.href;";
362 362
363 MediaListJs get media() native "return this.media;"; 363 _MediaListJs get media() native "return this.media;";
364 364
365 CSSStyleSheetJs get styleSheet() native "return this.styleSheet;"; 365 _CSSStyleSheetJs get styleSheet() native "return this.styleSheet;";
366 } 366 }
367 367
368 class CSSMediaRuleJs extends CSSRuleJs implements CSSMediaRule native "*CSSMedia Rule" { 368 class _CSSMediaRuleJs extends _CSSRuleJs implements CSSMediaRule native "*CSSMed iaRule" {
369 369
370 CSSRuleListJs get cssRules() native "return this.cssRules;"; 370 _CSSRuleListJs get cssRules() native "return this.cssRules;";
371 371
372 MediaListJs get media() native "return this.media;"; 372 _MediaListJs get media() native "return this.media;";
373 373
374 void deleteRule(int index) native; 374 void deleteRule(int index) native;
375 375
376 int insertRule(String rule, int index) native; 376 int insertRule(String rule, int index) native;
377 } 377 }
378 378
379 class CSSPageRuleJs extends CSSRuleJs implements CSSPageRule native "*CSSPageRul e" { 379 class _CSSPageRuleJs extends _CSSRuleJs implements CSSPageRule native "*CSSPageR ule" {
380 380
381 String get selectorText() native "return this.selectorText;"; 381 String get selectorText() native "return this.selectorText;";
382 382
383 void set selectorText(String value) native "this.selectorText = value;"; 383 void set selectorText(String value) native "this.selectorText = value;";
384 384
385 CSSStyleDeclarationJs get style() native "return this.style;"; 385 _CSSStyleDeclarationJs get style() native "return this.style;";
386 } 386 }
387 387
388 class CSSPrimitiveValueJs extends CSSValueJs implements CSSPrimitiveValue native "*CSSPrimitiveValue" { 388 class _CSSPrimitiveValueJs extends _CSSValueJs implements CSSPrimitiveValue nati ve "*CSSPrimitiveValue" {
389 389
390 static final int CSS_ATTR = 22; 390 static final int CSS_ATTR = 22;
391 391
392 static final int CSS_CM = 6; 392 static final int CSS_CM = 6;
393 393
394 static final int CSS_COUNTER = 23; 394 static final int CSS_COUNTER = 23;
395 395
396 static final int CSS_DEG = 11; 396 static final int CSS_DEG = 11;
397 397
398 static final int CSS_DIMENSION = 18; 398 static final int CSS_DIMENSION = 18;
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
434 static final int CSS_S = 15; 434 static final int CSS_S = 15;
435 435
436 static final int CSS_STRING = 19; 436 static final int CSS_STRING = 19;
437 437
438 static final int CSS_UNKNOWN = 0; 438 static final int CSS_UNKNOWN = 0;
439 439
440 static final int CSS_URI = 20; 440 static final int CSS_URI = 20;
441 441
442 int get primitiveType() native "return this.primitiveType;"; 442 int get primitiveType() native "return this.primitiveType;";
443 443
444 CounterJs getCounterValue() native; 444 _CounterJs getCounterValue() native;
445 445
446 num getFloatValue(int unitType) native; 446 num getFloatValue(int unitType) native;
447 447
448 RGBColorJs getRGBColorValue() native; 448 _RGBColorJs getRGBColorValue() native;
449 449
450 RectJs getRectValue() native; 450 _RectJs getRectValue() native;
451 451
452 String getStringValue() native; 452 String getStringValue() native;
453 453
454 void setFloatValue(int unitType, num floatValue) native; 454 void setFloatValue(int unitType, num floatValue) native;
455 455
456 void setStringValue(int stringType, String stringValue) native; 456 void setStringValue(int stringType, String stringValue) native;
457 } 457 }
458 458
459 class CSSRuleJs extends DOMTypeJs implements CSSRule native "*CSSRule" { 459 class _CSSRuleJs extends _DOMTypeJs implements CSSRule native "*CSSRule" {
460 460
461 static final int CHARSET_RULE = 2; 461 static final int CHARSET_RULE = 2;
462 462
463 static final int FONT_FACE_RULE = 5; 463 static final int FONT_FACE_RULE = 5;
464 464
465 static final int IMPORT_RULE = 3; 465 static final int IMPORT_RULE = 3;
466 466
467 static final int MEDIA_RULE = 4; 467 static final int MEDIA_RULE = 4;
468 468
469 static final int PAGE_RULE = 6; 469 static final int PAGE_RULE = 6;
470 470
471 static final int STYLE_RULE = 1; 471 static final int STYLE_RULE = 1;
472 472
473 static final int UNKNOWN_RULE = 0; 473 static final int UNKNOWN_RULE = 0;
474 474
475 static final int WEBKIT_KEYFRAMES_RULE = 8; 475 static final int WEBKIT_KEYFRAMES_RULE = 8;
476 476
477 static final int WEBKIT_KEYFRAME_RULE = 9; 477 static final int WEBKIT_KEYFRAME_RULE = 9;
478 478
479 static final int WEBKIT_REGION_RULE = 10; 479 static final int WEBKIT_REGION_RULE = 10;
480 480
481 String get cssText() native "return this.cssText;"; 481 String get cssText() native "return this.cssText;";
482 482
483 void set cssText(String value) native "this.cssText = value;"; 483 void set cssText(String value) native "this.cssText = value;";
484 484
485 CSSRuleJs get parentRule() native "return this.parentRule;"; 485 _CSSRuleJs get parentRule() native "return this.parentRule;";
486 486
487 CSSStyleSheetJs get parentStyleSheet() native "return this.parentStyleSheet;"; 487 _CSSStyleSheetJs get parentStyleSheet() native "return this.parentStyleSheet;" ;
488 488
489 int get type() native "return this.type;"; 489 int get type() native "return this.type;";
490 } 490 }
491 491
492 class CSSRuleListJs extends DOMTypeJs implements CSSRuleList native "*CSSRuleLis t" { 492 class _CSSRuleListJs extends _DOMTypeJs implements CSSRuleList native "*CSSRuleL ist" {
493 493
494 int get length() native "return this.length;"; 494 int get length() native "return this.length;";
495 495
496 CSSRuleJs item(int index) native; 496 _CSSRuleJs item(int index) native;
497 } 497 }
498 498
499 class CSSStyleDeclarationJs extends DOMTypeJs implements CSSStyleDeclaration nat ive "*CSSStyleDeclaration" { 499 class _CSSStyleDeclarationJs extends _DOMTypeJs implements CSSStyleDeclaration n ative "*CSSStyleDeclaration" {
500 500
501 String get cssText() native "return this.cssText;"; 501 String get cssText() native "return this.cssText;";
502 502
503 void set cssText(String value) native "this.cssText = value;"; 503 void set cssText(String value) native "this.cssText = value;";
504 504
505 int get length() native "return this.length;"; 505 int get length() native "return this.length;";
506 506
507 CSSRuleJs get parentRule() native "return this.parentRule;"; 507 _CSSRuleJs get parentRule() native "return this.parentRule;";
508 508
509 CSSValueJs getPropertyCSSValue(String propertyName) native; 509 _CSSValueJs getPropertyCSSValue(String propertyName) native;
510 510
511 String getPropertyPriority(String propertyName) native; 511 String getPropertyPriority(String propertyName) native;
512 512
513 String getPropertyShorthand(String propertyName) native; 513 String getPropertyShorthand(String propertyName) native;
514 514
515 String getPropertyValue(String propertyName) native; 515 String getPropertyValue(String propertyName) native;
516 516
517 bool isPropertyImplicit(String propertyName) native; 517 bool isPropertyImplicit(String propertyName) native;
518 518
519 String item(int index) native; 519 String item(int index) native;
520 520
521 String removeProperty(String propertyName) native; 521 String removeProperty(String propertyName) native;
522 522
523 void setProperty(String propertyName, String value, [String priority = null]) native; 523 void setProperty(String propertyName, String value, [String priority = null]) native;
524 } 524 }
525 525
526 class CSSStyleRuleJs extends CSSRuleJs implements CSSStyleRule native "*CSSStyle Rule" { 526 class _CSSStyleRuleJs extends _CSSRuleJs implements CSSStyleRule native "*CSSSty leRule" {
527 527
528 String get selectorText() native "return this.selectorText;"; 528 String get selectorText() native "return this.selectorText;";
529 529
530 void set selectorText(String value) native "this.selectorText = value;"; 530 void set selectorText(String value) native "this.selectorText = value;";
531 531
532 CSSStyleDeclarationJs get style() native "return this.style;"; 532 _CSSStyleDeclarationJs get style() native "return this.style;";
533 } 533 }
534 534
535 class CSSStyleSheetJs extends StyleSheetJs implements CSSStyleSheet native "*CSS StyleSheet" { 535 class _CSSStyleSheetJs extends _StyleSheetJs implements CSSStyleSheet native "*C SSStyleSheet" {
536 536
537 CSSRuleListJs get cssRules() native "return this.cssRules;"; 537 _CSSRuleListJs get cssRules() native "return this.cssRules;";
538 538
539 CSSRuleJs get ownerRule() native "return this.ownerRule;"; 539 _CSSRuleJs get ownerRule() native "return this.ownerRule;";
540 540
541 CSSRuleListJs get rules() native "return this.rules;"; 541 _CSSRuleListJs get rules() native "return this.rules;";
542 542
543 int addRule(String selector, String style, [int index = null]) native; 543 int addRule(String selector, String style, [int index = null]) native;
544 544
545 void deleteRule(int index) native; 545 void deleteRule(int index) native;
546 546
547 int insertRule(String rule, int index) native; 547 int insertRule(String rule, int index) native;
548 548
549 void removeRule(int index) native; 549 void removeRule(int index) native;
550 } 550 }
551 551
552 class CSSUnknownRuleJs extends CSSRuleJs implements CSSUnknownRule native "*CSSU nknownRule" { 552 class _CSSUnknownRuleJs extends _CSSRuleJs implements CSSUnknownRule native "*CS SUnknownRule" {
553 } 553 }
554 554
555 class CSSValueJs extends DOMTypeJs implements CSSValue native "*CSSValue" { 555 class _CSSValueJs extends _DOMTypeJs implements CSSValue native "*CSSValue" {
556 556
557 static final int CSS_CUSTOM = 3; 557 static final int CSS_CUSTOM = 3;
558 558
559 static final int CSS_INHERIT = 0; 559 static final int CSS_INHERIT = 0;
560 560
561 static final int CSS_PRIMITIVE_VALUE = 1; 561 static final int CSS_PRIMITIVE_VALUE = 1;
562 562
563 static final int CSS_VALUE_LIST = 2; 563 static final int CSS_VALUE_LIST = 2;
564 564
565 String get cssText() native "return this.cssText;"; 565 String get cssText() native "return this.cssText;";
566 566
567 void set cssText(String value) native "this.cssText = value;"; 567 void set cssText(String value) native "this.cssText = value;";
568 568
569 int get cssValueType() native "return this.cssValueType;"; 569 int get cssValueType() native "return this.cssValueType;";
570 } 570 }
571 571
572 class CSSValueListJs extends CSSValueJs implements CSSValueList native "*CSSValu eList" { 572 class _CSSValueListJs extends _CSSValueJs implements CSSValueList native "*CSSVa lueList" {
573 573
574 int get length() native "return this.length;"; 574 int get length() native "return this.length;";
575 575
576 CSSValueJs item(int index) native; 576 _CSSValueJs item(int index) native;
577 } 577 }
578 578
579 class CanvasGradientJs extends DOMTypeJs implements CanvasGradient native "*Canv asGradient" { 579 class _CanvasGradientJs extends _DOMTypeJs implements CanvasGradient native "*Ca nvasGradient" {
580 580
581 void addColorStop(num offset, String color) native; 581 void addColorStop(num offset, String color) native;
582 } 582 }
583 583
584 class CanvasPatternJs extends DOMTypeJs implements CanvasPattern native "*Canvas Pattern" { 584 class _CanvasPatternJs extends _DOMTypeJs implements CanvasPattern native "*Canv asPattern" {
585 } 585 }
586 586
587 class CanvasPixelArrayJs extends DOMTypeJs implements CanvasPixelArray native "* CanvasPixelArray" { 587 class _CanvasPixelArrayJs extends _DOMTypeJs implements CanvasPixelArray native "*CanvasPixelArray" {
588 588
589 int get length() native "return this.length;"; 589 int get length() native "return this.length;";
590 590
591 int operator[](int index) native "return this[index];"; 591 int operator[](int index) native "return this[index];";
592 592
593 void operator[]=(int index, int value) native "this[index] = value"; 593 void operator[]=(int index, int value) native "this[index] = value";
594 // -- start List<int> mixins. 594 // -- start List<int> mixins.
595 // int is the element type. 595 // int is the element type.
596 596
597 // From Iterable<int>: 597 // From Iterable<int>:
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
653 } 653 }
654 void insertRange(int start, int length, [int initialValue]) { 654 void insertRange(int start, int length, [int initialValue]) {
655 throw new UnsupportedOperationException("Cannot insertRange on immutable Lis t."); 655 throw new UnsupportedOperationException("Cannot insertRange on immutable Lis t.");
656 } 656 }
657 List<int> getRange(int start, int length) => 657 List<int> getRange(int start, int length) =>
658 _Lists.getRange(this, start, length, <int>[]); 658 _Lists.getRange(this, start, length, <int>[]);
659 659
660 // -- end List<int> mixins. 660 // -- end List<int> mixins.
661 } 661 }
662 662
663 class CanvasRenderingContextJs extends DOMTypeJs implements CanvasRenderingConte xt native "*CanvasRenderingContext" { 663 class _CanvasRenderingContextJs extends _DOMTypeJs implements CanvasRenderingCon text native "*CanvasRenderingContext" {
664 664
665 HTMLCanvasElementJs get canvas() native "return this.canvas;"; 665 _HTMLCanvasElementJs get canvas() native "return this.canvas;";
666 } 666 }
667 667
668 class CanvasRenderingContext2DJs extends CanvasRenderingContextJs implements Can vasRenderingContext2D native "*CanvasRenderingContext2D" { 668 class _CanvasRenderingContext2DJs extends _CanvasRenderingContextJs implements C anvasRenderingContext2D native "*CanvasRenderingContext2D" {
669 669
670 Dynamic get fillStyle() native "return this.fillStyle;"; 670 Dynamic get fillStyle() native "return this.fillStyle;";
671 671
672 void set fillStyle(Dynamic value) native "this.fillStyle = value;"; 672 void set fillStyle(Dynamic value) native "this.fillStyle = value;";
673 673
674 String get font() native "return this.font;"; 674 String get font() native "return this.font;";
675 675
676 void set font(String value) native "this.font = value;"; 676 void set font(String value) native "this.font = value;";
677 677
678 num get globalAlpha() native "return this.globalAlpha;"; 678 num get globalAlpha() native "return this.globalAlpha;";
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
744 void bezierCurveTo(num cp1x, num cp1y, num cp2x, num cp2y, num x, num y) nativ e; 744 void bezierCurveTo(num cp1x, num cp1y, num cp2x, num cp2y, num x, num y) nativ e;
745 745
746 void clearRect(num x, num y, num width, num height) native; 746 void clearRect(num x, num y, num width, num height) native;
747 747
748 void clearShadow() native; 748 void clearShadow() native;
749 749
750 void clip() native; 750 void clip() native;
751 751
752 void closePath() native; 752 void closePath() native;
753 753
754 ImageDataJs createImageData(var imagedata_OR_sw, [num sh = null]) native; 754 _ImageDataJs createImageData(var imagedata_OR_sw, [num sh = null]) native;
755 755
756 CanvasGradientJs createLinearGradient(num x0, num y0, num x1, num y1) native; 756 _CanvasGradientJs createLinearGradient(num x0, num y0, num x1, num y1) native;
757 757
758 CanvasPatternJs createPattern(var canvas_OR_image, String repetitionType) nati ve; 758 _CanvasPatternJs createPattern(var canvas_OR_image, String repetitionType) nat ive;
759 759
760 CanvasGradientJs createRadialGradient(num x0, num y0, num r0, num x1, num y1, num r1) native; 760 _CanvasGradientJs createRadialGradient(num x0, num y0, num r0, num x1, num y1, num r1) native;
761 761
762 void drawImage(var canvas_OR_image_OR_video, num sx_OR_x, num sy_OR_y, [num sw _OR_width = null, num height_OR_sh = null, num dx = null, num dy = null, num dw = null, num dh = null]) native; 762 void drawImage(var canvas_OR_image_OR_video, num sx_OR_x, num sy_OR_y, [num sw _OR_width = null, num height_OR_sh = null, num dx = null, num dy = null, num dw = null, num dh = null]) native;
763 763
764 void drawImageFromRect(HTMLImageElementJs image, [num sx = null, num sy = null , num sw = null, num sh = null, num dx = null, num dy = null, num dw = null, num dh = null, String compositeOperation = null]) native; 764 void drawImageFromRect(_HTMLImageElementJs image, [num sx = null, num sy = nul l, num sw = null, num sh = null, num dx = null, num dy = null, num dw = null, nu m dh = null, String compositeOperation = null]) native;
765 765
766 void fill() native; 766 void fill() native;
767 767
768 void fillRect(num x, num y, num width, num height) native; 768 void fillRect(num x, num y, num width, num height) native;
769 769
770 void fillText(String text, num x, num y, [num maxWidth = null]) native; 770 void fillText(String text, num x, num y, [num maxWidth = null]) native;
771 771
772 ImageDataJs getImageData(num sx, num sy, num sw, num sh) native; 772 _ImageDataJs getImageData(num sx, num sy, num sw, num sh) native;
773 773
774 bool isPointInPath(num x, num y) native; 774 bool isPointInPath(num x, num y) native;
775 775
776 void lineTo(num x, num y) native; 776 void lineTo(num x, num y) native;
777 777
778 TextMetricsJs measureText(String text) native; 778 _TextMetricsJs measureText(String text) native;
779 779
780 void moveTo(num x, num y) native; 780 void moveTo(num x, num y) native;
781 781
782 void putImageData(ImageDataJs imagedata, num dx, num dy, [num dirtyX = null, n um dirtyY = null, num dirtyWidth = null, num dirtyHeight = null]) native; 782 void putImageData(_ImageDataJs imagedata, num dx, num dy, [num dirtyX = null, num dirtyY = null, num dirtyWidth = null, num dirtyHeight = null]) native;
783 783
784 void quadraticCurveTo(num cpx, num cpy, num x, num y) native; 784 void quadraticCurveTo(num cpx, num cpy, num x, num y) native;
785 785
786 void rect(num x, num y, num width, num height) native; 786 void rect(num x, num y, num width, num height) native;
787 787
788 void restore() native; 788 void restore() native;
789 789
790 void rotate(num angle) native; 790 void rotate(num angle) native;
791 791
792 void save() native; 792 void save() native;
(...skipping 24 matching lines...) Expand all
817 817
818 void strokeRect(num x, num y, num width, num height, [num lineWidth = null]) n ative; 818 void strokeRect(num x, num y, num width, num height, [num lineWidth = null]) n ative;
819 819
820 void strokeText(String text, num x, num y, [num maxWidth = null]) native; 820 void strokeText(String text, num x, num y, [num maxWidth = null]) native;
821 821
822 void transform(num m11, num m12, num m21, num m22, num dx, num dy) native; 822 void transform(num m11, num m12, num m21, num m22, num dx, num dy) native;
823 823
824 void translate(num tx, num ty) native; 824 void translate(num tx, num ty) native;
825 } 825 }
826 826
827 class CharacterDataJs extends NodeJs implements CharacterData native "*Character Data" { 827 class _CharacterDataJs extends _NodeJs implements CharacterData native "*Charact erData" {
828 828
829 String get data() native "return this.data;"; 829 String get data() native "return this.data;";
830 830
831 void set data(String value) native "this.data = value;"; 831 void set data(String value) native "this.data = value;";
832 832
833 int get length() native "return this.length;"; 833 int get length() native "return this.length;";
834 834
835 void appendData(String data) native; 835 void appendData(String data) native;
836 836
837 void deleteData(int offset, int length) native; 837 void deleteData(int offset, int length) native;
838 838
839 void insertData(int offset, String data) native; 839 void insertData(int offset, String data) native;
840 840
841 void replaceData(int offset, int length, String data) native; 841 void replaceData(int offset, int length, String data) native;
842 842
843 String substringData(int offset, int length) native; 843 String substringData(int offset, int length) native;
844 } 844 }
845 845
846 class ClientRectJs extends DOMTypeJs implements ClientRect native "*ClientRect" { 846 class _ClientRectJs extends _DOMTypeJs implements ClientRect native "*ClientRect " {
847 847
848 num get bottom() native "return this.bottom;"; 848 num get bottom() native "return this.bottom;";
849 849
850 num get height() native "return this.height;"; 850 num get height() native "return this.height;";
851 851
852 num get left() native "return this.left;"; 852 num get left() native "return this.left;";
853 853
854 num get right() native "return this.right;"; 854 num get right() native "return this.right;";
855 855
856 num get top() native "return this.top;"; 856 num get top() native "return this.top;";
857 857
858 num get width() native "return this.width;"; 858 num get width() native "return this.width;";
859 } 859 }
860 860
861 class ClientRectListJs extends DOMTypeJs implements ClientRectList native "*Clie ntRectList" { 861 class _ClientRectListJs extends _DOMTypeJs implements ClientRectList native "*Cl ientRectList" {
862 862
863 int get length() native "return this.length;"; 863 int get length() native "return this.length;";
864 864
865 ClientRectJs item(int index) native; 865 _ClientRectJs item(int index) native;
866 } 866 }
867 867
868 class ClipboardJs extends DOMTypeJs implements Clipboard native "*Clipboard" { 868 class _ClipboardJs extends _DOMTypeJs implements Clipboard native "*Clipboard" {
869 869
870 String get dropEffect() native "return this.dropEffect;"; 870 String get dropEffect() native "return this.dropEffect;";
871 871
872 void set dropEffect(String value) native "this.dropEffect = value;"; 872 void set dropEffect(String value) native "this.dropEffect = value;";
873 873
874 String get effectAllowed() native "return this.effectAllowed;"; 874 String get effectAllowed() native "return this.effectAllowed;";
875 875
876 void set effectAllowed(String value) native "this.effectAllowed = value;"; 876 void set effectAllowed(String value) native "this.effectAllowed = value;";
877 877
878 FileListJs get files() native "return this.files;"; 878 _FileListJs get files() native "return this.files;";
879 879
880 DataTransferItemListJs get items() native "return this.items;"; 880 _DataTransferItemListJs get items() native "return this.items;";
881 881
882 List get types() native "return this.types;"; 882 List get types() native "return this.types;";
883 883
884 void clearData([String type = null]) native; 884 void clearData([String type = null]) native;
885 885
886 void getData(String type) native; 886 void getData(String type) native;
887 887
888 bool setData(String type, String data) native; 888 bool setData(String type, String data) native;
889 889
890 void setDragImage(HTMLImageElementJs image, int x, int y) native; 890 void setDragImage(_HTMLImageElementJs image, int x, int y) native;
891 } 891 }
892 892
893 class CloseEventJs extends EventJs implements CloseEvent native "*CloseEvent" { 893 class _CloseEventJs extends _EventJs implements CloseEvent native "*CloseEvent" {
894 894
895 int get code() native "return this.code;"; 895 int get code() native "return this.code;";
896 896
897 String get reason() native "return this.reason;"; 897 String get reason() native "return this.reason;";
898 898
899 bool get wasClean() native "return this.wasClean;"; 899 bool get wasClean() native "return this.wasClean;";
900 } 900 }
901 901
902 class CommentJs extends CharacterDataJs implements Comment native "*Comment" { 902 class _CommentJs extends _CharacterDataJs implements Comment native "*Comment" {
903 } 903 }
904 904
905 class CompositionEventJs extends UIEventJs implements CompositionEvent native "* CompositionEvent" { 905 class _CompositionEventJs extends _UIEventJs implements CompositionEvent native "*CompositionEvent" {
906 906
907 String get data() native "return this.data;"; 907 String get data() native "return this.data;";
908 908
909 void initCompositionEvent(String typeArg, bool canBubbleArg, bool cancelableAr g, DOMWindowJs viewArg, String dataArg) native; 909 void initCompositionEvent(String typeArg, bool canBubbleArg, bool cancelableAr g, _DOMWindowJs viewArg, String dataArg) native;
910 } 910 }
911 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 911 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
912 // for details. All rights reserved. Use of this source code is governed by a 912 // for details. All rights reserved. Use of this source code is governed by a
913 // BSD-style license that can be found in the LICENSE file. 913 // BSD-style license that can be found in the LICENSE file.
914 914
915 class ConsoleJs 915 class _ConsoleJs
916 // Implement DOMType directly. Console is sometimes a singleton 916 // Implement DOMType directly. Console is sometimes a singleton
917 // bag-of-properties without a prototype, so it can't inherit from 917 // bag-of-properties without a prototype, so it can't inherit from
918 // DOMTypeJs. 918 // DOMTypeJs.
919 implements Console, DOMType 919 implements Console, DOMType
920 native "=(typeof console == 'undefined' ? {} : console)" { 920 native "=(typeof console == 'undefined' ? {} : console)" {
921 921
922 MemoryInfoJs get memory() native "return this.memory;"; 922 _MemoryInfoJs get memory() native "return this.memory;";
923 923
924 List get profiles() native "return this.profiles;"; 924 List get profiles() native "return this.profiles;";
925 925
926 void assertCondition(bool condition) native; 926 void assertCondition(bool condition) native;
927 927
928 void count() native; 928 void count() native;
929 929
930 void debug(Object arg) native; 930 void debug(Object arg) native;
931 931
932 void dir() native; 932 void dir() native;
(...skipping 27 matching lines...) Expand all
960 void trace(Object arg) native; 960 void trace(Object arg) native;
961 961
962 void warn(Object arg) native; 962 void warn(Object arg) native;
963 963
964 964
965 // Keep these in sync with frog_DOMTypeJs.dart. 965 // Keep these in sync with frog_DOMTypeJs.dart.
966 var dartObjectLocalStorage; 966 var dartObjectLocalStorage;
967 String get typeName() native; 967 String get typeName() native;
968 } 968 }
969 969
970 class ConvolverNodeJs extends AudioNodeJs implements ConvolverNode native "*Conv olverNode" { 970 class _ConvolverNodeJs extends _AudioNodeJs implements ConvolverNode native "*Co nvolverNode" {
971 971
972 AudioBufferJs get buffer() native "return this.buffer;"; 972 _AudioBufferJs get buffer() native "return this.buffer;";
973 973
974 void set buffer(AudioBufferJs value) native "this.buffer = value;"; 974 void set buffer(_AudioBufferJs value) native "this.buffer = value;";
975 975
976 bool get normalize() native "return this.normalize;"; 976 bool get normalize() native "return this.normalize;";
977 977
978 void set normalize(bool value) native "this.normalize = value;"; 978 void set normalize(bool value) native "this.normalize = value;";
979 } 979 }
980 980
981 class CoordinatesJs extends DOMTypeJs implements Coordinates native "*Coordinate s" { 981 class _CoordinatesJs extends _DOMTypeJs implements Coordinates native "*Coordina tes" {
982 982
983 num get accuracy() native "return this.accuracy;"; 983 num get accuracy() native "return this.accuracy;";
984 984
985 num get altitude() native "return this.altitude;"; 985 num get altitude() native "return this.altitude;";
986 986
987 num get altitudeAccuracy() native "return this.altitudeAccuracy;"; 987 num get altitudeAccuracy() native "return this.altitudeAccuracy;";
988 988
989 num get heading() native "return this.heading;"; 989 num get heading() native "return this.heading;";
990 990
991 num get latitude() native "return this.latitude;"; 991 num get latitude() native "return this.latitude;";
992 992
993 num get longitude() native "return this.longitude;"; 993 num get longitude() native "return this.longitude;";
994 994
995 num get speed() native "return this.speed;"; 995 num get speed() native "return this.speed;";
996 } 996 }
997 997
998 class CounterJs extends DOMTypeJs implements Counter native "*Counter" { 998 class _CounterJs extends _DOMTypeJs implements Counter native "*Counter" {
999 999
1000 String get identifier() native "return this.identifier;"; 1000 String get identifier() native "return this.identifier;";
1001 1001
1002 String get listStyle() native "return this.listStyle;"; 1002 String get listStyle() native "return this.listStyle;";
1003 1003
1004 String get separator() native "return this.separator;"; 1004 String get separator() native "return this.separator;";
1005 } 1005 }
1006 1006
1007 class CryptoJs extends DOMTypeJs implements Crypto native "*Crypto" { 1007 class _CryptoJs extends _DOMTypeJs implements Crypto native "*Crypto" {
1008 1008
1009 void getRandomValues(ArrayBufferViewJs array) native; 1009 void getRandomValues(_ArrayBufferViewJs array) native;
1010 } 1010 }
1011 1011
1012 class CustomEventJs extends EventJs implements CustomEvent native "*CustomEvent" { 1012 class _CustomEventJs extends _EventJs implements CustomEvent native "*CustomEven t" {
1013 1013
1014 Object get detail() native "return this.detail;"; 1014 Object get detail() native "return this.detail;";
1015 1015
1016 void initCustomEvent(String typeArg, bool canBubbleArg, bool cancelableArg, Ob ject detailArg) native; 1016 void initCustomEvent(String typeArg, bool canBubbleArg, bool cancelableArg, Ob ject detailArg) native;
1017 } 1017 }
1018 1018
1019 class DOMApplicationCacheJs extends DOMTypeJs implements DOMApplicationCache nat ive "*DOMApplicationCache" { 1019 class _DOMApplicationCacheJs extends _DOMTypeJs implements DOMApplicationCache n ative "*DOMApplicationCache" {
1020 1020
1021 static final int CHECKING = 2; 1021 static final int CHECKING = 2;
1022 1022
1023 static final int DOWNLOADING = 3; 1023 static final int DOWNLOADING = 3;
1024 1024
1025 static final int IDLE = 1; 1025 static final int IDLE = 1;
1026 1026
1027 static final int OBSOLETE = 5; 1027 static final int OBSOLETE = 5;
1028 1028
1029 static final int UNCACHED = 0; 1029 static final int UNCACHED = 0;
1030 1030
1031 static final int UPDATEREADY = 4; 1031 static final int UPDATEREADY = 4;
1032 1032
1033 int get status() native "return this.status;"; 1033 int get status() native "return this.status;";
1034 1034
1035 void abort() native; 1035 void abort() native;
1036 1036
1037 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native; 1037 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
1038 1038
1039 bool dispatchEvent(EventJs evt) native; 1039 bool dispatchEvent(_EventJs evt) native;
1040 1040
1041 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native; 1041 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
1042 1042
1043 void swapCache() native; 1043 void swapCache() native;
1044 1044
1045 void update() native; 1045 void update() native;
1046 } 1046 }
1047 1047
1048 class DOMExceptionJs extends DOMTypeJs implements DOMException native "*DOMExcep tion" { 1048 class _DOMExceptionJs extends _DOMTypeJs implements DOMException native "*DOMExc eption" {
1049 1049
1050 static final int ABORT_ERR = 20; 1050 static final int ABORT_ERR = 20;
1051 1051
1052 static final int DATA_CLONE_ERR = 25; 1052 static final int DATA_CLONE_ERR = 25;
1053 1053
1054 static final int DOMSTRING_SIZE_ERR = 2; 1054 static final int DOMSTRING_SIZE_ERR = 2;
1055 1055
1056 static final int HIERARCHY_REQUEST_ERR = 3; 1056 static final int HIERARCHY_REQUEST_ERR = 3;
1057 1057
1058 static final int INDEX_SIZE_ERR = 1; 1058 static final int INDEX_SIZE_ERR = 1;
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
1099 1099
1100 int get code() native "return this.code;"; 1100 int get code() native "return this.code;";
1101 1101
1102 String get message() native "return this.message;"; 1102 String get message() native "return this.message;";
1103 1103
1104 String get name() native "return this.name;"; 1104 String get name() native "return this.name;";
1105 1105
1106 String toString() native; 1106 String toString() native;
1107 } 1107 }
1108 1108
1109 class DOMFileSystemJs extends DOMTypeJs implements DOMFileSystem native "*DOMFil eSystem" { 1109 class _DOMFileSystemJs extends _DOMTypeJs implements DOMFileSystem native "*DOMF ileSystem" {
1110 1110
1111 String get name() native "return this.name;"; 1111 String get name() native "return this.name;";
1112 1112
1113 DirectoryEntryJs get root() native "return this.root;"; 1113 _DirectoryEntryJs get root() native "return this.root;";
1114 } 1114 }
1115 1115
1116 class DOMFileSystemSyncJs extends DOMTypeJs implements DOMFileSystemSync native "*DOMFileSystemSync" { 1116 class _DOMFileSystemSyncJs extends _DOMTypeJs implements DOMFileSystemSync nativ e "*DOMFileSystemSync" {
1117 1117
1118 String get name() native "return this.name;"; 1118 String get name() native "return this.name;";
1119 1119
1120 DirectoryEntrySyncJs get root() native "return this.root;"; 1120 _DirectoryEntrySyncJs get root() native "return this.root;";
1121 } 1121 }
1122 1122
1123 class DOMFormDataJs extends DOMTypeJs implements DOMFormData native "*DOMFormDat a" { 1123 class _DOMFormDataJs extends _DOMTypeJs implements DOMFormData native "*DOMFormD ata" {
1124 1124
1125 void append(String name, String value, String filename) native; 1125 void append(String name, String value, String filename) native;
1126 } 1126 }
1127 1127
1128 class DOMImplementationJs extends DOMTypeJs implements DOMImplementation native "*DOMImplementation" { 1128 class _DOMImplementationJs extends _DOMTypeJs implements DOMImplementation nativ e "*DOMImplementation" {
1129 1129
1130 CSSStyleSheetJs createCSSStyleSheet(String title, String media) native; 1130 _CSSStyleSheetJs createCSSStyleSheet(String title, String media) native;
1131 1131
1132 DocumentJs createDocument(String namespaceURI, String qualifiedName, DocumentT ypeJs doctype) native; 1132 _DocumentJs createDocument(String namespaceURI, String qualifiedName, _Documen tTypeJs doctype) native;
1133 1133
1134 DocumentTypeJs createDocumentType(String qualifiedName, String publicId, Strin g systemId) native; 1134 _DocumentTypeJs createDocumentType(String qualifiedName, String publicId, Stri ng systemId) native;
1135 1135
1136 HTMLDocumentJs createHTMLDocument(String title) native; 1136 _HTMLDocumentJs createHTMLDocument(String title) native;
1137 1137
1138 bool hasFeature(String feature, String version) native; 1138 bool hasFeature(String feature, String version) native;
1139 } 1139 }
1140 1140
1141 class DOMMimeTypeJs extends DOMTypeJs implements DOMMimeType native "*DOMMimeTyp e" { 1141 class _DOMMimeTypeJs extends _DOMTypeJs implements DOMMimeType native "*DOMMimeT ype" {
1142 1142
1143 String get description() native "return this.description;"; 1143 String get description() native "return this.description;";
1144 1144
1145 DOMPluginJs get enabledPlugin() native "return this.enabledPlugin;"; 1145 _DOMPluginJs get enabledPlugin() native "return this.enabledPlugin;";
1146 1146
1147 String get suffixes() native "return this.suffixes;"; 1147 String get suffixes() native "return this.suffixes;";
1148 1148
1149 String get type() native "return this.type;"; 1149 String get type() native "return this.type;";
1150 } 1150 }
1151 1151
1152 class DOMMimeTypeArrayJs extends DOMTypeJs implements DOMMimeTypeArray native "* DOMMimeTypeArray" { 1152 class _DOMMimeTypeArrayJs extends _DOMTypeJs implements DOMMimeTypeArray native "*DOMMimeTypeArray" {
1153 1153
1154 int get length() native "return this.length;"; 1154 int get length() native "return this.length;";
1155 1155
1156 DOMMimeTypeJs item(int index) native; 1156 _DOMMimeTypeJs item(int index) native;
1157 1157
1158 DOMMimeTypeJs namedItem(String name) native; 1158 _DOMMimeTypeJs namedItem(String name) native;
1159 } 1159 }
1160 1160
1161 class DOMParserJs extends DOMTypeJs implements DOMParser native "*DOMParser" { 1161 class _DOMParserJs extends _DOMTypeJs implements DOMParser native "*DOMParser" {
1162 1162
1163 DocumentJs parseFromString(String str, String contentType) native; 1163 _DocumentJs parseFromString(String str, String contentType) native;
1164 } 1164 }
1165 1165
1166 class DOMPluginJs extends DOMTypeJs implements DOMPlugin native "*DOMPlugin" { 1166 class _DOMPluginJs extends _DOMTypeJs implements DOMPlugin native "*DOMPlugin" {
1167 1167
1168 String get description() native "return this.description;"; 1168 String get description() native "return this.description;";
1169 1169
1170 String get filename() native "return this.filename;"; 1170 String get filename() native "return this.filename;";
1171 1171
1172 int get length() native "return this.length;"; 1172 int get length() native "return this.length;";
1173 1173
1174 String get name() native "return this.name;"; 1174 String get name() native "return this.name;";
1175 1175
1176 DOMMimeTypeJs item(int index) native; 1176 _DOMMimeTypeJs item(int index) native;
1177 1177
1178 DOMMimeTypeJs namedItem(String name) native; 1178 _DOMMimeTypeJs namedItem(String name) native;
1179 } 1179 }
1180 1180
1181 class DOMPluginArrayJs extends DOMTypeJs implements DOMPluginArray native "*DOMP luginArray" { 1181 class _DOMPluginArrayJs extends _DOMTypeJs implements DOMPluginArray native "*DO MPluginArray" {
1182 1182
1183 int get length() native "return this.length;"; 1183 int get length() native "return this.length;";
1184 1184
1185 DOMPluginJs item(int index) native; 1185 _DOMPluginJs item(int index) native;
1186 1186
1187 DOMPluginJs namedItem(String name) native; 1187 _DOMPluginJs namedItem(String name) native;
1188 1188
1189 void refresh(bool reload) native; 1189 void refresh(bool reload) native;
1190 } 1190 }
1191 1191
1192 class DOMSelectionJs extends DOMTypeJs implements DOMSelection native "*DOMSelec tion" { 1192 class _DOMSelectionJs extends _DOMTypeJs implements DOMSelection native "*DOMSel ection" {
1193 1193
1194 NodeJs get anchorNode() native "return this.anchorNode;"; 1194 _NodeJs get anchorNode() native "return this.anchorNode;";
1195 1195
1196 int get anchorOffset() native "return this.anchorOffset;"; 1196 int get anchorOffset() native "return this.anchorOffset;";
1197 1197
1198 NodeJs get baseNode() native "return this.baseNode;"; 1198 _NodeJs get baseNode() native "return this.baseNode;";
1199 1199
1200 int get baseOffset() native "return this.baseOffset;"; 1200 int get baseOffset() native "return this.baseOffset;";
1201 1201
1202 NodeJs get extentNode() native "return this.extentNode;"; 1202 _NodeJs get extentNode() native "return this.extentNode;";
1203 1203
1204 int get extentOffset() native "return this.extentOffset;"; 1204 int get extentOffset() native "return this.extentOffset;";
1205 1205
1206 NodeJs get focusNode() native "return this.focusNode;"; 1206 _NodeJs get focusNode() native "return this.focusNode;";
1207 1207
1208 int get focusOffset() native "return this.focusOffset;"; 1208 int get focusOffset() native "return this.focusOffset;";
1209 1209
1210 bool get isCollapsed() native "return this.isCollapsed;"; 1210 bool get isCollapsed() native "return this.isCollapsed;";
1211 1211
1212 int get rangeCount() native "return this.rangeCount;"; 1212 int get rangeCount() native "return this.rangeCount;";
1213 1213
1214 String get type() native "return this.type;"; 1214 String get type() native "return this.type;";
1215 1215
1216 void addRange(RangeJs range) native; 1216 void addRange(_RangeJs range) native;
1217 1217
1218 void collapse(NodeJs node, int index) native; 1218 void collapse(_NodeJs node, int index) native;
1219 1219
1220 void collapseToEnd() native; 1220 void collapseToEnd() native;
1221 1221
1222 void collapseToStart() native; 1222 void collapseToStart() native;
1223 1223
1224 bool containsNode(NodeJs node, bool allowPartial) native; 1224 bool containsNode(_NodeJs node, bool allowPartial) native;
1225 1225
1226 void deleteFromDocument() native; 1226 void deleteFromDocument() native;
1227 1227
1228 void empty() native; 1228 void empty() native;
1229 1229
1230 void extend(NodeJs node, int offset) native; 1230 void extend(_NodeJs node, int offset) native;
1231 1231
1232 RangeJs getRangeAt(int index) native; 1232 _RangeJs getRangeAt(int index) native;
1233 1233
1234 void modify(String alter, String direction, String granularity) native; 1234 void modify(String alter, String direction, String granularity) native;
1235 1235
1236 void removeAllRanges() native; 1236 void removeAllRanges() native;
1237 1237
1238 void selectAllChildren(NodeJs node) native; 1238 void selectAllChildren(_NodeJs node) native;
1239 1239
1240 void setBaseAndExtent(NodeJs baseNode, int baseOffset, NodeJs extentNode, int extentOffset) native; 1240 void setBaseAndExtent(_NodeJs baseNode, int baseOffset, _NodeJs extentNode, in t extentOffset) native;
1241 1241
1242 void setPosition(NodeJs node, int offset) native; 1242 void setPosition(_NodeJs node, int offset) native;
1243 1243
1244 String toString() native; 1244 String toString() native;
1245 } 1245 }
1246 1246
1247 class DOMSettableTokenListJs extends DOMTokenListJs implements DOMSettableTokenL ist native "*DOMSettableTokenList" { 1247 class _DOMSettableTokenListJs extends _DOMTokenListJs implements DOMSettableToke nList native "*DOMSettableTokenList" {
1248 1248
1249 String get value() native "return this.value;"; 1249 String get value() native "return this.value;";
1250 1250
1251 void set value(String value) native "this.value = value;"; 1251 void set value(String value) native "this.value = value;";
1252 } 1252 }
1253 1253
1254 class DOMTokenListJs extends DOMTypeJs implements DOMTokenList native "*DOMToken List" { 1254 class _DOMTokenListJs extends _DOMTypeJs implements DOMTokenList native "*DOMTok enList" {
1255 1255
1256 int get length() native "return this.length;"; 1256 int get length() native "return this.length;";
1257 1257
1258 void add(String token) native; 1258 void add(String token) native;
1259 1259
1260 bool contains(String token) native; 1260 bool contains(String token) native;
1261 1261
1262 String item(int index) native; 1262 String item(int index) native;
1263 1263
1264 void remove(String token) native; 1264 void remove(String token) native;
1265 1265
1266 String toString() native; 1266 String toString() native;
1267 1267
1268 bool toggle(String token) native; 1268 bool toggle(String token) native;
1269 } 1269 }
1270 1270
1271 class DOMURLJs extends DOMTypeJs implements DOMURL native "*DOMURL" { 1271 class _DOMURLJs extends _DOMTypeJs implements DOMURL native "*DOMURL" {
1272 1272
1273 String createObjectURL(BlobJs blob) native; 1273 String createObjectURL(_BlobJs blob) native;
1274 1274
1275 void revokeObjectURL(String url) native; 1275 void revokeObjectURL(String url) native;
1276 } 1276 }
1277 1277
1278 class DOMWindowJs extends DOMTypeJs implements DOMWindow native "@*DOMWindow" { 1278 class _DOMWindowJs extends _DOMTypeJs implements DOMWindow native "@*DOMWindow" {
1279 1279
1280 static final int PERSISTENT = 1; 1280 static final int PERSISTENT = 1;
1281 1281
1282 static final int TEMPORARY = 0; 1282 static final int TEMPORARY = 0;
1283 1283
1284 DOMApplicationCacheJs get applicationCache() native "return this.applicationCa che;"; 1284 _DOMApplicationCacheJs get applicationCache() native "return this.applicationC ache;";
1285 1285
1286 NavigatorJs get clientInformation() native "return this.clientInformation;"; 1286 _NavigatorJs get clientInformation() native "return this.clientInformation;";
1287 1287
1288 void set clientInformation(NavigatorJs value) native "this.clientInformation = value;"; 1288 void set clientInformation(_NavigatorJs value) native "this.clientInformation = value;";
1289 1289
1290 bool get closed() native "return this.closed;"; 1290 bool get closed() native "return this.closed;";
1291 1291
1292 ConsoleJs get console() native "return this.console;"; 1292 _ConsoleJs get console() native "return this.console;";
1293 1293
1294 void set console(ConsoleJs value) native "this.console = value;"; 1294 void set console(_ConsoleJs value) native "this.console = value;";
1295 1295
1296 CryptoJs get crypto() native "return this.crypto;"; 1296 _CryptoJs get crypto() native "return this.crypto;";
1297 1297
1298 String get defaultStatus() native "return this.defaultStatus;"; 1298 String get defaultStatus() native "return this.defaultStatus;";
1299 1299
1300 void set defaultStatus(String value) native "this.defaultStatus = value;"; 1300 void set defaultStatus(String value) native "this.defaultStatus = value;";
1301 1301
1302 String get defaultstatus() native "return this.defaultstatus;"; 1302 String get defaultstatus() native "return this.defaultstatus;";
1303 1303
1304 void set defaultstatus(String value) native "this.defaultstatus = value;"; 1304 void set defaultstatus(String value) native "this.defaultstatus = value;";
1305 1305
1306 num get devicePixelRatio() native "return this.devicePixelRatio;"; 1306 num get devicePixelRatio() native "return this.devicePixelRatio;";
1307 1307
1308 void set devicePixelRatio(num value) native "this.devicePixelRatio = value;"; 1308 void set devicePixelRatio(num value) native "this.devicePixelRatio = value;";
1309 1309
1310 DocumentJs get document() native "return this.document;"; 1310 _DocumentJs get document() native "return this.document;";
1311 1311
1312 EventJs get event() native "return this.event;"; 1312 _EventJs get event() native "return this.event;";
1313 1313
1314 void set event(EventJs value) native "this.event = value;"; 1314 void set event(_EventJs value) native "this.event = value;";
1315 1315
1316 ElementJs get frameElement() native "return this.frameElement;"; 1316 _ElementJs get frameElement() native "return this.frameElement;";
1317 1317
1318 DOMWindowJs get frames() native "return this.frames;"; 1318 _DOMWindowJs get frames() native "return this.frames;";
1319 1319
1320 void set frames(DOMWindowJs value) native "this.frames = value;"; 1320 void set frames(_DOMWindowJs value) native "this.frames = value;";
1321 1321
1322 HistoryJs get history() native "return this.history;"; 1322 _HistoryJs get history() native "return this.history;";
1323 1323
1324 void set history(HistoryJs value) native "this.history = value;"; 1324 void set history(_HistoryJs value) native "this.history = value;";
1325 1325
1326 int get innerHeight() native "return this.innerHeight;"; 1326 int get innerHeight() native "return this.innerHeight;";
1327 1327
1328 void set innerHeight(int value) native "this.innerHeight = value;"; 1328 void set innerHeight(int value) native "this.innerHeight = value;";
1329 1329
1330 int get innerWidth() native "return this.innerWidth;"; 1330 int get innerWidth() native "return this.innerWidth;";
1331 1331
1332 void set innerWidth(int value) native "this.innerWidth = value;"; 1332 void set innerWidth(int value) native "this.innerWidth = value;";
1333 1333
1334 int get length() native "return this.length;"; 1334 int get length() native "return this.length;";
1335 1335
1336 void set length(int value) native "this.length = value;"; 1336 void set length(int value) native "this.length = value;";
1337 1337
1338 StorageJs get localStorage() native "return this.localStorage;"; 1338 _StorageJs get localStorage() native "return this.localStorage;";
1339 1339
1340 LocationJs get location() native "return this.location;"; 1340 _LocationJs get location() native "return this.location;";
1341 1341
1342 void set location(LocationJs value) native "this.location = value;"; 1342 void set location(_LocationJs value) native "this.location = value;";
1343 1343
1344 BarInfoJs get locationbar() native "return this.locationbar;"; 1344 _BarInfoJs get locationbar() native "return this.locationbar;";
1345 1345
1346 void set locationbar(BarInfoJs value) native "this.locationbar = value;"; 1346 void set locationbar(_BarInfoJs value) native "this.locationbar = value;";
1347 1347
1348 BarInfoJs get menubar() native "return this.menubar;"; 1348 _BarInfoJs get menubar() native "return this.menubar;";
1349 1349
1350 void set menubar(BarInfoJs value) native "this.menubar = value;"; 1350 void set menubar(_BarInfoJs value) native "this.menubar = value;";
1351 1351
1352 String get name() native "return this.name;"; 1352 String get name() native "return this.name;";
1353 1353
1354 void set name(String value) native "this.name = value;"; 1354 void set name(String value) native "this.name = value;";
1355 1355
1356 NavigatorJs get navigator() native "return this.navigator;"; 1356 _NavigatorJs get navigator() native "return this.navigator;";
1357 1357
1358 void set navigator(NavigatorJs value) native "this.navigator = value;"; 1358 void set navigator(_NavigatorJs value) native "this.navigator = value;";
1359 1359
1360 bool get offscreenBuffering() native "return this.offscreenBuffering;"; 1360 bool get offscreenBuffering() native "return this.offscreenBuffering;";
1361 1361
1362 void set offscreenBuffering(bool value) native "this.offscreenBuffering = valu e;"; 1362 void set offscreenBuffering(bool value) native "this.offscreenBuffering = valu e;";
1363 1363
1364 DOMWindowJs get opener() native "return this.opener;"; 1364 _DOMWindowJs get opener() native "return this.opener;";
1365 1365
1366 void set opener(DOMWindowJs value) native "this.opener = value;"; 1366 void set opener(_DOMWindowJs value) native "this.opener = value;";
1367 1367
1368 int get outerHeight() native "return this.outerHeight;"; 1368 int get outerHeight() native "return this.outerHeight;";
1369 1369
1370 void set outerHeight(int value) native "this.outerHeight = value;"; 1370 void set outerHeight(int value) native "this.outerHeight = value;";
1371 1371
1372 int get outerWidth() native "return this.outerWidth;"; 1372 int get outerWidth() native "return this.outerWidth;";
1373 1373
1374 void set outerWidth(int value) native "this.outerWidth = value;"; 1374 void set outerWidth(int value) native "this.outerWidth = value;";
1375 1375
1376 int get pageXOffset() native "return this.pageXOffset;"; 1376 int get pageXOffset() native "return this.pageXOffset;";
1377 1377
1378 int get pageYOffset() native "return this.pageYOffset;"; 1378 int get pageYOffset() native "return this.pageYOffset;";
1379 1379
1380 DOMWindowJs get parent() native "return this.parent;"; 1380 _DOMWindowJs get parent() native "return this.parent;";
1381 1381
1382 void set parent(DOMWindowJs value) native "this.parent = value;"; 1382 void set parent(_DOMWindowJs value) native "this.parent = value;";
1383 1383
1384 PerformanceJs get performance() native "return this.performance;"; 1384 _PerformanceJs get performance() native "return this.performance;";
1385 1385
1386 void set performance(PerformanceJs value) native "this.performance = value;"; 1386 void set performance(_PerformanceJs value) native "this.performance = value;";
1387 1387
1388 BarInfoJs get personalbar() native "return this.personalbar;"; 1388 _BarInfoJs get personalbar() native "return this.personalbar;";
1389 1389
1390 void set personalbar(BarInfoJs value) native "this.personalbar = value;"; 1390 void set personalbar(_BarInfoJs value) native "this.personalbar = value;";
1391 1391
1392 ScreenJs get screen() native "return this.screen;"; 1392 _ScreenJs get screen() native "return this.screen;";
1393 1393
1394 void set screen(ScreenJs value) native "this.screen = value;"; 1394 void set screen(_ScreenJs value) native "this.screen = value;";
1395 1395
1396 int get screenLeft() native "return this.screenLeft;"; 1396 int get screenLeft() native "return this.screenLeft;";
1397 1397
1398 void set screenLeft(int value) native "this.screenLeft = value;"; 1398 void set screenLeft(int value) native "this.screenLeft = value;";
1399 1399
1400 int get screenTop() native "return this.screenTop;"; 1400 int get screenTop() native "return this.screenTop;";
1401 1401
1402 void set screenTop(int value) native "this.screenTop = value;"; 1402 void set screenTop(int value) native "this.screenTop = value;";
1403 1403
1404 int get screenX() native "return this.screenX;"; 1404 int get screenX() native "return this.screenX;";
1405 1405
1406 void set screenX(int value) native "this.screenX = value;"; 1406 void set screenX(int value) native "this.screenX = value;";
1407 1407
1408 int get screenY() native "return this.screenY;"; 1408 int get screenY() native "return this.screenY;";
1409 1409
1410 void set screenY(int value) native "this.screenY = value;"; 1410 void set screenY(int value) native "this.screenY = value;";
1411 1411
1412 int get scrollX() native "return this.scrollX;"; 1412 int get scrollX() native "return this.scrollX;";
1413 1413
1414 void set scrollX(int value) native "this.scrollX = value;"; 1414 void set scrollX(int value) native "this.scrollX = value;";
1415 1415
1416 int get scrollY() native "return this.scrollY;"; 1416 int get scrollY() native "return this.scrollY;";
1417 1417
1418 void set scrollY(int value) native "this.scrollY = value;"; 1418 void set scrollY(int value) native "this.scrollY = value;";
1419 1419
1420 BarInfoJs get scrollbars() native "return this.scrollbars;"; 1420 _BarInfoJs get scrollbars() native "return this.scrollbars;";
1421 1421
1422 void set scrollbars(BarInfoJs value) native "this.scrollbars = value;"; 1422 void set scrollbars(_BarInfoJs value) native "this.scrollbars = value;";
1423 1423
1424 DOMWindowJs get self() native "return this.self;"; 1424 _DOMWindowJs get self() native "return this.self;";
1425 1425
1426 void set self(DOMWindowJs value) native "this.self = value;"; 1426 void set self(_DOMWindowJs value) native "this.self = value;";
1427 1427
1428 StorageJs get sessionStorage() native "return this.sessionStorage;"; 1428 _StorageJs get sessionStorage() native "return this.sessionStorage;";
1429 1429
1430 String get status() native "return this.status;"; 1430 String get status() native "return this.status;";
1431 1431
1432 void set status(String value) native "this.status = value;"; 1432 void set status(String value) native "this.status = value;";
1433 1433
1434 BarInfoJs get statusbar() native "return this.statusbar;"; 1434 _BarInfoJs get statusbar() native "return this.statusbar;";
1435 1435
1436 void set statusbar(BarInfoJs value) native "this.statusbar = value;"; 1436 void set statusbar(_BarInfoJs value) native "this.statusbar = value;";
1437 1437
1438 StyleMediaJs get styleMedia() native "return this.styleMedia;"; 1438 _StyleMediaJs get styleMedia() native "return this.styleMedia;";
1439 1439
1440 BarInfoJs get toolbar() native "return this.toolbar;"; 1440 _BarInfoJs get toolbar() native "return this.toolbar;";
1441 1441
1442 void set toolbar(BarInfoJs value) native "this.toolbar = value;"; 1442 void set toolbar(_BarInfoJs value) native "this.toolbar = value;";
1443 1443
1444 DOMWindowJs get top() native "return this.top;"; 1444 _DOMWindowJs get top() native "return this.top;";
1445 1445
1446 void set top(DOMWindowJs value) native "this.top = value;"; 1446 void set top(_DOMWindowJs value) native "this.top = value;";
1447 1447
1448 IDBFactoryJs get webkitIndexedDB() native "return this.webkitIndexedDB;"; 1448 _IDBFactoryJs get webkitIndexedDB() native "return this.webkitIndexedDB;";
1449 1449
1450 NotificationCenterJs get webkitNotifications() native "return this.webkitNotif ications;"; 1450 _NotificationCenterJs get webkitNotifications() native "return this.webkitNoti fications;";
1451 1451
1452 StorageInfoJs get webkitStorageInfo() native "return this.webkitStorageInfo;"; 1452 _StorageInfoJs get webkitStorageInfo() native "return this.webkitStorageInfo;" ;
1453 1453
1454 DOMURLJs get webkitURL() native "return this.webkitURL;"; 1454 _DOMURLJs get webkitURL() native "return this.webkitURL;";
1455 1455
1456 DOMWindowJs get window() native "return this.window;"; 1456 _DOMWindowJs get window() native "return this.window;";
1457 1457
1458 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native; 1458 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
1459 1459
1460 void alert(String message) native; 1460 void alert(String message) native;
1461 1461
1462 String atob(String string) native; 1462 String atob(String string) native;
1463 1463
1464 void blur() native; 1464 void blur() native;
1465 1465
1466 String btoa(String string) native; 1466 String btoa(String string) native;
1467 1467
1468 void captureEvents() native; 1468 void captureEvents() native;
1469 1469
1470 void clearInterval(int handle) native; 1470 void clearInterval(int handle) native;
1471 1471
1472 void clearTimeout(int handle) native; 1472 void clearTimeout(int handle) native;
1473 1473
1474 void close() native; 1474 void close() native;
1475 1475
1476 bool confirm(String message) native; 1476 bool confirm(String message) native;
1477 1477
1478 bool dispatchEvent(EventJs evt) native; 1478 bool dispatchEvent(_EventJs evt) native;
1479 1479
1480 bool find(String string, bool caseSensitive, bool backwards, bool wrap, bool w holeWord, bool searchInFrames, bool showDialog) native; 1480 bool find(String string, bool caseSensitive, bool backwards, bool wrap, bool w holeWord, bool searchInFrames, bool showDialog) native;
1481 1481
1482 void focus() native; 1482 void focus() native;
1483 1483
1484 CSSStyleDeclarationJs getComputedStyle(ElementJs element, String pseudoElement ) native; 1484 _CSSStyleDeclarationJs getComputedStyle(_ElementJs element, String pseudoEleme nt) native;
1485 1485
1486 CSSRuleListJs getMatchedCSSRules(ElementJs element, String pseudoElement) nati ve; 1486 _CSSRuleListJs getMatchedCSSRules(_ElementJs element, String pseudoElement) na tive;
1487 1487
1488 DOMSelectionJs getSelection() native; 1488 _DOMSelectionJs getSelection() native;
1489 1489
1490 MediaQueryListJs matchMedia(String query) native; 1490 _MediaQueryListJs matchMedia(String query) native;
1491 1491
1492 void moveBy(num x, num y) native; 1492 void moveBy(num x, num y) native;
1493 1493
1494 void moveTo(num x, num y) native; 1494 void moveTo(num x, num y) native;
1495 1495
1496 DOMWindowJs open(String url, String name, [String options = null]) native; 1496 _DOMWindowJs open(String url, String name, [String options = null]) native;
1497 1497
1498 DatabaseJs openDatabase(String name, String version, String displayName, int e stimatedSize, [DatabaseCallback creationCallback = null]) native; 1498 _DatabaseJs openDatabase(String name, String version, String displayName, int estimatedSize, [DatabaseCallback creationCallback = null]) native;
1499 1499
1500 void postMessage(Dynamic message, String targetOrigin, [List messagePorts = nu ll]) native; 1500 void postMessage(Dynamic message, String targetOrigin, [List messagePorts = nu ll]) native;
1501 1501
1502 void print() native; 1502 void print() native;
1503 1503
1504 String prompt(String message, String defaultValue) native; 1504 String prompt(String message, String defaultValue) native;
1505 1505
1506 void releaseEvents() native; 1506 void releaseEvents() native;
1507 1507
1508 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native; 1508 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
(...skipping 13 matching lines...) Expand all
1522 int setTimeout(TimeoutHandler handler, int timeout) native; 1522 int setTimeout(TimeoutHandler handler, int timeout) native;
1523 1523
1524 Object showModalDialog(String url, [Object dialogArgs = null, String featureAr gs = null]) native; 1524 Object showModalDialog(String url, [Object dialogArgs = null, String featureAr gs = null]) native;
1525 1525
1526 void stop() native; 1526 void stop() native;
1527 1527
1528 void webkitCancelAnimationFrame(int id) native; 1528 void webkitCancelAnimationFrame(int id) native;
1529 1529
1530 void webkitCancelRequestAnimationFrame(int id) native; 1530 void webkitCancelRequestAnimationFrame(int id) native;
1531 1531
1532 WebKitPointJs webkitConvertPointFromNodeToPage(NodeJs node, WebKitPointJs p) n ative; 1532 _WebKitPointJs webkitConvertPointFromNodeToPage(_NodeJs node, _WebKitPointJs p ) native;
1533 1533
1534 WebKitPointJs webkitConvertPointFromPageToNode(NodeJs node, WebKitPointJs p) n ative; 1534 _WebKitPointJs webkitConvertPointFromPageToNode(_NodeJs node, _WebKitPointJs p ) native;
1535 1535
1536 void webkitPostMessage(Dynamic message, String targetOrigin, [List transferLis t = null]) native; 1536 void webkitPostMessage(Dynamic message, String targetOrigin, [List transferLis t = null]) native;
1537 1537
1538 int webkitRequestAnimationFrame(RequestAnimationFrameCallback callback, Elemen tJs element) native; 1538 int webkitRequestAnimationFrame(RequestAnimationFrameCallback callback, _Eleme ntJs element) native;
1539 1539
1540 void webkitRequestFileSystem(int type, int size, FileSystemCallback successCal lback, [ErrorCallback errorCallback = null]) native; 1540 void webkitRequestFileSystem(int type, int size, FileSystemCallback successCal lback, [ErrorCallback errorCallback = null]) native;
1541 1541
1542 void webkitResolveLocalFileSystemURL(String url, [EntryCallback successCallbac k = null, ErrorCallback errorCallback = null]) native; 1542 void webkitResolveLocalFileSystemURL(String url, [EntryCallback successCallbac k = null, ErrorCallback errorCallback = null]) native;
1543 } 1543 }
1544 1544
1545 class DataTransferItemJs extends DOMTypeJs implements DataTransferItem native "* DataTransferItem" { 1545 class _DataTransferItemJs extends _DOMTypeJs implements DataTransferItem native "*DataTransferItem" {
1546 1546
1547 String get kind() native "return this.kind;"; 1547 String get kind() native "return this.kind;";
1548 1548
1549 String get type() native "return this.type;"; 1549 String get type() native "return this.type;";
1550 1550
1551 BlobJs getAsFile() native; 1551 _BlobJs getAsFile() native;
1552 1552
1553 void getAsString(StringCallback callback) native; 1553 void getAsString(StringCallback callback) native;
1554 } 1554 }
1555 1555
1556 class DataTransferItemListJs extends DOMTypeJs implements DataTransferItemList n ative "*DataTransferItemList" { 1556 class _DataTransferItemListJs extends _DOMTypeJs implements DataTransferItemList native "*DataTransferItemList" {
1557 1557
1558 int get length() native "return this.length;"; 1558 int get length() native "return this.length;";
1559 1559
1560 void add(var data_OR_file, [String type = null]) native; 1560 void add(var data_OR_file, [String type = null]) native;
1561 1561
1562 void clear() native; 1562 void clear() native;
1563 1563
1564 DataTransferItemJs item(int index) native; 1564 _DataTransferItemJs item(int index) native;
1565 } 1565 }
1566 1566
1567 class DataViewJs extends ArrayBufferViewJs implements DataView native "*DataView " { 1567 class _DataViewJs extends _ArrayBufferViewJs implements DataView native "*DataVi ew" {
1568 1568
1569 num getFloat32(int byteOffset, [bool littleEndian = null]) native; 1569 num getFloat32(int byteOffset, [bool littleEndian = null]) native;
1570 1570
1571 num getFloat64(int byteOffset, [bool littleEndian = null]) native; 1571 num getFloat64(int byteOffset, [bool littleEndian = null]) native;
1572 1572
1573 int getInt16(int byteOffset, [bool littleEndian = null]) native; 1573 int getInt16(int byteOffset, [bool littleEndian = null]) native;
1574 1574
1575 int getInt32(int byteOffset, [bool littleEndian = null]) native; 1575 int getInt32(int byteOffset, [bool littleEndian = null]) native;
1576 1576
1577 Object getInt8() native; 1577 Object getInt8() native;
(...skipping 14 matching lines...) Expand all
1592 1592
1593 void setInt8() native; 1593 void setInt8() native;
1594 1594
1595 void setUint16(int byteOffset, int value, [bool littleEndian = null]) native; 1595 void setUint16(int byteOffset, int value, [bool littleEndian = null]) native;
1596 1596
1597 void setUint32(int byteOffset, int value, [bool littleEndian = null]) native; 1597 void setUint32(int byteOffset, int value, [bool littleEndian = null]) native;
1598 1598
1599 void setUint8() native; 1599 void setUint8() native;
1600 } 1600 }
1601 1601
1602 class DatabaseJs extends DOMTypeJs implements Database native "*Database" { 1602 class _DatabaseJs extends _DOMTypeJs implements Database native "*Database" {
1603 1603
1604 String get version() native "return this.version;"; 1604 String get version() native "return this.version;";
1605 1605
1606 void changeVersion(String oldVersion, String newVersion, [SQLTransactionCallba ck callback = null, SQLTransactionErrorCallback errorCallback = null, VoidCallba ck successCallback = null]) native; 1606 void changeVersion(String oldVersion, String newVersion, [SQLTransactionCallba ck callback = null, SQLTransactionErrorCallback errorCallback = null, VoidCallba ck successCallback = null]) native;
1607 1607
1608 void readTransaction(SQLTransactionCallback callback, [SQLTransactionErrorCall back errorCallback = null, VoidCallback successCallback = null]) native; 1608 void readTransaction(SQLTransactionCallback callback, [SQLTransactionErrorCall back errorCallback = null, VoidCallback successCallback = null]) native;
1609 1609
1610 void transaction(SQLTransactionCallback callback, [SQLTransactionErrorCallback errorCallback = null, VoidCallback successCallback = null]) native; 1610 void transaction(SQLTransactionCallback callback, [SQLTransactionErrorCallback errorCallback = null, VoidCallback successCallback = null]) native;
1611 } 1611 }
1612 1612
1613 class DatabaseSyncJs extends DOMTypeJs implements DatabaseSync native "*Database Sync" { 1613 class _DatabaseSyncJs extends _DOMTypeJs implements DatabaseSync native "*Databa seSync" {
1614 1614
1615 String get lastErrorMessage() native "return this.lastErrorMessage;"; 1615 String get lastErrorMessage() native "return this.lastErrorMessage;";
1616 1616
1617 String get version() native "return this.version;"; 1617 String get version() native "return this.version;";
1618 1618
1619 void changeVersion(String oldVersion, String newVersion, [SQLTransactionSyncCa llback callback = null]) native; 1619 void changeVersion(String oldVersion, String newVersion, [SQLTransactionSyncCa llback callback = null]) native;
1620 1620
1621 void readTransaction(SQLTransactionSyncCallback callback) native; 1621 void readTransaction(SQLTransactionSyncCallback callback) native;
1622 1622
1623 void transaction(SQLTransactionSyncCallback callback) native; 1623 void transaction(SQLTransactionSyncCallback callback) native;
1624 } 1624 }
1625 1625
1626 class DedicatedWorkerContextJs extends WorkerContextJs implements DedicatedWorke rContext native "*DedicatedWorkerContext" { 1626 class _DedicatedWorkerContextJs extends _WorkerContextJs implements DedicatedWor kerContext native "*DedicatedWorkerContext" {
1627 1627
1628 EventListener get onmessage() native "return this.onmessage;"; 1628 EventListener get onmessage() native "return this.onmessage;";
1629 1629
1630 void set onmessage(EventListener value) native "this.onmessage = value;"; 1630 void set onmessage(EventListener value) native "this.onmessage = value;";
1631 1631
1632 void postMessage(Object message, [List messagePorts = null]) native; 1632 void postMessage(Object message, [List messagePorts = null]) native;
1633 1633
1634 void webkitPostMessage(Object message, [List transferList = null]) native; 1634 void webkitPostMessage(Object message, [List transferList = null]) native;
1635 } 1635 }
1636 1636
1637 class DelayNodeJs extends AudioNodeJs implements DelayNode native "*DelayNode" { 1637 class _DelayNodeJs extends _AudioNodeJs implements DelayNode native "*DelayNode" {
1638 1638
1639 AudioParamJs get delayTime() native "return this.delayTime;"; 1639 _AudioParamJs get delayTime() native "return this.delayTime;";
1640 } 1640 }
1641 1641
1642 class DeviceMotionEventJs extends EventJs implements DeviceMotionEvent native "* DeviceMotionEvent" { 1642 class _DeviceMotionEventJs extends _EventJs implements DeviceMotionEvent native "*DeviceMotionEvent" {
1643 1643
1644 num get interval() native "return this.interval;"; 1644 num get interval() native "return this.interval;";
1645 } 1645 }
1646 1646
1647 class DeviceOrientationEventJs extends EventJs implements DeviceOrientationEvent native "*DeviceOrientationEvent" { 1647 class _DeviceOrientationEventJs extends _EventJs implements DeviceOrientationEve nt native "*DeviceOrientationEvent" {
1648 1648
1649 bool get absolute() native "return this.absolute;"; 1649 bool get absolute() native "return this.absolute;";
1650 1650
1651 num get alpha() native "return this.alpha;"; 1651 num get alpha() native "return this.alpha;";
1652 1652
1653 num get beta() native "return this.beta;"; 1653 num get beta() native "return this.beta;";
1654 1654
1655 num get gamma() native "return this.gamma;"; 1655 num get gamma() native "return this.gamma;";
1656 1656
1657 void initDeviceOrientationEvent(String type, bool bubbles, bool cancelable, nu m alpha, num beta, num gamma, bool absolute) native; 1657 void initDeviceOrientationEvent(String type, bool bubbles, bool cancelable, nu m alpha, num beta, num gamma, bool absolute) native;
1658 } 1658 }
1659 1659
1660 class DirectoryEntryJs extends EntryJs implements DirectoryEntry native "*Direct oryEntry" { 1660 class _DirectoryEntryJs extends _EntryJs implements DirectoryEntry native "*Dire ctoryEntry" {
1661 1661
1662 DirectoryReaderJs createReader() native; 1662 _DirectoryReaderJs createReader() native;
1663 1663
1664 void getDirectory(String path, [Object flags = null, EntryCallback successCall back = null, ErrorCallback errorCallback = null]) native; 1664 void getDirectory(String path, [Object flags = null, EntryCallback successCall back = null, ErrorCallback errorCallback = null]) native;
1665 1665
1666 void getFile(String path, [Object flags = null, EntryCallback successCallback = null, ErrorCallback errorCallback = null]) native; 1666 void getFile(String path, [Object flags = null, EntryCallback successCallback = null, ErrorCallback errorCallback = null]) native;
1667 1667
1668 void removeRecursively(VoidCallback successCallback, [ErrorCallback errorCallb ack = null]) native; 1668 void removeRecursively(VoidCallback successCallback, [ErrorCallback errorCallb ack = null]) native;
1669 } 1669 }
1670 1670
1671 class DirectoryEntrySyncJs extends EntrySyncJs implements DirectoryEntrySync nat ive "*DirectoryEntrySync" { 1671 class _DirectoryEntrySyncJs extends _EntrySyncJs implements DirectoryEntrySync n ative "*DirectoryEntrySync" {
1672 1672
1673 DirectoryReaderSyncJs createReader() native; 1673 _DirectoryReaderSyncJs createReader() native;
1674 1674
1675 DirectoryEntrySyncJs getDirectory(String path, Object flags) native; 1675 _DirectoryEntrySyncJs getDirectory(String path, Object flags) native;
1676 1676
1677 FileEntrySyncJs getFile(String path, Object flags) native; 1677 _FileEntrySyncJs getFile(String path, Object flags) native;
1678 1678
1679 void removeRecursively() native; 1679 void removeRecursively() native;
1680 } 1680 }
1681 1681
1682 class DirectoryReaderJs extends DOMTypeJs implements DirectoryReader native "*Di rectoryReader" { 1682 class _DirectoryReaderJs extends _DOMTypeJs implements DirectoryReader native "* DirectoryReader" {
1683 1683
1684 void readEntries(EntriesCallback successCallback, [ErrorCallback errorCallback = null]) native; 1684 void readEntries(EntriesCallback successCallback, [ErrorCallback errorCallback = null]) native;
1685 } 1685 }
1686 1686
1687 class DirectoryReaderSyncJs extends DOMTypeJs implements DirectoryReaderSync nat ive "*DirectoryReaderSync" { 1687 class _DirectoryReaderSyncJs extends _DOMTypeJs implements DirectoryReaderSync n ative "*DirectoryReaderSync" {
1688 1688
1689 EntryArraySyncJs readEntries() native; 1689 _EntryArraySyncJs readEntries() native;
1690 } 1690 }
1691 1691
1692 class DocumentJs extends NodeJs implements Document native "*Document" { 1692 class _DocumentJs extends _NodeJs implements Document native "*Document" {
1693 1693
1694 String get URL() native "return this.URL;"; 1694 String get URL() native "return this.URL;";
1695 1695
1696 HTMLCollectionJs get anchors() native "return this.anchors;"; 1696 _HTMLCollectionJs get anchors() native "return this.anchors;";
1697 1697
1698 HTMLCollectionJs get applets() native "return this.applets;"; 1698 _HTMLCollectionJs get applets() native "return this.applets;";
1699 1699
1700 HTMLElementJs get body() native "return this.body;"; 1700 _HTMLElementJs get body() native "return this.body;";
1701 1701
1702 void set body(HTMLElementJs value) native "this.body = value;"; 1702 void set body(_HTMLElementJs value) native "this.body = value;";
1703 1703
1704 String get characterSet() native "return this.characterSet;"; 1704 String get characterSet() native "return this.characterSet;";
1705 1705
1706 String get charset() native "return this.charset;"; 1706 String get charset() native "return this.charset;";
1707 1707
1708 void set charset(String value) native "this.charset = value;"; 1708 void set charset(String value) native "this.charset = value;";
1709 1709
1710 String get compatMode() native "return this.compatMode;"; 1710 String get compatMode() native "return this.compatMode;";
1711 1711
1712 String get cookie() native "return this.cookie;"; 1712 String get cookie() native "return this.cookie;";
1713 1713
1714 void set cookie(String value) native "this.cookie = value;"; 1714 void set cookie(String value) native "this.cookie = value;";
1715 1715
1716 String get defaultCharset() native "return this.defaultCharset;"; 1716 String get defaultCharset() native "return this.defaultCharset;";
1717 1717
1718 DOMWindowJs get defaultView() native "return this.defaultView;"; 1718 _DOMWindowJs get defaultView() native "return this.defaultView;";
1719 1719
1720 DocumentTypeJs get doctype() native "return this.doctype;"; 1720 _DocumentTypeJs get doctype() native "return this.doctype;";
1721 1721
1722 ElementJs get documentElement() native "return this.documentElement;"; 1722 _ElementJs get documentElement() native "return this.documentElement;";
1723 1723
1724 String get documentURI() native "return this.documentURI;"; 1724 String get documentURI() native "return this.documentURI;";
1725 1725
1726 void set documentURI(String value) native "this.documentURI = value;"; 1726 void set documentURI(String value) native "this.documentURI = value;";
1727 1727
1728 String get domain() native "return this.domain;"; 1728 String get domain() native "return this.domain;";
1729 1729
1730 void set domain(String value) native "this.domain = value;"; 1730 void set domain(String value) native "this.domain = value;";
1731 1731
1732 HTMLCollectionJs get forms() native "return this.forms;"; 1732 _HTMLCollectionJs get forms() native "return this.forms;";
1733 1733
1734 HTMLHeadElementJs get head() native "return this.head;"; 1734 _HTMLHeadElementJs get head() native "return this.head;";
1735 1735
1736 HTMLCollectionJs get images() native "return this.images;"; 1736 _HTMLCollectionJs get images() native "return this.images;";
1737 1737
1738 DOMImplementationJs get implementation() native "return this.implementation;"; 1738 _DOMImplementationJs get implementation() native "return this.implementation;" ;
1739 1739
1740 String get inputEncoding() native "return this.inputEncoding;"; 1740 String get inputEncoding() native "return this.inputEncoding;";
1741 1741
1742 String get lastModified() native "return this.lastModified;"; 1742 String get lastModified() native "return this.lastModified;";
1743 1743
1744 HTMLCollectionJs get links() native "return this.links;"; 1744 _HTMLCollectionJs get links() native "return this.links;";
1745 1745
1746 LocationJs get location() native "return this.location;"; 1746 _LocationJs get location() native "return this.location;";
1747 1747
1748 void set location(LocationJs value) native "this.location = value;"; 1748 void set location(_LocationJs value) native "this.location = value;";
1749 1749
1750 String get preferredStylesheetSet() native "return this.preferredStylesheetSet ;"; 1750 String get preferredStylesheetSet() native "return this.preferredStylesheetSet ;";
1751 1751
1752 String get readyState() native "return this.readyState;"; 1752 String get readyState() native "return this.readyState;";
1753 1753
1754 String get referrer() native "return this.referrer;"; 1754 String get referrer() native "return this.referrer;";
1755 1755
1756 String get selectedStylesheetSet() native "return this.selectedStylesheetSet;" ; 1756 String get selectedStylesheetSet() native "return this.selectedStylesheetSet;" ;
1757 1757
1758 void set selectedStylesheetSet(String value) native "this.selectedStylesheetSe t = value;"; 1758 void set selectedStylesheetSet(String value) native "this.selectedStylesheetSe t = value;";
1759 1759
1760 StyleSheetListJs get styleSheets() native "return this.styleSheets;"; 1760 _StyleSheetListJs get styleSheets() native "return this.styleSheets;";
1761 1761
1762 String get title() native "return this.title;"; 1762 String get title() native "return this.title;";
1763 1763
1764 void set title(String value) native "this.title = value;"; 1764 void set title(String value) native "this.title = value;";
1765 1765
1766 ElementJs get webkitCurrentFullScreenElement() native "return this.webkitCurre ntFullScreenElement;"; 1766 _ElementJs get webkitCurrentFullScreenElement() native "return this.webkitCurr entFullScreenElement;";
1767 1767
1768 bool get webkitFullScreenKeyboardInputAllowed() native "return this.webkitFull ScreenKeyboardInputAllowed;"; 1768 bool get webkitFullScreenKeyboardInputAllowed() native "return this.webkitFull ScreenKeyboardInputAllowed;";
1769 1769
1770 bool get webkitHidden() native "return this.webkitHidden;"; 1770 bool get webkitHidden() native "return this.webkitHidden;";
1771 1771
1772 bool get webkitIsFullScreen() native "return this.webkitIsFullScreen;"; 1772 bool get webkitIsFullScreen() native "return this.webkitIsFullScreen;";
1773 1773
1774 String get webkitVisibilityState() native "return this.webkitVisibilityState;" ; 1774 String get webkitVisibilityState() native "return this.webkitVisibilityState;" ;
1775 1775
1776 String get xmlEncoding() native "return this.xmlEncoding;"; 1776 String get xmlEncoding() native "return this.xmlEncoding;";
1777 1777
1778 bool get xmlStandalone() native "return this.xmlStandalone;"; 1778 bool get xmlStandalone() native "return this.xmlStandalone;";
1779 1779
1780 void set xmlStandalone(bool value) native "this.xmlStandalone = value;"; 1780 void set xmlStandalone(bool value) native "this.xmlStandalone = value;";
1781 1781
1782 String get xmlVersion() native "return this.xmlVersion;"; 1782 String get xmlVersion() native "return this.xmlVersion;";
1783 1783
1784 void set xmlVersion(String value) native "this.xmlVersion = value;"; 1784 void set xmlVersion(String value) native "this.xmlVersion = value;";
1785 1785
1786 NodeJs adoptNode(NodeJs source) native; 1786 _NodeJs adoptNode(_NodeJs source) native;
1787 1787
1788 RangeJs caretRangeFromPoint(int x, int y) native; 1788 _RangeJs caretRangeFromPoint(int x, int y) native;
1789 1789
1790 AttrJs createAttribute(String name) native; 1790 _AttrJs createAttribute(String name) native;
1791 1791
1792 AttrJs createAttributeNS(String namespaceURI, String qualifiedName) native; 1792 _AttrJs createAttributeNS(String namespaceURI, String qualifiedName) native;
1793 1793
1794 CDATASectionJs createCDATASection(String data) native; 1794 _CDATASectionJs createCDATASection(String data) native;
1795 1795
1796 CommentJs createComment(String data) native; 1796 _CommentJs createComment(String data) native;
1797 1797
1798 DocumentFragmentJs createDocumentFragment() native; 1798 _DocumentFragmentJs createDocumentFragment() native;
1799 1799
1800 ElementJs createElement(String tagName) native; 1800 _ElementJs createElement(String tagName) native;
1801 1801
1802 ElementJs createElementNS(String namespaceURI, String qualifiedName) native; 1802 _ElementJs createElementNS(String namespaceURI, String qualifiedName) native;
1803 1803
1804 EntityReferenceJs createEntityReference(String name) native; 1804 _EntityReferenceJs createEntityReference(String name) native;
1805 1805
1806 EventJs createEvent(String eventType) native; 1806 _EventJs createEvent(String eventType) native;
1807 1807
1808 XPathExpressionJs createExpression(String expression, XPathNSResolverJs resolv er) native; 1808 _XPathExpressionJs createExpression(String expression, _XPathNSResolverJs reso lver) native;
1809 1809
1810 XPathNSResolverJs createNSResolver(NodeJs nodeResolver) native; 1810 _XPathNSResolverJs createNSResolver(_NodeJs nodeResolver) native;
1811 1811
1812 NodeIteratorJs createNodeIterator(NodeJs root, int whatToShow, NodeFilterJs fi lter, bool expandEntityReferences) native; 1812 _NodeIteratorJs createNodeIterator(_NodeJs root, int whatToShow, _NodeFilterJs filter, bool expandEntityReferences) native;
1813 1813
1814 ProcessingInstructionJs createProcessingInstruction(String target, String data ) native; 1814 _ProcessingInstructionJs createProcessingInstruction(String target, String dat a) native;
1815 1815
1816 RangeJs createRange() native; 1816 _RangeJs createRange() native;
1817 1817
1818 TextJs createTextNode(String data) native; 1818 _TextJs createTextNode(String data) native;
1819 1819
1820 TouchJs createTouch(DOMWindowJs window, EventTargetJs target, int identifier, int pageX, int pageY, int screenX, int screenY, int webkitRadiusX, int webkitRad iusY, num webkitRotationAngle, num webkitForce) native; 1820 _TouchJs createTouch(_DOMWindowJs window, _EventTargetJs target, int identifie r, int pageX, int pageY, int screenX, int screenY, int webkitRadiusX, int webkit RadiusY, num webkitRotationAngle, num webkitForce) native;
1821 1821
1822 TouchListJs createTouchList() native; 1822 _TouchListJs createTouchList() native;
1823 1823
1824 TreeWalkerJs createTreeWalker(NodeJs root, int whatToShow, NodeFilterJs filter , bool expandEntityReferences) native; 1824 _TreeWalkerJs createTreeWalker(_NodeJs root, int whatToShow, _NodeFilterJs fil ter, bool expandEntityReferences) native;
1825 1825
1826 ElementJs elementFromPoint(int x, int y) native; 1826 _ElementJs elementFromPoint(int x, int y) native;
1827 1827
1828 XPathResultJs evaluate(String expression, NodeJs contextNode, XPathNSResolverJ s resolver, int type, XPathResultJs inResult) native; 1828 _XPathResultJs evaluate(String expression, _NodeJs contextNode, _XPathNSResolv erJs resolver, int type, _XPathResultJs inResult) native;
1829 1829
1830 bool execCommand(String command, bool userInterface, String value) native; 1830 bool execCommand(String command, bool userInterface, String value) native;
1831 1831
1832 Object getCSSCanvasContext(String contextId, String name, int width, int heigh t) native; 1832 Object getCSSCanvasContext(String contextId, String name, int width, int heigh t) native;
1833 1833
1834 ElementJs getElementById(String elementId) native; 1834 _ElementJs getElementById(String elementId) native;
1835 1835
1836 NodeListJs getElementsByClassName(String tagname) native; 1836 _NodeListJs getElementsByClassName(String tagname) native;
1837 1837
1838 NodeListJs getElementsByName(String elementName) native; 1838 _NodeListJs getElementsByName(String elementName) native;
1839 1839
1840 NodeListJs getElementsByTagName(String tagname) native; 1840 _NodeListJs getElementsByTagName(String tagname) native;
1841 1841
1842 NodeListJs getElementsByTagNameNS(String namespaceURI, String localName) nativ e; 1842 _NodeListJs getElementsByTagNameNS(String namespaceURI, String localName) nati ve;
1843 1843
1844 CSSStyleDeclarationJs getOverrideStyle(ElementJs element, String pseudoElement ) native; 1844 _CSSStyleDeclarationJs getOverrideStyle(_ElementJs element, String pseudoEleme nt) native;
1845 1845
1846 DOMSelectionJs getSelection() native; 1846 _DOMSelectionJs getSelection() native;
1847 1847
1848 NodeJs importNode(NodeJs importedNode, [bool deep = null]) native; 1848 _NodeJs importNode(_NodeJs importedNode, [bool deep = null]) native;
1849 1849
1850 bool queryCommandEnabled(String command) native; 1850 bool queryCommandEnabled(String command) native;
1851 1851
1852 bool queryCommandIndeterm(String command) native; 1852 bool queryCommandIndeterm(String command) native;
1853 1853
1854 bool queryCommandState(String command) native; 1854 bool queryCommandState(String command) native;
1855 1855
1856 bool queryCommandSupported(String command) native; 1856 bool queryCommandSupported(String command) native;
1857 1857
1858 String queryCommandValue(String command) native; 1858 String queryCommandValue(String command) native;
1859 1859
1860 ElementJs querySelector(String selectors) native; 1860 _ElementJs querySelector(String selectors) native;
1861 1861
1862 NodeListJs querySelectorAll(String selectors) native; 1862 _NodeListJs querySelectorAll(String selectors) native;
1863 1863
1864 void webkitCancelFullScreen() native; 1864 void webkitCancelFullScreen() native;
1865 1865
1866 WebKitNamedFlowJs webkitGetFlowByName(String name) native; 1866 _WebKitNamedFlowJs webkitGetFlowByName(String name) native;
1867 } 1867 }
1868 1868
1869 class DocumentFragmentJs extends NodeJs implements DocumentFragment native "*Doc umentFragment" { 1869 class _DocumentFragmentJs extends _NodeJs implements DocumentFragment native "*D ocumentFragment" {
1870 1870
1871 ElementJs querySelector(String selectors) native; 1871 _ElementJs querySelector(String selectors) native;
1872 1872
1873 NodeListJs querySelectorAll(String selectors) native; 1873 _NodeListJs querySelectorAll(String selectors) native;
1874 } 1874 }
1875 1875
1876 class DocumentTypeJs extends NodeJs implements DocumentType native "*DocumentTyp e" { 1876 class _DocumentTypeJs extends _NodeJs implements DocumentType native "*DocumentT ype" {
1877 1877
1878 NamedNodeMapJs get entities() native "return this.entities;"; 1878 _NamedNodeMapJs get entities() native "return this.entities;";
1879 1879
1880 String get internalSubset() native "return this.internalSubset;"; 1880 String get internalSubset() native "return this.internalSubset;";
1881 1881
1882 String get name() native "return this.name;"; 1882 String get name() native "return this.name;";
1883 1883
1884 NamedNodeMapJs get notations() native "return this.notations;"; 1884 _NamedNodeMapJs get notations() native "return this.notations;";
1885 1885
1886 String get publicId() native "return this.publicId;"; 1886 String get publicId() native "return this.publicId;";
1887 1887
1888 String get systemId() native "return this.systemId;"; 1888 String get systemId() native "return this.systemId;";
1889 } 1889 }
1890 1890
1891 class DynamicsCompressorNodeJs extends AudioNodeJs implements DynamicsCompressor Node native "*DynamicsCompressorNode" { 1891 class _DynamicsCompressorNodeJs extends _AudioNodeJs implements DynamicsCompress orNode native "*DynamicsCompressorNode" {
1892 } 1892 }
1893 1893
1894 class ElementJs extends NodeJs implements Element native "*Element" { 1894 class _ElementJs extends _NodeJs implements Element native "*Element" {
1895 1895
1896 static final int ALLOW_KEYBOARD_INPUT = 1; 1896 static final int ALLOW_KEYBOARD_INPUT = 1;
1897 1897
1898 int get childElementCount() native "return this.childElementCount;"; 1898 int get childElementCount() native "return this.childElementCount;";
1899 1899
1900 int get clientHeight() native "return this.clientHeight;"; 1900 int get clientHeight() native "return this.clientHeight;";
1901 1901
1902 int get clientLeft() native "return this.clientLeft;"; 1902 int get clientLeft() native "return this.clientLeft;";
1903 1903
1904 int get clientTop() native "return this.clientTop;"; 1904 int get clientTop() native "return this.clientTop;";
1905 1905
1906 int get clientWidth() native "return this.clientWidth;"; 1906 int get clientWidth() native "return this.clientWidth;";
1907 1907
1908 ElementJs get firstElementChild() native "return this.firstElementChild;"; 1908 _ElementJs get firstElementChild() native "return this.firstElementChild;";
1909 1909
1910 ElementJs get lastElementChild() native "return this.lastElementChild;"; 1910 _ElementJs get lastElementChild() native "return this.lastElementChild;";
1911 1911
1912 ElementJs get nextElementSibling() native "return this.nextElementSibling;"; 1912 _ElementJs get nextElementSibling() native "return this.nextElementSibling;";
1913 1913
1914 int get offsetHeight() native "return this.offsetHeight;"; 1914 int get offsetHeight() native "return this.offsetHeight;";
1915 1915
1916 int get offsetLeft() native "return this.offsetLeft;"; 1916 int get offsetLeft() native "return this.offsetLeft;";
1917 1917
1918 ElementJs get offsetParent() native "return this.offsetParent;"; 1918 _ElementJs get offsetParent() native "return this.offsetParent;";
1919 1919
1920 int get offsetTop() native "return this.offsetTop;"; 1920 int get offsetTop() native "return this.offsetTop;";
1921 1921
1922 int get offsetWidth() native "return this.offsetWidth;"; 1922 int get offsetWidth() native "return this.offsetWidth;";
1923 1923
1924 ElementJs get previousElementSibling() native "return this.previousElementSibl ing;"; 1924 _ElementJs get previousElementSibling() native "return this.previousElementSib ling;";
1925 1925
1926 int get scrollHeight() native "return this.scrollHeight;"; 1926 int get scrollHeight() native "return this.scrollHeight;";
1927 1927
1928 int get scrollLeft() native "return this.scrollLeft;"; 1928 int get scrollLeft() native "return this.scrollLeft;";
1929 1929
1930 void set scrollLeft(int value) native "this.scrollLeft = value;"; 1930 void set scrollLeft(int value) native "this.scrollLeft = value;";
1931 1931
1932 int get scrollTop() native "return this.scrollTop;"; 1932 int get scrollTop() native "return this.scrollTop;";
1933 1933
1934 void set scrollTop(int value) native "this.scrollTop = value;"; 1934 void set scrollTop(int value) native "this.scrollTop = value;";
1935 1935
1936 int get scrollWidth() native "return this.scrollWidth;"; 1936 int get scrollWidth() native "return this.scrollWidth;";
1937 1937
1938 CSSStyleDeclarationJs get style() native "return this.style;"; 1938 _CSSStyleDeclarationJs get style() native "return this.style;";
1939 1939
1940 String get tagName() native "return this.tagName;"; 1940 String get tagName() native "return this.tagName;";
1941 1941
1942 void blur() native; 1942 void blur() native;
1943 1943
1944 void focus() native; 1944 void focus() native;
1945 1945
1946 String getAttribute(String name) native; 1946 String getAttribute(String name) native;
1947 1947
1948 String getAttributeNS(String namespaceURI, String localName) native; 1948 String getAttributeNS(String namespaceURI, String localName) native;
1949 1949
1950 AttrJs getAttributeNode(String name) native; 1950 _AttrJs getAttributeNode(String name) native;
1951 1951
1952 AttrJs getAttributeNodeNS(String namespaceURI, String localName) native; 1952 _AttrJs getAttributeNodeNS(String namespaceURI, String localName) native;
1953 1953
1954 ClientRectJs getBoundingClientRect() native; 1954 _ClientRectJs getBoundingClientRect() native;
1955 1955
1956 ClientRectListJs getClientRects() native; 1956 _ClientRectListJs getClientRects() native;
1957 1957
1958 NodeListJs getElementsByClassName(String name) native; 1958 _NodeListJs getElementsByClassName(String name) native;
1959 1959
1960 NodeListJs getElementsByTagName(String name) native; 1960 _NodeListJs getElementsByTagName(String name) native;
1961 1961
1962 NodeListJs getElementsByTagNameNS(String namespaceURI, String localName) nativ e; 1962 _NodeListJs getElementsByTagNameNS(String namespaceURI, String localName) nati ve;
1963 1963
1964 bool hasAttribute(String name) native; 1964 bool hasAttribute(String name) native;
1965 1965
1966 bool hasAttributeNS(String namespaceURI, String localName) native; 1966 bool hasAttributeNS(String namespaceURI, String localName) native;
1967 1967
1968 ElementJs querySelector(String selectors) native; 1968 _ElementJs querySelector(String selectors) native;
1969 1969
1970 NodeListJs querySelectorAll(String selectors) native; 1970 _NodeListJs querySelectorAll(String selectors) native;
1971 1971
1972 void removeAttribute(String name) native; 1972 void removeAttribute(String name) native;
1973 1973
1974 void removeAttributeNS(String namespaceURI, String localName) native; 1974 void removeAttributeNS(String namespaceURI, String localName) native;
1975 1975
1976 AttrJs removeAttributeNode(AttrJs oldAttr) native; 1976 _AttrJs removeAttributeNode(_AttrJs oldAttr) native;
1977 1977
1978 void scrollByLines(int lines) native; 1978 void scrollByLines(int lines) native;
1979 1979
1980 void scrollByPages(int pages) native; 1980 void scrollByPages(int pages) native;
1981 1981
1982 void scrollIntoView([bool alignWithTop = null]) native; 1982 void scrollIntoView([bool alignWithTop = null]) native;
1983 1983
1984 void scrollIntoViewIfNeeded([bool centerIfNeeded = null]) native; 1984 void scrollIntoViewIfNeeded([bool centerIfNeeded = null]) native;
1985 1985
1986 void setAttribute(String name, String value) native; 1986 void setAttribute(String name, String value) native;
1987 1987
1988 void setAttributeNS(String namespaceURI, String qualifiedName, String value) n ative; 1988 void setAttributeNS(String namespaceURI, String qualifiedName, String value) n ative;
1989 1989
1990 AttrJs setAttributeNode(AttrJs newAttr) native; 1990 _AttrJs setAttributeNode(_AttrJs newAttr) native;
1991 1991
1992 AttrJs setAttributeNodeNS(AttrJs newAttr) native; 1992 _AttrJs setAttributeNodeNS(_AttrJs newAttr) native;
1993 1993
1994 bool webkitMatchesSelector(String selectors) native; 1994 bool webkitMatchesSelector(String selectors) native;
1995 1995
1996 void webkitRequestFullScreen(int flags) native; 1996 void webkitRequestFullScreen(int flags) native;
1997 } 1997 }
1998 1998
1999 class ElementTimeControlJs extends DOMTypeJs implements ElementTimeControl nativ e "*ElementTimeControl" { 1999 class _ElementTimeControlJs extends _DOMTypeJs implements ElementTimeControl nat ive "*ElementTimeControl" {
2000 2000
2001 void beginElement() native; 2001 void beginElement() native;
2002 2002
2003 void beginElementAt(num offset) native; 2003 void beginElementAt(num offset) native;
2004 2004
2005 void endElement() native; 2005 void endElement() native;
2006 2006
2007 void endElementAt(num offset) native; 2007 void endElementAt(num offset) native;
2008 } 2008 }
2009 2009
2010 class ElementTraversalJs extends DOMTypeJs implements ElementTraversal native "* ElementTraversal" { 2010 class _ElementTraversalJs extends _DOMTypeJs implements ElementTraversal native "*ElementTraversal" {
2011 2011
2012 int get childElementCount() native "return this.childElementCount;"; 2012 int get childElementCount() native "return this.childElementCount;";
2013 2013
2014 ElementJs get firstElementChild() native "return this.firstElementChild;"; 2014 _ElementJs get firstElementChild() native "return this.firstElementChild;";
2015 2015
2016 ElementJs get lastElementChild() native "return this.lastElementChild;"; 2016 _ElementJs get lastElementChild() native "return this.lastElementChild;";
2017 2017
2018 ElementJs get nextElementSibling() native "return this.nextElementSibling;"; 2018 _ElementJs get nextElementSibling() native "return this.nextElementSibling;";
2019 2019
2020 ElementJs get previousElementSibling() native "return this.previousElementSibl ing;"; 2020 _ElementJs get previousElementSibling() native "return this.previousElementSib ling;";
2021 } 2021 }
2022 2022
2023 class EntityJs extends NodeJs implements Entity native "*Entity" { 2023 class _EntityJs extends _NodeJs implements Entity native "*Entity" {
2024 2024
2025 String get notationName() native "return this.notationName;"; 2025 String get notationName() native "return this.notationName;";
2026 2026
2027 String get publicId() native "return this.publicId;"; 2027 String get publicId() native "return this.publicId;";
2028 2028
2029 String get systemId() native "return this.systemId;"; 2029 String get systemId() native "return this.systemId;";
2030 } 2030 }
2031 2031
2032 class EntityReferenceJs extends NodeJs implements EntityReference native "*Entit yReference" { 2032 class _EntityReferenceJs extends _NodeJs implements EntityReference native "*Ent ityReference" {
2033 } 2033 }
2034 2034
2035 class EntryJs extends DOMTypeJs implements Entry native "*Entry" { 2035 class _EntryJs extends _DOMTypeJs implements Entry native "*Entry" {
2036 2036
2037 DOMFileSystemJs get filesystem() native "return this.filesystem;"; 2037 _DOMFileSystemJs get filesystem() native "return this.filesystem;";
2038 2038
2039 String get fullPath() native "return this.fullPath;"; 2039 String get fullPath() native "return this.fullPath;";
2040 2040
2041 bool get isDirectory() native "return this.isDirectory;"; 2041 bool get isDirectory() native "return this.isDirectory;";
2042 2042
2043 bool get isFile() native "return this.isFile;"; 2043 bool get isFile() native "return this.isFile;";
2044 2044
2045 String get name() native "return this.name;"; 2045 String get name() native "return this.name;";
2046 2046
2047 void copyTo(DirectoryEntryJs parent, [String name = null, EntryCallback succes sCallback = null, ErrorCallback errorCallback = null]) native; 2047 void copyTo(_DirectoryEntryJs parent, [String name = null, EntryCallback succe ssCallback = null, ErrorCallback errorCallback = null]) native;
2048 2048
2049 void getMetadata(MetadataCallback successCallback, [ErrorCallback errorCallbac k = null]) native; 2049 void getMetadata(MetadataCallback successCallback, [ErrorCallback errorCallbac k = null]) native;
2050 2050
2051 void getParent([EntryCallback successCallback = null, ErrorCallback errorCallb ack = null]) native; 2051 void getParent([EntryCallback successCallback = null, ErrorCallback errorCallb ack = null]) native;
2052 2052
2053 void moveTo(DirectoryEntryJs parent, [String name = null, EntryCallback succes sCallback = null, ErrorCallback errorCallback = null]) native; 2053 void moveTo(_DirectoryEntryJs parent, [String name = null, EntryCallback succe ssCallback = null, ErrorCallback errorCallback = null]) native;
2054 2054
2055 void remove(VoidCallback successCallback, [ErrorCallback errorCallback = null] ) native; 2055 void remove(VoidCallback successCallback, [ErrorCallback errorCallback = null] ) native;
2056 2056
2057 String toURL() native; 2057 String toURL() native;
2058 } 2058 }
2059 2059
2060 class EntryArrayJs extends DOMTypeJs implements EntryArray native "*EntryArray" { 2060 class _EntryArrayJs extends _DOMTypeJs implements EntryArray native "*EntryArray " {
2061 2061
2062 int get length() native "return this.length;"; 2062 int get length() native "return this.length;";
2063 2063
2064 EntryJs item(int index) native; 2064 _EntryJs item(int index) native;
2065 } 2065 }
2066 2066
2067 class EntryArraySyncJs extends DOMTypeJs implements EntryArraySync native "*Entr yArraySync" { 2067 class _EntryArraySyncJs extends _DOMTypeJs implements EntryArraySync native "*En tryArraySync" {
2068 2068
2069 int get length() native "return this.length;"; 2069 int get length() native "return this.length;";
2070 2070
2071 EntrySyncJs item(int index) native; 2071 _EntrySyncJs item(int index) native;
2072 } 2072 }
2073 2073
2074 class EntrySyncJs extends DOMTypeJs implements EntrySync native "*EntrySync" { 2074 class _EntrySyncJs extends _DOMTypeJs implements EntrySync native "*EntrySync" {
2075 2075
2076 DOMFileSystemSyncJs get filesystem() native "return this.filesystem;"; 2076 _DOMFileSystemSyncJs get filesystem() native "return this.filesystem;";
2077 2077
2078 String get fullPath() native "return this.fullPath;"; 2078 String get fullPath() native "return this.fullPath;";
2079 2079
2080 bool get isDirectory() native "return this.isDirectory;"; 2080 bool get isDirectory() native "return this.isDirectory;";
2081 2081
2082 bool get isFile() native "return this.isFile;"; 2082 bool get isFile() native "return this.isFile;";
2083 2083
2084 String get name() native "return this.name;"; 2084 String get name() native "return this.name;";
2085 2085
2086 EntrySyncJs copyTo(DirectoryEntrySyncJs parent, String name) native; 2086 _EntrySyncJs copyTo(_DirectoryEntrySyncJs parent, String name) native;
2087 2087
2088 MetadataJs getMetadata() native; 2088 _MetadataJs getMetadata() native;
2089 2089
2090 DirectoryEntrySyncJs getParent() native; 2090 _DirectoryEntrySyncJs getParent() native;
2091 2091
2092 EntrySyncJs moveTo(DirectoryEntrySyncJs parent, String name) native; 2092 _EntrySyncJs moveTo(_DirectoryEntrySyncJs parent, String name) native;
2093 2093
2094 void remove() native; 2094 void remove() native;
2095 2095
2096 String toURL() native; 2096 String toURL() native;
2097 } 2097 }
2098 2098
2099 class ErrorEventJs extends EventJs implements ErrorEvent native "*ErrorEvent" { 2099 class _ErrorEventJs extends _EventJs implements ErrorEvent native "*ErrorEvent" {
2100 2100
2101 String get filename() native "return this.filename;"; 2101 String get filename() native "return this.filename;";
2102 2102
2103 int get lineno() native "return this.lineno;"; 2103 int get lineno() native "return this.lineno;";
2104 2104
2105 String get message() native "return this.message;"; 2105 String get message() native "return this.message;";
2106 } 2106 }
2107 2107
2108 class EventJs extends DOMTypeJs implements Event native "*Event" { 2108 class _EventJs extends _DOMTypeJs implements Event native "*Event" {
2109 2109
2110 static final int AT_TARGET = 2; 2110 static final int AT_TARGET = 2;
2111 2111
2112 static final int BLUR = 8192; 2112 static final int BLUR = 8192;
2113 2113
2114 static final int BUBBLING_PHASE = 3; 2114 static final int BUBBLING_PHASE = 3;
2115 2115
2116 static final int CAPTURING_PHASE = 1; 2116 static final int CAPTURING_PHASE = 1;
2117 2117
2118 static final int CHANGE = 32768; 2118 static final int CHANGE = 32768;
(...skipping 27 matching lines...) Expand all
2146 static final int SELECT = 16384; 2146 static final int SELECT = 16384;
2147 2147
2148 bool get bubbles() native "return this.bubbles;"; 2148 bool get bubbles() native "return this.bubbles;";
2149 2149
2150 bool get cancelBubble() native "return this.cancelBubble;"; 2150 bool get cancelBubble() native "return this.cancelBubble;";
2151 2151
2152 void set cancelBubble(bool value) native "this.cancelBubble = value;"; 2152 void set cancelBubble(bool value) native "this.cancelBubble = value;";
2153 2153
2154 bool get cancelable() native "return this.cancelable;"; 2154 bool get cancelable() native "return this.cancelable;";
2155 2155
2156 ClipboardJs get clipboardData() native "return this.clipboardData;"; 2156 _ClipboardJs get clipboardData() native "return this.clipboardData;";
2157 2157
2158 EventTargetJs get currentTarget() native "return this.currentTarget;"; 2158 _EventTargetJs get currentTarget() native "return this.currentTarget;";
2159 2159
2160 bool get defaultPrevented() native "return this.defaultPrevented;"; 2160 bool get defaultPrevented() native "return this.defaultPrevented;";
2161 2161
2162 int get eventPhase() native "return this.eventPhase;"; 2162 int get eventPhase() native "return this.eventPhase;";
2163 2163
2164 bool get returnValue() native "return this.returnValue;"; 2164 bool get returnValue() native "return this.returnValue;";
2165 2165
2166 void set returnValue(bool value) native "this.returnValue = value;"; 2166 void set returnValue(bool value) native "this.returnValue = value;";
2167 2167
2168 EventTargetJs get srcElement() native "return this.srcElement;"; 2168 _EventTargetJs get srcElement() native "return this.srcElement;";
2169 2169
2170 EventTargetJs get target() native "return this.target;"; 2170 _EventTargetJs get target() native "return this.target;";
2171 2171
2172 int get timeStamp() native "return this.timeStamp;"; 2172 int get timeStamp() native "return this.timeStamp;";
2173 2173
2174 String get type() native "return this.type;"; 2174 String get type() native "return this.type;";
2175 2175
2176 void initEvent(String eventTypeArg, bool canBubbleArg, bool cancelableArg) nat ive; 2176 void initEvent(String eventTypeArg, bool canBubbleArg, bool cancelableArg) nat ive;
2177 2177
2178 void preventDefault() native; 2178 void preventDefault() native;
2179 2179
2180 void stopImmediatePropagation() native; 2180 void stopImmediatePropagation() native;
2181 2181
2182 void stopPropagation() native; 2182 void stopPropagation() native;
2183 } 2183 }
2184 2184
2185 class EventExceptionJs extends DOMTypeJs implements EventException native "*Even tException" { 2185 class _EventExceptionJs extends _DOMTypeJs implements EventException native "*Ev entException" {
2186 2186
2187 static final int DISPATCH_REQUEST_ERR = 1; 2187 static final int DISPATCH_REQUEST_ERR = 1;
2188 2188
2189 static final int UNSPECIFIED_EVENT_TYPE_ERR = 0; 2189 static final int UNSPECIFIED_EVENT_TYPE_ERR = 0;
2190 2190
2191 int get code() native "return this.code;"; 2191 int get code() native "return this.code;";
2192 2192
2193 String get message() native "return this.message;"; 2193 String get message() native "return this.message;";
2194 2194
2195 String get name() native "return this.name;"; 2195 String get name() native "return this.name;";
2196 2196
2197 String toString() native; 2197 String toString() native;
2198 } 2198 }
2199 2199
2200 class EventSourceJs extends DOMTypeJs implements EventSource native "*EventSourc e" { 2200 class _EventSourceJs extends _DOMTypeJs implements EventSource native "*EventSou rce" {
2201 2201
2202 static final int CLOSED = 2; 2202 static final int CLOSED = 2;
2203 2203
2204 static final int CONNECTING = 0; 2204 static final int CONNECTING = 0;
2205 2205
2206 static final int OPEN = 1; 2206 static final int OPEN = 1;
2207 2207
2208 String get URL() native "return this.URL;"; 2208 String get URL() native "return this.URL;";
2209 2209
2210 int get readyState() native "return this.readyState;"; 2210 int get readyState() native "return this.readyState;";
2211 2211
2212 String get url() native "return this.url;"; 2212 String get url() native "return this.url;";
2213 2213
2214 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native; 2214 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
2215 2215
2216 void close() native; 2216 void close() native;
2217 2217
2218 bool dispatchEvent(EventJs evt) native; 2218 bool dispatchEvent(_EventJs evt) native;
2219 2219
2220 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native; 2220 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
2221 } 2221 }
2222 2222
2223 class EventTargetJs extends DOMTypeJs implements EventTarget native "*EventTarge t" { 2223 class _EventTargetJs extends _DOMTypeJs implements EventTarget native "*EventTar get" {
2224 2224
2225 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native; 2225 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
2226 2226
2227 bool dispatchEvent(EventJs event) native; 2227 bool dispatchEvent(_EventJs event) native;
2228 2228
2229 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native; 2229 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
2230 } 2230 }
2231 2231
2232 class FileJs extends BlobJs implements File native "*File" { 2232 class _FileJs extends _BlobJs implements File native "*File" {
2233 2233
2234 String get fileName() native "return this.fileName;"; 2234 String get fileName() native "return this.fileName;";
2235 2235
2236 int get fileSize() native "return this.fileSize;"; 2236 int get fileSize() native "return this.fileSize;";
2237 2237
2238 Date get lastModifiedDate() native "return this.lastModifiedDate;"; 2238 Date get lastModifiedDate() native "return this.lastModifiedDate;";
2239 2239
2240 String get name() native "return this.name;"; 2240 String get name() native "return this.name;";
2241 2241
2242 String get webkitRelativePath() native "return this.webkitRelativePath;"; 2242 String get webkitRelativePath() native "return this.webkitRelativePath;";
2243 } 2243 }
2244 2244
2245 class FileEntryJs extends EntryJs implements FileEntry native "*FileEntry" { 2245 class _FileEntryJs extends _EntryJs implements FileEntry native "*FileEntry" {
2246 2246
2247 void createWriter(FileWriterCallback successCallback, [ErrorCallback errorCall back = null]) native; 2247 void createWriter(FileWriterCallback successCallback, [ErrorCallback errorCall back = null]) native;
2248 2248
2249 void file(FileCallback successCallback, [ErrorCallback errorCallback = null]) native; 2249 void file(FileCallback successCallback, [ErrorCallback errorCallback = null]) native;
2250 } 2250 }
2251 2251
2252 class FileEntrySyncJs extends EntrySyncJs implements FileEntrySync native "*File EntrySync" { 2252 class _FileEntrySyncJs extends _EntrySyncJs implements FileEntrySync native "*Fi leEntrySync" {
2253 2253
2254 FileWriterSyncJs createWriter() native; 2254 _FileWriterSyncJs createWriter() native;
2255 2255
2256 FileJs file() native; 2256 _FileJs file() native;
2257 } 2257 }
2258 2258
2259 class FileErrorJs extends DOMTypeJs implements FileError native "*FileError" { 2259 class _FileErrorJs extends _DOMTypeJs implements FileError native "*FileError" {
2260 2260
2261 static final int ABORT_ERR = 3; 2261 static final int ABORT_ERR = 3;
2262 2262
2263 static final int ENCODING_ERR = 5; 2263 static final int ENCODING_ERR = 5;
2264 2264
2265 static final int INVALID_MODIFICATION_ERR = 9; 2265 static final int INVALID_MODIFICATION_ERR = 9;
2266 2266
2267 static final int INVALID_STATE_ERR = 7; 2267 static final int INVALID_STATE_ERR = 7;
2268 2268
2269 static final int NOT_FOUND_ERR = 1; 2269 static final int NOT_FOUND_ERR = 1;
2270 2270
2271 static final int NOT_READABLE_ERR = 4; 2271 static final int NOT_READABLE_ERR = 4;
2272 2272
2273 static final int NO_MODIFICATION_ALLOWED_ERR = 6; 2273 static final int NO_MODIFICATION_ALLOWED_ERR = 6;
2274 2274
2275 static final int PATH_EXISTS_ERR = 12; 2275 static final int PATH_EXISTS_ERR = 12;
2276 2276
2277 static final int QUOTA_EXCEEDED_ERR = 10; 2277 static final int QUOTA_EXCEEDED_ERR = 10;
2278 2278
2279 static final int SECURITY_ERR = 2; 2279 static final int SECURITY_ERR = 2;
2280 2280
2281 static final int SYNTAX_ERR = 8; 2281 static final int SYNTAX_ERR = 8;
2282 2282
2283 static final int TYPE_MISMATCH_ERR = 11; 2283 static final int TYPE_MISMATCH_ERR = 11;
2284 2284
2285 int get code() native "return this.code;"; 2285 int get code() native "return this.code;";
2286 } 2286 }
2287 2287
2288 class FileExceptionJs extends DOMTypeJs implements FileException native "*FileEx ception" { 2288 class _FileExceptionJs extends _DOMTypeJs implements FileException native "*File Exception" {
2289 2289
2290 static final int ABORT_ERR = 3; 2290 static final int ABORT_ERR = 3;
2291 2291
2292 static final int ENCODING_ERR = 5; 2292 static final int ENCODING_ERR = 5;
2293 2293
2294 static final int INVALID_MODIFICATION_ERR = 9; 2294 static final int INVALID_MODIFICATION_ERR = 9;
2295 2295
2296 static final int INVALID_STATE_ERR = 7; 2296 static final int INVALID_STATE_ERR = 7;
2297 2297
2298 static final int NOT_FOUND_ERR = 1; 2298 static final int NOT_FOUND_ERR = 1;
(...skipping 14 matching lines...) Expand all
2313 2313
2314 int get code() native "return this.code;"; 2314 int get code() native "return this.code;";
2315 2315
2316 String get message() native "return this.message;"; 2316 String get message() native "return this.message;";
2317 2317
2318 String get name() native "return this.name;"; 2318 String get name() native "return this.name;";
2319 2319
2320 String toString() native; 2320 String toString() native;
2321 } 2321 }
2322 2322
2323 class FileListJs extends DOMTypeJs implements FileList native "*FileList" { 2323 class _FileListJs extends _DOMTypeJs implements FileList native "*FileList" {
2324 2324
2325 int get length() native "return this.length;"; 2325 int get length() native "return this.length;";
2326 2326
2327 FileJs item(int index) native; 2327 _FileJs item(int index) native;
2328 } 2328 }
2329 2329
2330 class FileReaderJs extends DOMTypeJs implements FileReader native "*FileReader" { 2330 class _FileReaderJs extends _DOMTypeJs implements FileReader native "*FileReader " {
2331 FileReader() native; 2331 FileReader() native;
2332 2332
2333 2333
2334 static final int DONE = 2; 2334 static final int DONE = 2;
2335 2335
2336 static final int EMPTY = 0; 2336 static final int EMPTY = 0;
2337 2337
2338 static final int LOADING = 1; 2338 static final int LOADING = 1;
2339 2339
2340 FileErrorJs get error() native "return this.error;"; 2340 _FileErrorJs get error() native "return this.error;";
2341 2341
2342 EventListener get onabort() native "return this.onabort;"; 2342 EventListener get onabort() native "return this.onabort;";
2343 2343
2344 void set onabort(EventListener value) native "this.onabort = value;"; 2344 void set onabort(EventListener value) native "this.onabort = value;";
2345 2345
2346 EventListener get onerror() native "return this.onerror;"; 2346 EventListener get onerror() native "return this.onerror;";
2347 2347
2348 void set onerror(EventListener value) native "this.onerror = value;"; 2348 void set onerror(EventListener value) native "this.onerror = value;";
2349 2349
2350 EventListener get onload() native "return this.onload;"; 2350 EventListener get onload() native "return this.onload;";
(...skipping 13 matching lines...) Expand all
2364 void set onprogress(EventListener value) native "this.onprogress = value;"; 2364 void set onprogress(EventListener value) native "this.onprogress = value;";
2365 2365
2366 int get readyState() native "return this.readyState;"; 2366 int get readyState() native "return this.readyState;";
2367 2367
2368 Object get result() native "return this.result;"; 2368 Object get result() native "return this.result;";
2369 2369
2370 void abort() native; 2370 void abort() native;
2371 2371
2372 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native; 2372 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
2373 2373
2374 bool dispatchEvent(EventJs evt) native; 2374 bool dispatchEvent(_EventJs evt) native;
2375 2375
2376 void readAsArrayBuffer(BlobJs blob) native; 2376 void readAsArrayBuffer(_BlobJs blob) native;
2377 2377
2378 void readAsBinaryString(BlobJs blob) native; 2378 void readAsBinaryString(_BlobJs blob) native;
2379 2379
2380 void readAsDataURL(BlobJs blob) native; 2380 void readAsDataURL(_BlobJs blob) native;
2381 2381
2382 void readAsText(BlobJs blob, [String encoding = null]) native; 2382 void readAsText(_BlobJs blob, [String encoding = null]) native;
2383 2383
2384 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native; 2384 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
2385 } 2385 }
2386 2386
2387 class FileReaderSyncJs extends DOMTypeJs implements FileReaderSync native "*File ReaderSync" { 2387 class _FileReaderSyncJs extends _DOMTypeJs implements FileReaderSync native "*Fi leReaderSync" {
2388 2388
2389 ArrayBufferJs readAsArrayBuffer(BlobJs blob) native; 2389 _ArrayBufferJs readAsArrayBuffer(_BlobJs blob) native;
2390 2390
2391 String readAsBinaryString(BlobJs blob) native; 2391 String readAsBinaryString(_BlobJs blob) native;
2392 2392
2393 String readAsDataURL(BlobJs blob) native; 2393 String readAsDataURL(_BlobJs blob) native;
2394 2394
2395 String readAsText(BlobJs blob, [String encoding = null]) native; 2395 String readAsText(_BlobJs blob, [String encoding = null]) native;
2396 } 2396 }
2397 2397
2398 class FileWriterJs extends DOMTypeJs implements FileWriter native "*FileWriter" { 2398 class _FileWriterJs extends _DOMTypeJs implements FileWriter native "*FileWriter " {
2399 2399
2400 static final int DONE = 2; 2400 static final int DONE = 2;
2401 2401
2402 static final int INIT = 0; 2402 static final int INIT = 0;
2403 2403
2404 static final int WRITING = 1; 2404 static final int WRITING = 1;
2405 2405
2406 FileErrorJs get error() native "return this.error;"; 2406 _FileErrorJs get error() native "return this.error;";
2407 2407
2408 int get length() native "return this.length;"; 2408 int get length() native "return this.length;";
2409 2409
2410 EventListener get onabort() native "return this.onabort;"; 2410 EventListener get onabort() native "return this.onabort;";
2411 2411
2412 void set onabort(EventListener value) native "this.onabort = value;"; 2412 void set onabort(EventListener value) native "this.onabort = value;";
2413 2413
2414 EventListener get onerror() native "return this.onerror;"; 2414 EventListener get onerror() native "return this.onerror;";
2415 2415
2416 void set onerror(EventListener value) native "this.onerror = value;"; 2416 void set onerror(EventListener value) native "this.onerror = value;";
(...skipping 17 matching lines...) Expand all
2434 int get position() native "return this.position;"; 2434 int get position() native "return this.position;";
2435 2435
2436 int get readyState() native "return this.readyState;"; 2436 int get readyState() native "return this.readyState;";
2437 2437
2438 void abort() native; 2438 void abort() native;
2439 2439
2440 void seek(int position) native; 2440 void seek(int position) native;
2441 2441
2442 void truncate(int size) native; 2442 void truncate(int size) native;
2443 2443
2444 void write(BlobJs data) native; 2444 void write(_BlobJs data) native;
2445 } 2445 }
2446 2446
2447 class FileWriterSyncJs extends DOMTypeJs implements FileWriterSync native "*File WriterSync" { 2447 class _FileWriterSyncJs extends _DOMTypeJs implements FileWriterSync native "*Fi leWriterSync" {
2448 2448
2449 int get length() native "return this.length;"; 2449 int get length() native "return this.length;";
2450 2450
2451 int get position() native "return this.position;"; 2451 int get position() native "return this.position;";
2452 2452
2453 void seek(int position) native; 2453 void seek(int position) native;
2454 2454
2455 void truncate(int size) native; 2455 void truncate(int size) native;
2456 2456
2457 void write(BlobJs data) native; 2457 void write(_BlobJs data) native;
2458 } 2458 }
2459 2459
2460 class Float32ArrayJs extends ArrayBufferViewJs implements Float32Array, List<num > native "*Float32Array" { 2460 class _Float32ArrayJs extends _ArrayBufferViewJs implements Float32Array, List<n um> native "*Float32Array" {
2461 2461
2462 factory Float32Array(int length) => _construct_Float32Array(length); 2462 factory Float32Array(int length) => _construct_Float32Array(length);
2463 2463
2464 factory Float32Array.fromList(List<num> list) => _construct_Float32Array(list) ; 2464 factory Float32Array.fromList(List<num> list) => _construct_Float32Array(list) ;
2465 2465
2466 factory Float32Array.fromBuffer(ArrayBuffer buffer) => _construct_Float32Array (buffer); 2466 factory Float32Array.fromBuffer(ArrayBuffer buffer) => _construct_Float32Array (buffer);
2467 2467
2468 static _construct_Float32Array(arg) native 'return new Float32Array(arg);'; 2468 static _construct_Float32Array(arg) native 'return new Float32Array(arg);';
2469 2469
2470 static final int BYTES_PER_ELEMENT = 4; 2470 static final int BYTES_PER_ELEMENT = 4;
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
2537 void insertRange(int start, int length, [num initialValue]) { 2537 void insertRange(int start, int length, [num initialValue]) {
2538 throw new UnsupportedOperationException("Cannot insertRange on immutable Lis t."); 2538 throw new UnsupportedOperationException("Cannot insertRange on immutable Lis t.");
2539 } 2539 }
2540 List<num> getRange(int start, int length) => 2540 List<num> getRange(int start, int length) =>
2541 _Lists.getRange(this, start, length, <num>[]); 2541 _Lists.getRange(this, start, length, <num>[]);
2542 2542
2543 // -- end List<num> mixins. 2543 // -- end List<num> mixins.
2544 2544
2545 void setElements(Object array, [int offset = null]) native; 2545 void setElements(Object array, [int offset = null]) native;
2546 2546
2547 Float32ArrayJs subarray(int start, [int end = null]) native; 2547 _Float32ArrayJs subarray(int start, [int end = null]) native;
2548 } 2548 }
2549 2549
2550 class Float64ArrayJs extends ArrayBufferViewJs implements Float64Array, List<num > native "*Float64Array" { 2550 class _Float64ArrayJs extends _ArrayBufferViewJs implements Float64Array, List<n um> native "*Float64Array" {
2551 2551
2552 factory Float64Array(int length) => _construct_Float64Array(length); 2552 factory Float64Array(int length) => _construct_Float64Array(length);
2553 2553
2554 factory Float64Array.fromList(List<num> list) => _construct_Float64Array(list) ; 2554 factory Float64Array.fromList(List<num> list) => _construct_Float64Array(list) ;
2555 2555
2556 factory Float64Array.fromBuffer(ArrayBuffer buffer) => _construct_Float64Array (buffer); 2556 factory Float64Array.fromBuffer(ArrayBuffer buffer) => _construct_Float64Array (buffer);
2557 2557
2558 static _construct_Float64Array(arg) native 'return new Float64Array(arg);'; 2558 static _construct_Float64Array(arg) native 'return new Float64Array(arg);';
2559 2559
2560 static final int BYTES_PER_ELEMENT = 8; 2560 static final int BYTES_PER_ELEMENT = 8;
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
2627 void insertRange(int start, int length, [num initialValue]) { 2627 void insertRange(int start, int length, [num initialValue]) {
2628 throw new UnsupportedOperationException("Cannot insertRange on immutable Lis t."); 2628 throw new UnsupportedOperationException("Cannot insertRange on immutable Lis t.");
2629 } 2629 }
2630 List<num> getRange(int start, int length) => 2630 List<num> getRange(int start, int length) =>
2631 _Lists.getRange(this, start, length, <num>[]); 2631 _Lists.getRange(this, start, length, <num>[]);
2632 2632
2633 // -- end List<num> mixins. 2633 // -- end List<num> mixins.
2634 2634
2635 void setElements(Object array, [int offset = null]) native; 2635 void setElements(Object array, [int offset = null]) native;
2636 2636
2637 Float64ArrayJs subarray(int start, [int end = null]) native; 2637 _Float64ArrayJs subarray(int start, [int end = null]) native;
2638 } 2638 }
2639 2639
2640 class GeolocationJs extends DOMTypeJs implements Geolocation native "*Geolocatio n" { 2640 class _GeolocationJs extends _DOMTypeJs implements Geolocation native "*Geolocat ion" {
2641 2641
2642 void clearWatch(int watchId) native; 2642 void clearWatch(int watchId) native;
2643 2643
2644 void getCurrentPosition(PositionCallback successCallback, [PositionErrorCallba ck errorCallback = null]) native; 2644 void getCurrentPosition(PositionCallback successCallback, [PositionErrorCallba ck errorCallback = null]) native;
2645 2645
2646 int watchPosition(PositionCallback successCallback, [PositionErrorCallback err orCallback = null]) native; 2646 int watchPosition(PositionCallback successCallback, [PositionErrorCallback err orCallback = null]) native;
2647 } 2647 }
2648 2648
2649 class GeopositionJs extends DOMTypeJs implements Geoposition native "*Geopositio n" { 2649 class _GeopositionJs extends _DOMTypeJs implements Geoposition native "*Geoposit ion" {
2650 2650
2651 CoordinatesJs get coords() native "return this.coords;"; 2651 _CoordinatesJs get coords() native "return this.coords;";
2652 2652
2653 int get timestamp() native "return this.timestamp;"; 2653 int get timestamp() native "return this.timestamp;";
2654 } 2654 }
2655 2655
2656 class HTMLAllCollectionJs extends DOMTypeJs implements HTMLAllCollection native "*HTMLAllCollection" { 2656 class _HTMLAllCollectionJs extends _DOMTypeJs implements HTMLAllCollection nativ e "*HTMLAllCollection" {
2657 2657
2658 int get length() native "return this.length;"; 2658 int get length() native "return this.length;";
2659 2659
2660 NodeJs item(int index) native; 2660 _NodeJs item(int index) native;
2661 2661
2662 NodeJs namedItem(String name) native; 2662 _NodeJs namedItem(String name) native;
2663 2663
2664 NodeListJs tags(String name) native; 2664 _NodeListJs tags(String name) native;
2665 } 2665 }
2666 2666
2667 class HTMLAnchorElementJs extends HTMLElementJs implements HTMLAnchorElement nat ive "*HTMLAnchorElement" { 2667 class _HTMLAnchorElementJs extends _HTMLElementJs implements HTMLAnchorElement n ative "*HTMLAnchorElement" {
2668 2668
2669 String get charset() native "return this.charset;"; 2669 String get charset() native "return this.charset;";
2670 2670
2671 void set charset(String value) native "this.charset = value;"; 2671 void set charset(String value) native "this.charset = value;";
2672 2672
2673 String get coords() native "return this.coords;"; 2673 String get coords() native "return this.coords;";
2674 2674
2675 void set coords(String value) native "this.coords = value;"; 2675 void set coords(String value) native "this.coords = value;";
2676 2676
2677 String get download() native "return this.download;"; 2677 String get download() native "return this.download;";
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
2742 2742
2743 String get text() native "return this.text;"; 2743 String get text() native "return this.text;";
2744 2744
2745 String get type() native "return this.type;"; 2745 String get type() native "return this.type;";
2746 2746
2747 void set type(String value) native "this.type = value;"; 2747 void set type(String value) native "this.type = value;";
2748 2748
2749 String toString() native; 2749 String toString() native;
2750 } 2750 }
2751 2751
2752 class HTMLAppletElementJs extends HTMLElementJs implements HTMLAppletElement nat ive "*HTMLAppletElement" { 2752 class _HTMLAppletElementJs extends _HTMLElementJs implements HTMLAppletElement n ative "*HTMLAppletElement" {
2753 2753
2754 String get align() native "return this.align;"; 2754 String get align() native "return this.align;";
2755 2755
2756 void set align(String value) native "this.align = value;"; 2756 void set align(String value) native "this.align = value;";
2757 2757
2758 String get alt() native "return this.alt;"; 2758 String get alt() native "return this.alt;";
2759 2759
2760 void set alt(String value) native "this.alt = value;"; 2760 void set alt(String value) native "this.alt = value;";
2761 2761
2762 String get archive() native "return this.archive;"; 2762 String get archive() native "return this.archive;";
(...skipping 26 matching lines...) Expand all
2789 2789
2790 String get vspace() native "return this.vspace;"; 2790 String get vspace() native "return this.vspace;";
2791 2791
2792 void set vspace(String value) native "this.vspace = value;"; 2792 void set vspace(String value) native "this.vspace = value;";
2793 2793
2794 String get width() native "return this.width;"; 2794 String get width() native "return this.width;";
2795 2795
2796 void set width(String value) native "this.width = value;"; 2796 void set width(String value) native "this.width = value;";
2797 } 2797 }
2798 2798
2799 class HTMLAreaElementJs extends HTMLElementJs implements HTMLAreaElement native "*HTMLAreaElement" { 2799 class _HTMLAreaElementJs extends _HTMLElementJs implements HTMLAreaElement nativ e "*HTMLAreaElement" {
2800 2800
2801 String get alt() native "return this.alt;"; 2801 String get alt() native "return this.alt;";
2802 2802
2803 void set alt(String value) native "this.alt = value;"; 2803 void set alt(String value) native "this.alt = value;";
2804 2804
2805 String get coords() native "return this.coords;"; 2805 String get coords() native "return this.coords;";
2806 2806
2807 void set coords(String value) native "this.coords = value;"; 2807 void set coords(String value) native "this.coords = value;";
2808 2808
2809 String get hash() native "return this.hash;"; 2809 String get hash() native "return this.hash;";
(...skipping 24 matching lines...) Expand all
2834 2834
2835 String get shape() native "return this.shape;"; 2835 String get shape() native "return this.shape;";
2836 2836
2837 void set shape(String value) native "this.shape = value;"; 2837 void set shape(String value) native "this.shape = value;";
2838 2838
2839 String get target() native "return this.target;"; 2839 String get target() native "return this.target;";
2840 2840
2841 void set target(String value) native "this.target = value;"; 2841 void set target(String value) native "this.target = value;";
2842 } 2842 }
2843 2843
2844 class HTMLAudioElementJs extends HTMLMediaElementJs implements HTMLAudioElement native "*HTMLAudioElement" { 2844 class _HTMLAudioElementJs extends _HTMLMediaElementJs implements HTMLAudioElemen t native "*HTMLAudioElement" {
2845 } 2845 }
2846 2846
2847 class HTMLBRElementJs extends HTMLElementJs implements HTMLBRElement native "*HT MLBRElement" { 2847 class _HTMLBRElementJs extends _HTMLElementJs implements HTMLBRElement native "* HTMLBRElement" {
2848 2848
2849 String get clear() native "return this.clear;"; 2849 String get clear() native "return this.clear;";
2850 2850
2851 void set clear(String value) native "this.clear = value;"; 2851 void set clear(String value) native "this.clear = value;";
2852 } 2852 }
2853 2853
2854 class HTMLBaseElementJs extends HTMLElementJs implements HTMLBaseElement native "*HTMLBaseElement" { 2854 class _HTMLBaseElementJs extends _HTMLElementJs implements HTMLBaseElement nativ e "*HTMLBaseElement" {
2855 2855
2856 String get href() native "return this.href;"; 2856 String get href() native "return this.href;";
2857 2857
2858 void set href(String value) native "this.href = value;"; 2858 void set href(String value) native "this.href = value;";
2859 2859
2860 String get target() native "return this.target;"; 2860 String get target() native "return this.target;";
2861 2861
2862 void set target(String value) native "this.target = value;"; 2862 void set target(String value) native "this.target = value;";
2863 } 2863 }
2864 2864
2865 class HTMLBaseFontElementJs extends HTMLElementJs implements HTMLBaseFontElement native "*HTMLBaseFontElement" { 2865 class _HTMLBaseFontElementJs extends _HTMLElementJs implements HTMLBaseFontEleme nt native "*HTMLBaseFontElement" {
2866 2866
2867 String get color() native "return this.color;"; 2867 String get color() native "return this.color;";
2868 2868
2869 void set color(String value) native "this.color = value;"; 2869 void set color(String value) native "this.color = value;";
2870 2870
2871 String get face() native "return this.face;"; 2871 String get face() native "return this.face;";
2872 2872
2873 void set face(String value) native "this.face = value;"; 2873 void set face(String value) native "this.face = value;";
2874 2874
2875 int get size() native "return this.size;"; 2875 int get size() native "return this.size;";
2876 2876
2877 void set size(int value) native "this.size = value;"; 2877 void set size(int value) native "this.size = value;";
2878 } 2878 }
2879 2879
2880 class HTMLBodyElementJs extends HTMLElementJs implements HTMLBodyElement native "*HTMLBodyElement" { 2880 class _HTMLBodyElementJs extends _HTMLElementJs implements HTMLBodyElement nativ e "*HTMLBodyElement" {
2881 2881
2882 String get aLink() native "return this.aLink;"; 2882 String get aLink() native "return this.aLink;";
2883 2883
2884 void set aLink(String value) native "this.aLink = value;"; 2884 void set aLink(String value) native "this.aLink = value;";
2885 2885
2886 String get background() native "return this.background;"; 2886 String get background() native "return this.background;";
2887 2887
2888 void set background(String value) native "this.background = value;"; 2888 void set background(String value) native "this.background = value;";
2889 2889
2890 String get bgColor() native "return this.bgColor;"; 2890 String get bgColor() native "return this.bgColor;";
2891 2891
2892 void set bgColor(String value) native "this.bgColor = value;"; 2892 void set bgColor(String value) native "this.bgColor = value;";
2893 2893
2894 String get link() native "return this.link;"; 2894 String get link() native "return this.link;";
2895 2895
2896 void set link(String value) native "this.link = value;"; 2896 void set link(String value) native "this.link = value;";
2897 2897
2898 String get text() native "return this.text;"; 2898 String get text() native "return this.text;";
2899 2899
2900 void set text(String value) native "this.text = value;"; 2900 void set text(String value) native "this.text = value;";
2901 2901
2902 String get vLink() native "return this.vLink;"; 2902 String get vLink() native "return this.vLink;";
2903 2903
2904 void set vLink(String value) native "this.vLink = value;"; 2904 void set vLink(String value) native "this.vLink = value;";
2905 } 2905 }
2906 2906
2907 class HTMLButtonElementJs extends HTMLElementJs implements HTMLButtonElement nat ive "*HTMLButtonElement" { 2907 class _HTMLButtonElementJs extends _HTMLElementJs implements HTMLButtonElement n ative "*HTMLButtonElement" {
2908 2908
2909 bool get autofocus() native "return this.autofocus;"; 2909 bool get autofocus() native "return this.autofocus;";
2910 2910
2911 void set autofocus(bool value) native "this.autofocus = value;"; 2911 void set autofocus(bool value) native "this.autofocus = value;";
2912 2912
2913 bool get disabled() native "return this.disabled;"; 2913 bool get disabled() native "return this.disabled;";
2914 2914
2915 void set disabled(bool value) native "this.disabled = value;"; 2915 void set disabled(bool value) native "this.disabled = value;";
2916 2916
2917 HTMLFormElementJs get form() native "return this.form;"; 2917 _HTMLFormElementJs get form() native "return this.form;";
2918 2918
2919 String get formAction() native "return this.formAction;"; 2919 String get formAction() native "return this.formAction;";
2920 2920
2921 void set formAction(String value) native "this.formAction = value;"; 2921 void set formAction(String value) native "this.formAction = value;";
2922 2922
2923 String get formEnctype() native "return this.formEnctype;"; 2923 String get formEnctype() native "return this.formEnctype;";
2924 2924
2925 void set formEnctype(String value) native "this.formEnctype = value;"; 2925 void set formEnctype(String value) native "this.formEnctype = value;";
2926 2926
2927 String get formMethod() native "return this.formMethod;"; 2927 String get formMethod() native "return this.formMethod;";
2928 2928
2929 void set formMethod(String value) native "this.formMethod = value;"; 2929 void set formMethod(String value) native "this.formMethod = value;";
2930 2930
2931 bool get formNoValidate() native "return this.formNoValidate;"; 2931 bool get formNoValidate() native "return this.formNoValidate;";
2932 2932
2933 void set formNoValidate(bool value) native "this.formNoValidate = value;"; 2933 void set formNoValidate(bool value) native "this.formNoValidate = value;";
2934 2934
2935 String get formTarget() native "return this.formTarget;"; 2935 String get formTarget() native "return this.formTarget;";
2936 2936
2937 void set formTarget(String value) native "this.formTarget = value;"; 2937 void set formTarget(String value) native "this.formTarget = value;";
2938 2938
2939 NodeListJs get labels() native "return this.labels;"; 2939 _NodeListJs get labels() native "return this.labels;";
2940 2940
2941 String get name() native "return this.name;"; 2941 String get name() native "return this.name;";
2942 2942
2943 void set name(String value) native "this.name = value;"; 2943 void set name(String value) native "this.name = value;";
2944 2944
2945 String get type() native "return this.type;"; 2945 String get type() native "return this.type;";
2946 2946
2947 String get validationMessage() native "return this.validationMessage;"; 2947 String get validationMessage() native "return this.validationMessage;";
2948 2948
2949 ValidityStateJs get validity() native "return this.validity;"; 2949 _ValidityStateJs get validity() native "return this.validity;";
2950 2950
2951 String get value() native "return this.value;"; 2951 String get value() native "return this.value;";
2952 2952
2953 void set value(String value) native "this.value = value;"; 2953 void set value(String value) native "this.value = value;";
2954 2954
2955 bool get willValidate() native "return this.willValidate;"; 2955 bool get willValidate() native "return this.willValidate;";
2956 2956
2957 bool checkValidity() native; 2957 bool checkValidity() native;
2958 2958
2959 void click() native; 2959 void click() native;
2960 2960
2961 void setCustomValidity(String error) native; 2961 void setCustomValidity(String error) native;
2962 } 2962 }
2963 2963
2964 class HTMLCanvasElementJs extends HTMLElementJs implements HTMLCanvasElement nat ive "*HTMLCanvasElement" { 2964 class _HTMLCanvasElementJs extends _HTMLElementJs implements HTMLCanvasElement n ative "*HTMLCanvasElement" {
2965 2965
2966 int get height() native "return this.height;"; 2966 int get height() native "return this.height;";
2967 2967
2968 void set height(int value) native "this.height = value;"; 2968 void set height(int value) native "this.height = value;";
2969 2969
2970 int get width() native "return this.width;"; 2970 int get width() native "return this.width;";
2971 2971
2972 void set width(int value) native "this.width = value;"; 2972 void set width(int value) native "this.width = value;";
2973 2973
2974 Object getContext(String contextId) native; 2974 Object getContext(String contextId) native;
2975 2975
2976 String toDataURL(String type) native; 2976 String toDataURL(String type) native;
2977 } 2977 }
2978 2978
2979 class HTMLCollectionJs extends DOMTypeJs implements HTMLCollection native "*HTML Collection" { 2979 class _HTMLCollectionJs extends _DOMTypeJs implements HTMLCollection native "*HT MLCollection" {
2980 2980
2981 int get length() native "return this.length;"; 2981 int get length() native "return this.length;";
2982 2982
2983 NodeJs operator[](int index) native "return this[index];"; 2983 _NodeJs operator[](int index) native "return this[index];";
2984 2984
2985 void operator[]=(int index, NodeJs value) { 2985 void operator[]=(int index, _NodeJs value) {
2986 throw new UnsupportedOperationException("Cannot assign element of immutable List."); 2986 throw new UnsupportedOperationException("Cannot assign element of immutable List.");
2987 } 2987 }
2988 // -- start List<Node> mixins. 2988 // -- start List<Node> mixins.
2989 // Node is the element type. 2989 // Node is the element type.
2990 2990
2991 // From Iterable<Node>: 2991 // From Iterable<Node>:
2992 2992
2993 Iterator<Node> iterator() { 2993 Iterator<Node> iterator() {
2994 // Note: NodeLists are not fixed size. And most probably length shouldn't 2994 // Note: NodeLists are not fixed size. And most probably length shouldn't
2995 // be cached in both iterator _and_ forEach method. For now caching it 2995 // be cached in both iterator _and_ forEach method. For now caching it
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
3046 throw new UnsupportedOperationException("Cannot removeRange on immutable Lis t."); 3046 throw new UnsupportedOperationException("Cannot removeRange on immutable Lis t.");
3047 } 3047 }
3048 void insertRange(int start, int length, [Node initialValue]) { 3048 void insertRange(int start, int length, [Node initialValue]) {
3049 throw new UnsupportedOperationException("Cannot insertRange on immutable Lis t."); 3049 throw new UnsupportedOperationException("Cannot insertRange on immutable Lis t.");
3050 } 3050 }
3051 List<Node> getRange(int start, int length) => 3051 List<Node> getRange(int start, int length) =>
3052 _Lists.getRange(this, start, length, <Node>[]); 3052 _Lists.getRange(this, start, length, <Node>[]);
3053 3053
3054 // -- end List<Node> mixins. 3054 // -- end List<Node> mixins.
3055 3055
3056 NodeJs item(int index) native; 3056 _NodeJs item(int index) native;
3057 3057
3058 NodeJs namedItem(String name) native; 3058 _NodeJs namedItem(String name) native;
3059 } 3059 }
3060 3060
3061 class HTMLContentElementJs extends HTMLElementJs implements HTMLContentElement n ative "*HTMLContentElement" { 3061 class _HTMLContentElementJs extends _HTMLElementJs implements HTMLContentElement native "*HTMLContentElement" {
3062 3062
3063 String get select() native "return this.select;"; 3063 String get select() native "return this.select;";
3064 3064
3065 void set select(String value) native "this.select = value;"; 3065 void set select(String value) native "this.select = value;";
3066 } 3066 }
3067 3067
3068 class HTMLDListElementJs extends HTMLElementJs implements HTMLDListElement nativ e "*HTMLDListElement" { 3068 class _HTMLDListElementJs extends _HTMLElementJs implements HTMLDListElement nat ive "*HTMLDListElement" {
3069 3069
3070 bool get compact() native "return this.compact;"; 3070 bool get compact() native "return this.compact;";
3071 3071
3072 void set compact(bool value) native "this.compact = value;"; 3072 void set compact(bool value) native "this.compact = value;";
3073 } 3073 }
3074 3074
3075 class HTMLDataListElementJs extends HTMLElementJs implements HTMLDataListElement native "*HTMLDataListElement" { 3075 class _HTMLDataListElementJs extends _HTMLElementJs implements HTMLDataListEleme nt native "*HTMLDataListElement" {
3076 3076
3077 HTMLCollectionJs get options() native "return this.options;"; 3077 _HTMLCollectionJs get options() native "return this.options;";
3078 } 3078 }
3079 3079
3080 class HTMLDetailsElementJs extends HTMLElementJs implements HTMLDetailsElement n ative "*HTMLDetailsElement" { 3080 class _HTMLDetailsElementJs extends _HTMLElementJs implements HTMLDetailsElement native "*HTMLDetailsElement" {
3081 3081
3082 bool get open() native "return this.open;"; 3082 bool get open() native "return this.open;";
3083 3083
3084 void set open(bool value) native "this.open = value;"; 3084 void set open(bool value) native "this.open = value;";
3085 } 3085 }
3086 3086
3087 class HTMLDirectoryElementJs extends HTMLElementJs implements HTMLDirectoryEleme nt native "*HTMLDirectoryElement" { 3087 class _HTMLDirectoryElementJs extends _HTMLElementJs implements HTMLDirectoryEle ment native "*HTMLDirectoryElement" {
3088 3088
3089 bool get compact() native "return this.compact;"; 3089 bool get compact() native "return this.compact;";
3090 3090
3091 void set compact(bool value) native "this.compact = value;"; 3091 void set compact(bool value) native "this.compact = value;";
3092 } 3092 }
3093 3093
3094 class HTMLDivElementJs extends HTMLElementJs implements HTMLDivElement native "* HTMLDivElement" { 3094 class _HTMLDivElementJs extends _HTMLElementJs implements HTMLDivElement native "*HTMLDivElement" {
3095 3095
3096 String get align() native "return this.align;"; 3096 String get align() native "return this.align;";
3097 3097
3098 void set align(String value) native "this.align = value;"; 3098 void set align(String value) native "this.align = value;";
3099 } 3099 }
3100 3100
3101 class HTMLDocumentJs extends DocumentJs implements HTMLDocument native "*HTMLDoc ument" { 3101 class _HTMLDocumentJs extends _DocumentJs implements HTMLDocument native "*HTMLD ocument" {
3102 3102
3103 ElementJs get activeElement() native "return this.activeElement;"; 3103 _ElementJs get activeElement() native "return this.activeElement;";
3104 3104
3105 String get alinkColor() native "return this.alinkColor;"; 3105 String get alinkColor() native "return this.alinkColor;";
3106 3106
3107 void set alinkColor(String value) native "this.alinkColor = value;"; 3107 void set alinkColor(String value) native "this.alinkColor = value;";
3108 3108
3109 HTMLAllCollectionJs get all() native "return this.all;"; 3109 _HTMLAllCollectionJs get all() native "return this.all;";
3110 3110
3111 void set all(HTMLAllCollectionJs value) native "this.all = value;"; 3111 void set all(_HTMLAllCollectionJs value) native "this.all = value;";
3112 3112
3113 String get bgColor() native "return this.bgColor;"; 3113 String get bgColor() native "return this.bgColor;";
3114 3114
3115 void set bgColor(String value) native "this.bgColor = value;"; 3115 void set bgColor(String value) native "this.bgColor = value;";
3116 3116
3117 String get compatMode() native "return this.compatMode;"; 3117 String get compatMode() native "return this.compatMode;";
3118 3118
3119 String get designMode() native "return this.designMode;"; 3119 String get designMode() native "return this.designMode;";
3120 3120
3121 void set designMode(String value) native "this.designMode = value;"; 3121 void set designMode(String value) native "this.designMode = value;";
3122 3122
3123 String get dir() native "return this.dir;"; 3123 String get dir() native "return this.dir;";
3124 3124
3125 void set dir(String value) native "this.dir = value;"; 3125 void set dir(String value) native "this.dir = value;";
3126 3126
3127 HTMLCollectionJs get embeds() native "return this.embeds;"; 3127 _HTMLCollectionJs get embeds() native "return this.embeds;";
3128 3128
3129 String get fgColor() native "return this.fgColor;"; 3129 String get fgColor() native "return this.fgColor;";
3130 3130
3131 void set fgColor(String value) native "this.fgColor = value;"; 3131 void set fgColor(String value) native "this.fgColor = value;";
3132 3132
3133 String get linkColor() native "return this.linkColor;"; 3133 String get linkColor() native "return this.linkColor;";
3134 3134
3135 void set linkColor(String value) native "this.linkColor = value;"; 3135 void set linkColor(String value) native "this.linkColor = value;";
3136 3136
3137 HTMLCollectionJs get plugins() native "return this.plugins;"; 3137 _HTMLCollectionJs get plugins() native "return this.plugins;";
3138 3138
3139 HTMLCollectionJs get scripts() native "return this.scripts;"; 3139 _HTMLCollectionJs get scripts() native "return this.scripts;";
3140 3140
3141 String get vlinkColor() native "return this.vlinkColor;"; 3141 String get vlinkColor() native "return this.vlinkColor;";
3142 3142
3143 void set vlinkColor(String value) native "this.vlinkColor = value;"; 3143 void set vlinkColor(String value) native "this.vlinkColor = value;";
3144 3144
3145 void captureEvents() native; 3145 void captureEvents() native;
3146 3146
3147 void clear() native; 3147 void clear() native;
3148 3148
3149 void close() native; 3149 void close() native;
3150 3150
3151 bool hasFocus() native; 3151 bool hasFocus() native;
3152 3152
3153 void open() native; 3153 void open() native;
3154 3154
3155 void releaseEvents() native; 3155 void releaseEvents() native;
3156 3156
3157 void write(String text) native; 3157 void write(String text) native;
3158 3158
3159 void writeln(String text) native; 3159 void writeln(String text) native;
3160 } 3160 }
3161 3161
3162 class HTMLElementJs extends ElementJs implements HTMLElement native "*HTMLElemen t" { 3162 class _HTMLElementJs extends _ElementJs implements HTMLElement native "*HTMLElem ent" {
3163 3163
3164 String get accessKey() native "return this.accessKey;"; 3164 String get accessKey() native "return this.accessKey;";
3165 3165
3166 void set accessKey(String value) native "this.accessKey = value;"; 3166 void set accessKey(String value) native "this.accessKey = value;";
3167 3167
3168 HTMLCollectionJs get children() native "return this.children;"; 3168 _HTMLCollectionJs get children() native "return this.children;";
3169 3169
3170 DOMTokenListJs get classList() native "return this.classList;"; 3170 _DOMTokenListJs get classList() native "return this.classList;";
3171 3171
3172 String get className() native "return this.className;"; 3172 String get className() native "return this.className;";
3173 3173
3174 void set className(String value) native "this.className = value;"; 3174 void set className(String value) native "this.className = value;";
3175 3175
3176 String get contentEditable() native "return this.contentEditable;"; 3176 String get contentEditable() native "return this.contentEditable;";
3177 3177
3178 void set contentEditable(String value) native "this.contentEditable = value;"; 3178 void set contentEditable(String value) native "this.contentEditable = value;";
3179 3179
3180 String get dir() native "return this.dir;"; 3180 String get dir() native "return this.dir;";
(...skipping 19 matching lines...) Expand all
3200 String get innerText() native "return this.innerText;"; 3200 String get innerText() native "return this.innerText;";
3201 3201
3202 void set innerText(String value) native "this.innerText = value;"; 3202 void set innerText(String value) native "this.innerText = value;";
3203 3203
3204 bool get isContentEditable() native "return this.isContentEditable;"; 3204 bool get isContentEditable() native "return this.isContentEditable;";
3205 3205
3206 String get itemId() native "return this.itemId;"; 3206 String get itemId() native "return this.itemId;";
3207 3207
3208 void set itemId(String value) native "this.itemId = value;"; 3208 void set itemId(String value) native "this.itemId = value;";
3209 3209
3210 DOMSettableTokenListJs get itemProp() native "return this.itemProp;"; 3210 _DOMSettableTokenListJs get itemProp() native "return this.itemProp;";
3211 3211
3212 DOMSettableTokenListJs get itemRef() native "return this.itemRef;"; 3212 _DOMSettableTokenListJs get itemRef() native "return this.itemRef;";
3213 3213
3214 bool get itemScope() native "return this.itemScope;"; 3214 bool get itemScope() native "return this.itemScope;";
3215 3215
3216 void set itemScope(bool value) native "this.itemScope = value;"; 3216 void set itemScope(bool value) native "this.itemScope = value;";
3217 3217
3218 DOMSettableTokenListJs get itemType() native "return this.itemType;"; 3218 _DOMSettableTokenListJs get itemType() native "return this.itemType;";
3219 3219
3220 Object get itemValue() native "return this.itemValue;"; 3220 Object get itemValue() native "return this.itemValue;";
3221 3221
3222 void set itemValue(Object value) native "this.itemValue = value;"; 3222 void set itemValue(Object value) native "this.itemValue = value;";
3223 3223
3224 String get lang() native "return this.lang;"; 3224 String get lang() native "return this.lang;";
3225 3225
3226 void set lang(String value) native "this.lang = value;"; 3226 void set lang(String value) native "this.lang = value;";
3227 3227
3228 String get outerHTML() native "return this.outerHTML;"; 3228 String get outerHTML() native "return this.outerHTML;";
(...skipping 13 matching lines...) Expand all
3242 void set tabIndex(int value) native "this.tabIndex = value;"; 3242 void set tabIndex(int value) native "this.tabIndex = value;";
3243 3243
3244 String get title() native "return this.title;"; 3244 String get title() native "return this.title;";
3245 3245
3246 void set title(String value) native "this.title = value;"; 3246 void set title(String value) native "this.title = value;";
3247 3247
3248 String get webkitdropzone() native "return this.webkitdropzone;"; 3248 String get webkitdropzone() native "return this.webkitdropzone;";
3249 3249
3250 void set webkitdropzone(String value) native "this.webkitdropzone = value;"; 3250 void set webkitdropzone(String value) native "this.webkitdropzone = value;";
3251 3251
3252 ElementJs insertAdjacentElement(String where, ElementJs element) native; 3252 _ElementJs insertAdjacentElement(String where, _ElementJs element) native;
3253 3253
3254 void insertAdjacentHTML(String where, String html) native; 3254 void insertAdjacentHTML(String where, String html) native;
3255 3255
3256 void insertAdjacentText(String where, String text) native; 3256 void insertAdjacentText(String where, String text) native;
3257 } 3257 }
3258 3258
3259 class HTMLEmbedElementJs extends HTMLElementJs implements HTMLEmbedElement nativ e "*HTMLEmbedElement" { 3259 class _HTMLEmbedElementJs extends _HTMLElementJs implements HTMLEmbedElement nat ive "*HTMLEmbedElement" {
3260 3260
3261 String get align() native "return this.align;"; 3261 String get align() native "return this.align;";
3262 3262
3263 void set align(String value) native "this.align = value;"; 3263 void set align(String value) native "this.align = value;";
3264 3264
3265 String get height() native "return this.height;"; 3265 String get height() native "return this.height;";
3266 3266
3267 void set height(String value) native "this.height = value;"; 3267 void set height(String value) native "this.height = value;";
3268 3268
3269 String get name() native "return this.name;"; 3269 String get name() native "return this.name;";
3270 3270
3271 void set name(String value) native "this.name = value;"; 3271 void set name(String value) native "this.name = value;";
3272 3272
3273 String get src() native "return this.src;"; 3273 String get src() native "return this.src;";
3274 3274
3275 void set src(String value) native "this.src = value;"; 3275 void set src(String value) native "this.src = value;";
3276 3276
3277 String get type() native "return this.type;"; 3277 String get type() native "return this.type;";
3278 3278
3279 void set type(String value) native "this.type = value;"; 3279 void set type(String value) native "this.type = value;";
3280 3280
3281 String get width() native "return this.width;"; 3281 String get width() native "return this.width;";
3282 3282
3283 void set width(String value) native "this.width = value;"; 3283 void set width(String value) native "this.width = value;";
3284 3284
3285 SVGDocumentJs getSVGDocument() native; 3285 _SVGDocumentJs getSVGDocument() native;
3286 } 3286 }
3287 3287
3288 class HTMLFieldSetElementJs extends HTMLElementJs implements HTMLFieldSetElement native "*HTMLFieldSetElement" { 3288 class _HTMLFieldSetElementJs extends _HTMLElementJs implements HTMLFieldSetEleme nt native "*HTMLFieldSetElement" {
3289 3289
3290 HTMLFormElementJs get form() native "return this.form;"; 3290 _HTMLFormElementJs get form() native "return this.form;";
3291 3291
3292 String get validationMessage() native "return this.validationMessage;"; 3292 String get validationMessage() native "return this.validationMessage;";
3293 3293
3294 ValidityStateJs get validity() native "return this.validity;"; 3294 _ValidityStateJs get validity() native "return this.validity;";
3295 3295
3296 bool get willValidate() native "return this.willValidate;"; 3296 bool get willValidate() native "return this.willValidate;";
3297 3297
3298 bool checkValidity() native; 3298 bool checkValidity() native;
3299 3299
3300 void setCustomValidity(String error) native; 3300 void setCustomValidity(String error) native;
3301 } 3301 }
3302 3302
3303 class HTMLFontElementJs extends HTMLElementJs implements HTMLFontElement native "*HTMLFontElement" { 3303 class _HTMLFontElementJs extends _HTMLElementJs implements HTMLFontElement nativ e "*HTMLFontElement" {
3304 3304
3305 String get color() native "return this.color;"; 3305 String get color() native "return this.color;";
3306 3306
3307 void set color(String value) native "this.color = value;"; 3307 void set color(String value) native "this.color = value;";
3308 3308
3309 String get face() native "return this.face;"; 3309 String get face() native "return this.face;";
3310 3310
3311 void set face(String value) native "this.face = value;"; 3311 void set face(String value) native "this.face = value;";
3312 3312
3313 String get size() native "return this.size;"; 3313 String get size() native "return this.size;";
3314 3314
3315 void set size(String value) native "this.size = value;"; 3315 void set size(String value) native "this.size = value;";
3316 } 3316 }
3317 3317
3318 class HTMLFormElementJs extends HTMLElementJs implements HTMLFormElement native "*HTMLFormElement" { 3318 class _HTMLFormElementJs extends _HTMLElementJs implements HTMLFormElement nativ e "*HTMLFormElement" {
3319 3319
3320 String get acceptCharset() native "return this.acceptCharset;"; 3320 String get acceptCharset() native "return this.acceptCharset;";
3321 3321
3322 void set acceptCharset(String value) native "this.acceptCharset = value;"; 3322 void set acceptCharset(String value) native "this.acceptCharset = value;";
3323 3323
3324 String get action() native "return this.action;"; 3324 String get action() native "return this.action;";
3325 3325
3326 void set action(String value) native "this.action = value;"; 3326 void set action(String value) native "this.action = value;";
3327 3327
3328 String get autocomplete() native "return this.autocomplete;"; 3328 String get autocomplete() native "return this.autocomplete;";
3329 3329
3330 void set autocomplete(String value) native "this.autocomplete = value;"; 3330 void set autocomplete(String value) native "this.autocomplete = value;";
3331 3331
3332 HTMLCollectionJs get elements() native "return this.elements;"; 3332 _HTMLCollectionJs get elements() native "return this.elements;";
3333 3333
3334 String get encoding() native "return this.encoding;"; 3334 String get encoding() native "return this.encoding;";
3335 3335
3336 void set encoding(String value) native "this.encoding = value;"; 3336 void set encoding(String value) native "this.encoding = value;";
3337 3337
3338 String get enctype() native "return this.enctype;"; 3338 String get enctype() native "return this.enctype;";
3339 3339
3340 void set enctype(String value) native "this.enctype = value;"; 3340 void set enctype(String value) native "this.enctype = value;";
3341 3341
3342 int get length() native "return this.length;"; 3342 int get length() native "return this.length;";
(...skipping 14 matching lines...) Expand all
3357 3357
3358 void set target(String value) native "this.target = value;"; 3358 void set target(String value) native "this.target = value;";
3359 3359
3360 bool checkValidity() native; 3360 bool checkValidity() native;
3361 3361
3362 void reset() native; 3362 void reset() native;
3363 3363
3364 void submit() native; 3364 void submit() native;
3365 } 3365 }
3366 3366
3367 class HTMLFrameElementJs extends HTMLElementJs implements HTMLFrameElement nativ e "*HTMLFrameElement" { 3367 class _HTMLFrameElementJs extends _HTMLElementJs implements HTMLFrameElement nat ive "*HTMLFrameElement" {
3368 3368
3369 DocumentJs get contentDocument() native "return this.contentDocument;"; 3369 _DocumentJs get contentDocument() native "return this.contentDocument;";
3370 3370
3371 DOMWindowJs get contentWindow() native "return this.contentWindow;"; 3371 _DOMWindowJs get contentWindow() native "return this.contentWindow;";
3372 3372
3373 String get frameBorder() native "return this.frameBorder;"; 3373 String get frameBorder() native "return this.frameBorder;";
3374 3374
3375 void set frameBorder(String value) native "this.frameBorder = value;"; 3375 void set frameBorder(String value) native "this.frameBorder = value;";
3376 3376
3377 int get height() native "return this.height;"; 3377 int get height() native "return this.height;";
3378 3378
3379 String get location() native "return this.location;"; 3379 String get location() native "return this.location;";
3380 3380
3381 void set location(String value) native "this.location = value;"; 3381 void set location(String value) native "this.location = value;";
(...skipping 21 matching lines...) Expand all
3403 String get scrolling() native "return this.scrolling;"; 3403 String get scrolling() native "return this.scrolling;";
3404 3404
3405 void set scrolling(String value) native "this.scrolling = value;"; 3405 void set scrolling(String value) native "this.scrolling = value;";
3406 3406
3407 String get src() native "return this.src;"; 3407 String get src() native "return this.src;";
3408 3408
3409 void set src(String value) native "this.src = value;"; 3409 void set src(String value) native "this.src = value;";
3410 3410
3411 int get width() native "return this.width;"; 3411 int get width() native "return this.width;";
3412 3412
3413 SVGDocumentJs getSVGDocument() native; 3413 _SVGDocumentJs getSVGDocument() native;
3414 } 3414 }
3415 3415
3416 class HTMLFrameSetElementJs extends HTMLElementJs implements HTMLFrameSetElement native "*HTMLFrameSetElement" { 3416 class _HTMLFrameSetElementJs extends _HTMLElementJs implements HTMLFrameSetEleme nt native "*HTMLFrameSetElement" {
3417 3417
3418 String get cols() native "return this.cols;"; 3418 String get cols() native "return this.cols;";
3419 3419
3420 void set cols(String value) native "this.cols = value;"; 3420 void set cols(String value) native "this.cols = value;";
3421 3421
3422 String get rows() native "return this.rows;"; 3422 String get rows() native "return this.rows;";
3423 3423
3424 void set rows(String value) native "this.rows = value;"; 3424 void set rows(String value) native "this.rows = value;";
3425 } 3425 }
3426 3426
3427 class HTMLHRElementJs extends HTMLElementJs implements HTMLHRElement native "*HT MLHRElement" { 3427 class _HTMLHRElementJs extends _HTMLElementJs implements HTMLHRElement native "* HTMLHRElement" {
3428 3428
3429 String get align() native "return this.align;"; 3429 String get align() native "return this.align;";
3430 3430
3431 void set align(String value) native "this.align = value;"; 3431 void set align(String value) native "this.align = value;";
3432 3432
3433 bool get noShade() native "return this.noShade;"; 3433 bool get noShade() native "return this.noShade;";
3434 3434
3435 void set noShade(bool value) native "this.noShade = value;"; 3435 void set noShade(bool value) native "this.noShade = value;";
3436 3436
3437 String get size() native "return this.size;"; 3437 String get size() native "return this.size;";
3438 3438
3439 void set size(String value) native "this.size = value;"; 3439 void set size(String value) native "this.size = value;";
3440 3440
3441 String get width() native "return this.width;"; 3441 String get width() native "return this.width;";
3442 3442
3443 void set width(String value) native "this.width = value;"; 3443 void set width(String value) native "this.width = value;";
3444 } 3444 }
3445 3445
3446 class HTMLHeadElementJs extends HTMLElementJs implements HTMLHeadElement native "*HTMLHeadElement" { 3446 class _HTMLHeadElementJs extends _HTMLElementJs implements HTMLHeadElement nativ e "*HTMLHeadElement" {
3447 3447
3448 String get profile() native "return this.profile;"; 3448 String get profile() native "return this.profile;";
3449 3449
3450 void set profile(String value) native "this.profile = value;"; 3450 void set profile(String value) native "this.profile = value;";
3451 } 3451 }
3452 3452
3453 class HTMLHeadingElementJs extends HTMLElementJs implements HTMLHeadingElement n ative "*HTMLHeadingElement" { 3453 class _HTMLHeadingElementJs extends _HTMLElementJs implements HTMLHeadingElement native "*HTMLHeadingElement" {
3454 3454
3455 String get align() native "return this.align;"; 3455 String get align() native "return this.align;";
3456 3456
3457 void set align(String value) native "this.align = value;"; 3457 void set align(String value) native "this.align = value;";
3458 } 3458 }
3459 3459
3460 class HTMLHtmlElementJs extends HTMLElementJs implements HTMLHtmlElement native "*HTMLHtmlElement" { 3460 class _HTMLHtmlElementJs extends _HTMLElementJs implements HTMLHtmlElement nativ e "*HTMLHtmlElement" {
3461 3461
3462 String get manifest() native "return this.manifest;"; 3462 String get manifest() native "return this.manifest;";
3463 3463
3464 void set manifest(String value) native "this.manifest = value;"; 3464 void set manifest(String value) native "this.manifest = value;";
3465 3465
3466 String get version() native "return this.version;"; 3466 String get version() native "return this.version;";
3467 3467
3468 void set version(String value) native "this.version = value;"; 3468 void set version(String value) native "this.version = value;";
3469 } 3469 }
3470 3470
3471 class HTMLIFrameElementJs extends HTMLElementJs implements HTMLIFrameElement nat ive "*HTMLIFrameElement" { 3471 class _HTMLIFrameElementJs extends _HTMLElementJs implements HTMLIFrameElement n ative "*HTMLIFrameElement" {
3472 3472
3473 String get align() native "return this.align;"; 3473 String get align() native "return this.align;";
3474 3474
3475 void set align(String value) native "this.align = value;"; 3475 void set align(String value) native "this.align = value;";
3476 3476
3477 DocumentJs get contentDocument() native "return this.contentDocument;"; 3477 _DocumentJs get contentDocument() native "return this.contentDocument;";
3478 3478
3479 DOMWindowJs get contentWindow() native "return this.contentWindow;"; 3479 _DOMWindowJs get contentWindow() native "return this.contentWindow;";
3480 3480
3481 String get frameBorder() native "return this.frameBorder;"; 3481 String get frameBorder() native "return this.frameBorder;";
3482 3482
3483 void set frameBorder(String value) native "this.frameBorder = value;"; 3483 void set frameBorder(String value) native "this.frameBorder = value;";
3484 3484
3485 String get height() native "return this.height;"; 3485 String get height() native "return this.height;";
3486 3486
3487 void set height(String value) native "this.height = value;"; 3487 void set height(String value) native "this.height = value;";
3488 3488
3489 String get longDesc() native "return this.longDesc;"; 3489 String get longDesc() native "return this.longDesc;";
(...skipping 21 matching lines...) Expand all
3511 void set scrolling(String value) native "this.scrolling = value;"; 3511 void set scrolling(String value) native "this.scrolling = value;";
3512 3512
3513 String get src() native "return this.src;"; 3513 String get src() native "return this.src;";
3514 3514
3515 void set src(String value) native "this.src = value;"; 3515 void set src(String value) native "this.src = value;";
3516 3516
3517 String get width() native "return this.width;"; 3517 String get width() native "return this.width;";
3518 3518
3519 void set width(String value) native "this.width = value;"; 3519 void set width(String value) native "this.width = value;";
3520 3520
3521 SVGDocumentJs getSVGDocument() native; 3521 _SVGDocumentJs getSVGDocument() native;
3522 } 3522 }
3523 3523
3524 class HTMLImageElementJs extends HTMLElementJs implements HTMLImageElement nativ e "*HTMLImageElement" { 3524 class _HTMLImageElementJs extends _HTMLElementJs implements HTMLImageElement nat ive "*HTMLImageElement" {
3525 3525
3526 String get align() native "return this.align;"; 3526 String get align() native "return this.align;";
3527 3527
3528 void set align(String value) native "this.align = value;"; 3528 void set align(String value) native "this.align = value;";
3529 3529
3530 String get alt() native "return this.alt;"; 3530 String get alt() native "return this.alt;";
3531 3531
3532 void set alt(String value) native "this.alt = value;"; 3532 void set alt(String value) native "this.alt = value;";
3533 3533
3534 String get border() native "return this.border;"; 3534 String get border() native "return this.border;";
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
3583 3583
3584 int get width() native "return this.width;"; 3584 int get width() native "return this.width;";
3585 3585
3586 void set width(int value) native "this.width = value;"; 3586 void set width(int value) native "this.width = value;";
3587 3587
3588 int get x() native "return this.x;"; 3588 int get x() native "return this.x;";
3589 3589
3590 int get y() native "return this.y;"; 3590 int get y() native "return this.y;";
3591 } 3591 }
3592 3592
3593 class HTMLInputElementJs extends HTMLElementJs implements HTMLInputElement nativ e "*HTMLInputElement" { 3593 class _HTMLInputElementJs extends _HTMLElementJs implements HTMLInputElement nat ive "*HTMLInputElement" {
3594 3594
3595 String get accept() native "return this.accept;"; 3595 String get accept() native "return this.accept;";
3596 3596
3597 void set accept(String value) native "this.accept = value;"; 3597 void set accept(String value) native "this.accept = value;";
3598 3598
3599 String get align() native "return this.align;"; 3599 String get align() native "return this.align;";
3600 3600
3601 void set align(String value) native "this.align = value;"; 3601 void set align(String value) native "this.align = value;";
3602 3602
3603 String get alt() native "return this.alt;"; 3603 String get alt() native "return this.alt;";
(...skipping 21 matching lines...) Expand all
3625 void set defaultValue(String value) native "this.defaultValue = value;"; 3625 void set defaultValue(String value) native "this.defaultValue = value;";
3626 3626
3627 String get dirName() native "return this.dirName;"; 3627 String get dirName() native "return this.dirName;";
3628 3628
3629 void set dirName(String value) native "this.dirName = value;"; 3629 void set dirName(String value) native "this.dirName = value;";
3630 3630
3631 bool get disabled() native "return this.disabled;"; 3631 bool get disabled() native "return this.disabled;";
3632 3632
3633 void set disabled(bool value) native "this.disabled = value;"; 3633 void set disabled(bool value) native "this.disabled = value;";
3634 3634
3635 FileListJs get files() native "return this.files;"; 3635 _FileListJs get files() native "return this.files;";
3636 3636
3637 HTMLFormElementJs get form() native "return this.form;"; 3637 _HTMLFormElementJs get form() native "return this.form;";
3638 3638
3639 String get formAction() native "return this.formAction;"; 3639 String get formAction() native "return this.formAction;";
3640 3640
3641 void set formAction(String value) native "this.formAction = value;"; 3641 void set formAction(String value) native "this.formAction = value;";
3642 3642
3643 String get formEnctype() native "return this.formEnctype;"; 3643 String get formEnctype() native "return this.formEnctype;";
3644 3644
3645 void set formEnctype(String value) native "this.formEnctype = value;"; 3645 void set formEnctype(String value) native "this.formEnctype = value;";
3646 3646
3647 String get formMethod() native "return this.formMethod;"; 3647 String get formMethod() native "return this.formMethod;";
3648 3648
3649 void set formMethod(String value) native "this.formMethod = value;"; 3649 void set formMethod(String value) native "this.formMethod = value;";
3650 3650
3651 bool get formNoValidate() native "return this.formNoValidate;"; 3651 bool get formNoValidate() native "return this.formNoValidate;";
3652 3652
3653 void set formNoValidate(bool value) native "this.formNoValidate = value;"; 3653 void set formNoValidate(bool value) native "this.formNoValidate = value;";
3654 3654
3655 String get formTarget() native "return this.formTarget;"; 3655 String get formTarget() native "return this.formTarget;";
3656 3656
3657 void set formTarget(String value) native "this.formTarget = value;"; 3657 void set formTarget(String value) native "this.formTarget = value;";
3658 3658
3659 bool get incremental() native "return this.incremental;"; 3659 bool get incremental() native "return this.incremental;";
3660 3660
3661 void set incremental(bool value) native "this.incremental = value;"; 3661 void set incremental(bool value) native "this.incremental = value;";
3662 3662
3663 bool get indeterminate() native "return this.indeterminate;"; 3663 bool get indeterminate() native "return this.indeterminate;";
3664 3664
3665 void set indeterminate(bool value) native "this.indeterminate = value;"; 3665 void set indeterminate(bool value) native "this.indeterminate = value;";
3666 3666
3667 NodeListJs get labels() native "return this.labels;"; 3667 _NodeListJs get labels() native "return this.labels;";
3668 3668
3669 HTMLElementJs get list() native "return this.list;"; 3669 _HTMLElementJs get list() native "return this.list;";
3670 3670
3671 String get max() native "return this.max;"; 3671 String get max() native "return this.max;";
3672 3672
3673 void set max(String value) native "this.max = value;"; 3673 void set max(String value) native "this.max = value;";
3674 3674
3675 int get maxLength() native "return this.maxLength;"; 3675 int get maxLength() native "return this.maxLength;";
3676 3676
3677 void set maxLength(int value) native "this.maxLength = value;"; 3677 void set maxLength(int value) native "this.maxLength = value;";
3678 3678
3679 String get min() native "return this.min;"; 3679 String get min() native "return this.min;";
(...skipping 17 matching lines...) Expand all
3697 void set placeholder(String value) native "this.placeholder = value;"; 3697 void set placeholder(String value) native "this.placeholder = value;";
3698 3698
3699 bool get readOnly() native "return this.readOnly;"; 3699 bool get readOnly() native "return this.readOnly;";
3700 3700
3701 void set readOnly(bool value) native "this.readOnly = value;"; 3701 void set readOnly(bool value) native "this.readOnly = value;";
3702 3702
3703 bool get required() native "return this.required;"; 3703 bool get required() native "return this.required;";
3704 3704
3705 void set required(bool value) native "this.required = value;"; 3705 void set required(bool value) native "this.required = value;";
3706 3706
3707 HTMLOptionElementJs get selectedOption() native "return this.selectedOption;"; 3707 _HTMLOptionElementJs get selectedOption() native "return this.selectedOption;" ;
3708 3708
3709 String get selectionDirection() native "return this.selectionDirection;"; 3709 String get selectionDirection() native "return this.selectionDirection;";
3710 3710
3711 void set selectionDirection(String value) native "this.selectionDirection = va lue;"; 3711 void set selectionDirection(String value) native "this.selectionDirection = va lue;";
3712 3712
3713 int get selectionEnd() native "return this.selectionEnd;"; 3713 int get selectionEnd() native "return this.selectionEnd;";
3714 3714
3715 void set selectionEnd(int value) native "this.selectionEnd = value;"; 3715 void set selectionEnd(int value) native "this.selectionEnd = value;";
3716 3716
3717 int get selectionStart() native "return this.selectionStart;"; 3717 int get selectionStart() native "return this.selectionStart;";
(...skipping 15 matching lines...) Expand all
3733 String get type() native "return this.type;"; 3733 String get type() native "return this.type;";
3734 3734
3735 void set type(String value) native "this.type = value;"; 3735 void set type(String value) native "this.type = value;";
3736 3736
3737 String get useMap() native "return this.useMap;"; 3737 String get useMap() native "return this.useMap;";
3738 3738
3739 void set useMap(String value) native "this.useMap = value;"; 3739 void set useMap(String value) native "this.useMap = value;";
3740 3740
3741 String get validationMessage() native "return this.validationMessage;"; 3741 String get validationMessage() native "return this.validationMessage;";
3742 3742
3743 ValidityStateJs get validity() native "return this.validity;"; 3743 _ValidityStateJs get validity() native "return this.validity;";
3744 3744
3745 String get value() native "return this.value;"; 3745 String get value() native "return this.value;";
3746 3746
3747 void set value(String value) native "this.value = value;"; 3747 void set value(String value) native "this.value = value;";
3748 3748
3749 Date get valueAsDate() native "return this.valueAsDate;"; 3749 Date get valueAsDate() native "return this.valueAsDate;";
3750 3750
3751 void set valueAsDate(Date value) native "this.valueAsDate = value;"; 3751 void set valueAsDate(Date value) native "this.valueAsDate = value;";
3752 3752
3753 num get valueAsNumber() native "return this.valueAsNumber;"; 3753 num get valueAsNumber() native "return this.valueAsNumber;";
(...skipping 22 matching lines...) Expand all
3776 3776
3777 void setCustomValidity(String error) native; 3777 void setCustomValidity(String error) native;
3778 3778
3779 void setSelectionRange(int start, int end, [String direction = null]) native; 3779 void setSelectionRange(int start, int end, [String direction = null]) native;
3780 3780
3781 void stepDown([int n = null]) native; 3781 void stepDown([int n = null]) native;
3782 3782
3783 void stepUp([int n = null]) native; 3783 void stepUp([int n = null]) native;
3784 } 3784 }
3785 3785
3786 class HTMLIsIndexElementJs extends HTMLInputElementJs implements HTMLIsIndexElem ent native "*HTMLIsIndexElement" { 3786 class _HTMLIsIndexElementJs extends _HTMLInputElementJs implements HTMLIsIndexEl ement native "*HTMLIsIndexElement" {
3787 3787
3788 HTMLFormElementJs get form() native "return this.form;"; 3788 _HTMLFormElementJs get form() native "return this.form;";
3789 3789
3790 String get prompt() native "return this.prompt;"; 3790 String get prompt() native "return this.prompt;";
3791 3791
3792 void set prompt(String value) native "this.prompt = value;"; 3792 void set prompt(String value) native "this.prompt = value;";
3793 } 3793 }
3794 3794
3795 class HTMLKeygenElementJs extends HTMLElementJs implements HTMLKeygenElement nat ive "*HTMLKeygenElement" { 3795 class _HTMLKeygenElementJs extends _HTMLElementJs implements HTMLKeygenElement n ative "*HTMLKeygenElement" {
3796 3796
3797 bool get autofocus() native "return this.autofocus;"; 3797 bool get autofocus() native "return this.autofocus;";
3798 3798
3799 void set autofocus(bool value) native "this.autofocus = value;"; 3799 void set autofocus(bool value) native "this.autofocus = value;";
3800 3800
3801 String get challenge() native "return this.challenge;"; 3801 String get challenge() native "return this.challenge;";
3802 3802
3803 void set challenge(String value) native "this.challenge = value;"; 3803 void set challenge(String value) native "this.challenge = value;";
3804 3804
3805 bool get disabled() native "return this.disabled;"; 3805 bool get disabled() native "return this.disabled;";
3806 3806
3807 void set disabled(bool value) native "this.disabled = value;"; 3807 void set disabled(bool value) native "this.disabled = value;";
3808 3808
3809 HTMLFormElementJs get form() native "return this.form;"; 3809 _HTMLFormElementJs get form() native "return this.form;";
3810 3810
3811 String get keytype() native "return this.keytype;"; 3811 String get keytype() native "return this.keytype;";
3812 3812
3813 void set keytype(String value) native "this.keytype = value;"; 3813 void set keytype(String value) native "this.keytype = value;";
3814 3814
3815 NodeListJs get labels() native "return this.labels;"; 3815 _NodeListJs get labels() native "return this.labels;";
3816 3816
3817 String get name() native "return this.name;"; 3817 String get name() native "return this.name;";
3818 3818
3819 void set name(String value) native "this.name = value;"; 3819 void set name(String value) native "this.name = value;";
3820 3820
3821 String get type() native "return this.type;"; 3821 String get type() native "return this.type;";
3822 3822
3823 String get validationMessage() native "return this.validationMessage;"; 3823 String get validationMessage() native "return this.validationMessage;";
3824 3824
3825 ValidityStateJs get validity() native "return this.validity;"; 3825 _ValidityStateJs get validity() native "return this.validity;";
3826 3826
3827 bool get willValidate() native "return this.willValidate;"; 3827 bool get willValidate() native "return this.willValidate;";
3828 3828
3829 bool checkValidity() native; 3829 bool checkValidity() native;
3830 3830
3831 void setCustomValidity(String error) native; 3831 void setCustomValidity(String error) native;
3832 } 3832 }
3833 3833
3834 class HTMLLIElementJs extends HTMLElementJs implements HTMLLIElement native "*HT MLLIElement" { 3834 class _HTMLLIElementJs extends _HTMLElementJs implements HTMLLIElement native "* HTMLLIElement" {
3835 3835
3836 String get type() native "return this.type;"; 3836 String get type() native "return this.type;";
3837 3837
3838 void set type(String value) native "this.type = value;"; 3838 void set type(String value) native "this.type = value;";
3839 3839
3840 int get value() native "return this.value;"; 3840 int get value() native "return this.value;";
3841 3841
3842 void set value(int value) native "this.value = value;"; 3842 void set value(int value) native "this.value = value;";
3843 } 3843 }
3844 3844
3845 class HTMLLabelElementJs extends HTMLElementJs implements HTMLLabelElement nativ e "*HTMLLabelElement" { 3845 class _HTMLLabelElementJs extends _HTMLElementJs implements HTMLLabelElement nat ive "*HTMLLabelElement" {
3846 3846
3847 HTMLElementJs get control() native "return this.control;"; 3847 _HTMLElementJs get control() native "return this.control;";
3848 3848
3849 HTMLFormElementJs get form() native "return this.form;"; 3849 _HTMLFormElementJs get form() native "return this.form;";
3850 3850
3851 String get htmlFor() native "return this.htmlFor;"; 3851 String get htmlFor() native "return this.htmlFor;";
3852 3852
3853 void set htmlFor(String value) native "this.htmlFor = value;"; 3853 void set htmlFor(String value) native "this.htmlFor = value;";
3854 } 3854 }
3855 3855
3856 class HTMLLegendElementJs extends HTMLElementJs implements HTMLLegendElement nat ive "*HTMLLegendElement" { 3856 class _HTMLLegendElementJs extends _HTMLElementJs implements HTMLLegendElement n ative "*HTMLLegendElement" {
3857 3857
3858 String get align() native "return this.align;"; 3858 String get align() native "return this.align;";
3859 3859
3860 void set align(String value) native "this.align = value;"; 3860 void set align(String value) native "this.align = value;";
3861 3861
3862 HTMLFormElementJs get form() native "return this.form;"; 3862 _HTMLFormElementJs get form() native "return this.form;";
3863 } 3863 }
3864 3864
3865 class HTMLLinkElementJs extends HTMLElementJs implements HTMLLinkElement native "*HTMLLinkElement" { 3865 class _HTMLLinkElementJs extends _HTMLElementJs implements HTMLLinkElement nativ e "*HTMLLinkElement" {
3866 3866
3867 String get charset() native "return this.charset;"; 3867 String get charset() native "return this.charset;";
3868 3868
3869 void set charset(String value) native "this.charset = value;"; 3869 void set charset(String value) native "this.charset = value;";
3870 3870
3871 bool get disabled() native "return this.disabled;"; 3871 bool get disabled() native "return this.disabled;";
3872 3872
3873 void set disabled(bool value) native "this.disabled = value;"; 3873 void set disabled(bool value) native "this.disabled = value;";
3874 3874
3875 String get href() native "return this.href;"; 3875 String get href() native "return this.href;";
3876 3876
3877 void set href(String value) native "this.href = value;"; 3877 void set href(String value) native "this.href = value;";
3878 3878
3879 String get hreflang() native "return this.hreflang;"; 3879 String get hreflang() native "return this.hreflang;";
3880 3880
3881 void set hreflang(String value) native "this.hreflang = value;"; 3881 void set hreflang(String value) native "this.hreflang = value;";
3882 3882
3883 String get media() native "return this.media;"; 3883 String get media() native "return this.media;";
3884 3884
3885 void set media(String value) native "this.media = value;"; 3885 void set media(String value) native "this.media = value;";
3886 3886
3887 String get rel() native "return this.rel;"; 3887 String get rel() native "return this.rel;";
3888 3888
3889 void set rel(String value) native "this.rel = value;"; 3889 void set rel(String value) native "this.rel = value;";
3890 3890
3891 String get rev() native "return this.rev;"; 3891 String get rev() native "return this.rev;";
3892 3892
3893 void set rev(String value) native "this.rev = value;"; 3893 void set rev(String value) native "this.rev = value;";
3894 3894
3895 StyleSheetJs get sheet() native "return this.sheet;"; 3895 _StyleSheetJs get sheet() native "return this.sheet;";
3896 3896
3897 DOMSettableTokenListJs get sizes() native "return this.sizes;"; 3897 _DOMSettableTokenListJs get sizes() native "return this.sizes;";
3898 3898
3899 void set sizes(DOMSettableTokenListJs value) native "this.sizes = value;"; 3899 void set sizes(_DOMSettableTokenListJs value) native "this.sizes = value;";
3900 3900
3901 String get target() native "return this.target;"; 3901 String get target() native "return this.target;";
3902 3902
3903 void set target(String value) native "this.target = value;"; 3903 void set target(String value) native "this.target = value;";
3904 3904
3905 String get type() native "return this.type;"; 3905 String get type() native "return this.type;";
3906 3906
3907 void set type(String value) native "this.type = value;"; 3907 void set type(String value) native "this.type = value;";
3908 } 3908 }
3909 3909
3910 class HTMLMapElementJs extends HTMLElementJs implements HTMLMapElement native "* HTMLMapElement" { 3910 class _HTMLMapElementJs extends _HTMLElementJs implements HTMLMapElement native "*HTMLMapElement" {
3911 3911
3912 HTMLCollectionJs get areas() native "return this.areas;"; 3912 _HTMLCollectionJs get areas() native "return this.areas;";
3913 3913
3914 String get name() native "return this.name;"; 3914 String get name() native "return this.name;";
3915 3915
3916 void set name(String value) native "this.name = value;"; 3916 void set name(String value) native "this.name = value;";
3917 } 3917 }
3918 3918
3919 class HTMLMarqueeElementJs extends HTMLElementJs implements HTMLMarqueeElement n ative "*HTMLMarqueeElement" { 3919 class _HTMLMarqueeElementJs extends _HTMLElementJs implements HTMLMarqueeElement native "*HTMLMarqueeElement" {
3920 3920
3921 String get behavior() native "return this.behavior;"; 3921 String get behavior() native "return this.behavior;";
3922 3922
3923 void set behavior(String value) native "this.behavior = value;"; 3923 void set behavior(String value) native "this.behavior = value;";
3924 3924
3925 String get bgColor() native "return this.bgColor;"; 3925 String get bgColor() native "return this.bgColor;";
3926 3926
3927 void set bgColor(String value) native "this.bgColor = value;"; 3927 void set bgColor(String value) native "this.bgColor = value;";
3928 3928
3929 String get direction() native "return this.direction;"; 3929 String get direction() native "return this.direction;";
(...skipping 30 matching lines...) Expand all
3960 3960
3961 String get width() native "return this.width;"; 3961 String get width() native "return this.width;";
3962 3962
3963 void set width(String value) native "this.width = value;"; 3963 void set width(String value) native "this.width = value;";
3964 3964
3965 void start() native; 3965 void start() native;
3966 3966
3967 void stop() native; 3967 void stop() native;
3968 } 3968 }
3969 3969
3970 class HTMLMediaElementJs extends HTMLElementJs implements HTMLMediaElement nativ e "*HTMLMediaElement" { 3970 class _HTMLMediaElementJs extends _HTMLElementJs implements HTMLMediaElement nat ive "*HTMLMediaElement" {
3971 3971
3972 static final int EOS_DECODE_ERR = 2; 3972 static final int EOS_DECODE_ERR = 2;
3973 3973
3974 static final int EOS_NETWORK_ERR = 1; 3974 static final int EOS_NETWORK_ERR = 1;
3975 3975
3976 static final int EOS_NO_ERROR = 0; 3976 static final int EOS_NO_ERROR = 0;
3977 3977
3978 static final int HAVE_CURRENT_DATA = 2; 3978 static final int HAVE_CURRENT_DATA = 2;
3979 3979
3980 static final int HAVE_ENOUGH_DATA = 4; 3980 static final int HAVE_ENOUGH_DATA = 4;
(...skipping 15 matching lines...) Expand all
3996 static final int SOURCE_CLOSED = 0; 3996 static final int SOURCE_CLOSED = 0;
3997 3997
3998 static final int SOURCE_ENDED = 2; 3998 static final int SOURCE_ENDED = 2;
3999 3999
4000 static final int SOURCE_OPEN = 1; 4000 static final int SOURCE_OPEN = 1;
4001 4001
4002 bool get autoplay() native "return this.autoplay;"; 4002 bool get autoplay() native "return this.autoplay;";
4003 4003
4004 void set autoplay(bool value) native "this.autoplay = value;"; 4004 void set autoplay(bool value) native "this.autoplay = value;";
4005 4005
4006 TimeRangesJs get buffered() native "return this.buffered;"; 4006 _TimeRangesJs get buffered() native "return this.buffered;";
4007 4007
4008 MediaControllerJs get controller() native "return this.controller;"; 4008 _MediaControllerJs get controller() native "return this.controller;";
4009 4009
4010 void set controller(MediaControllerJs value) native "this.controller = value;" ; 4010 void set controller(_MediaControllerJs value) native "this.controller = value; ";
4011 4011
4012 bool get controls() native "return this.controls;"; 4012 bool get controls() native "return this.controls;";
4013 4013
4014 void set controls(bool value) native "this.controls = value;"; 4014 void set controls(bool value) native "this.controls = value;";
4015 4015
4016 String get currentSrc() native "return this.currentSrc;"; 4016 String get currentSrc() native "return this.currentSrc;";
4017 4017
4018 num get currentTime() native "return this.currentTime;"; 4018 num get currentTime() native "return this.currentTime;";
4019 4019
4020 void set currentTime(num value) native "this.currentTime = value;"; 4020 void set currentTime(num value) native "this.currentTime = value;";
4021 4021
4022 bool get defaultMuted() native "return this.defaultMuted;"; 4022 bool get defaultMuted() native "return this.defaultMuted;";
4023 4023
4024 void set defaultMuted(bool value) native "this.defaultMuted = value;"; 4024 void set defaultMuted(bool value) native "this.defaultMuted = value;";
4025 4025
4026 num get defaultPlaybackRate() native "return this.defaultPlaybackRate;"; 4026 num get defaultPlaybackRate() native "return this.defaultPlaybackRate;";
4027 4027
4028 void set defaultPlaybackRate(num value) native "this.defaultPlaybackRate = val ue;"; 4028 void set defaultPlaybackRate(num value) native "this.defaultPlaybackRate = val ue;";
4029 4029
4030 num get duration() native "return this.duration;"; 4030 num get duration() native "return this.duration;";
4031 4031
4032 bool get ended() native "return this.ended;"; 4032 bool get ended() native "return this.ended;";
4033 4033
4034 MediaErrorJs get error() native "return this.error;"; 4034 _MediaErrorJs get error() native "return this.error;";
4035 4035
4036 num get initialTime() native "return this.initialTime;"; 4036 num get initialTime() native "return this.initialTime;";
4037 4037
4038 bool get loop() native "return this.loop;"; 4038 bool get loop() native "return this.loop;";
4039 4039
4040 void set loop(bool value) native "this.loop = value;"; 4040 void set loop(bool value) native "this.loop = value;";
4041 4041
4042 String get mediaGroup() native "return this.mediaGroup;"; 4042 String get mediaGroup() native "return this.mediaGroup;";
4043 4043
4044 void set mediaGroup(String value) native "this.mediaGroup = value;"; 4044 void set mediaGroup(String value) native "this.mediaGroup = value;";
4045 4045
4046 bool get muted() native "return this.muted;"; 4046 bool get muted() native "return this.muted;";
4047 4047
4048 void set muted(bool value) native "this.muted = value;"; 4048 void set muted(bool value) native "this.muted = value;";
4049 4049
4050 int get networkState() native "return this.networkState;"; 4050 int get networkState() native "return this.networkState;";
4051 4051
4052 bool get paused() native "return this.paused;"; 4052 bool get paused() native "return this.paused;";
4053 4053
4054 num get playbackRate() native "return this.playbackRate;"; 4054 num get playbackRate() native "return this.playbackRate;";
4055 4055
4056 void set playbackRate(num value) native "this.playbackRate = value;"; 4056 void set playbackRate(num value) native "this.playbackRate = value;";
4057 4057
4058 TimeRangesJs get played() native "return this.played;"; 4058 _TimeRangesJs get played() native "return this.played;";
4059 4059
4060 String get preload() native "return this.preload;"; 4060 String get preload() native "return this.preload;";
4061 4061
4062 void set preload(String value) native "this.preload = value;"; 4062 void set preload(String value) native "this.preload = value;";
4063 4063
4064 int get readyState() native "return this.readyState;"; 4064 int get readyState() native "return this.readyState;";
4065 4065
4066 TimeRangesJs get seekable() native "return this.seekable;"; 4066 _TimeRangesJs get seekable() native "return this.seekable;";
4067 4067
4068 bool get seeking() native "return this.seeking;"; 4068 bool get seeking() native "return this.seeking;";
4069 4069
4070 String get src() native "return this.src;"; 4070 String get src() native "return this.src;";
4071 4071
4072 void set src(String value) native "this.src = value;"; 4072 void set src(String value) native "this.src = value;";
4073 4073
4074 num get startTime() native "return this.startTime;"; 4074 num get startTime() native "return this.startTime;";
4075 4075
4076 TextTrackListJs get textTracks() native "return this.textTracks;"; 4076 _TextTrackListJs get textTracks() native "return this.textTracks;";
4077 4077
4078 num get volume() native "return this.volume;"; 4078 num get volume() native "return this.volume;";
4079 4079
4080 void set volume(num value) native "this.volume = value;"; 4080 void set volume(num value) native "this.volume = value;";
4081 4081
4082 int get webkitAudioDecodedByteCount() native "return this.webkitAudioDecodedBy teCount;"; 4082 int get webkitAudioDecodedByteCount() native "return this.webkitAudioDecodedBy teCount;";
4083 4083
4084 bool get webkitClosedCaptionsVisible() native "return this.webkitClosedCaption sVisible;"; 4084 bool get webkitClosedCaptionsVisible() native "return this.webkitClosedCaption sVisible;";
4085 4085
4086 void set webkitClosedCaptionsVisible(bool value) native "this.webkitClosedCapt ionsVisible = value;"; 4086 void set webkitClosedCaptionsVisible(bool value) native "this.webkitClosedCapt ionsVisible = value;";
4087 4087
4088 bool get webkitHasClosedCaptions() native "return this.webkitHasClosedCaptions ;"; 4088 bool get webkitHasClosedCaptions() native "return this.webkitHasClosedCaptions ;";
4089 4089
4090 String get webkitMediaSourceURL() native "return this.webkitMediaSourceURL;"; 4090 String get webkitMediaSourceURL() native "return this.webkitMediaSourceURL;";
4091 4091
4092 bool get webkitPreservesPitch() native "return this.webkitPreservesPitch;"; 4092 bool get webkitPreservesPitch() native "return this.webkitPreservesPitch;";
4093 4093
4094 void set webkitPreservesPitch(bool value) native "this.webkitPreservesPitch = value;"; 4094 void set webkitPreservesPitch(bool value) native "this.webkitPreservesPitch = value;";
4095 4095
4096 int get webkitSourceState() native "return this.webkitSourceState;"; 4096 int get webkitSourceState() native "return this.webkitSourceState;";
4097 4097
4098 int get webkitVideoDecodedByteCount() native "return this.webkitVideoDecodedBy teCount;"; 4098 int get webkitVideoDecodedByteCount() native "return this.webkitVideoDecodedBy teCount;";
4099 4099
4100 TextTrackJs addTrack(String kind, [String label = null, String language = null ]) native; 4100 _TextTrackJs addTrack(String kind, [String label = null, String language = nul l]) native;
4101 4101
4102 String canPlayType(String type) native; 4102 String canPlayType(String type) native;
4103 4103
4104 void load() native; 4104 void load() native;
4105 4105
4106 void pause() native; 4106 void pause() native;
4107 4107
4108 void play() native; 4108 void play() native;
4109 4109
4110 void webkitSourceAppend(Uint8ArrayJs data) native; 4110 void webkitSourceAppend(_Uint8ArrayJs data) native;
4111 4111
4112 void webkitSourceEndOfStream(int status) native; 4112 void webkitSourceEndOfStream(int status) native;
4113 } 4113 }
4114 4114
4115 class HTMLMenuElementJs extends HTMLElementJs implements HTMLMenuElement native "*HTMLMenuElement" { 4115 class _HTMLMenuElementJs extends _HTMLElementJs implements HTMLMenuElement nativ e "*HTMLMenuElement" {
4116 4116
4117 bool get compact() native "return this.compact;"; 4117 bool get compact() native "return this.compact;";
4118 4118
4119 void set compact(bool value) native "this.compact = value;"; 4119 void set compact(bool value) native "this.compact = value;";
4120 } 4120 }
4121 4121
4122 class HTMLMetaElementJs extends HTMLElementJs implements HTMLMetaElement native "*HTMLMetaElement" { 4122 class _HTMLMetaElementJs extends _HTMLElementJs implements HTMLMetaElement nativ e "*HTMLMetaElement" {
4123 4123
4124 String get content() native "return this.content;"; 4124 String get content() native "return this.content;";
4125 4125
4126 void set content(String value) native "this.content = value;"; 4126 void set content(String value) native "this.content = value;";
4127 4127
4128 String get httpEquiv() native "return this.httpEquiv;"; 4128 String get httpEquiv() native "return this.httpEquiv;";
4129 4129
4130 void set httpEquiv(String value) native "this.httpEquiv = value;"; 4130 void set httpEquiv(String value) native "this.httpEquiv = value;";
4131 4131
4132 String get name() native "return this.name;"; 4132 String get name() native "return this.name;";
4133 4133
4134 void set name(String value) native "this.name = value;"; 4134 void set name(String value) native "this.name = value;";
4135 4135
4136 String get scheme() native "return this.scheme;"; 4136 String get scheme() native "return this.scheme;";
4137 4137
4138 void set scheme(String value) native "this.scheme = value;"; 4138 void set scheme(String value) native "this.scheme = value;";
4139 } 4139 }
4140 4140
4141 class HTMLMeterElementJs extends HTMLElementJs implements HTMLMeterElement nativ e "*HTMLMeterElement" { 4141 class _HTMLMeterElementJs extends _HTMLElementJs implements HTMLMeterElement nat ive "*HTMLMeterElement" {
4142 4142
4143 HTMLFormElementJs get form() native "return this.form;"; 4143 _HTMLFormElementJs get form() native "return this.form;";
4144 4144
4145 num get high() native "return this.high;"; 4145 num get high() native "return this.high;";
4146 4146
4147 void set high(num value) native "this.high = value;"; 4147 void set high(num value) native "this.high = value;";
4148 4148
4149 NodeListJs get labels() native "return this.labels;"; 4149 _NodeListJs get labels() native "return this.labels;";
4150 4150
4151 num get low() native "return this.low;"; 4151 num get low() native "return this.low;";
4152 4152
4153 void set low(num value) native "this.low = value;"; 4153 void set low(num value) native "this.low = value;";
4154 4154
4155 num get max() native "return this.max;"; 4155 num get max() native "return this.max;";
4156 4156
4157 void set max(num value) native "this.max = value;"; 4157 void set max(num value) native "this.max = value;";
4158 4158
4159 num get min() native "return this.min;"; 4159 num get min() native "return this.min;";
4160 4160
4161 void set min(num value) native "this.min = value;"; 4161 void set min(num value) native "this.min = value;";
4162 4162
4163 num get optimum() native "return this.optimum;"; 4163 num get optimum() native "return this.optimum;";
4164 4164
4165 void set optimum(num value) native "this.optimum = value;"; 4165 void set optimum(num value) native "this.optimum = value;";
4166 4166
4167 num get value() native "return this.value;"; 4167 num get value() native "return this.value;";
4168 4168
4169 void set value(num value) native "this.value = value;"; 4169 void set value(num value) native "this.value = value;";
4170 } 4170 }
4171 4171
4172 class HTMLModElementJs extends HTMLElementJs implements HTMLModElement native "* HTMLModElement" { 4172 class _HTMLModElementJs extends _HTMLElementJs implements HTMLModElement native "*HTMLModElement" {
4173 4173
4174 String get cite() native "return this.cite;"; 4174 String get cite() native "return this.cite;";
4175 4175
4176 void set cite(String value) native "this.cite = value;"; 4176 void set cite(String value) native "this.cite = value;";
4177 4177
4178 String get dateTime() native "return this.dateTime;"; 4178 String get dateTime() native "return this.dateTime;";
4179 4179
4180 void set dateTime(String value) native "this.dateTime = value;"; 4180 void set dateTime(String value) native "this.dateTime = value;";
4181 } 4181 }
4182 4182
4183 class HTMLOListElementJs extends HTMLElementJs implements HTMLOListElement nativ e "*HTMLOListElement" { 4183 class _HTMLOListElementJs extends _HTMLElementJs implements HTMLOListElement nat ive "*HTMLOListElement" {
4184 4184
4185 bool get compact() native "return this.compact;"; 4185 bool get compact() native "return this.compact;";
4186 4186
4187 void set compact(bool value) native "this.compact = value;"; 4187 void set compact(bool value) native "this.compact = value;";
4188 4188
4189 bool get reversed() native "return this.reversed;"; 4189 bool get reversed() native "return this.reversed;";
4190 4190
4191 void set reversed(bool value) native "this.reversed = value;"; 4191 void set reversed(bool value) native "this.reversed = value;";
4192 4192
4193 int get start() native "return this.start;"; 4193 int get start() native "return this.start;";
4194 4194
4195 void set start(int value) native "this.start = value;"; 4195 void set start(int value) native "this.start = value;";
4196 4196
4197 String get type() native "return this.type;"; 4197 String get type() native "return this.type;";
4198 4198
4199 void set type(String value) native "this.type = value;"; 4199 void set type(String value) native "this.type = value;";
4200 } 4200 }
4201 4201
4202 class HTMLObjectElementJs extends HTMLElementJs implements HTMLObjectElement nat ive "*HTMLObjectElement" { 4202 class _HTMLObjectElementJs extends _HTMLElementJs implements HTMLObjectElement n ative "*HTMLObjectElement" {
4203 4203
4204 String get align() native "return this.align;"; 4204 String get align() native "return this.align;";
4205 4205
4206 void set align(String value) native "this.align = value;"; 4206 void set align(String value) native "this.align = value;";
4207 4207
4208 String get archive() native "return this.archive;"; 4208 String get archive() native "return this.archive;";
4209 4209
4210 void set archive(String value) native "this.archive = value;"; 4210 void set archive(String value) native "this.archive = value;";
4211 4211
4212 String get border() native "return this.border;"; 4212 String get border() native "return this.border;";
4213 4213
4214 void set border(String value) native "this.border = value;"; 4214 void set border(String value) native "this.border = value;";
4215 4215
4216 String get code() native "return this.code;"; 4216 String get code() native "return this.code;";
4217 4217
4218 void set code(String value) native "this.code = value;"; 4218 void set code(String value) native "this.code = value;";
4219 4219
4220 String get codeBase() native "return this.codeBase;"; 4220 String get codeBase() native "return this.codeBase;";
4221 4221
4222 void set codeBase(String value) native "this.codeBase = value;"; 4222 void set codeBase(String value) native "this.codeBase = value;";
4223 4223
4224 String get codeType() native "return this.codeType;"; 4224 String get codeType() native "return this.codeType;";
4225 4225
4226 void set codeType(String value) native "this.codeType = value;"; 4226 void set codeType(String value) native "this.codeType = value;";
4227 4227
4228 DocumentJs get contentDocument() native "return this.contentDocument;"; 4228 _DocumentJs get contentDocument() native "return this.contentDocument;";
4229 4229
4230 String get data() native "return this.data;"; 4230 String get data() native "return this.data;";
4231 4231
4232 void set data(String value) native "this.data = value;"; 4232 void set data(String value) native "this.data = value;";
4233 4233
4234 bool get declare() native "return this.declare;"; 4234 bool get declare() native "return this.declare;";
4235 4235
4236 void set declare(bool value) native "this.declare = value;"; 4236 void set declare(bool value) native "this.declare = value;";
4237 4237
4238 HTMLFormElementJs get form() native "return this.form;"; 4238 _HTMLFormElementJs get form() native "return this.form;";
4239 4239
4240 String get height() native "return this.height;"; 4240 String get height() native "return this.height;";
4241 4241
4242 void set height(String value) native "this.height = value;"; 4242 void set height(String value) native "this.height = value;";
4243 4243
4244 int get hspace() native "return this.hspace;"; 4244 int get hspace() native "return this.hspace;";
4245 4245
4246 void set hspace(int value) native "this.hspace = value;"; 4246 void set hspace(int value) native "this.hspace = value;";
4247 4247
4248 String get name() native "return this.name;"; 4248 String get name() native "return this.name;";
4249 4249
4250 void set name(String value) native "this.name = value;"; 4250 void set name(String value) native "this.name = value;";
4251 4251
4252 String get standby() native "return this.standby;"; 4252 String get standby() native "return this.standby;";
4253 4253
4254 void set standby(String value) native "this.standby = value;"; 4254 void set standby(String value) native "this.standby = value;";
4255 4255
4256 String get type() native "return this.type;"; 4256 String get type() native "return this.type;";
4257 4257
4258 void set type(String value) native "this.type = value;"; 4258 void set type(String value) native "this.type = value;";
4259 4259
4260 String get useMap() native "return this.useMap;"; 4260 String get useMap() native "return this.useMap;";
4261 4261
4262 void set useMap(String value) native "this.useMap = value;"; 4262 void set useMap(String value) native "this.useMap = value;";
4263 4263
4264 String get validationMessage() native "return this.validationMessage;"; 4264 String get validationMessage() native "return this.validationMessage;";
4265 4265
4266 ValidityStateJs get validity() native "return this.validity;"; 4266 _ValidityStateJs get validity() native "return this.validity;";
4267 4267
4268 int get vspace() native "return this.vspace;"; 4268 int get vspace() native "return this.vspace;";
4269 4269
4270 void set vspace(int value) native "this.vspace = value;"; 4270 void set vspace(int value) native "this.vspace = value;";
4271 4271
4272 String get width() native "return this.width;"; 4272 String get width() native "return this.width;";
4273 4273
4274 void set width(String value) native "this.width = value;"; 4274 void set width(String value) native "this.width = value;";
4275 4275
4276 bool get willValidate() native "return this.willValidate;"; 4276 bool get willValidate() native "return this.willValidate;";
4277 4277
4278 bool checkValidity() native; 4278 bool checkValidity() native;
4279 4279
4280 SVGDocumentJs getSVGDocument() native; 4280 _SVGDocumentJs getSVGDocument() native;
4281 4281
4282 void setCustomValidity(String error) native; 4282 void setCustomValidity(String error) native;
4283 } 4283 }
4284 4284
4285 class HTMLOptGroupElementJs extends HTMLElementJs implements HTMLOptGroupElement native "*HTMLOptGroupElement" { 4285 class _HTMLOptGroupElementJs extends _HTMLElementJs implements HTMLOptGroupEleme nt native "*HTMLOptGroupElement" {
4286 4286
4287 bool get disabled() native "return this.disabled;"; 4287 bool get disabled() native "return this.disabled;";
4288 4288
4289 void set disabled(bool value) native "this.disabled = value;"; 4289 void set disabled(bool value) native "this.disabled = value;";
4290 4290
4291 String get label() native "return this.label;"; 4291 String get label() native "return this.label;";
4292 4292
4293 void set label(String value) native "this.label = value;"; 4293 void set label(String value) native "this.label = value;";
4294 } 4294 }
4295 4295
4296 class HTMLOptionElementJs extends HTMLElementJs implements HTMLOptionElement nat ive "*HTMLOptionElement" { 4296 class _HTMLOptionElementJs extends _HTMLElementJs implements HTMLOptionElement n ative "*HTMLOptionElement" {
4297 4297
4298 bool get defaultSelected() native "return this.defaultSelected;"; 4298 bool get defaultSelected() native "return this.defaultSelected;";
4299 4299
4300 void set defaultSelected(bool value) native "this.defaultSelected = value;"; 4300 void set defaultSelected(bool value) native "this.defaultSelected = value;";
4301 4301
4302 bool get disabled() native "return this.disabled;"; 4302 bool get disabled() native "return this.disabled;";
4303 4303
4304 void set disabled(bool value) native "this.disabled = value;"; 4304 void set disabled(bool value) native "this.disabled = value;";
4305 4305
4306 HTMLFormElementJs get form() native "return this.form;"; 4306 _HTMLFormElementJs get form() native "return this.form;";
4307 4307
4308 int get index() native "return this.index;"; 4308 int get index() native "return this.index;";
4309 4309
4310 String get label() native "return this.label;"; 4310 String get label() native "return this.label;";
4311 4311
4312 void set label(String value) native "this.label = value;"; 4312 void set label(String value) native "this.label = value;";
4313 4313
4314 bool get selected() native "return this.selected;"; 4314 bool get selected() native "return this.selected;";
4315 4315
4316 void set selected(bool value) native "this.selected = value;"; 4316 void set selected(bool value) native "this.selected = value;";
4317 4317
4318 String get text() native "return this.text;"; 4318 String get text() native "return this.text;";
4319 4319
4320 void set text(String value) native "this.text = value;"; 4320 void set text(String value) native "this.text = value;";
4321 4321
4322 String get value() native "return this.value;"; 4322 String get value() native "return this.value;";
4323 4323
4324 void set value(String value) native "this.value = value;"; 4324 void set value(String value) native "this.value = value;";
4325 } 4325 }
4326 4326
4327 class HTMLOptionsCollectionJs extends HTMLCollectionJs implements HTMLOptionsCol lection native "*HTMLOptionsCollection" { 4327 class _HTMLOptionsCollectionJs extends _HTMLCollectionJs implements HTMLOptionsC ollection native "*HTMLOptionsCollection" {
4328 4328
4329 int get length() native "return this.length;"; 4329 int get length() native "return this.length;";
4330 4330
4331 void set length(int value) native "this.length = value;"; 4331 void set length(int value) native "this.length = value;";
4332 4332
4333 int get selectedIndex() native "return this.selectedIndex;"; 4333 int get selectedIndex() native "return this.selectedIndex;";
4334 4334
4335 void set selectedIndex(int value) native "this.selectedIndex = value;"; 4335 void set selectedIndex(int value) native "this.selectedIndex = value;";
4336 4336
4337 void remove(int index) native; 4337 void remove(int index) native;
4338 } 4338 }
4339 4339
4340 class HTMLOutputElementJs extends HTMLElementJs implements HTMLOutputElement nat ive "*HTMLOutputElement" { 4340 class _HTMLOutputElementJs extends _HTMLElementJs implements HTMLOutputElement n ative "*HTMLOutputElement" {
4341 4341
4342 String get defaultValue() native "return this.defaultValue;"; 4342 String get defaultValue() native "return this.defaultValue;";
4343 4343
4344 void set defaultValue(String value) native "this.defaultValue = value;"; 4344 void set defaultValue(String value) native "this.defaultValue = value;";
4345 4345
4346 HTMLFormElementJs get form() native "return this.form;"; 4346 _HTMLFormElementJs get form() native "return this.form;";
4347 4347
4348 DOMSettableTokenListJs get htmlFor() native "return this.htmlFor;"; 4348 _DOMSettableTokenListJs get htmlFor() native "return this.htmlFor;";
4349 4349
4350 void set htmlFor(DOMSettableTokenListJs value) native "this.htmlFor = value;"; 4350 void set htmlFor(_DOMSettableTokenListJs value) native "this.htmlFor = value;" ;
4351 4351
4352 NodeListJs get labels() native "return this.labels;"; 4352 _NodeListJs get labels() native "return this.labels;";
4353 4353
4354 String get name() native "return this.name;"; 4354 String get name() native "return this.name;";
4355 4355
4356 void set name(String value) native "this.name = value;"; 4356 void set name(String value) native "this.name = value;";
4357 4357
4358 String get type() native "return this.type;"; 4358 String get type() native "return this.type;";
4359 4359
4360 String get validationMessage() native "return this.validationMessage;"; 4360 String get validationMessage() native "return this.validationMessage;";
4361 4361
4362 ValidityStateJs get validity() native "return this.validity;"; 4362 _ValidityStateJs get validity() native "return this.validity;";
4363 4363
4364 String get value() native "return this.value;"; 4364 String get value() native "return this.value;";
4365 4365
4366 void set value(String value) native "this.value = value;"; 4366 void set value(String value) native "this.value = value;";
4367 4367
4368 bool get willValidate() native "return this.willValidate;"; 4368 bool get willValidate() native "return this.willValidate;";
4369 4369
4370 bool checkValidity() native; 4370 bool checkValidity() native;
4371 4371
4372 void setCustomValidity(String error) native; 4372 void setCustomValidity(String error) native;
4373 } 4373 }
4374 4374
4375 class HTMLParagraphElementJs extends HTMLElementJs implements HTMLParagraphEleme nt native "*HTMLParagraphElement" { 4375 class _HTMLParagraphElementJs extends _HTMLElementJs implements HTMLParagraphEle ment native "*HTMLParagraphElement" {
4376 4376
4377 String get align() native "return this.align;"; 4377 String get align() native "return this.align;";
4378 4378
4379 void set align(String value) native "this.align = value;"; 4379 void set align(String value) native "this.align = value;";
4380 } 4380 }
4381 4381
4382 class HTMLParamElementJs extends HTMLElementJs implements HTMLParamElement nativ e "*HTMLParamElement" { 4382 class _HTMLParamElementJs extends _HTMLElementJs implements HTMLParamElement nat ive "*HTMLParamElement" {
4383 4383
4384 String get name() native "return this.name;"; 4384 String get name() native "return this.name;";
4385 4385
4386 void set name(String value) native "this.name = value;"; 4386 void set name(String value) native "this.name = value;";
4387 4387
4388 String get type() native "return this.type;"; 4388 String get type() native "return this.type;";
4389 4389
4390 void set type(String value) native "this.type = value;"; 4390 void set type(String value) native "this.type = value;";
4391 4391
4392 String get value() native "return this.value;"; 4392 String get value() native "return this.value;";
4393 4393
4394 void set value(String value) native "this.value = value;"; 4394 void set value(String value) native "this.value = value;";
4395 4395
4396 String get valueType() native "return this.valueType;"; 4396 String get valueType() native "return this.valueType;";
4397 4397
4398 void set valueType(String value) native "this.valueType = value;"; 4398 void set valueType(String value) native "this.valueType = value;";
4399 } 4399 }
4400 4400
4401 class HTMLPreElementJs extends HTMLElementJs implements HTMLPreElement native "* HTMLPreElement" { 4401 class _HTMLPreElementJs extends _HTMLElementJs implements HTMLPreElement native "*HTMLPreElement" {
4402 4402
4403 int get width() native "return this.width;"; 4403 int get width() native "return this.width;";
4404 4404
4405 void set width(int value) native "this.width = value;"; 4405 void set width(int value) native "this.width = value;";
4406 4406
4407 bool get wrap() native "return this.wrap;"; 4407 bool get wrap() native "return this.wrap;";
4408 4408
4409 void set wrap(bool value) native "this.wrap = value;"; 4409 void set wrap(bool value) native "this.wrap = value;";
4410 } 4410 }
4411 4411
4412 class HTMLProgressElementJs extends HTMLElementJs implements HTMLProgressElement native "*HTMLProgressElement" { 4412 class _HTMLProgressElementJs extends _HTMLElementJs implements HTMLProgressEleme nt native "*HTMLProgressElement" {
4413 4413
4414 HTMLFormElementJs get form() native "return this.form;"; 4414 _HTMLFormElementJs get form() native "return this.form;";
4415 4415
4416 NodeListJs get labels() native "return this.labels;"; 4416 _NodeListJs get labels() native "return this.labels;";
4417 4417
4418 num get max() native "return this.max;"; 4418 num get max() native "return this.max;";
4419 4419
4420 void set max(num value) native "this.max = value;"; 4420 void set max(num value) native "this.max = value;";
4421 4421
4422 num get position() native "return this.position;"; 4422 num get position() native "return this.position;";
4423 4423
4424 num get value() native "return this.value;"; 4424 num get value() native "return this.value;";
4425 4425
4426 void set value(num value) native "this.value = value;"; 4426 void set value(num value) native "this.value = value;";
4427 } 4427 }
4428 4428
4429 class HTMLPropertiesCollectionJs extends HTMLCollectionJs implements HTMLPropert iesCollection native "*HTMLPropertiesCollection" { 4429 class _HTMLPropertiesCollectionJs extends _HTMLCollectionJs implements HTMLPrope rtiesCollection native "*HTMLPropertiesCollection" {
4430 4430
4431 int get length() native "return this.length;"; 4431 int get length() native "return this.length;";
4432 4432
4433 NodeJs item(int index) native; 4433 _NodeJs item(int index) native;
4434 } 4434 }
4435 4435
4436 class HTMLQuoteElementJs extends HTMLElementJs implements HTMLQuoteElement nativ e "*HTMLQuoteElement" { 4436 class _HTMLQuoteElementJs extends _HTMLElementJs implements HTMLQuoteElement nat ive "*HTMLQuoteElement" {
4437 4437
4438 String get cite() native "return this.cite;"; 4438 String get cite() native "return this.cite;";
4439 4439
4440 void set cite(String value) native "this.cite = value;"; 4440 void set cite(String value) native "this.cite = value;";
4441 } 4441 }
4442 4442
4443 class HTMLScriptElementJs extends HTMLElementJs implements HTMLScriptElement nat ive "*HTMLScriptElement" { 4443 class _HTMLScriptElementJs extends _HTMLElementJs implements HTMLScriptElement n ative "*HTMLScriptElement" {
4444 4444
4445 bool get async() native "return this.async;"; 4445 bool get async() native "return this.async;";
4446 4446
4447 void set async(bool value) native "this.async = value;"; 4447 void set async(bool value) native "this.async = value;";
4448 4448
4449 String get charset() native "return this.charset;"; 4449 String get charset() native "return this.charset;";
4450 4450
4451 void set charset(String value) native "this.charset = value;"; 4451 void set charset(String value) native "this.charset = value;";
4452 4452
4453 bool get defer() native "return this.defer;"; 4453 bool get defer() native "return this.defer;";
(...skipping 14 matching lines...) Expand all
4468 4468
4469 String get text() native "return this.text;"; 4469 String get text() native "return this.text;";
4470 4470
4471 void set text(String value) native "this.text = value;"; 4471 void set text(String value) native "this.text = value;";
4472 4472
4473 String get type() native "return this.type;"; 4473 String get type() native "return this.type;";
4474 4474
4475 void set type(String value) native "this.type = value;"; 4475 void set type(String value) native "this.type = value;";
4476 } 4476 }
4477 4477
4478 class HTMLSelectElementJs extends HTMLElementJs implements HTMLSelectElement nat ive "*HTMLSelectElement" { 4478 class _HTMLSelectElementJs extends _HTMLElementJs implements HTMLSelectElement n ative "*HTMLSelectElement" {
4479 4479
4480 bool get autofocus() native "return this.autofocus;"; 4480 bool get autofocus() native "return this.autofocus;";
4481 4481
4482 void set autofocus(bool value) native "this.autofocus = value;"; 4482 void set autofocus(bool value) native "this.autofocus = value;";
4483 4483
4484 bool get disabled() native "return this.disabled;"; 4484 bool get disabled() native "return this.disabled;";
4485 4485
4486 void set disabled(bool value) native "this.disabled = value;"; 4486 void set disabled(bool value) native "this.disabled = value;";
4487 4487
4488 HTMLFormElementJs get form() native "return this.form;"; 4488 _HTMLFormElementJs get form() native "return this.form;";
4489 4489
4490 NodeListJs get labels() native "return this.labels;"; 4490 _NodeListJs get labels() native "return this.labels;";
4491 4491
4492 int get length() native "return this.length;"; 4492 int get length() native "return this.length;";
4493 4493
4494 void set length(int value) native "this.length = value;"; 4494 void set length(int value) native "this.length = value;";
4495 4495
4496 bool get multiple() native "return this.multiple;"; 4496 bool get multiple() native "return this.multiple;";
4497 4497
4498 void set multiple(bool value) native "this.multiple = value;"; 4498 void set multiple(bool value) native "this.multiple = value;";
4499 4499
4500 String get name() native "return this.name;"; 4500 String get name() native "return this.name;";
4501 4501
4502 void set name(String value) native "this.name = value;"; 4502 void set name(String value) native "this.name = value;";
4503 4503
4504 HTMLOptionsCollectionJs get options() native "return this.options;"; 4504 _HTMLOptionsCollectionJs get options() native "return this.options;";
4505 4505
4506 bool get required() native "return this.required;"; 4506 bool get required() native "return this.required;";
4507 4507
4508 void set required(bool value) native "this.required = value;"; 4508 void set required(bool value) native "this.required = value;";
4509 4509
4510 int get selectedIndex() native "return this.selectedIndex;"; 4510 int get selectedIndex() native "return this.selectedIndex;";
4511 4511
4512 void set selectedIndex(int value) native "this.selectedIndex = value;"; 4512 void set selectedIndex(int value) native "this.selectedIndex = value;";
4513 4513
4514 int get size() native "return this.size;"; 4514 int get size() native "return this.size;";
4515 4515
4516 void set size(int value) native "this.size = value;"; 4516 void set size(int value) native "this.size = value;";
4517 4517
4518 String get type() native "return this.type;"; 4518 String get type() native "return this.type;";
4519 4519
4520 String get validationMessage() native "return this.validationMessage;"; 4520 String get validationMessage() native "return this.validationMessage;";
4521 4521
4522 ValidityStateJs get validity() native "return this.validity;"; 4522 _ValidityStateJs get validity() native "return this.validity;";
4523 4523
4524 String get value() native "return this.value;"; 4524 String get value() native "return this.value;";
4525 4525
4526 void set value(String value) native "this.value = value;"; 4526 void set value(String value) native "this.value = value;";
4527 4527
4528 bool get willValidate() native "return this.willValidate;"; 4528 bool get willValidate() native "return this.willValidate;";
4529 4529
4530 void add(HTMLElementJs element, HTMLElementJs before) native; 4530 void add(_HTMLElementJs element, _HTMLElementJs before) native;
4531 4531
4532 bool checkValidity() native; 4532 bool checkValidity() native;
4533 4533
4534 NodeJs item(int index) native; 4534 _NodeJs item(int index) native;
4535 4535
4536 NodeJs namedItem(String name) native; 4536 _NodeJs namedItem(String name) native;
4537 4537
4538 void remove(var index_OR_option) native; 4538 void remove(var index_OR_option) native;
4539 4539
4540 void setCustomValidity(String error) native; 4540 void setCustomValidity(String error) native;
4541 } 4541 }
4542 4542
4543 class HTMLSourceElementJs extends HTMLElementJs implements HTMLSourceElement nat ive "*HTMLSourceElement" { 4543 class _HTMLSourceElementJs extends _HTMLElementJs implements HTMLSourceElement n ative "*HTMLSourceElement" {
4544 4544
4545 String get media() native "return this.media;"; 4545 String get media() native "return this.media;";
4546 4546
4547 void set media(String value) native "this.media = value;"; 4547 void set media(String value) native "this.media = value;";
4548 4548
4549 String get src() native "return this.src;"; 4549 String get src() native "return this.src;";
4550 4550
4551 void set src(String value) native "this.src = value;"; 4551 void set src(String value) native "this.src = value;";
4552 4552
4553 String get type() native "return this.type;"; 4553 String get type() native "return this.type;";
4554 4554
4555 void set type(String value) native "this.type = value;"; 4555 void set type(String value) native "this.type = value;";
4556 } 4556 }
4557 4557
4558 class HTMLSpanElementJs extends HTMLElementJs implements HTMLSpanElement native "*HTMLSpanElement" { 4558 class _HTMLSpanElementJs extends _HTMLElementJs implements HTMLSpanElement nativ e "*HTMLSpanElement" {
4559 } 4559 }
4560 4560
4561 class HTMLStyleElementJs extends HTMLElementJs implements HTMLStyleElement nativ e "*HTMLStyleElement" { 4561 class _HTMLStyleElementJs extends _HTMLElementJs implements HTMLStyleElement nat ive "*HTMLStyleElement" {
4562 4562
4563 bool get disabled() native "return this.disabled;"; 4563 bool get disabled() native "return this.disabled;";
4564 4564
4565 void set disabled(bool value) native "this.disabled = value;"; 4565 void set disabled(bool value) native "this.disabled = value;";
4566 4566
4567 String get media() native "return this.media;"; 4567 String get media() native "return this.media;";
4568 4568
4569 void set media(String value) native "this.media = value;"; 4569 void set media(String value) native "this.media = value;";
4570 4570
4571 bool get scoped() native "return this.scoped;"; 4571 bool get scoped() native "return this.scoped;";
4572 4572
4573 void set scoped(bool value) native "this.scoped = value;"; 4573 void set scoped(bool value) native "this.scoped = value;";
4574 4574
4575 StyleSheetJs get sheet() native "return this.sheet;"; 4575 _StyleSheetJs get sheet() native "return this.sheet;";
4576 4576
4577 String get type() native "return this.type;"; 4577 String get type() native "return this.type;";
4578 4578
4579 void set type(String value) native "this.type = value;"; 4579 void set type(String value) native "this.type = value;";
4580 } 4580 }
4581 4581
4582 class HTMLTableCaptionElementJs extends HTMLElementJs implements HTMLTableCaptio nElement native "*HTMLTableCaptionElement" { 4582 class _HTMLTableCaptionElementJs extends _HTMLElementJs implements HTMLTableCapt ionElement native "*HTMLTableCaptionElement" {
4583 4583
4584 String get align() native "return this.align;"; 4584 String get align() native "return this.align;";
4585 4585
4586 void set align(String value) native "this.align = value;"; 4586 void set align(String value) native "this.align = value;";
4587 } 4587 }
4588 4588
4589 class HTMLTableCellElementJs extends HTMLElementJs implements HTMLTableCellEleme nt native "*HTMLTableCellElement" { 4589 class _HTMLTableCellElementJs extends _HTMLElementJs implements HTMLTableCellEle ment native "*HTMLTableCellElement" {
4590 4590
4591 String get abbr() native "return this.abbr;"; 4591 String get abbr() native "return this.abbr;";
4592 4592
4593 void set abbr(String value) native "this.abbr = value;"; 4593 void set abbr(String value) native "this.abbr = value;";
4594 4594
4595 String get align() native "return this.align;"; 4595 String get align() native "return this.align;";
4596 4596
4597 void set align(String value) native "this.align = value;"; 4597 void set align(String value) native "this.align = value;";
4598 4598
4599 String get axis() native "return this.axis;"; 4599 String get axis() native "return this.axis;";
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
4640 4640
4641 String get vAlign() native "return this.vAlign;"; 4641 String get vAlign() native "return this.vAlign;";
4642 4642
4643 void set vAlign(String value) native "this.vAlign = value;"; 4643 void set vAlign(String value) native "this.vAlign = value;";
4644 4644
4645 String get width() native "return this.width;"; 4645 String get width() native "return this.width;";
4646 4646
4647 void set width(String value) native "this.width = value;"; 4647 void set width(String value) native "this.width = value;";
4648 } 4648 }
4649 4649
4650 class HTMLTableColElementJs extends HTMLElementJs implements HTMLTableColElement native "*HTMLTableColElement" { 4650 class _HTMLTableColElementJs extends _HTMLElementJs implements HTMLTableColEleme nt native "*HTMLTableColElement" {
4651 4651
4652 String get align() native "return this.align;"; 4652 String get align() native "return this.align;";
4653 4653
4654 void set align(String value) native "this.align = value;"; 4654 void set align(String value) native "this.align = value;";
4655 4655
4656 String get ch() native "return this.ch;"; 4656 String get ch() native "return this.ch;";
4657 4657
4658 void set ch(String value) native "this.ch = value;"; 4658 void set ch(String value) native "this.ch = value;";
4659 4659
4660 String get chOff() native "return this.chOff;"; 4660 String get chOff() native "return this.chOff;";
4661 4661
4662 void set chOff(String value) native "this.chOff = value;"; 4662 void set chOff(String value) native "this.chOff = value;";
4663 4663
4664 int get span() native "return this.span;"; 4664 int get span() native "return this.span;";
4665 4665
4666 void set span(int value) native "this.span = value;"; 4666 void set span(int value) native "this.span = value;";
4667 4667
4668 String get vAlign() native "return this.vAlign;"; 4668 String get vAlign() native "return this.vAlign;";
4669 4669
4670 void set vAlign(String value) native "this.vAlign = value;"; 4670 void set vAlign(String value) native "this.vAlign = value;";
4671 4671
4672 String get width() native "return this.width;"; 4672 String get width() native "return this.width;";
4673 4673
4674 void set width(String value) native "this.width = value;"; 4674 void set width(String value) native "this.width = value;";
4675 } 4675 }
4676 4676
4677 class HTMLTableElementJs extends HTMLElementJs implements HTMLTableElement nativ e "*HTMLTableElement" { 4677 class _HTMLTableElementJs extends _HTMLElementJs implements HTMLTableElement nat ive "*HTMLTableElement" {
4678 4678
4679 String get align() native "return this.align;"; 4679 String get align() native "return this.align;";
4680 4680
4681 void set align(String value) native "this.align = value;"; 4681 void set align(String value) native "this.align = value;";
4682 4682
4683 String get bgColor() native "return this.bgColor;"; 4683 String get bgColor() native "return this.bgColor;";
4684 4684
4685 void set bgColor(String value) native "this.bgColor = value;"; 4685 void set bgColor(String value) native "this.bgColor = value;";
4686 4686
4687 String get border() native "return this.border;"; 4687 String get border() native "return this.border;";
4688 4688
4689 void set border(String value) native "this.border = value;"; 4689 void set border(String value) native "this.border = value;";
4690 4690
4691 HTMLTableCaptionElementJs get caption() native "return this.caption;"; 4691 _HTMLTableCaptionElementJs get caption() native "return this.caption;";
4692 4692
4693 void set caption(HTMLTableCaptionElementJs value) native "this.caption = value ;"; 4693 void set caption(_HTMLTableCaptionElementJs value) native "this.caption = valu e;";
4694 4694
4695 String get cellPadding() native "return this.cellPadding;"; 4695 String get cellPadding() native "return this.cellPadding;";
4696 4696
4697 void set cellPadding(String value) native "this.cellPadding = value;"; 4697 void set cellPadding(String value) native "this.cellPadding = value;";
4698 4698
4699 String get cellSpacing() native "return this.cellSpacing;"; 4699 String get cellSpacing() native "return this.cellSpacing;";
4700 4700
4701 void set cellSpacing(String value) native "this.cellSpacing = value;"; 4701 void set cellSpacing(String value) native "this.cellSpacing = value;";
4702 4702
4703 String get frame() native "return this.frame;"; 4703 String get frame() native "return this.frame;";
4704 4704
4705 void set frame(String value) native "this.frame = value;"; 4705 void set frame(String value) native "this.frame = value;";
4706 4706
4707 HTMLCollectionJs get rows() native "return this.rows;"; 4707 _HTMLCollectionJs get rows() native "return this.rows;";
4708 4708
4709 String get rules() native "return this.rules;"; 4709 String get rules() native "return this.rules;";
4710 4710
4711 void set rules(String value) native "this.rules = value;"; 4711 void set rules(String value) native "this.rules = value;";
4712 4712
4713 String get summary() native "return this.summary;"; 4713 String get summary() native "return this.summary;";
4714 4714
4715 void set summary(String value) native "this.summary = value;"; 4715 void set summary(String value) native "this.summary = value;";
4716 4716
4717 HTMLCollectionJs get tBodies() native "return this.tBodies;"; 4717 _HTMLCollectionJs get tBodies() native "return this.tBodies;";
4718 4718
4719 HTMLTableSectionElementJs get tFoot() native "return this.tFoot;"; 4719 _HTMLTableSectionElementJs get tFoot() native "return this.tFoot;";
4720 4720
4721 void set tFoot(HTMLTableSectionElementJs value) native "this.tFoot = value;"; 4721 void set tFoot(_HTMLTableSectionElementJs value) native "this.tFoot = value;";
4722 4722
4723 HTMLTableSectionElementJs get tHead() native "return this.tHead;"; 4723 _HTMLTableSectionElementJs get tHead() native "return this.tHead;";
4724 4724
4725 void set tHead(HTMLTableSectionElementJs value) native "this.tHead = value;"; 4725 void set tHead(_HTMLTableSectionElementJs value) native "this.tHead = value;";
4726 4726
4727 String get width() native "return this.width;"; 4727 String get width() native "return this.width;";
4728 4728
4729 void set width(String value) native "this.width = value;"; 4729 void set width(String value) native "this.width = value;";
4730 4730
4731 HTMLElementJs createCaption() native; 4731 _HTMLElementJs createCaption() native;
4732 4732
4733 HTMLElementJs createTFoot() native; 4733 _HTMLElementJs createTFoot() native;
4734 4734
4735 HTMLElementJs createTHead() native; 4735 _HTMLElementJs createTHead() native;
4736 4736
4737 void deleteCaption() native; 4737 void deleteCaption() native;
4738 4738
4739 void deleteRow(int index) native; 4739 void deleteRow(int index) native;
4740 4740
4741 void deleteTFoot() native; 4741 void deleteTFoot() native;
4742 4742
4743 void deleteTHead() native; 4743 void deleteTHead() native;
4744 4744
4745 HTMLElementJs insertRow(int index) native; 4745 _HTMLElementJs insertRow(int index) native;
4746 } 4746 }
4747 4747
4748 class HTMLTableRowElementJs extends HTMLElementJs implements HTMLTableRowElement native "*HTMLTableRowElement" { 4748 class _HTMLTableRowElementJs extends _HTMLElementJs implements HTMLTableRowEleme nt native "*HTMLTableRowElement" {
4749 4749
4750 String get align() native "return this.align;"; 4750 String get align() native "return this.align;";
4751 4751
4752 void set align(String value) native "this.align = value;"; 4752 void set align(String value) native "this.align = value;";
4753 4753
4754 String get bgColor() native "return this.bgColor;"; 4754 String get bgColor() native "return this.bgColor;";
4755 4755
4756 void set bgColor(String value) native "this.bgColor = value;"; 4756 void set bgColor(String value) native "this.bgColor = value;";
4757 4757
4758 HTMLCollectionJs get cells() native "return this.cells;"; 4758 _HTMLCollectionJs get cells() native "return this.cells;";
4759 4759
4760 String get ch() native "return this.ch;"; 4760 String get ch() native "return this.ch;";
4761 4761
4762 void set ch(String value) native "this.ch = value;"; 4762 void set ch(String value) native "this.ch = value;";
4763 4763
4764 String get chOff() native "return this.chOff;"; 4764 String get chOff() native "return this.chOff;";
4765 4765
4766 void set chOff(String value) native "this.chOff = value;"; 4766 void set chOff(String value) native "this.chOff = value;";
4767 4767
4768 int get rowIndex() native "return this.rowIndex;"; 4768 int get rowIndex() native "return this.rowIndex;";
4769 4769
4770 int get sectionRowIndex() native "return this.sectionRowIndex;"; 4770 int get sectionRowIndex() native "return this.sectionRowIndex;";
4771 4771
4772 String get vAlign() native "return this.vAlign;"; 4772 String get vAlign() native "return this.vAlign;";
4773 4773
4774 void set vAlign(String value) native "this.vAlign = value;"; 4774 void set vAlign(String value) native "this.vAlign = value;";
4775 4775
4776 void deleteCell(int index) native; 4776 void deleteCell(int index) native;
4777 4777
4778 HTMLElementJs insertCell(int index) native; 4778 _HTMLElementJs insertCell(int index) native;
4779 } 4779 }
4780 4780
4781 class HTMLTableSectionElementJs extends HTMLElementJs implements HTMLTableSectio nElement native "*HTMLTableSectionElement" { 4781 class _HTMLTableSectionElementJs extends _HTMLElementJs implements HTMLTableSect ionElement native "*HTMLTableSectionElement" {
4782 4782
4783 String get align() native "return this.align;"; 4783 String get align() native "return this.align;";
4784 4784
4785 void set align(String value) native "this.align = value;"; 4785 void set align(String value) native "this.align = value;";
4786 4786
4787 String get ch() native "return this.ch;"; 4787 String get ch() native "return this.ch;";
4788 4788
4789 void set ch(String value) native "this.ch = value;"; 4789 void set ch(String value) native "this.ch = value;";
4790 4790
4791 String get chOff() native "return this.chOff;"; 4791 String get chOff() native "return this.chOff;";
4792 4792
4793 void set chOff(String value) native "this.chOff = value;"; 4793 void set chOff(String value) native "this.chOff = value;";
4794 4794
4795 HTMLCollectionJs get rows() native "return this.rows;"; 4795 _HTMLCollectionJs get rows() native "return this.rows;";
4796 4796
4797 String get vAlign() native "return this.vAlign;"; 4797 String get vAlign() native "return this.vAlign;";
4798 4798
4799 void set vAlign(String value) native "this.vAlign = value;"; 4799 void set vAlign(String value) native "this.vAlign = value;";
4800 4800
4801 void deleteRow(int index) native; 4801 void deleteRow(int index) native;
4802 4802
4803 HTMLElementJs insertRow(int index) native; 4803 _HTMLElementJs insertRow(int index) native;
4804 } 4804 }
4805 4805
4806 class HTMLTextAreaElementJs extends HTMLElementJs implements HTMLTextAreaElement native "*HTMLTextAreaElement" { 4806 class _HTMLTextAreaElementJs extends _HTMLElementJs implements HTMLTextAreaEleme nt native "*HTMLTextAreaElement" {
4807 4807
4808 bool get autofocus() native "return this.autofocus;"; 4808 bool get autofocus() native "return this.autofocus;";
4809 4809
4810 void set autofocus(bool value) native "this.autofocus = value;"; 4810 void set autofocus(bool value) native "this.autofocus = value;";
4811 4811
4812 int get cols() native "return this.cols;"; 4812 int get cols() native "return this.cols;";
4813 4813
4814 void set cols(int value) native "this.cols = value;"; 4814 void set cols(int value) native "this.cols = value;";
4815 4815
4816 String get defaultValue() native "return this.defaultValue;"; 4816 String get defaultValue() native "return this.defaultValue;";
4817 4817
4818 void set defaultValue(String value) native "this.defaultValue = value;"; 4818 void set defaultValue(String value) native "this.defaultValue = value;";
4819 4819
4820 String get dirName() native "return this.dirName;"; 4820 String get dirName() native "return this.dirName;";
4821 4821
4822 void set dirName(String value) native "this.dirName = value;"; 4822 void set dirName(String value) native "this.dirName = value;";
4823 4823
4824 bool get disabled() native "return this.disabled;"; 4824 bool get disabled() native "return this.disabled;";
4825 4825
4826 void set disabled(bool value) native "this.disabled = value;"; 4826 void set disabled(bool value) native "this.disabled = value;";
4827 4827
4828 HTMLFormElementJs get form() native "return this.form;"; 4828 _HTMLFormElementJs get form() native "return this.form;";
4829 4829
4830 NodeListJs get labels() native "return this.labels;"; 4830 _NodeListJs get labels() native "return this.labels;";
4831 4831
4832 int get maxLength() native "return this.maxLength;"; 4832 int get maxLength() native "return this.maxLength;";
4833 4833
4834 void set maxLength(int value) native "this.maxLength = value;"; 4834 void set maxLength(int value) native "this.maxLength = value;";
4835 4835
4836 String get name() native "return this.name;"; 4836 String get name() native "return this.name;";
4837 4837
4838 void set name(String value) native "this.name = value;"; 4838 void set name(String value) native "this.name = value;";
4839 4839
4840 String get placeholder() native "return this.placeholder;"; 4840 String get placeholder() native "return this.placeholder;";
(...skipping 23 matching lines...) Expand all
4864 int get selectionStart() native "return this.selectionStart;"; 4864 int get selectionStart() native "return this.selectionStart;";
4865 4865
4866 void set selectionStart(int value) native "this.selectionStart = value;"; 4866 void set selectionStart(int value) native "this.selectionStart = value;";
4867 4867
4868 int get textLength() native "return this.textLength;"; 4868 int get textLength() native "return this.textLength;";
4869 4869
4870 String get type() native "return this.type;"; 4870 String get type() native "return this.type;";
4871 4871
4872 String get validationMessage() native "return this.validationMessage;"; 4872 String get validationMessage() native "return this.validationMessage;";
4873 4873
4874 ValidityStateJs get validity() native "return this.validity;"; 4874 _ValidityStateJs get validity() native "return this.validity;";
4875 4875
4876 String get value() native "return this.value;"; 4876 String get value() native "return this.value;";
4877 4877
4878 void set value(String value) native "this.value = value;"; 4878 void set value(String value) native "this.value = value;";
4879 4879
4880 bool get willValidate() native "return this.willValidate;"; 4880 bool get willValidate() native "return this.willValidate;";
4881 4881
4882 String get wrap() native "return this.wrap;"; 4882 String get wrap() native "return this.wrap;";
4883 4883
4884 void set wrap(String value) native "this.wrap = value;"; 4884 void set wrap(String value) native "this.wrap = value;";
4885 4885
4886 bool checkValidity() native; 4886 bool checkValidity() native;
4887 4887
4888 void select() native; 4888 void select() native;
4889 4889
4890 void setCustomValidity(String error) native; 4890 void setCustomValidity(String error) native;
4891 4891
4892 void setSelectionRange(int start, int end, [String direction = null]) native; 4892 void setSelectionRange(int start, int end, [String direction = null]) native;
4893 } 4893 }
4894 4894
4895 class HTMLTitleElementJs extends HTMLElementJs implements HTMLTitleElement nativ e "*HTMLTitleElement" { 4895 class _HTMLTitleElementJs extends _HTMLElementJs implements HTMLTitleElement nat ive "*HTMLTitleElement" {
4896 4896
4897 String get text() native "return this.text;"; 4897 String get text() native "return this.text;";
4898 4898
4899 void set text(String value) native "this.text = value;"; 4899 void set text(String value) native "this.text = value;";
4900 } 4900 }
4901 4901
4902 class HTMLTrackElementJs extends HTMLElementJs implements HTMLTrackElement nativ e "*HTMLTrackElement" { 4902 class _HTMLTrackElementJs extends _HTMLElementJs implements HTMLTrackElement nat ive "*HTMLTrackElement" {
4903 4903
4904 static final int ERROR = 3; 4904 static final int ERROR = 3;
4905 4905
4906 static final int LOADED = 2; 4906 static final int LOADED = 2;
4907 4907
4908 static final int LOADING = 1; 4908 static final int LOADING = 1;
4909 4909
4910 static final int NONE = 0; 4910 static final int NONE = 0;
4911 4911
4912 bool get isDefault() native "return this.isDefault;"; 4912 bool get isDefault() native "return this.isDefault;";
(...skipping 11 matching lines...) Expand all
4924 int get readyState() native "return this.readyState;"; 4924 int get readyState() native "return this.readyState;";
4925 4925
4926 String get src() native "return this.src;"; 4926 String get src() native "return this.src;";
4927 4927
4928 void set src(String value) native "this.src = value;"; 4928 void set src(String value) native "this.src = value;";
4929 4929
4930 String get srclang() native "return this.srclang;"; 4930 String get srclang() native "return this.srclang;";
4931 4931
4932 void set srclang(String value) native "this.srclang = value;"; 4932 void set srclang(String value) native "this.srclang = value;";
4933 4933
4934 TextTrackJs get track() native "return this.track;"; 4934 _TextTrackJs get track() native "return this.track;";
4935 } 4935 }
4936 4936
4937 class HTMLUListElementJs extends HTMLElementJs implements HTMLUListElement nativ e "*HTMLUListElement" { 4937 class _HTMLUListElementJs extends _HTMLElementJs implements HTMLUListElement nat ive "*HTMLUListElement" {
4938 4938
4939 bool get compact() native "return this.compact;"; 4939 bool get compact() native "return this.compact;";
4940 4940
4941 void set compact(bool value) native "this.compact = value;"; 4941 void set compact(bool value) native "this.compact = value;";
4942 4942
4943 String get type() native "return this.type;"; 4943 String get type() native "return this.type;";
4944 4944
4945 void set type(String value) native "this.type = value;"; 4945 void set type(String value) native "this.type = value;";
4946 } 4946 }
4947 4947
4948 class HTMLUnknownElementJs extends HTMLElementJs implements HTMLUnknownElement n ative "*HTMLUnknownElement" { 4948 class _HTMLUnknownElementJs extends _HTMLElementJs implements HTMLUnknownElement native "*HTMLUnknownElement" {
4949 } 4949 }
4950 4950
4951 class HTMLVideoElementJs extends HTMLMediaElementJs implements HTMLVideoElement native "*HTMLVideoElement" { 4951 class _HTMLVideoElementJs extends _HTMLMediaElementJs implements HTMLVideoElemen t native "*HTMLVideoElement" {
4952 4952
4953 int get height() native "return this.height;"; 4953 int get height() native "return this.height;";
4954 4954
4955 void set height(int value) native "this.height = value;"; 4955 void set height(int value) native "this.height = value;";
4956 4956
4957 String get poster() native "return this.poster;"; 4957 String get poster() native "return this.poster;";
4958 4958
4959 void set poster(String value) native "this.poster = value;"; 4959 void set poster(String value) native "this.poster = value;";
4960 4960
4961 int get videoHeight() native "return this.videoHeight;"; 4961 int get videoHeight() native "return this.videoHeight;";
(...skipping 14 matching lines...) Expand all
4976 4976
4977 void webkitEnterFullScreen() native; 4977 void webkitEnterFullScreen() native;
4978 4978
4979 void webkitEnterFullscreen() native; 4979 void webkitEnterFullscreen() native;
4980 4980
4981 void webkitExitFullScreen() native; 4981 void webkitExitFullScreen() native;
4982 4982
4983 void webkitExitFullscreen() native; 4983 void webkitExitFullscreen() native;
4984 } 4984 }
4985 4985
4986 class HashChangeEventJs extends EventJs implements HashChangeEvent native "*Hash ChangeEvent" { 4986 class _HashChangeEventJs extends _EventJs implements HashChangeEvent native "*Ha shChangeEvent" {
4987 4987
4988 String get newURL() native "return this.newURL;"; 4988 String get newURL() native "return this.newURL;";
4989 4989
4990 String get oldURL() native "return this.oldURL;"; 4990 String get oldURL() native "return this.oldURL;";
4991 4991
4992 void initHashChangeEvent(String type, bool canBubble, bool cancelable, String oldURL, String newURL) native; 4992 void initHashChangeEvent(String type, bool canBubble, bool cancelable, String oldURL, String newURL) native;
4993 } 4993 }
4994 4994
4995 class HighPass2FilterNodeJs extends AudioNodeJs implements HighPass2FilterNode n ative "*HighPass2FilterNode" { 4995 class _HighPass2FilterNodeJs extends _AudioNodeJs implements HighPass2FilterNode native "*HighPass2FilterNode" {
4996 4996
4997 AudioParamJs get cutoff() native "return this.cutoff;"; 4997 _AudioParamJs get cutoff() native "return this.cutoff;";
4998 4998
4999 AudioParamJs get resonance() native "return this.resonance;"; 4999 _AudioParamJs get resonance() native "return this.resonance;";
5000 } 5000 }
5001 5001
5002 class HistoryJs extends DOMTypeJs implements History native "*History" { 5002 class _HistoryJs extends _DOMTypeJs implements History native "*History" {
5003 5003
5004 int get length() native "return this.length;"; 5004 int get length() native "return this.length;";
5005 5005
5006 void back() native; 5006 void back() native;
5007 5007
5008 void forward() native; 5008 void forward() native;
5009 5009
5010 void go(int distance) native; 5010 void go(int distance) native;
5011 5011
5012 void pushState(Object data, String title, [String url = null]) native; 5012 void pushState(Object data, String title, [String url = null]) native;
5013 5013
5014 void replaceState(Object data, String title, [String url = null]) native; 5014 void replaceState(Object data, String title, [String url = null]) native;
5015 } 5015 }
5016 5016
5017 class IDBAnyJs extends DOMTypeJs implements IDBAny native "*IDBAny" { 5017 class _IDBAnyJs extends _DOMTypeJs implements IDBAny native "*IDBAny" {
5018 } 5018 }
5019 5019
5020 class IDBCursorJs extends DOMTypeJs implements IDBCursor native "*IDBCursor" { 5020 class _IDBCursorJs extends _DOMTypeJs implements IDBCursor native "*IDBCursor" {
5021 5021
5022 static final int NEXT = 0; 5022 static final int NEXT = 0;
5023 5023
5024 static final int NEXT_NO_DUPLICATE = 1; 5024 static final int NEXT_NO_DUPLICATE = 1;
5025 5025
5026 static final int PREV = 2; 5026 static final int PREV = 2;
5027 5027
5028 static final int PREV_NO_DUPLICATE = 3; 5028 static final int PREV_NO_DUPLICATE = 3;
5029 5029
5030 int get direction() native "return this.direction;"; 5030 int get direction() native "return this.direction;";
5031 5031
5032 IDBKeyJs get key() native "return this.key;"; 5032 _IDBKeyJs get key() native "return this.key;";
5033 5033
5034 IDBKeyJs get primaryKey() native "return this.primaryKey;"; 5034 _IDBKeyJs get primaryKey() native "return this.primaryKey;";
5035 5035
5036 IDBAnyJs get source() native "return this.source;"; 5036 _IDBAnyJs get source() native "return this.source;";
5037 5037
5038 void continueFunction([IDBKeyJs key = null]) native; 5038 void continueFunction([_IDBKeyJs key = null]) native;
5039 5039
5040 IDBRequestJs delete() native; 5040 _IDBRequestJs delete() native;
5041 5041
5042 IDBRequestJs update(Dynamic value) native; 5042 _IDBRequestJs update(Dynamic value) native;
5043 } 5043 }
5044 5044
5045 class IDBCursorWithValueJs extends IDBCursorJs implements IDBCursorWithValue nat ive "*IDBCursorWithValue" { 5045 class _IDBCursorWithValueJs extends _IDBCursorJs implements IDBCursorWithValue n ative "*IDBCursorWithValue" {
5046 5046
5047 IDBAnyJs get value() native "return this.value;"; 5047 _IDBAnyJs get value() native "return this.value;";
5048 } 5048 }
5049 5049
5050 class IDBDatabaseJs extends DOMTypeJs implements IDBDatabase native "*IDBDatabas e" { 5050 class _IDBDatabaseJs extends _DOMTypeJs implements IDBDatabase native "*IDBDatab ase" {
5051 5051
5052 String get name() native "return this.name;"; 5052 String get name() native "return this.name;";
5053 5053
5054 EventListener get onabort() native "return this.onabort;"; 5054 EventListener get onabort() native "return this.onabort;";
5055 5055
5056 void set onabort(EventListener value) native "this.onabort = value;"; 5056 void set onabort(EventListener value) native "this.onabort = value;";
5057 5057
5058 EventListener get onerror() native "return this.onerror;"; 5058 EventListener get onerror() native "return this.onerror;";
5059 5059
5060 void set onerror(EventListener value) native "this.onerror = value;"; 5060 void set onerror(EventListener value) native "this.onerror = value;";
5061 5061
5062 EventListener get onversionchange() native "return this.onversionchange;"; 5062 EventListener get onversionchange() native "return this.onversionchange;";
5063 5063
5064 void set onversionchange(EventListener value) native "this.onversionchange = v alue;"; 5064 void set onversionchange(EventListener value) native "this.onversionchange = v alue;";
5065 5065
5066 String get version() native "return this.version;"; 5066 String get version() native "return this.version;";
5067 5067
5068 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native; 5068 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
5069 5069
5070 void close() native; 5070 void close() native;
5071 5071
5072 IDBObjectStoreJs createObjectStore(String name) native; 5072 _IDBObjectStoreJs createObjectStore(String name) native;
5073 5073
5074 void deleteObjectStore(String name) native; 5074 void deleteObjectStore(String name) native;
5075 5075
5076 bool dispatchEvent(EventJs evt) native; 5076 bool dispatchEvent(_EventJs evt) native;
5077 5077
5078 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native; 5078 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
5079 5079
5080 IDBVersionChangeRequestJs setVersion(String version) native; 5080 _IDBVersionChangeRequestJs setVersion(String version) native;
5081 5081
5082 IDBTransactionJs transaction(String storeName, int mode) native; 5082 _IDBTransactionJs transaction(String storeName, int mode) native;
5083 } 5083 }
5084 5084
5085 class IDBDatabaseErrorJs extends DOMTypeJs implements IDBDatabaseError native "* IDBDatabaseError" { 5085 class _IDBDatabaseErrorJs extends _DOMTypeJs implements IDBDatabaseError native "*IDBDatabaseError" {
5086 5086
5087 int get code() native "return this.code;"; 5087 int get code() native "return this.code;";
5088 5088
5089 void set code(int value) native "this.code = value;"; 5089 void set code(int value) native "this.code = value;";
5090 5090
5091 String get message() native "return this.message;"; 5091 String get message() native "return this.message;";
5092 5092
5093 void set message(String value) native "this.message = value;"; 5093 void set message(String value) native "this.message = value;";
5094 } 5094 }
5095 5095
5096 class IDBDatabaseExceptionJs extends DOMTypeJs implements IDBDatabaseException n ative "*IDBDatabaseException" { 5096 class _IDBDatabaseExceptionJs extends _DOMTypeJs implements IDBDatabaseException native "*IDBDatabaseException" {
5097 5097
5098 static final int ABORT_ERR = 8; 5098 static final int ABORT_ERR = 8;
5099 5099
5100 static final int CONSTRAINT_ERR = 4; 5100 static final int CONSTRAINT_ERR = 4;
5101 5101
5102 static final int DATA_ERR = 5; 5102 static final int DATA_ERR = 5;
5103 5103
5104 static final int NON_TRANSIENT_ERR = 2; 5104 static final int NON_TRANSIENT_ERR = 2;
5105 5105
5106 static final int NOT_ALLOWED_ERR = 6; 5106 static final int NOT_ALLOWED_ERR = 6;
(...skipping 16 matching lines...) Expand all
5123 5123
5124 int get code() native "return this.code;"; 5124 int get code() native "return this.code;";
5125 5125
5126 String get message() native "return this.message;"; 5126 String get message() native "return this.message;";
5127 5127
5128 String get name() native "return this.name;"; 5128 String get name() native "return this.name;";
5129 5129
5130 String toString() native; 5130 String toString() native;
5131 } 5131 }
5132 5132
5133 class IDBFactoryJs extends DOMTypeJs implements IDBFactory native "*IDBFactory" { 5133 class _IDBFactoryJs extends _DOMTypeJs implements IDBFactory native "*IDBFactory " {
5134 5134
5135 int cmp(IDBKeyJs first, IDBKeyJs second) native; 5135 int cmp(_IDBKeyJs first, _IDBKeyJs second) native;
5136 5136
5137 IDBVersionChangeRequestJs deleteDatabase(String name) native; 5137 _IDBVersionChangeRequestJs deleteDatabase(String name) native;
5138 5138
5139 IDBRequestJs getDatabaseNames() native; 5139 _IDBRequestJs getDatabaseNames() native;
5140 5140
5141 IDBRequestJs open(String name) native; 5141 _IDBRequestJs open(String name) native;
5142 } 5142 }
5143 5143
5144 class IDBIndexJs extends DOMTypeJs implements IDBIndex native "*IDBIndex" { 5144 class _IDBIndexJs extends _DOMTypeJs implements IDBIndex native "*IDBIndex" {
5145 5145
5146 String get keyPath() native "return this.keyPath;"; 5146 String get keyPath() native "return this.keyPath;";
5147 5147
5148 bool get multiEntry() native "return this.multiEntry;"; 5148 bool get multiEntry() native "return this.multiEntry;";
5149 5149
5150 String get name() native "return this.name;"; 5150 String get name() native "return this.name;";
5151 5151
5152 IDBObjectStoreJs get objectStore() native "return this.objectStore;"; 5152 _IDBObjectStoreJs get objectStore() native "return this.objectStore;";
5153 5153
5154 bool get unique() native "return this.unique;"; 5154 bool get unique() native "return this.unique;";
5155 5155
5156 IDBRequestJs count([IDBKeyRangeJs range = null]) native; 5156 _IDBRequestJs count([_IDBKeyRangeJs range = null]) native;
5157 5157
5158 IDBRequestJs getObject(IDBKeyJs key) native; 5158 _IDBRequestJs getObject(_IDBKeyJs key) native;
5159 5159
5160 IDBRequestJs getKey(IDBKeyJs key) native; 5160 _IDBRequestJs getKey(_IDBKeyJs key) native;
5161 5161
5162 IDBRequestJs openCursor([IDBKeyRangeJs range = null, int direction = null]) na tive; 5162 _IDBRequestJs openCursor([_IDBKeyRangeJs range = null, int direction = null]) native;
5163 5163
5164 IDBRequestJs openKeyCursor([IDBKeyRangeJs range = null, int direction = null]) native; 5164 _IDBRequestJs openKeyCursor([_IDBKeyRangeJs range = null, int direction = null ]) native;
5165 } 5165 }
5166 5166
5167 class IDBKeyJs extends DOMTypeJs implements IDBKey native "*IDBKey" { 5167 class _IDBKeyJs extends _DOMTypeJs implements IDBKey native "*IDBKey" {
5168 } 5168 }
5169 5169
5170 class IDBKeyRangeJs extends DOMTypeJs implements IDBKeyRange native "*IDBKeyRang e" { 5170 class _IDBKeyRangeJs extends _DOMTypeJs implements IDBKeyRange native "*IDBKeyRa nge" {
5171 5171
5172 IDBKeyJs get lower() native "return this.lower;"; 5172 _IDBKeyJs get lower() native "return this.lower;";
5173 5173
5174 bool get lowerOpen() native "return this.lowerOpen;"; 5174 bool get lowerOpen() native "return this.lowerOpen;";
5175 5175
5176 IDBKeyJs get upper() native "return this.upper;"; 5176 _IDBKeyJs get upper() native "return this.upper;";
5177 5177
5178 bool get upperOpen() native "return this.upperOpen;"; 5178 bool get upperOpen() native "return this.upperOpen;";
5179 5179
5180 IDBKeyRangeJs bound(IDBKeyJs lower, IDBKeyJs upper, [bool lowerOpen = null, bo ol upperOpen = null]) native; 5180 _IDBKeyRangeJs bound(_IDBKeyJs lower, _IDBKeyJs upper, [bool lowerOpen = null, bool upperOpen = null]) native;
5181 5181
5182 IDBKeyRangeJs lowerBound(IDBKeyJs bound, [bool open = null]) native; 5182 _IDBKeyRangeJs lowerBound(_IDBKeyJs bound, [bool open = null]) native;
5183 5183
5184 IDBKeyRangeJs only(IDBKeyJs value) native; 5184 _IDBKeyRangeJs only(_IDBKeyJs value) native;
5185 5185
5186 IDBKeyRangeJs upperBound(IDBKeyJs bound, [bool open = null]) native; 5186 _IDBKeyRangeJs upperBound(_IDBKeyJs bound, [bool open = null]) native;
5187 } 5187 }
5188 5188
5189 class IDBObjectStoreJs extends DOMTypeJs implements IDBObjectStore native "*IDBO bjectStore" { 5189 class _IDBObjectStoreJs extends _DOMTypeJs implements IDBObjectStore native "*ID BObjectStore" {
5190 5190
5191 String get keyPath() native "return this.keyPath;"; 5191 String get keyPath() native "return this.keyPath;";
5192 5192
5193 String get name() native "return this.name;"; 5193 String get name() native "return this.name;";
5194 5194
5195 IDBTransactionJs get transaction() native "return this.transaction;"; 5195 _IDBTransactionJs get transaction() native "return this.transaction;";
5196 5196
5197 IDBRequestJs add(Dynamic value, [IDBKeyJs key = null]) native; 5197 _IDBRequestJs add(Dynamic value, [_IDBKeyJs key = null]) native;
5198 5198
5199 IDBRequestJs clear() native; 5199 _IDBRequestJs clear() native;
5200 5200
5201 IDBRequestJs count([IDBKeyRangeJs range = null]) native; 5201 _IDBRequestJs count([_IDBKeyRangeJs range = null]) native;
5202 5202
5203 IDBIndexJs createIndex(String name, String keyPath) native; 5203 _IDBIndexJs createIndex(String name, String keyPath) native;
5204 5204
5205 IDBRequestJs delete(IDBKeyJs key) native; 5205 _IDBRequestJs delete(_IDBKeyJs key) native;
5206 5206
5207 void deleteIndex(String name) native; 5207 void deleteIndex(String name) native;
5208 5208
5209 IDBRequestJs getObject(IDBKeyJs key) native; 5209 _IDBRequestJs getObject(_IDBKeyJs key) native;
5210 5210
5211 IDBIndexJs index(String name) native; 5211 _IDBIndexJs index(String name) native;
5212 5212
5213 IDBRequestJs openCursor([IDBKeyRangeJs range = null, int direction = null]) na tive; 5213 _IDBRequestJs openCursor([_IDBKeyRangeJs range = null, int direction = null]) native;
5214 5214
5215 IDBRequestJs put(Dynamic value, [IDBKeyJs key = null]) native; 5215 _IDBRequestJs put(Dynamic value, [_IDBKeyJs key = null]) native;
5216 } 5216 }
5217 5217
5218 class IDBRequestJs extends DOMTypeJs implements IDBRequest native "*IDBRequest" { 5218 class _IDBRequestJs extends _DOMTypeJs implements IDBRequest native "*IDBRequest " {
5219 5219
5220 static final int DONE = 2; 5220 static final int DONE = 2;
5221 5221
5222 static final int LOADING = 1; 5222 static final int LOADING = 1;
5223 5223
5224 int get errorCode() native "return this.errorCode;"; 5224 int get errorCode() native "return this.errorCode;";
5225 5225
5226 EventListener get onerror() native "return this.onerror;"; 5226 EventListener get onerror() native "return this.onerror;";
5227 5227
5228 void set onerror(EventListener value) native "this.onerror = value;"; 5228 void set onerror(EventListener value) native "this.onerror = value;";
5229 5229
5230 EventListener get onsuccess() native "return this.onsuccess;"; 5230 EventListener get onsuccess() native "return this.onsuccess;";
5231 5231
5232 void set onsuccess(EventListener value) native "this.onsuccess = value;"; 5232 void set onsuccess(EventListener value) native "this.onsuccess = value;";
5233 5233
5234 int get readyState() native "return this.readyState;"; 5234 int get readyState() native "return this.readyState;";
5235 5235
5236 IDBAnyJs get result() native "return this.result;"; 5236 _IDBAnyJs get result() native "return this.result;";
5237 5237
5238 IDBAnyJs get source() native "return this.source;"; 5238 _IDBAnyJs get source() native "return this.source;";
5239 5239
5240 IDBTransactionJs get transaction() native "return this.transaction;"; 5240 _IDBTransactionJs get transaction() native "return this.transaction;";
5241 5241
5242 String get webkitErrorMessage() native "return this.webkitErrorMessage;"; 5242 String get webkitErrorMessage() native "return this.webkitErrorMessage;";
5243 5243
5244 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native; 5244 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
5245 5245
5246 bool dispatchEvent(EventJs evt) native; 5246 bool dispatchEvent(_EventJs evt) native;
5247 5247
5248 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native; 5248 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
5249 } 5249 }
5250 5250
5251 class IDBTransactionJs extends DOMTypeJs implements IDBTransaction native "*IDBT ransaction" { 5251 class _IDBTransactionJs extends _DOMTypeJs implements IDBTransaction native "*ID BTransaction" {
5252 5252
5253 static final int READ_ONLY = 0; 5253 static final int READ_ONLY = 0;
5254 5254
5255 static final int READ_WRITE = 1; 5255 static final int READ_WRITE = 1;
5256 5256
5257 static final int VERSION_CHANGE = 2; 5257 static final int VERSION_CHANGE = 2;
5258 5258
5259 IDBDatabaseJs get db() native "return this.db;"; 5259 _IDBDatabaseJs get db() native "return this.db;";
5260 5260
5261 int get mode() native "return this.mode;"; 5261 int get mode() native "return this.mode;";
5262 5262
5263 EventListener get onabort() native "return this.onabort;"; 5263 EventListener get onabort() native "return this.onabort;";
5264 5264
5265 void set onabort(EventListener value) native "this.onabort = value;"; 5265 void set onabort(EventListener value) native "this.onabort = value;";
5266 5266
5267 EventListener get oncomplete() native "return this.oncomplete;"; 5267 EventListener get oncomplete() native "return this.oncomplete;";
5268 5268
5269 void set oncomplete(EventListener value) native "this.oncomplete = value;"; 5269 void set oncomplete(EventListener value) native "this.oncomplete = value;";
5270 5270
5271 EventListener get onerror() native "return this.onerror;"; 5271 EventListener get onerror() native "return this.onerror;";
5272 5272
5273 void set onerror(EventListener value) native "this.onerror = value;"; 5273 void set onerror(EventListener value) native "this.onerror = value;";
5274 5274
5275 void abort() native; 5275 void abort() native;
5276 5276
5277 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native; 5277 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
5278 5278
5279 bool dispatchEvent(EventJs evt) native; 5279 bool dispatchEvent(_EventJs evt) native;
5280 5280
5281 IDBObjectStoreJs objectStore(String name) native; 5281 _IDBObjectStoreJs objectStore(String name) native;
5282 5282
5283 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native; 5283 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
5284 } 5284 }
5285 5285
5286 class IDBVersionChangeEventJs extends EventJs implements IDBVersionChangeEvent n ative "*IDBVersionChangeEvent" { 5286 class _IDBVersionChangeEventJs extends _EventJs implements IDBVersionChangeEvent native "*IDBVersionChangeEvent" {
5287 5287
5288 String get version() native "return this.version;"; 5288 String get version() native "return this.version;";
5289 } 5289 }
5290 5290
5291 class IDBVersionChangeRequestJs extends IDBRequestJs implements IDBVersionChange Request native "*IDBVersionChangeRequest" { 5291 class _IDBVersionChangeRequestJs extends _IDBRequestJs implements IDBVersionChan geRequest native "*IDBVersionChangeRequest" {
5292 5292
5293 EventListener get onblocked() native "return this.onblocked;"; 5293 EventListener get onblocked() native "return this.onblocked;";
5294 5294
5295 void set onblocked(EventListener value) native "this.onblocked = value;"; 5295 void set onblocked(EventListener value) native "this.onblocked = value;";
5296 } 5296 }
5297 5297
5298 class ImageDataJs extends DOMTypeJs implements ImageData native "*ImageData" { 5298 class _ImageDataJs extends _DOMTypeJs implements ImageData native "*ImageData" {
5299 5299
5300 CanvasPixelArrayJs get data() native "return this.data;"; 5300 _CanvasPixelArrayJs get data() native "return this.data;";
5301 5301
5302 int get height() native "return this.height;"; 5302 int get height() native "return this.height;";
5303 5303
5304 int get width() native "return this.width;"; 5304 int get width() native "return this.width;";
5305 } 5305 }
5306 5306
5307 class InjectedScriptHostJs extends DOMTypeJs implements InjectedScriptHost nativ e "*InjectedScriptHost" { 5307 class _InjectedScriptHostJs extends _DOMTypeJs implements InjectedScriptHost nat ive "*InjectedScriptHost" {
5308 5308
5309 void clearConsoleMessages() native; 5309 void clearConsoleMessages() native;
5310 5310
5311 void copyText(String text) native; 5311 void copyText(String text) native;
5312 5312
5313 int databaseId(Object database) native; 5313 int databaseId(Object database) native;
5314 5314
5315 void didCreateWorker(int id, String url, bool isFakeWorker) native; 5315 void didCreateWorker(int id, String url, bool isFakeWorker) native;
5316 5316
5317 void didDestroyWorker(int id) native; 5317 void didDestroyWorker(int id) native;
(...skipping 10 matching lines...) Expand all
5328 5328
5329 bool isHTMLAllCollection(Object object) native; 5329 bool isHTMLAllCollection(Object object) native;
5330 5330
5331 int nextWorkerId() native; 5331 int nextWorkerId() native;
5332 5332
5333 int storageId(Object storage) native; 5333 int storageId(Object storage) native;
5334 5334
5335 String type(Object object) native; 5335 String type(Object object) native;
5336 } 5336 }
5337 5337
5338 class InspectorFrontendHostJs extends DOMTypeJs implements InspectorFrontendHost native "*InspectorFrontendHost" { 5338 class _InspectorFrontendHostJs extends _DOMTypeJs implements InspectorFrontendHo st native "*InspectorFrontendHost" {
5339 5339
5340 void bringToFront() native; 5340 void bringToFront() native;
5341 5341
5342 bool canSaveAs() native; 5342 bool canSaveAs() native;
5343 5343
5344 void closeWindow() native; 5344 void closeWindow() native;
5345 5345
5346 void copyText(String text) native; 5346 void copyText(String text) native;
5347 5347
5348 String hiddenPanels() native; 5348 String hiddenPanels() native;
(...skipping 27 matching lines...) Expand all
5376 void requestSetDockSide(String side) native; 5376 void requestSetDockSide(String side) native;
5377 5377
5378 void saveAs(String fileName, String content) native; 5378 void saveAs(String fileName, String content) native;
5379 5379
5380 void sendMessageToBackend(String message) native; 5380 void sendMessageToBackend(String message) native;
5381 5381
5382 void setAttachedWindowHeight(int height) native; 5382 void setAttachedWindowHeight(int height) native;
5383 5383
5384 void setInjectedScriptForOrigin(String origin, String script) native; 5384 void setInjectedScriptForOrigin(String origin, String script) native;
5385 5385
5386 void showContextMenu(MouseEventJs event, Object items) native; 5386 void showContextMenu(_MouseEventJs event, Object items) native;
5387 } 5387 }
5388 5388
5389 class Int16ArrayJs extends ArrayBufferViewJs implements Int16Array, List<int> na tive "*Int16Array" { 5389 class _Int16ArrayJs extends _ArrayBufferViewJs implements Int16Array, List<int> native "*Int16Array" {
5390 5390
5391 factory Int16Array(int length) => _construct_Int16Array(length); 5391 factory Int16Array(int length) => _construct_Int16Array(length);
5392 5392
5393 factory Int16Array.fromList(List<int> list) => _construct_Int16Array(list); 5393 factory Int16Array.fromList(List<int> list) => _construct_Int16Array(list);
5394 5394
5395 factory Int16Array.fromBuffer(ArrayBuffer buffer) => _construct_Int16Array(buf fer); 5395 factory Int16Array.fromBuffer(ArrayBuffer buffer) => _construct_Int16Array(buf fer);
5396 5396
5397 static _construct_Int16Array(arg) native 'return new Int16Array(arg);'; 5397 static _construct_Int16Array(arg) native 'return new Int16Array(arg);';
5398 5398
5399 static final int BYTES_PER_ELEMENT = 2; 5399 static final int BYTES_PER_ELEMENT = 2;
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
5466 void insertRange(int start, int length, [int initialValue]) { 5466 void insertRange(int start, int length, [int initialValue]) {
5467 throw new UnsupportedOperationException("Cannot insertRange on immutable Lis t."); 5467 throw new UnsupportedOperationException("Cannot insertRange on immutable Lis t.");
5468 } 5468 }
5469 List<int> getRange(int start, int length) => 5469 List<int> getRange(int start, int length) =>
5470 _Lists.getRange(this, start, length, <int>[]); 5470 _Lists.getRange(this, start, length, <int>[]);
5471 5471
5472 // -- end List<int> mixins. 5472 // -- end List<int> mixins.
5473 5473
5474 void setElements(Object array, [int offset = null]) native; 5474 void setElements(Object array, [int offset = null]) native;
5475 5475
5476 Int16ArrayJs subarray(int start, [int end = null]) native; 5476 _Int16ArrayJs subarray(int start, [int end = null]) native;
5477 } 5477 }
5478 5478
5479 class Int32ArrayJs extends ArrayBufferViewJs implements Int32Array, List<int> na tive "*Int32Array" { 5479 class _Int32ArrayJs extends _ArrayBufferViewJs implements Int32Array, List<int> native "*Int32Array" {
5480 5480
5481 factory Int32Array(int length) => _construct_Int32Array(length); 5481 factory Int32Array(int length) => _construct_Int32Array(length);
5482 5482
5483 factory Int32Array.fromList(List<int> list) => _construct_Int32Array(list); 5483 factory Int32Array.fromList(List<int> list) => _construct_Int32Array(list);
5484 5484
5485 factory Int32Array.fromBuffer(ArrayBuffer buffer) => _construct_Int32Array(buf fer); 5485 factory Int32Array.fromBuffer(ArrayBuffer buffer) => _construct_Int32Array(buf fer);
5486 5486
5487 static _construct_Int32Array(arg) native 'return new Int32Array(arg);'; 5487 static _construct_Int32Array(arg) native 'return new Int32Array(arg);';
5488 5488
5489 static final int BYTES_PER_ELEMENT = 4; 5489 static final int BYTES_PER_ELEMENT = 4;
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
5556 void insertRange(int start, int length, [int initialValue]) { 5556 void insertRange(int start, int length, [int initialValue]) {
5557 throw new UnsupportedOperationException("Cannot insertRange on immutable Lis t."); 5557 throw new UnsupportedOperationException("Cannot insertRange on immutable Lis t.");
5558 } 5558 }
5559 List<int> getRange(int start, int length) => 5559 List<int> getRange(int start, int length) =>
5560 _Lists.getRange(this, start, length, <int>[]); 5560 _Lists.getRange(this, start, length, <int>[]);
5561 5561
5562 // -- end List<int> mixins. 5562 // -- end List<int> mixins.
5563 5563
5564 void setElements(Object array, [int offset = null]) native; 5564 void setElements(Object array, [int offset = null]) native;
5565 5565
5566 Int32ArrayJs subarray(int start, [int end = null]) native; 5566 _Int32ArrayJs subarray(int start, [int end = null]) native;
5567 } 5567 }
5568 5568
5569 class Int8ArrayJs extends ArrayBufferViewJs implements Int8Array, List<int> nati ve "*Int8Array" { 5569 class _Int8ArrayJs extends _ArrayBufferViewJs implements Int8Array, List<int> na tive "*Int8Array" {
5570 5570
5571 factory Int8Array(int length) => _construct_Int8Array(length); 5571 factory Int8Array(int length) => _construct_Int8Array(length);
5572 5572
5573 factory Int8Array.fromList(List<int> list) => _construct_Int8Array(list); 5573 factory Int8Array.fromList(List<int> list) => _construct_Int8Array(list);
5574 5574
5575 factory Int8Array.fromBuffer(ArrayBuffer buffer) => _construct_Int8Array(buffe r); 5575 factory Int8Array.fromBuffer(ArrayBuffer buffer) => _construct_Int8Array(buffe r);
5576 5576
5577 static _construct_Int8Array(arg) native 'return new Int8Array(arg);'; 5577 static _construct_Int8Array(arg) native 'return new Int8Array(arg);';
5578 5578
5579 static final int BYTES_PER_ELEMENT = 1; 5579 static final int BYTES_PER_ELEMENT = 1;
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
5646 void insertRange(int start, int length, [int initialValue]) { 5646 void insertRange(int start, int length, [int initialValue]) {
5647 throw new UnsupportedOperationException("Cannot insertRange on immutable Lis t."); 5647 throw new UnsupportedOperationException("Cannot insertRange on immutable Lis t.");
5648 } 5648 }
5649 List<int> getRange(int start, int length) => 5649 List<int> getRange(int start, int length) =>
5650 _Lists.getRange(this, start, length, <int>[]); 5650 _Lists.getRange(this, start, length, <int>[]);
5651 5651
5652 // -- end List<int> mixins. 5652 // -- end List<int> mixins.
5653 5653
5654 void setElements(Object array, [int offset = null]) native; 5654 void setElements(Object array, [int offset = null]) native;
5655 5655
5656 Int8ArrayJs subarray(int start, [int end = null]) native; 5656 _Int8ArrayJs subarray(int start, [int end = null]) native;
5657 } 5657 }
5658 5658
5659 class JavaScriptAudioNodeJs extends AudioNodeJs implements JavaScriptAudioNode n ative "*JavaScriptAudioNode" { 5659 class _JavaScriptAudioNodeJs extends _AudioNodeJs implements JavaScriptAudioNode native "*JavaScriptAudioNode" {
5660 5660
5661 int get bufferSize() native "return this.bufferSize;"; 5661 int get bufferSize() native "return this.bufferSize;";
5662 5662
5663 EventListener get onaudioprocess() native "return this.onaudioprocess;"; 5663 EventListener get onaudioprocess() native "return this.onaudioprocess;";
5664 5664
5665 void set onaudioprocess(EventListener value) native "this.onaudioprocess = val ue;"; 5665 void set onaudioprocess(EventListener value) native "this.onaudioprocess = val ue;";
5666 } 5666 }
5667 5667
5668 class JavaScriptCallFrameJs extends DOMTypeJs implements JavaScriptCallFrame nat ive "*JavaScriptCallFrame" { 5668 class _JavaScriptCallFrameJs extends _DOMTypeJs implements JavaScriptCallFrame n ative "*JavaScriptCallFrame" {
5669 5669
5670 static final int CATCH_SCOPE = 4; 5670 static final int CATCH_SCOPE = 4;
5671 5671
5672 static final int CLOSURE_SCOPE = 3; 5672 static final int CLOSURE_SCOPE = 3;
5673 5673
5674 static final int GLOBAL_SCOPE = 0; 5674 static final int GLOBAL_SCOPE = 0;
5675 5675
5676 static final int LOCAL_SCOPE = 1; 5676 static final int LOCAL_SCOPE = 1;
5677 5677
5678 static final int WITH_SCOPE = 2; 5678 static final int WITH_SCOPE = 2;
5679 5679
5680 JavaScriptCallFrameJs get caller() native "return this.caller;"; 5680 _JavaScriptCallFrameJs get caller() native "return this.caller;";
5681 5681
5682 int get column() native "return this.column;"; 5682 int get column() native "return this.column;";
5683 5683
5684 String get functionName() native "return this.functionName;"; 5684 String get functionName() native "return this.functionName;";
5685 5685
5686 int get line() native "return this.line;"; 5686 int get line() native "return this.line;";
5687 5687
5688 List get scopeChain() native "return this.scopeChain;"; 5688 List get scopeChain() native "return this.scopeChain;";
5689 5689
5690 int get sourceID() native "return this.sourceID;"; 5690 int get sourceID() native "return this.sourceID;";
5691 5691
5692 Object get thisObject() native "return this.thisObject;"; 5692 Object get thisObject() native "return this.thisObject;";
5693 5693
5694 String get type() native "return this.type;"; 5694 String get type() native "return this.type;";
5695 5695
5696 void evaluate(String script) native; 5696 void evaluate(String script) native;
5697 5697
5698 int scopeType(int scopeIndex) native; 5698 int scopeType(int scopeIndex) native;
5699 } 5699 }
5700 5700
5701 class KeyboardEventJs extends UIEventJs implements KeyboardEvent native "*Keyboa rdEvent" { 5701 class _KeyboardEventJs extends _UIEventJs implements KeyboardEvent native "*Keyb oardEvent" {
5702 5702
5703 bool get altGraphKey() native "return this.altGraphKey;"; 5703 bool get altGraphKey() native "return this.altGraphKey;";
5704 5704
5705 bool get altKey() native "return this.altKey;"; 5705 bool get altKey() native "return this.altKey;";
5706 5706
5707 bool get ctrlKey() native "return this.ctrlKey;"; 5707 bool get ctrlKey() native "return this.ctrlKey;";
5708 5708
5709 String get keyIdentifier() native "return this.keyIdentifier;"; 5709 String get keyIdentifier() native "return this.keyIdentifier;";
5710 5710
5711 int get keyLocation() native "return this.keyLocation;"; 5711 int get keyLocation() native "return this.keyLocation;";
5712 5712
5713 bool get metaKey() native "return this.metaKey;"; 5713 bool get metaKey() native "return this.metaKey;";
5714 5714
5715 bool get shiftKey() native "return this.shiftKey;"; 5715 bool get shiftKey() native "return this.shiftKey;";
5716 5716
5717 void initKeyboardEvent(String type, bool canBubble, bool cancelable, DOMWindow Js view, String keyIdentifier, int keyLocation, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey) native; 5717 void initKeyboardEvent(String type, bool canBubble, bool cancelable, _DOMWindo wJs view, String keyIdentifier, int keyLocation, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey) native;
5718 } 5718 }
5719 5719
5720 class LocationJs extends DOMTypeJs implements Location native "*Location" { 5720 class _LocationJs extends _DOMTypeJs implements Location native "*Location" {
5721 5721
5722 String get hash() native "return this.hash;"; 5722 String get hash() native "return this.hash;";
5723 5723
5724 void set hash(String value) native "this.hash = value;"; 5724 void set hash(String value) native "this.hash = value;";
5725 5725
5726 String get host() native "return this.host;"; 5726 String get host() native "return this.host;";
5727 5727
5728 void set host(String value) native "this.host = value;"; 5728 void set host(String value) native "this.host = value;";
5729 5729
5730 String get hostname() native "return this.hostname;"; 5730 String get hostname() native "return this.hostname;";
(...skipping 24 matching lines...) Expand all
5755 5755
5756 void assign(String url) native; 5756 void assign(String url) native;
5757 5757
5758 void reload() native; 5758 void reload() native;
5759 5759
5760 void replace(String url) native; 5760 void replace(String url) native;
5761 5761
5762 String toString() native; 5762 String toString() native;
5763 } 5763 }
5764 5764
5765 class LowPass2FilterNodeJs extends AudioNodeJs implements LowPass2FilterNode nat ive "*LowPass2FilterNode" { 5765 class _LowPass2FilterNodeJs extends _AudioNodeJs implements LowPass2FilterNode n ative "*LowPass2FilterNode" {
5766 5766
5767 AudioParamJs get cutoff() native "return this.cutoff;"; 5767 _AudioParamJs get cutoff() native "return this.cutoff;";
5768 5768
5769 AudioParamJs get resonance() native "return this.resonance;"; 5769 _AudioParamJs get resonance() native "return this.resonance;";
5770 } 5770 }
5771 5771
5772 class MediaControllerJs extends DOMTypeJs implements MediaController native "*Me diaController" { 5772 class _MediaControllerJs extends _DOMTypeJs implements MediaController native "* MediaController" {
5773 5773
5774 TimeRangesJs get buffered() native "return this.buffered;"; 5774 _TimeRangesJs get buffered() native "return this.buffered;";
5775 5775
5776 num get currentTime() native "return this.currentTime;"; 5776 num get currentTime() native "return this.currentTime;";
5777 5777
5778 void set currentTime(num value) native "this.currentTime = value;"; 5778 void set currentTime(num value) native "this.currentTime = value;";
5779 5779
5780 num get defaultPlaybackRate() native "return this.defaultPlaybackRate;"; 5780 num get defaultPlaybackRate() native "return this.defaultPlaybackRate;";
5781 5781
5782 void set defaultPlaybackRate(num value) native "this.defaultPlaybackRate = val ue;"; 5782 void set defaultPlaybackRate(num value) native "this.defaultPlaybackRate = val ue;";
5783 5783
5784 num get duration() native "return this.duration;"; 5784 num get duration() native "return this.duration;";
5785 5785
5786 bool get muted() native "return this.muted;"; 5786 bool get muted() native "return this.muted;";
5787 5787
5788 void set muted(bool value) native "this.muted = value;"; 5788 void set muted(bool value) native "this.muted = value;";
5789 5789
5790 bool get paused() native "return this.paused;"; 5790 bool get paused() native "return this.paused;";
5791 5791
5792 num get playbackRate() native "return this.playbackRate;"; 5792 num get playbackRate() native "return this.playbackRate;";
5793 5793
5794 void set playbackRate(num value) native "this.playbackRate = value;"; 5794 void set playbackRate(num value) native "this.playbackRate = value;";
5795 5795
5796 TimeRangesJs get played() native "return this.played;"; 5796 _TimeRangesJs get played() native "return this.played;";
5797 5797
5798 TimeRangesJs get seekable() native "return this.seekable;"; 5798 _TimeRangesJs get seekable() native "return this.seekable;";
5799 5799
5800 num get volume() native "return this.volume;"; 5800 num get volume() native "return this.volume;";
5801 5801
5802 void set volume(num value) native "this.volume = value;"; 5802 void set volume(num value) native "this.volume = value;";
5803 5803
5804 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native; 5804 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
5805 5805
5806 bool dispatchEvent(EventJs evt) native; 5806 bool dispatchEvent(_EventJs evt) native;
5807 5807
5808 void pause() native; 5808 void pause() native;
5809 5809
5810 void play() native; 5810 void play() native;
5811 5811
5812 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native; 5812 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
5813 } 5813 }
5814 5814
5815 class MediaElementAudioSourceNodeJs extends AudioSourceNodeJs implements MediaEl ementAudioSourceNode native "*MediaElementAudioSourceNode" { 5815 class _MediaElementAudioSourceNodeJs extends _AudioSourceNodeJs implements Media ElementAudioSourceNode native "*MediaElementAudioSourceNode" {
5816 5816
5817 HTMLMediaElementJs get mediaElement() native "return this.mediaElement;"; 5817 _HTMLMediaElementJs get mediaElement() native "return this.mediaElement;";
5818 } 5818 }
5819 5819
5820 class MediaErrorJs extends DOMTypeJs implements MediaError native "*MediaError" { 5820 class _MediaErrorJs extends _DOMTypeJs implements MediaError native "*MediaError " {
5821 5821
5822 static final int MEDIA_ERR_ABORTED = 1; 5822 static final int MEDIA_ERR_ABORTED = 1;
5823 5823
5824 static final int MEDIA_ERR_DECODE = 3; 5824 static final int MEDIA_ERR_DECODE = 3;
5825 5825
5826 static final int MEDIA_ERR_NETWORK = 2; 5826 static final int MEDIA_ERR_NETWORK = 2;
5827 5827
5828 static final int MEDIA_ERR_SRC_NOT_SUPPORTED = 4; 5828 static final int MEDIA_ERR_SRC_NOT_SUPPORTED = 4;
5829 5829
5830 int get code() native "return this.code;"; 5830 int get code() native "return this.code;";
5831 } 5831 }
5832 5832
5833 class MediaListJs extends DOMTypeJs implements MediaList native "*MediaList" { 5833 class _MediaListJs extends _DOMTypeJs implements MediaList native "*MediaList" {
5834 5834
5835 int get length() native "return this.length;"; 5835 int get length() native "return this.length;";
5836 5836
5837 String get mediaText() native "return this.mediaText;"; 5837 String get mediaText() native "return this.mediaText;";
5838 5838
5839 void set mediaText(String value) native "this.mediaText = value;"; 5839 void set mediaText(String value) native "this.mediaText = value;";
5840 5840
5841 String operator[](int index) native "return this[index];"; 5841 String operator[](int index) native "return this[index];";
5842 5842
5843 void operator[]=(int index, String value) { 5843 void operator[]=(int index, String value) {
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
5911 5911
5912 // -- end List<String> mixins. 5912 // -- end List<String> mixins.
5913 5913
5914 void appendMedium(String newMedium) native; 5914 void appendMedium(String newMedium) native;
5915 5915
5916 void deleteMedium(String oldMedium) native; 5916 void deleteMedium(String oldMedium) native;
5917 5917
5918 String item(int index) native; 5918 String item(int index) native;
5919 } 5919 }
5920 5920
5921 class MediaQueryListJs extends DOMTypeJs implements MediaQueryList native "*Medi aQueryList" { 5921 class _MediaQueryListJs extends _DOMTypeJs implements MediaQueryList native "*Me diaQueryList" {
5922 5922
5923 bool get matches() native "return this.matches;"; 5923 bool get matches() native "return this.matches;";
5924 5924
5925 String get media() native "return this.media;"; 5925 String get media() native "return this.media;";
5926 5926
5927 void addListener(MediaQueryListListenerJs listener) native; 5927 void addListener(_MediaQueryListListenerJs listener) native;
5928 5928
5929 void removeListener(MediaQueryListListenerJs listener) native; 5929 void removeListener(_MediaQueryListListenerJs listener) native;
5930 } 5930 }
5931 5931
5932 class MediaQueryListListenerJs extends DOMTypeJs implements MediaQueryListListen er native "*MediaQueryListListener" { 5932 class _MediaQueryListListenerJs extends _DOMTypeJs implements MediaQueryListList ener native "*MediaQueryListListener" {
5933 5933
5934 void queryChanged(MediaQueryListJs list) native; 5934 void queryChanged(_MediaQueryListJs list) native;
5935 } 5935 }
5936 5936
5937 class MemoryInfoJs extends DOMTypeJs implements MemoryInfo native "*MemoryInfo" { 5937 class _MemoryInfoJs extends _DOMTypeJs implements MemoryInfo native "*MemoryInfo " {
5938 5938
5939 int get jsHeapSizeLimit() native "return this.jsHeapSizeLimit;"; 5939 int get jsHeapSizeLimit() native "return this.jsHeapSizeLimit;";
5940 5940
5941 int get totalJSHeapSize() native "return this.totalJSHeapSize;"; 5941 int get totalJSHeapSize() native "return this.totalJSHeapSize;";
5942 5942
5943 int get usedJSHeapSize() native "return this.usedJSHeapSize;"; 5943 int get usedJSHeapSize() native "return this.usedJSHeapSize;";
5944 } 5944 }
5945 5945
5946 class MessageChannelJs extends DOMTypeJs implements MessageChannel native "*Mess ageChannel" { 5946 class _MessageChannelJs extends _DOMTypeJs implements MessageChannel native "*Me ssageChannel" {
5947 5947
5948 MessagePortJs get port1() native "return this.port1;"; 5948 _MessagePortJs get port1() native "return this.port1;";
5949 5949
5950 MessagePortJs get port2() native "return this.port2;"; 5950 _MessagePortJs get port2() native "return this.port2;";
5951 } 5951 }
5952 5952
5953 class MessageEventJs extends EventJs implements MessageEvent native "*MessageEve nt" { 5953 class _MessageEventJs extends _EventJs implements MessageEvent native "*MessageE vent" {
5954 5954
5955 Object get data() native "return this.data;"; 5955 Object get data() native "return this.data;";
5956 5956
5957 String get lastEventId() native "return this.lastEventId;"; 5957 String get lastEventId() native "return this.lastEventId;";
5958 5958
5959 String get origin() native "return this.origin;"; 5959 String get origin() native "return this.origin;";
5960 5960
5961 List get ports() native "return this.ports;"; 5961 List get ports() native "return this.ports;";
5962 5962
5963 DOMWindowJs get source() native "return this.source;"; 5963 _DOMWindowJs get source() native "return this.source;";
5964 5964
5965 void initMessageEvent(String typeArg, bool canBubbleArg, bool cancelableArg, O bject dataArg, String originArg, String lastEventIdArg, DOMWindowJs sourceArg, L ist messagePorts) native; 5965 void initMessageEvent(String typeArg, bool canBubbleArg, bool cancelableArg, O bject dataArg, String originArg, String lastEventIdArg, _DOMWindowJs sourceArg, List messagePorts) native;
5966 5966
5967 void webkitInitMessageEvent(String typeArg, bool canBubbleArg, bool cancelable Arg, Object dataArg, String originArg, String lastEventIdArg, DOMWindowJs source Arg, List transferables) native; 5967 void webkitInitMessageEvent(String typeArg, bool canBubbleArg, bool cancelable Arg, Object dataArg, String originArg, String lastEventIdArg, _DOMWindowJs sourc eArg, List transferables) native;
5968 } 5968 }
5969 5969
5970 class MessagePortJs extends DOMTypeJs implements MessagePort native "*MessagePor t" { 5970 class _MessagePortJs extends _DOMTypeJs implements MessagePort native "*MessageP ort" {
5971 5971
5972 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native; 5972 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
5973 5973
5974 void close() native; 5974 void close() native;
5975 5975
5976 bool dispatchEvent(EventJs evt) native; 5976 bool dispatchEvent(_EventJs evt) native;
5977 5977
5978 void postMessage(String message, [List messagePorts = null]) native; 5978 void postMessage(String message, [List messagePorts = null]) native;
5979 5979
5980 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native; 5980 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
5981 5981
5982 void start() native; 5982 void start() native;
5983 5983
5984 void webkitPostMessage(String message, [List transfer = null]) native; 5984 void webkitPostMessage(String message, [List transfer = null]) native;
5985 } 5985 }
5986 5986
5987 class MetadataJs extends DOMTypeJs implements Metadata native "*Metadata" { 5987 class _MetadataJs extends _DOMTypeJs implements Metadata native "*Metadata" {
5988 5988
5989 Date get modificationTime() native "return this.modificationTime;"; 5989 Date get modificationTime() native "return this.modificationTime;";
5990 } 5990 }
5991 5991
5992 class MouseEventJs extends UIEventJs implements MouseEvent native "*MouseEvent" { 5992 class _MouseEventJs extends _UIEventJs implements MouseEvent native "*MouseEvent " {
5993 5993
5994 bool get altKey() native "return this.altKey;"; 5994 bool get altKey() native "return this.altKey;";
5995 5995
5996 int get button() native "return this.button;"; 5996 int get button() native "return this.button;";
5997 5997
5998 int get clientX() native "return this.clientX;"; 5998 int get clientX() native "return this.clientX;";
5999 5999
6000 int get clientY() native "return this.clientY;"; 6000 int get clientY() native "return this.clientY;";
6001 6001
6002 bool get ctrlKey() native "return this.ctrlKey;"; 6002 bool get ctrlKey() native "return this.ctrlKey;";
6003 6003
6004 ClipboardJs get dataTransfer() native "return this.dataTransfer;"; 6004 _ClipboardJs get dataTransfer() native "return this.dataTransfer;";
6005 6005
6006 NodeJs get fromElement() native "return this.fromElement;"; 6006 _NodeJs get fromElement() native "return this.fromElement;";
6007 6007
6008 bool get metaKey() native "return this.metaKey;"; 6008 bool get metaKey() native "return this.metaKey;";
6009 6009
6010 int get offsetX() native "return this.offsetX;"; 6010 int get offsetX() native "return this.offsetX;";
6011 6011
6012 int get offsetY() native "return this.offsetY;"; 6012 int get offsetY() native "return this.offsetY;";
6013 6013
6014 EventTargetJs get relatedTarget() native "return this.relatedTarget;"; 6014 _EventTargetJs get relatedTarget() native "return this.relatedTarget;";
6015 6015
6016 int get screenX() native "return this.screenX;"; 6016 int get screenX() native "return this.screenX;";
6017 6017
6018 int get screenY() native "return this.screenY;"; 6018 int get screenY() native "return this.screenY;";
6019 6019
6020 bool get shiftKey() native "return this.shiftKey;"; 6020 bool get shiftKey() native "return this.shiftKey;";
6021 6021
6022 NodeJs get toElement() native "return this.toElement;"; 6022 _NodeJs get toElement() native "return this.toElement;";
6023 6023
6024 int get webkitMovementX() native "return this.webkitMovementX;"; 6024 int get webkitMovementX() native "return this.webkitMovementX;";
6025 6025
6026 int get webkitMovementY() native "return this.webkitMovementY;"; 6026 int get webkitMovementY() native "return this.webkitMovementY;";
6027 6027
6028 int get x() native "return this.x;"; 6028 int get x() native "return this.x;";
6029 6029
6030 int get y() native "return this.y;"; 6030 int get y() native "return this.y;";
6031 6031
6032 void initMouseEvent(String type, bool canBubble, bool cancelable, DOMWindowJs view, int detail, int screenX, int screenY, int clientX, int clientY, bool ctrlK ey, bool altKey, bool shiftKey, bool metaKey, int button, EventTargetJs relatedT arget) native; 6032 void initMouseEvent(String type, bool canBubble, bool cancelable, _DOMWindowJs view, int detail, int screenX, int screenY, int clientX, int clientY, bool ctrl Key, bool altKey, bool shiftKey, bool metaKey, int button, _EventTargetJs relate dTarget) native;
6033 } 6033 }
6034 6034
6035 class MutationCallbackJs extends DOMTypeJs implements MutationCallback native "* MutationCallback" { 6035 class _MutationCallbackJs extends _DOMTypeJs implements MutationCallback native "*MutationCallback" {
6036 } 6036 }
6037 6037
6038 class MutationEventJs extends EventJs implements MutationEvent native "*Mutation Event" { 6038 class _MutationEventJs extends _EventJs implements MutationEvent native "*Mutati onEvent" {
6039 6039
6040 static final int ADDITION = 2; 6040 static final int ADDITION = 2;
6041 6041
6042 static final int MODIFICATION = 1; 6042 static final int MODIFICATION = 1;
6043 6043
6044 static final int REMOVAL = 3; 6044 static final int REMOVAL = 3;
6045 6045
6046 int get attrChange() native "return this.attrChange;"; 6046 int get attrChange() native "return this.attrChange;";
6047 6047
6048 String get attrName() native "return this.attrName;"; 6048 String get attrName() native "return this.attrName;";
6049 6049
6050 String get newValue() native "return this.newValue;"; 6050 String get newValue() native "return this.newValue;";
6051 6051
6052 String get prevValue() native "return this.prevValue;"; 6052 String get prevValue() native "return this.prevValue;";
6053 6053
6054 NodeJs get relatedNode() native "return this.relatedNode;"; 6054 _NodeJs get relatedNode() native "return this.relatedNode;";
6055 6055
6056 void initMutationEvent(String type, bool canBubble, bool cancelable, NodeJs re latedNode, String prevValue, String newValue, String attrName, int attrChange) n ative; 6056 void initMutationEvent(String type, bool canBubble, bool cancelable, _NodeJs r elatedNode, String prevValue, String newValue, String attrName, int attrChange) native;
6057 } 6057 }
6058 6058
6059 class MutationRecordJs extends DOMTypeJs implements MutationRecord native "*Muta tionRecord" { 6059 class _MutationRecordJs extends _DOMTypeJs implements MutationRecord native "*Mu tationRecord" {
6060 6060
6061 NodeListJs get addedNodes() native "return this.addedNodes;"; 6061 _NodeListJs get addedNodes() native "return this.addedNodes;";
6062 6062
6063 String get attributeName() native "return this.attributeName;"; 6063 String get attributeName() native "return this.attributeName;";
6064 6064
6065 String get attributeNamespace() native "return this.attributeNamespace;"; 6065 String get attributeNamespace() native "return this.attributeNamespace;";
6066 6066
6067 NodeJs get nextSibling() native "return this.nextSibling;"; 6067 _NodeJs get nextSibling() native "return this.nextSibling;";
6068 6068
6069 String get oldValue() native "return this.oldValue;"; 6069 String get oldValue() native "return this.oldValue;";
6070 6070
6071 NodeJs get previousSibling() native "return this.previousSibling;"; 6071 _NodeJs get previousSibling() native "return this.previousSibling;";
6072 6072
6073 NodeListJs get removedNodes() native "return this.removedNodes;"; 6073 _NodeListJs get removedNodes() native "return this.removedNodes;";
6074 6074
6075 NodeJs get target() native "return this.target;"; 6075 _NodeJs get target() native "return this.target;";
6076 6076
6077 String get type() native "return this.type;"; 6077 String get type() native "return this.type;";
6078 } 6078 }
6079 6079
6080 class NamedNodeMapJs extends DOMTypeJs implements NamedNodeMap native "*NamedNod eMap" { 6080 class _NamedNodeMapJs extends _DOMTypeJs implements NamedNodeMap native "*NamedN odeMap" {
6081 6081
6082 int get length() native "return this.length;"; 6082 int get length() native "return this.length;";
6083 6083
6084 NodeJs operator[](int index) native "return this[index];"; 6084 _NodeJs operator[](int index) native "return this[index];";
6085 6085
6086 void operator[]=(int index, NodeJs value) { 6086 void operator[]=(int index, _NodeJs value) {
6087 throw new UnsupportedOperationException("Cannot assign element of immutable List."); 6087 throw new UnsupportedOperationException("Cannot assign element of immutable List.");
6088 } 6088 }
6089 // -- start List<Node> mixins. 6089 // -- start List<Node> mixins.
6090 // Node is the element type. 6090 // Node is the element type.
6091 6091
6092 // From Iterable<Node>: 6092 // From Iterable<Node>:
6093 6093
6094 Iterator<Node> iterator() { 6094 Iterator<Node> iterator() {
6095 // Note: NodeLists are not fixed size. And most probably length shouldn't 6095 // Note: NodeLists are not fixed size. And most probably length shouldn't
6096 // be cached in both iterator _and_ forEach method. For now caching it 6096 // be cached in both iterator _and_ forEach method. For now caching it
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
6147 throw new UnsupportedOperationException("Cannot removeRange on immutable Lis t."); 6147 throw new UnsupportedOperationException("Cannot removeRange on immutable Lis t.");
6148 } 6148 }
6149 void insertRange(int start, int length, [Node initialValue]) { 6149 void insertRange(int start, int length, [Node initialValue]) {
6150 throw new UnsupportedOperationException("Cannot insertRange on immutable Lis t."); 6150 throw new UnsupportedOperationException("Cannot insertRange on immutable Lis t.");
6151 } 6151 }
6152 List<Node> getRange(int start, int length) => 6152 List<Node> getRange(int start, int length) =>
6153 _Lists.getRange(this, start, length, <Node>[]); 6153 _Lists.getRange(this, start, length, <Node>[]);
6154 6154
6155 // -- end List<Node> mixins. 6155 // -- end List<Node> mixins.
6156 6156
6157 NodeJs getNamedItem(String name) native; 6157 _NodeJs getNamedItem(String name) native;
6158 6158
6159 NodeJs getNamedItemNS(String namespaceURI, String localName) native; 6159 _NodeJs getNamedItemNS(String namespaceURI, String localName) native;
6160 6160
6161 NodeJs item(int index) native; 6161 _NodeJs item(int index) native;
6162 6162
6163 NodeJs removeNamedItem(String name) native; 6163 _NodeJs removeNamedItem(String name) native;
6164 6164
6165 NodeJs removeNamedItemNS(String namespaceURI, String localName) native; 6165 _NodeJs removeNamedItemNS(String namespaceURI, String localName) native;
6166 6166
6167 NodeJs setNamedItem(NodeJs node) native; 6167 _NodeJs setNamedItem(_NodeJs node) native;
6168 6168
6169 NodeJs setNamedItemNS(NodeJs node) native; 6169 _NodeJs setNamedItemNS(_NodeJs node) native;
6170 } 6170 }
6171 6171
6172 class NavigatorJs extends DOMTypeJs implements Navigator native "*Navigator" { 6172 class _NavigatorJs extends _DOMTypeJs implements Navigator native "*Navigator" {
6173 6173
6174 String get appCodeName() native "return this.appCodeName;"; 6174 String get appCodeName() native "return this.appCodeName;";
6175 6175
6176 String get appName() native "return this.appName;"; 6176 String get appName() native "return this.appName;";
6177 6177
6178 String get appVersion() native "return this.appVersion;"; 6178 String get appVersion() native "return this.appVersion;";
6179 6179
6180 bool get cookieEnabled() native "return this.cookieEnabled;"; 6180 bool get cookieEnabled() native "return this.cookieEnabled;";
6181 6181
6182 GeolocationJs get geolocation() native "return this.geolocation;"; 6182 _GeolocationJs get geolocation() native "return this.geolocation;";
6183 6183
6184 String get language() native "return this.language;"; 6184 String get language() native "return this.language;";
6185 6185
6186 DOMMimeTypeArrayJs get mimeTypes() native "return this.mimeTypes;"; 6186 _DOMMimeTypeArrayJs get mimeTypes() native "return this.mimeTypes;";
6187 6187
6188 bool get onLine() native "return this.onLine;"; 6188 bool get onLine() native "return this.onLine;";
6189 6189
6190 String get platform() native "return this.platform;"; 6190 String get platform() native "return this.platform;";
6191 6191
6192 DOMPluginArrayJs get plugins() native "return this.plugins;"; 6192 _DOMPluginArrayJs get plugins() native "return this.plugins;";
6193 6193
6194 String get product() native "return this.product;"; 6194 String get product() native "return this.product;";
6195 6195
6196 String get productSub() native "return this.productSub;"; 6196 String get productSub() native "return this.productSub;";
6197 6197
6198 String get userAgent() native "return this.userAgent;"; 6198 String get userAgent() native "return this.userAgent;";
6199 6199
6200 String get vendor() native "return this.vendor;"; 6200 String get vendor() native "return this.vendor;";
6201 6201
6202 String get vendorSub() native "return this.vendorSub;"; 6202 String get vendorSub() native "return this.vendorSub;";
6203 6203
6204 void getStorageUpdates() native; 6204 void getStorageUpdates() native;
6205 6205
6206 bool javaEnabled() native; 6206 bool javaEnabled() native;
6207 6207
6208 void registerProtocolHandler(String scheme, String url, String title) native; 6208 void registerProtocolHandler(String scheme, String url, String title) native;
6209 } 6209 }
6210 6210
6211 class NodeJs extends DOMTypeJs implements Node native "*Node" { 6211 class _NodeJs extends _DOMTypeJs implements Node native "*Node" {
6212 6212
6213 static final int ATTRIBUTE_NODE = 2; 6213 static final int ATTRIBUTE_NODE = 2;
6214 6214
6215 static final int CDATA_SECTION_NODE = 4; 6215 static final int CDATA_SECTION_NODE = 4;
6216 6216
6217 static final int COMMENT_NODE = 8; 6217 static final int COMMENT_NODE = 8;
6218 6218
6219 static final int DOCUMENT_FRAGMENT_NODE = 11; 6219 static final int DOCUMENT_FRAGMENT_NODE = 11;
6220 6220
6221 static final int DOCUMENT_NODE = 9; 6221 static final int DOCUMENT_NODE = 9;
(...skipping 17 matching lines...) Expand all
6239 static final int ENTITY_NODE = 6; 6239 static final int ENTITY_NODE = 6;
6240 6240
6241 static final int ENTITY_REFERENCE_NODE = 5; 6241 static final int ENTITY_REFERENCE_NODE = 5;
6242 6242
6243 static final int NOTATION_NODE = 12; 6243 static final int NOTATION_NODE = 12;
6244 6244
6245 static final int PROCESSING_INSTRUCTION_NODE = 7; 6245 static final int PROCESSING_INSTRUCTION_NODE = 7;
6246 6246
6247 static final int TEXT_NODE = 3; 6247 static final int TEXT_NODE = 3;
6248 6248
6249 NamedNodeMapJs get attributes() native "return this.attributes;"; 6249 _NamedNodeMapJs get attributes() native "return this.attributes;";
6250 6250
6251 String get baseURI() native "return this.baseURI;"; 6251 String get baseURI() native "return this.baseURI;";
6252 6252
6253 NodeListJs get childNodes() native "return this.childNodes;"; 6253 _NodeListJs get childNodes() native "return this.childNodes;";
6254 6254
6255 NodeJs get firstChild() native "return this.firstChild;"; 6255 _NodeJs get firstChild() native "return this.firstChild;";
6256 6256
6257 NodeJs get lastChild() native "return this.lastChild;"; 6257 _NodeJs get lastChild() native "return this.lastChild;";
6258 6258
6259 String get localName() native "return this.localName;"; 6259 String get localName() native "return this.localName;";
6260 6260
6261 String get namespaceURI() native "return this.namespaceURI;"; 6261 String get namespaceURI() native "return this.namespaceURI;";
6262 6262
6263 NodeJs get nextSibling() native "return this.nextSibling;"; 6263 _NodeJs get nextSibling() native "return this.nextSibling;";
6264 6264
6265 String get nodeName() native "return this.nodeName;"; 6265 String get nodeName() native "return this.nodeName;";
6266 6266
6267 int get nodeType() native "return this.nodeType;"; 6267 int get nodeType() native "return this.nodeType;";
6268 6268
6269 String get nodeValue() native "return this.nodeValue;"; 6269 String get nodeValue() native "return this.nodeValue;";
6270 6270
6271 void set nodeValue(String value) native "this.nodeValue = value;"; 6271 void set nodeValue(String value) native "this.nodeValue = value;";
6272 6272
6273 DocumentJs get ownerDocument() native "return this.ownerDocument;"; 6273 _DocumentJs get ownerDocument() native "return this.ownerDocument;";
6274 6274
6275 ElementJs get parentElement() native "return this.parentElement;"; 6275 _ElementJs get parentElement() native "return this.parentElement;";
6276 6276
6277 NodeJs get parentNode() native "return this.parentNode;"; 6277 _NodeJs get parentNode() native "return this.parentNode;";
6278 6278
6279 String get prefix() native "return this.prefix;"; 6279 String get prefix() native "return this.prefix;";
6280 6280
6281 void set prefix(String value) native "this.prefix = value;"; 6281 void set prefix(String value) native "this.prefix = value;";
6282 6282
6283 NodeJs get previousSibling() native "return this.previousSibling;"; 6283 _NodeJs get previousSibling() native "return this.previousSibling;";
6284 6284
6285 String get textContent() native "return this.textContent;"; 6285 String get textContent() native "return this.textContent;";
6286 6286
6287 void set textContent(String value) native "this.textContent = value;"; 6287 void set textContent(String value) native "this.textContent = value;";
6288 6288
6289 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native; 6289 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
6290 6290
6291 NodeJs appendChild(NodeJs newChild) native; 6291 _NodeJs appendChild(_NodeJs newChild) native;
6292 6292
6293 NodeJs cloneNode(bool deep) native; 6293 _NodeJs cloneNode(bool deep) native;
6294 6294
6295 int compareDocumentPosition(NodeJs other) native; 6295 int compareDocumentPosition(_NodeJs other) native;
6296 6296
6297 bool contains(NodeJs other) native; 6297 bool contains(_NodeJs other) native;
6298 6298
6299 bool dispatchEvent(EventJs event) native; 6299 bool dispatchEvent(_EventJs event) native;
6300 6300
6301 bool hasAttributes() native; 6301 bool hasAttributes() native;
6302 6302
6303 bool hasChildNodes() native; 6303 bool hasChildNodes() native;
6304 6304
6305 NodeJs insertBefore(NodeJs newChild, NodeJs refChild) native; 6305 _NodeJs insertBefore(_NodeJs newChild, _NodeJs refChild) native;
6306 6306
6307 bool isDefaultNamespace(String namespaceURI) native; 6307 bool isDefaultNamespace(String namespaceURI) native;
6308 6308
6309 bool isEqualNode(NodeJs other) native; 6309 bool isEqualNode(_NodeJs other) native;
6310 6310
6311 bool isSameNode(NodeJs other) native; 6311 bool isSameNode(_NodeJs other) native;
6312 6312
6313 bool isSupported(String feature, String version) native; 6313 bool isSupported(String feature, String version) native;
6314 6314
6315 String lookupNamespaceURI(String prefix) native; 6315 String lookupNamespaceURI(String prefix) native;
6316 6316
6317 String lookupPrefix(String namespaceURI) native; 6317 String lookupPrefix(String namespaceURI) native;
6318 6318
6319 void normalize() native; 6319 void normalize() native;
6320 6320
6321 NodeJs removeChild(NodeJs oldChild) native; 6321 _NodeJs removeChild(_NodeJs oldChild) native;
6322 6322
6323 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native; 6323 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
6324 6324
6325 NodeJs replaceChild(NodeJs newChild, NodeJs oldChild) native; 6325 _NodeJs replaceChild(_NodeJs newChild, _NodeJs oldChild) native;
6326 } 6326 }
6327 6327
6328 class NodeFilterJs extends DOMTypeJs implements NodeFilter native "*NodeFilter" { 6328 class _NodeFilterJs extends _DOMTypeJs implements NodeFilter native "*NodeFilter " {
6329 6329
6330 static final int FILTER_ACCEPT = 1; 6330 static final int FILTER_ACCEPT = 1;
6331 6331
6332 static final int FILTER_REJECT = 2; 6332 static final int FILTER_REJECT = 2;
6333 6333
6334 static final int FILTER_SKIP = 3; 6334 static final int FILTER_SKIP = 3;
6335 6335
6336 static final int SHOW_ALL = 0xFFFFFFFF; 6336 static final int SHOW_ALL = 0xFFFFFFFF;
6337 6337
6338 static final int SHOW_ATTRIBUTE = 0x00000002; 6338 static final int SHOW_ATTRIBUTE = 0x00000002;
(...skipping 13 matching lines...) Expand all
6352 static final int SHOW_ENTITY = 0x00000020; 6352 static final int SHOW_ENTITY = 0x00000020;
6353 6353
6354 static final int SHOW_ENTITY_REFERENCE = 0x00000010; 6354 static final int SHOW_ENTITY_REFERENCE = 0x00000010;
6355 6355
6356 static final int SHOW_NOTATION = 0x00000800; 6356 static final int SHOW_NOTATION = 0x00000800;
6357 6357
6358 static final int SHOW_PROCESSING_INSTRUCTION = 0x00000040; 6358 static final int SHOW_PROCESSING_INSTRUCTION = 0x00000040;
6359 6359
6360 static final int SHOW_TEXT = 0x00000004; 6360 static final int SHOW_TEXT = 0x00000004;
6361 6361
6362 int acceptNode(NodeJs n) native; 6362 int acceptNode(_NodeJs n) native;
6363 } 6363 }
6364 6364
6365 class NodeIteratorJs extends DOMTypeJs implements NodeIterator native "*NodeIter ator" { 6365 class _NodeIteratorJs extends _DOMTypeJs implements NodeIterator native "*NodeIt erator" {
6366 6366
6367 bool get expandEntityReferences() native "return this.expandEntityReferences;" ; 6367 bool get expandEntityReferences() native "return this.expandEntityReferences;" ;
6368 6368
6369 NodeFilterJs get filter() native "return this.filter;"; 6369 _NodeFilterJs get filter() native "return this.filter;";
6370 6370
6371 bool get pointerBeforeReferenceNode() native "return this.pointerBeforeReferen ceNode;"; 6371 bool get pointerBeforeReferenceNode() native "return this.pointerBeforeReferen ceNode;";
6372 6372
6373 NodeJs get referenceNode() native "return this.referenceNode;"; 6373 _NodeJs get referenceNode() native "return this.referenceNode;";
6374 6374
6375 NodeJs get root() native "return this.root;"; 6375 _NodeJs get root() native "return this.root;";
6376 6376
6377 int get whatToShow() native "return this.whatToShow;"; 6377 int get whatToShow() native "return this.whatToShow;";
6378 6378
6379 void detach() native; 6379 void detach() native;
6380 6380
6381 NodeJs nextNode() native; 6381 _NodeJs nextNode() native;
6382 6382
6383 NodeJs previousNode() native; 6383 _NodeJs previousNode() native;
6384 } 6384 }
6385 6385
6386 class NodeListJs extends DOMTypeJs implements NodeList native "*NodeList" { 6386 class _NodeListJs extends _DOMTypeJs implements NodeList native "*NodeList" {
6387 6387
6388 int get length() native "return this.length;"; 6388 int get length() native "return this.length;";
6389 6389
6390 NodeJs operator[](int index) native "return this[index];"; 6390 _NodeJs operator[](int index) native "return this[index];";
6391 6391
6392 void operator[]=(int index, NodeJs value) { 6392 void operator[]=(int index, _NodeJs value) {
6393 throw new UnsupportedOperationException("Cannot assign element of immutable List."); 6393 throw new UnsupportedOperationException("Cannot assign element of immutable List.");
6394 } 6394 }
6395 // -- start List<Node> mixins. 6395 // -- start List<Node> mixins.
6396 // Node is the element type. 6396 // Node is the element type.
6397 6397
6398 // From Iterable<Node>: 6398 // From Iterable<Node>:
6399 6399
6400 Iterator<Node> iterator() { 6400 Iterator<Node> iterator() {
6401 // Note: NodeLists are not fixed size. And most probably length shouldn't 6401 // Note: NodeLists are not fixed size. And most probably length shouldn't
6402 // be cached in both iterator _and_ forEach method. For now caching it 6402 // be cached in both iterator _and_ forEach method. For now caching it
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
6453 throw new UnsupportedOperationException("Cannot removeRange on immutable Lis t."); 6453 throw new UnsupportedOperationException("Cannot removeRange on immutable Lis t.");
6454 } 6454 }
6455 void insertRange(int start, int length, [Node initialValue]) { 6455 void insertRange(int start, int length, [Node initialValue]) {
6456 throw new UnsupportedOperationException("Cannot insertRange on immutable Lis t."); 6456 throw new UnsupportedOperationException("Cannot insertRange on immutable Lis t.");
6457 } 6457 }
6458 List<Node> getRange(int start, int length) => 6458 List<Node> getRange(int start, int length) =>
6459 _Lists.getRange(this, start, length, <Node>[]); 6459 _Lists.getRange(this, start, length, <Node>[]);
6460 6460
6461 // -- end List<Node> mixins. 6461 // -- end List<Node> mixins.
6462 6462
6463 NodeJs item(int index) native; 6463 _NodeJs item(int index) native;
6464 } 6464 }
6465 6465
6466 class NodeSelectorJs extends DOMTypeJs implements NodeSelector native "*NodeSele ctor" { 6466 class _NodeSelectorJs extends _DOMTypeJs implements NodeSelector native "*NodeSe lector" {
6467 6467
6468 ElementJs querySelector(String selectors) native; 6468 _ElementJs querySelector(String selectors) native;
6469 6469
6470 NodeListJs querySelectorAll(String selectors) native; 6470 _NodeListJs querySelectorAll(String selectors) native;
6471 } 6471 }
6472 6472
6473 class NotationJs extends NodeJs implements Notation native "*Notation" { 6473 class _NotationJs extends _NodeJs implements Notation native "*Notation" {
6474 6474
6475 String get publicId() native "return this.publicId;"; 6475 String get publicId() native "return this.publicId;";
6476 6476
6477 String get systemId() native "return this.systemId;"; 6477 String get systemId() native "return this.systemId;";
6478 } 6478 }
6479 6479
6480 class NotificationJs extends DOMTypeJs implements Notification native "*Notifica tion" { 6480 class _NotificationJs extends _DOMTypeJs implements Notification native "*Notifi cation" {
6481 6481
6482 String get dir() native "return this.dir;"; 6482 String get dir() native "return this.dir;";
6483 6483
6484 void set dir(String value) native "this.dir = value;"; 6484 void set dir(String value) native "this.dir = value;";
6485 6485
6486 String get replaceId() native "return this.replaceId;"; 6486 String get replaceId() native "return this.replaceId;";
6487 6487
6488 void set replaceId(String value) native "this.replaceId = value;"; 6488 void set replaceId(String value) native "this.replaceId = value;";
6489 6489
6490 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native; 6490 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
6491 6491
6492 void cancel() native; 6492 void cancel() native;
6493 6493
6494 bool dispatchEvent(EventJs evt) native; 6494 bool dispatchEvent(_EventJs evt) native;
6495 6495
6496 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native; 6496 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
6497 6497
6498 void show() native; 6498 void show() native;
6499 } 6499 }
6500 6500
6501 class NotificationCenterJs extends DOMTypeJs implements NotificationCenter nativ e "*NotificationCenter" { 6501 class _NotificationCenterJs extends _DOMTypeJs implements NotificationCenter nat ive "*NotificationCenter" {
6502 6502
6503 int checkPermission() native; 6503 int checkPermission() native;
6504 6504
6505 NotificationJs createHTMLNotification(String url) native; 6505 _NotificationJs createHTMLNotification(String url) native;
6506 6506
6507 NotificationJs createNotification(String iconUrl, String title, String body) n ative; 6507 _NotificationJs createNotification(String iconUrl, String title, String body) native;
6508 6508
6509 void requestPermission(VoidCallback callback) native; 6509 void requestPermission(VoidCallback callback) native;
6510 } 6510 }
6511 6511
6512 class OESStandardDerivativesJs extends DOMTypeJs implements OESStandardDerivativ es native "*OESStandardDerivatives" { 6512 class _OESStandardDerivativesJs extends _DOMTypeJs implements OESStandardDerivat ives native "*OESStandardDerivatives" {
6513 6513
6514 static final int FRAGMENT_SHADER_DERIVATIVE_HINT_OES = 0x8B8B; 6514 static final int FRAGMENT_SHADER_DERIVATIVE_HINT_OES = 0x8B8B;
6515 } 6515 }
6516 6516
6517 class OESTextureFloatJs extends DOMTypeJs implements OESTextureFloat native "*OE STextureFloat" { 6517 class _OESTextureFloatJs extends _DOMTypeJs implements OESTextureFloat native "* OESTextureFloat" {
6518 } 6518 }
6519 6519
6520 class OESVertexArrayObjectJs extends DOMTypeJs implements OESVertexArrayObject n ative "*OESVertexArrayObject" { 6520 class _OESVertexArrayObjectJs extends _DOMTypeJs implements OESVertexArrayObject native "*OESVertexArrayObject" {
6521 6521
6522 static final int VERTEX_ARRAY_BINDING_OES = 0x85B5; 6522 static final int VERTEX_ARRAY_BINDING_OES = 0x85B5;
6523 6523
6524 void bindVertexArrayOES(WebGLVertexArrayObjectOESJs arrayObject) native; 6524 void bindVertexArrayOES(_WebGLVertexArrayObjectOESJs arrayObject) native;
6525 6525
6526 WebGLVertexArrayObjectOESJs createVertexArrayOES() native; 6526 _WebGLVertexArrayObjectOESJs createVertexArrayOES() native;
6527 6527
6528 void deleteVertexArrayOES(WebGLVertexArrayObjectOESJs arrayObject) native; 6528 void deleteVertexArrayOES(_WebGLVertexArrayObjectOESJs arrayObject) native;
6529 6529
6530 bool isVertexArrayOES(WebGLVertexArrayObjectOESJs arrayObject) native; 6530 bool isVertexArrayOES(_WebGLVertexArrayObjectOESJs arrayObject) native;
6531 } 6531 }
6532 6532
6533 class OfflineAudioCompletionEventJs extends EventJs implements OfflineAudioCompl etionEvent native "*OfflineAudioCompletionEvent" { 6533 class _OfflineAudioCompletionEventJs extends _EventJs implements OfflineAudioCom pletionEvent native "*OfflineAudioCompletionEvent" {
6534 6534
6535 AudioBufferJs get renderedBuffer() native "return this.renderedBuffer;"; 6535 _AudioBufferJs get renderedBuffer() native "return this.renderedBuffer;";
6536 } 6536 }
6537 6537
6538 class OperationNotAllowedExceptionJs extends DOMTypeJs implements OperationNotAl lowedException native "*OperationNotAllowedException" { 6538 class _OperationNotAllowedExceptionJs extends _DOMTypeJs implements OperationNot AllowedException native "*OperationNotAllowedException" {
6539 6539
6540 static final int NOT_ALLOWED_ERR = 1; 6540 static final int NOT_ALLOWED_ERR = 1;
6541 6541
6542 int get code() native "return this.code;"; 6542 int get code() native "return this.code;";
6543 6543
6544 String get message() native "return this.message;"; 6544 String get message() native "return this.message;";
6545 6545
6546 String get name() native "return this.name;"; 6546 String get name() native "return this.name;";
6547 6547
6548 String toString() native; 6548 String toString() native;
6549 } 6549 }
6550 6550
6551 class OverflowEventJs extends EventJs implements OverflowEvent native "*Overflow Event" { 6551 class _OverflowEventJs extends _EventJs implements OverflowEvent native "*Overfl owEvent" {
6552 6552
6553 static final int BOTH = 2; 6553 static final int BOTH = 2;
6554 6554
6555 static final int HORIZONTAL = 0; 6555 static final int HORIZONTAL = 0;
6556 6556
6557 static final int VERTICAL = 1; 6557 static final int VERTICAL = 1;
6558 6558
6559 bool get horizontalOverflow() native "return this.horizontalOverflow;"; 6559 bool get horizontalOverflow() native "return this.horizontalOverflow;";
6560 6560
6561 int get orient() native "return this.orient;"; 6561 int get orient() native "return this.orient;";
6562 6562
6563 bool get verticalOverflow() native "return this.verticalOverflow;"; 6563 bool get verticalOverflow() native "return this.verticalOverflow;";
6564 } 6564 }
6565 6565
6566 class PageTransitionEventJs extends EventJs implements PageTransitionEvent nativ e "*PageTransitionEvent" { 6566 class _PageTransitionEventJs extends _EventJs implements PageTransitionEvent nat ive "*PageTransitionEvent" {
6567 6567
6568 bool get persisted() native "return this.persisted;"; 6568 bool get persisted() native "return this.persisted;";
6569 } 6569 }
6570 6570
6571 class PerformanceJs extends DOMTypeJs implements Performance native "*Performanc e" { 6571 class _PerformanceJs extends _DOMTypeJs implements Performance native "*Performa nce" {
6572 6572
6573 MemoryInfoJs get memory() native "return this.memory;"; 6573 _MemoryInfoJs get memory() native "return this.memory;";
6574 6574
6575 PerformanceNavigationJs get navigation() native "return this.navigation;"; 6575 _PerformanceNavigationJs get navigation() native "return this.navigation;";
6576 6576
6577 PerformanceTimingJs get timing() native "return this.timing;"; 6577 _PerformanceTimingJs get timing() native "return this.timing;";
6578 } 6578 }
6579 6579
6580 class PerformanceNavigationJs extends DOMTypeJs implements PerformanceNavigation native "*PerformanceNavigation" { 6580 class _PerformanceNavigationJs extends _DOMTypeJs implements PerformanceNavigati on native "*PerformanceNavigation" {
6581 6581
6582 static final int TYPE_BACK_FORWARD = 2; 6582 static final int TYPE_BACK_FORWARD = 2;
6583 6583
6584 static final int TYPE_NAVIGATE = 0; 6584 static final int TYPE_NAVIGATE = 0;
6585 6585
6586 static final int TYPE_RELOAD = 1; 6586 static final int TYPE_RELOAD = 1;
6587 6587
6588 static final int TYPE_RESERVED = 255; 6588 static final int TYPE_RESERVED = 255;
6589 6589
6590 int get redirectCount() native "return this.redirectCount;"; 6590 int get redirectCount() native "return this.redirectCount;";
6591 6591
6592 int get type() native "return this.type;"; 6592 int get type() native "return this.type;";
6593 } 6593 }
6594 6594
6595 class PerformanceTimingJs extends DOMTypeJs implements PerformanceTiming native "*PerformanceTiming" { 6595 class _PerformanceTimingJs extends _DOMTypeJs implements PerformanceTiming nativ e "*PerformanceTiming" {
6596 6596
6597 int get connectEnd() native "return this.connectEnd;"; 6597 int get connectEnd() native "return this.connectEnd;";
6598 6598
6599 int get connectStart() native "return this.connectStart;"; 6599 int get connectStart() native "return this.connectStart;";
6600 6600
6601 int get domComplete() native "return this.domComplete;"; 6601 int get domComplete() native "return this.domComplete;";
6602 6602
6603 int get domContentLoadedEventEnd() native "return this.domContentLoadedEventEn d;"; 6603 int get domContentLoadedEventEnd() native "return this.domContentLoadedEventEn d;";
6604 6604
6605 int get domContentLoadedEventStart() native "return this.domContentLoadedEvent Start;"; 6605 int get domContentLoadedEventStart() native "return this.domContentLoadedEvent Start;";
(...skipping 24 matching lines...) Expand all
6630 6630
6631 int get responseStart() native "return this.responseStart;"; 6631 int get responseStart() native "return this.responseStart;";
6632 6632
6633 int get secureConnectionStart() native "return this.secureConnectionStart;"; 6633 int get secureConnectionStart() native "return this.secureConnectionStart;";
6634 6634
6635 int get unloadEventEnd() native "return this.unloadEventEnd;"; 6635 int get unloadEventEnd() native "return this.unloadEventEnd;";
6636 6636
6637 int get unloadEventStart() native "return this.unloadEventStart;"; 6637 int get unloadEventStart() native "return this.unloadEventStart;";
6638 } 6638 }
6639 6639
6640 class PointerLockJs extends DOMTypeJs implements PointerLock native "*PointerLoc k" { 6640 class _PointerLockJs extends _DOMTypeJs implements PointerLock native "*PointerL ock" {
6641 6641
6642 bool get isLocked() native "return this.isLocked;"; 6642 bool get isLocked() native "return this.isLocked;";
6643 6643
6644 void lock(ElementJs target, [VoidCallback successCallback = null, VoidCallback failureCallback = null]) native; 6644 void lock(_ElementJs target, [VoidCallback successCallback = null, VoidCallbac k failureCallback = null]) native;
6645 6645
6646 void unlock() native; 6646 void unlock() native;
6647 } 6647 }
6648 6648
6649 class PopStateEventJs extends EventJs implements PopStateEvent native "*PopState Event" { 6649 class _PopStateEventJs extends _EventJs implements PopStateEvent native "*PopSta teEvent" {
6650 6650
6651 Object get state() native "return this.state;"; 6651 Object get state() native "return this.state;";
6652 } 6652 }
6653 6653
6654 class PositionErrorJs extends DOMTypeJs implements PositionError native "*Positi onError" { 6654 class _PositionErrorJs extends _DOMTypeJs implements PositionError native "*Posi tionError" {
6655 6655
6656 static final int PERMISSION_DENIED = 1; 6656 static final int PERMISSION_DENIED = 1;
6657 6657
6658 static final int POSITION_UNAVAILABLE = 2; 6658 static final int POSITION_UNAVAILABLE = 2;
6659 6659
6660 static final int TIMEOUT = 3; 6660 static final int TIMEOUT = 3;
6661 6661
6662 int get code() native "return this.code;"; 6662 int get code() native "return this.code;";
6663 6663
6664 String get message() native "return this.message;"; 6664 String get message() native "return this.message;";
6665 } 6665 }
6666 6666
6667 class ProcessingInstructionJs extends NodeJs implements ProcessingInstruction na tive "*ProcessingInstruction" { 6667 class _ProcessingInstructionJs extends _NodeJs implements ProcessingInstruction native "*ProcessingInstruction" {
6668 6668
6669 String get data() native "return this.data;"; 6669 String get data() native "return this.data;";
6670 6670
6671 void set data(String value) native "this.data = value;"; 6671 void set data(String value) native "this.data = value;";
6672 6672
6673 StyleSheetJs get sheet() native "return this.sheet;"; 6673 _StyleSheetJs get sheet() native "return this.sheet;";
6674 6674
6675 String get target() native "return this.target;"; 6675 String get target() native "return this.target;";
6676 } 6676 }
6677 6677
6678 class ProgressEventJs extends EventJs implements ProgressEvent native "*Progress Event" { 6678 class _ProgressEventJs extends _EventJs implements ProgressEvent native "*Progre ssEvent" {
6679 6679
6680 bool get lengthComputable() native "return this.lengthComputable;"; 6680 bool get lengthComputable() native "return this.lengthComputable;";
6681 6681
6682 int get loaded() native "return this.loaded;"; 6682 int get loaded() native "return this.loaded;";
6683 6683
6684 int get total() native "return this.total;"; 6684 int get total() native "return this.total;";
6685 } 6685 }
6686 6686
6687 class RGBColorJs extends DOMTypeJs implements RGBColor native "*RGBColor" { 6687 class _RGBColorJs extends _DOMTypeJs implements RGBColor native "*RGBColor" {
6688 6688
6689 CSSPrimitiveValueJs get blue() native "return this.blue;"; 6689 _CSSPrimitiveValueJs get blue() native "return this.blue;";
6690 6690
6691 CSSPrimitiveValueJs get green() native "return this.green;"; 6691 _CSSPrimitiveValueJs get green() native "return this.green;";
6692 6692
6693 CSSPrimitiveValueJs get red() native "return this.red;"; 6693 _CSSPrimitiveValueJs get red() native "return this.red;";
6694 } 6694 }
6695 6695
6696 class RangeJs extends DOMTypeJs implements Range native "*Range" { 6696 class _RangeJs extends _DOMTypeJs implements Range native "*Range" {
6697 6697
6698 static final int END_TO_END = 2; 6698 static final int END_TO_END = 2;
6699 6699
6700 static final int END_TO_START = 3; 6700 static final int END_TO_START = 3;
6701 6701
6702 static final int NODE_AFTER = 1; 6702 static final int NODE_AFTER = 1;
6703 6703
6704 static final int NODE_BEFORE = 0; 6704 static final int NODE_BEFORE = 0;
6705 6705
6706 static final int NODE_BEFORE_AND_AFTER = 2; 6706 static final int NODE_BEFORE_AND_AFTER = 2;
6707 6707
6708 static final int NODE_INSIDE = 3; 6708 static final int NODE_INSIDE = 3;
6709 6709
6710 static final int START_TO_END = 1; 6710 static final int START_TO_END = 1;
6711 6711
6712 static final int START_TO_START = 0; 6712 static final int START_TO_START = 0;
6713 6713
6714 bool get collapsed() native "return this.collapsed;"; 6714 bool get collapsed() native "return this.collapsed;";
6715 6715
6716 NodeJs get commonAncestorContainer() native "return this.commonAncestorContain er;"; 6716 _NodeJs get commonAncestorContainer() native "return this.commonAncestorContai ner;";
6717 6717
6718 NodeJs get endContainer() native "return this.endContainer;"; 6718 _NodeJs get endContainer() native "return this.endContainer;";
6719 6719
6720 int get endOffset() native "return this.endOffset;"; 6720 int get endOffset() native "return this.endOffset;";
6721 6721
6722 NodeJs get startContainer() native "return this.startContainer;"; 6722 _NodeJs get startContainer() native "return this.startContainer;";
6723 6723
6724 int get startOffset() native "return this.startOffset;"; 6724 int get startOffset() native "return this.startOffset;";
6725 6725
6726 DocumentFragmentJs cloneContents() native; 6726 _DocumentFragmentJs cloneContents() native;
6727 6727
6728 RangeJs cloneRange() native; 6728 _RangeJs cloneRange() native;
6729 6729
6730 void collapse(bool toStart) native; 6730 void collapse(bool toStart) native;
6731 6731
6732 int compareNode(NodeJs refNode) native; 6732 int compareNode(_NodeJs refNode) native;
6733 6733
6734 int comparePoint(NodeJs refNode, int offset) native; 6734 int comparePoint(_NodeJs refNode, int offset) native;
6735 6735
6736 DocumentFragmentJs createContextualFragment(String html) native; 6736 _DocumentFragmentJs createContextualFragment(String html) native;
6737 6737
6738 void deleteContents() native; 6738 void deleteContents() native;
6739 6739
6740 void detach() native; 6740 void detach() native;
6741 6741
6742 void expand(String unit) native; 6742 void expand(String unit) native;
6743 6743
6744 DocumentFragmentJs extractContents() native; 6744 _DocumentFragmentJs extractContents() native;
6745 6745
6746 ClientRectJs getBoundingClientRect() native; 6746 _ClientRectJs getBoundingClientRect() native;
6747 6747
6748 ClientRectListJs getClientRects() native; 6748 _ClientRectListJs getClientRects() native;
6749 6749
6750 void insertNode(NodeJs newNode) native; 6750 void insertNode(_NodeJs newNode) native;
6751 6751
6752 bool intersectsNode(NodeJs refNode) native; 6752 bool intersectsNode(_NodeJs refNode) native;
6753 6753
6754 bool isPointInRange(NodeJs refNode, int offset) native; 6754 bool isPointInRange(_NodeJs refNode, int offset) native;
6755 6755
6756 void selectNode(NodeJs refNode) native; 6756 void selectNode(_NodeJs refNode) native;
6757 6757
6758 void selectNodeContents(NodeJs refNode) native; 6758 void selectNodeContents(_NodeJs refNode) native;
6759 6759
6760 void setEnd(NodeJs refNode, int offset) native; 6760 void setEnd(_NodeJs refNode, int offset) native;
6761 6761
6762 void setEndAfter(NodeJs refNode) native; 6762 void setEndAfter(_NodeJs refNode) native;
6763 6763
6764 void setEndBefore(NodeJs refNode) native; 6764 void setEndBefore(_NodeJs refNode) native;
6765 6765
6766 void setStart(NodeJs refNode, int offset) native; 6766 void setStart(_NodeJs refNode, int offset) native;
6767 6767
6768 void setStartAfter(NodeJs refNode) native; 6768 void setStartAfter(_NodeJs refNode) native;
6769 6769
6770 void setStartBefore(NodeJs refNode) native; 6770 void setStartBefore(_NodeJs refNode) native;
6771 6771
6772 void surroundContents(NodeJs newParent) native; 6772 void surroundContents(_NodeJs newParent) native;
6773 6773
6774 String toString() native; 6774 String toString() native;
6775 } 6775 }
6776 6776
6777 class RangeExceptionJs extends DOMTypeJs implements RangeException native "*Rang eException" { 6777 class _RangeExceptionJs extends _DOMTypeJs implements RangeException native "*Ra ngeException" {
6778 6778
6779 static final int BAD_BOUNDARYPOINTS_ERR = 1; 6779 static final int BAD_BOUNDARYPOINTS_ERR = 1;
6780 6780
6781 static final int INVALID_NODE_TYPE_ERR = 2; 6781 static final int INVALID_NODE_TYPE_ERR = 2;
6782 6782
6783 int get code() native "return this.code;"; 6783 int get code() native "return this.code;";
6784 6784
6785 String get message() native "return this.message;"; 6785 String get message() native "return this.message;";
6786 6786
6787 String get name() native "return this.name;"; 6787 String get name() native "return this.name;";
6788 6788
6789 String toString() native; 6789 String toString() native;
6790 } 6790 }
6791 6791
6792 class RealtimeAnalyserNodeJs extends AudioNodeJs implements RealtimeAnalyserNode native "*RealtimeAnalyserNode" { 6792 class _RealtimeAnalyserNodeJs extends _AudioNodeJs implements RealtimeAnalyserNo de native "*RealtimeAnalyserNode" {
6793 6793
6794 int get fftSize() native "return this.fftSize;"; 6794 int get fftSize() native "return this.fftSize;";
6795 6795
6796 void set fftSize(int value) native "this.fftSize = value;"; 6796 void set fftSize(int value) native "this.fftSize = value;";
6797 6797
6798 int get frequencyBinCount() native "return this.frequencyBinCount;"; 6798 int get frequencyBinCount() native "return this.frequencyBinCount;";
6799 6799
6800 num get maxDecibels() native "return this.maxDecibels;"; 6800 num get maxDecibels() native "return this.maxDecibels;";
6801 6801
6802 void set maxDecibels(num value) native "this.maxDecibels = value;"; 6802 void set maxDecibels(num value) native "this.maxDecibels = value;";
6803 6803
6804 num get minDecibels() native "return this.minDecibels;"; 6804 num get minDecibels() native "return this.minDecibels;";
6805 6805
6806 void set minDecibels(num value) native "this.minDecibels = value;"; 6806 void set minDecibels(num value) native "this.minDecibels = value;";
6807 6807
6808 num get smoothingTimeConstant() native "return this.smoothingTimeConstant;"; 6808 num get smoothingTimeConstant() native "return this.smoothingTimeConstant;";
6809 6809
6810 void set smoothingTimeConstant(num value) native "this.smoothingTimeConstant = value;"; 6810 void set smoothingTimeConstant(num value) native "this.smoothingTimeConstant = value;";
6811 6811
6812 void getByteFrequencyData(Uint8ArrayJs array) native; 6812 void getByteFrequencyData(_Uint8ArrayJs array) native;
6813 6813
6814 void getByteTimeDomainData(Uint8ArrayJs array) native; 6814 void getByteTimeDomainData(_Uint8ArrayJs array) native;
6815 6815
6816 void getFloatFrequencyData(Float32ArrayJs array) native; 6816 void getFloatFrequencyData(_Float32ArrayJs array) native;
6817 } 6817 }
6818 6818
6819 class RectJs extends DOMTypeJs implements Rect native "*Rect" { 6819 class _RectJs extends _DOMTypeJs implements Rect native "*Rect" {
6820 6820
6821 CSSPrimitiveValueJs get bottom() native "return this.bottom;"; 6821 _CSSPrimitiveValueJs get bottom() native "return this.bottom;";
6822 6822
6823 CSSPrimitiveValueJs get left() native "return this.left;"; 6823 _CSSPrimitiveValueJs get left() native "return this.left;";
6824 6824
6825 CSSPrimitiveValueJs get right() native "return this.right;"; 6825 _CSSPrimitiveValueJs get right() native "return this.right;";
6826 6826
6827 CSSPrimitiveValueJs get top() native "return this.top;"; 6827 _CSSPrimitiveValueJs get top() native "return this.top;";
6828 } 6828 }
6829 6829
6830 class SQLErrorJs extends DOMTypeJs implements SQLError native "*SQLError" { 6830 class _SQLErrorJs extends _DOMTypeJs implements SQLError native "*SQLError" {
6831 6831
6832 static final int CONSTRAINT_ERR = 6; 6832 static final int CONSTRAINT_ERR = 6;
6833 6833
6834 static final int DATABASE_ERR = 1; 6834 static final int DATABASE_ERR = 1;
6835 6835
6836 static final int QUOTA_ERR = 4; 6836 static final int QUOTA_ERR = 4;
6837 6837
6838 static final int SYNTAX_ERR = 5; 6838 static final int SYNTAX_ERR = 5;
6839 6839
6840 static final int TIMEOUT_ERR = 7; 6840 static final int TIMEOUT_ERR = 7;
6841 6841
6842 static final int TOO_LARGE_ERR = 3; 6842 static final int TOO_LARGE_ERR = 3;
6843 6843
6844 static final int UNKNOWN_ERR = 0; 6844 static final int UNKNOWN_ERR = 0;
6845 6845
6846 static final int VERSION_ERR = 2; 6846 static final int VERSION_ERR = 2;
6847 6847
6848 int get code() native "return this.code;"; 6848 int get code() native "return this.code;";
6849 6849
6850 String get message() native "return this.message;"; 6850 String get message() native "return this.message;";
6851 } 6851 }
6852 6852
6853 class SQLExceptionJs extends DOMTypeJs implements SQLException native "*SQLExcep tion" { 6853 class _SQLExceptionJs extends _DOMTypeJs implements SQLException native "*SQLExc eption" {
6854 6854
6855 static final int CONSTRAINT_ERR = 6; 6855 static final int CONSTRAINT_ERR = 6;
6856 6856
6857 static final int DATABASE_ERR = 1; 6857 static final int DATABASE_ERR = 1;
6858 6858
6859 static final int QUOTA_ERR = 4; 6859 static final int QUOTA_ERR = 4;
6860 6860
6861 static final int SYNTAX_ERR = 5; 6861 static final int SYNTAX_ERR = 5;
6862 6862
6863 static final int TIMEOUT_ERR = 7; 6863 static final int TIMEOUT_ERR = 7;
6864 6864
6865 static final int TOO_LARGE_ERR = 3; 6865 static final int TOO_LARGE_ERR = 3;
6866 6866
6867 static final int UNKNOWN_ERR = 0; 6867 static final int UNKNOWN_ERR = 0;
6868 6868
6869 static final int VERSION_ERR = 2; 6869 static final int VERSION_ERR = 2;
6870 6870
6871 int get code() native "return this.code;"; 6871 int get code() native "return this.code;";
6872 6872
6873 String get message() native "return this.message;"; 6873 String get message() native "return this.message;";
6874 } 6874 }
6875 6875
6876 class SQLResultSetJs extends DOMTypeJs implements SQLResultSet native "*SQLResul tSet" { 6876 class _SQLResultSetJs extends _DOMTypeJs implements SQLResultSet native "*SQLRes ultSet" {
6877 6877
6878 int get insertId() native "return this.insertId;"; 6878 int get insertId() native "return this.insertId;";
6879 6879
6880 SQLResultSetRowListJs get rows() native "return this.rows;"; 6880 _SQLResultSetRowListJs get rows() native "return this.rows;";
6881 6881
6882 int get rowsAffected() native "return this.rowsAffected;"; 6882 int get rowsAffected() native "return this.rowsAffected;";
6883 } 6883 }
6884 6884
6885 class SQLResultSetRowListJs extends DOMTypeJs implements SQLResultSetRowList nat ive "*SQLResultSetRowList" { 6885 class _SQLResultSetRowListJs extends _DOMTypeJs implements SQLResultSetRowList n ative "*SQLResultSetRowList" {
6886 6886
6887 int get length() native "return this.length;"; 6887 int get length() native "return this.length;";
6888 6888
6889 Object item(int index) native; 6889 Object item(int index) native;
6890 } 6890 }
6891 6891
6892 class SQLTransactionJs extends DOMTypeJs implements SQLTransaction native "*SQLT ransaction" { 6892 class _SQLTransactionJs extends _DOMTypeJs implements SQLTransaction native "*SQ LTransaction" {
6893 } 6893 }
6894 6894
6895 class SQLTransactionSyncJs extends DOMTypeJs implements SQLTransactionSync nativ e "*SQLTransactionSync" { 6895 class _SQLTransactionSyncJs extends _DOMTypeJs implements SQLTransactionSync nat ive "*SQLTransactionSync" {
6896 } 6896 }
6897 6897
6898 class SVGAElementJs extends SVGElementJs implements SVGAElement native "*SVGAEle ment" { 6898 class _SVGAElementJs extends _SVGElementJs implements SVGAElement native "*SVGAE lement" {
6899 6899
6900 SVGAnimatedStringJs get target() native "return this.target;"; 6900 _SVGAnimatedStringJs get target() native "return this.target;";
6901 6901
6902 // From SVGURIReference 6902 // From SVGURIReference
6903 6903
6904 SVGAnimatedStringJs get href() native "return this.href;"; 6904 _SVGAnimatedStringJs get href() native "return this.href;";
6905 6905
6906 // From SVGTests 6906 // From SVGTests
6907 6907
6908 SVGStringListJs get requiredExtensions() native "return this.requiredExtension s;"; 6908 _SVGStringListJs get requiredExtensions() native "return this.requiredExtensio ns;";
6909 6909
6910 SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;"; 6910 _SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;" ;
6911 6911
6912 SVGStringListJs get systemLanguage() native "return this.systemLanguage;"; 6912 _SVGStringListJs get systemLanguage() native "return this.systemLanguage;";
6913 6913
6914 bool hasExtension(String extension) native; 6914 bool hasExtension(String extension) native;
6915 6915
6916 // From SVGLangSpace 6916 // From SVGLangSpace
6917 6917
6918 String get xmllang() native "return this.xmllang;"; 6918 String get xmllang() native "return this.xmllang;";
6919 6919
6920 void set xmllang(String value) native "this.xmllang = value;"; 6920 void set xmllang(String value) native "this.xmllang = value;";
6921 6921
6922 String get xmlspace() native "return this.xmlspace;"; 6922 String get xmlspace() native "return this.xmlspace;";
6923 6923
6924 void set xmlspace(String value) native "this.xmlspace = value;"; 6924 void set xmlspace(String value) native "this.xmlspace = value;";
6925 6925
6926 // From SVGExternalResourcesRequired 6926 // From SVGExternalResourcesRequired
6927 6927
6928 SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exter nalResourcesRequired;"; 6928 _SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exte rnalResourcesRequired;";
6929 6929
6930 // From SVGStylable 6930 // From SVGStylable
6931 6931
6932 SVGAnimatedStringJs get className() native "return this.className;"; 6932 _SVGAnimatedStringJs get className() native "return this.className;";
6933 6933
6934 CSSStyleDeclarationJs get style() native "return this.style;"; 6934 _CSSStyleDeclarationJs get style() native "return this.style;";
6935 6935
6936 CSSValueJs getPresentationAttribute(String name) native; 6936 _CSSValueJs getPresentationAttribute(String name) native;
6937 6937
6938 // From SVGTransformable 6938 // From SVGTransformable
6939 6939
6940 SVGAnimatedTransformListJs get transform() native "return this.transform;"; 6940 _SVGAnimatedTransformListJs get transform() native "return this.transform;";
6941 6941
6942 // From SVGLocatable 6942 // From SVGLocatable
6943 6943
6944 SVGElementJs get farthestViewportElement() native "return this.farthestViewpor tElement;"; 6944 _SVGElementJs get farthestViewportElement() native "return this.farthestViewpo rtElement;";
6945 6945
6946 SVGElementJs get nearestViewportElement() native "return this.nearestViewportE lement;"; 6946 _SVGElementJs get nearestViewportElement() native "return this.nearestViewport Element;";
6947 6947
6948 SVGRectJs getBBox() native; 6948 _SVGRectJs getBBox() native;
6949 6949
6950 SVGMatrixJs getCTM() native; 6950 _SVGMatrixJs getCTM() native;
6951 6951
6952 SVGMatrixJs getScreenCTM() native; 6952 _SVGMatrixJs getScreenCTM() native;
6953 6953
6954 SVGMatrixJs getTransformToElement(SVGElementJs element) native; 6954 _SVGMatrixJs getTransformToElement(_SVGElementJs element) native;
6955 } 6955 }
6956 6956
6957 class SVGAltGlyphDefElementJs extends SVGElementJs implements SVGAltGlyphDefElem ent native "*SVGAltGlyphDefElement" { 6957 class _SVGAltGlyphDefElementJs extends _SVGElementJs implements SVGAltGlyphDefEl ement native "*SVGAltGlyphDefElement" {
6958 } 6958 }
6959 6959
6960 class SVGAltGlyphElementJs extends SVGTextPositioningElementJs implements SVGAlt GlyphElement native "*SVGAltGlyphElement" { 6960 class _SVGAltGlyphElementJs extends _SVGTextPositioningElementJs implements SVGA ltGlyphElement native "*SVGAltGlyphElement" {
6961 6961
6962 String get format() native "return this.format;"; 6962 String get format() native "return this.format;";
6963 6963
6964 void set format(String value) native "this.format = value;"; 6964 void set format(String value) native "this.format = value;";
6965 6965
6966 String get glyphRef() native "return this.glyphRef;"; 6966 String get glyphRef() native "return this.glyphRef;";
6967 6967
6968 void set glyphRef(String value) native "this.glyphRef = value;"; 6968 void set glyphRef(String value) native "this.glyphRef = value;";
6969 6969
6970 // From SVGURIReference 6970 // From SVGURIReference
6971 6971
6972 SVGAnimatedStringJs get href() native "return this.href;"; 6972 _SVGAnimatedStringJs get href() native "return this.href;";
6973 } 6973 }
6974 6974
6975 class SVGAltGlyphItemElementJs extends SVGElementJs implements SVGAltGlyphItemEl ement native "*SVGAltGlyphItemElement" { 6975 class _SVGAltGlyphItemElementJs extends _SVGElementJs implements SVGAltGlyphItem Element native "*SVGAltGlyphItemElement" {
6976 } 6976 }
6977 6977
6978 class SVGAngleJs extends DOMTypeJs implements SVGAngle native "*SVGAngle" { 6978 class _SVGAngleJs extends _DOMTypeJs implements SVGAngle native "*SVGAngle" {
6979 6979
6980 static final int SVG_ANGLETYPE_DEG = 2; 6980 static final int SVG_ANGLETYPE_DEG = 2;
6981 6981
6982 static final int SVG_ANGLETYPE_GRAD = 4; 6982 static final int SVG_ANGLETYPE_GRAD = 4;
6983 6983
6984 static final int SVG_ANGLETYPE_RAD = 3; 6984 static final int SVG_ANGLETYPE_RAD = 3;
6985 6985
6986 static final int SVG_ANGLETYPE_UNKNOWN = 0; 6986 static final int SVG_ANGLETYPE_UNKNOWN = 0;
6987 6987
6988 static final int SVG_ANGLETYPE_UNSPECIFIED = 1; 6988 static final int SVG_ANGLETYPE_UNSPECIFIED = 1;
(...skipping 10 matching lines...) Expand all
6999 6999
7000 num get valueInSpecifiedUnits() native "return this.valueInSpecifiedUnits;"; 7000 num get valueInSpecifiedUnits() native "return this.valueInSpecifiedUnits;";
7001 7001
7002 void set valueInSpecifiedUnits(num value) native "this.valueInSpecifiedUnits = value;"; 7002 void set valueInSpecifiedUnits(num value) native "this.valueInSpecifiedUnits = value;";
7003 7003
7004 void convertToSpecifiedUnits(int unitType) native; 7004 void convertToSpecifiedUnits(int unitType) native;
7005 7005
7006 void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) native; 7006 void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) native;
7007 } 7007 }
7008 7008
7009 class SVGAnimateColorElementJs extends SVGAnimationElementJs implements SVGAnima teColorElement native "*SVGAnimateColorElement" { 7009 class _SVGAnimateColorElementJs extends _SVGAnimationElementJs implements SVGAni mateColorElement native "*SVGAnimateColorElement" {
7010 } 7010 }
7011 7011
7012 class SVGAnimateElementJs extends SVGAnimationElementJs implements SVGAnimateEle ment native "*SVGAnimateElement" { 7012 class _SVGAnimateElementJs extends _SVGAnimationElementJs implements SVGAnimateE lement native "*SVGAnimateElement" {
7013 } 7013 }
7014 7014
7015 class SVGAnimateMotionElementJs extends SVGAnimationElementJs implements SVGAnim ateMotionElement native "*SVGAnimateMotionElement" { 7015 class _SVGAnimateMotionElementJs extends _SVGAnimationElementJs implements SVGAn imateMotionElement native "*SVGAnimateMotionElement" {
7016 } 7016 }
7017 7017
7018 class SVGAnimateTransformElementJs extends SVGAnimationElementJs implements SVGA nimateTransformElement native "*SVGAnimateTransformElement" { 7018 class _SVGAnimateTransformElementJs extends _SVGAnimationElementJs implements SV GAnimateTransformElement native "*SVGAnimateTransformElement" {
7019 } 7019 }
7020 7020
7021 class SVGAnimatedAngleJs extends DOMTypeJs implements SVGAnimatedAngle native "* SVGAnimatedAngle" { 7021 class _SVGAnimatedAngleJs extends _DOMTypeJs implements SVGAnimatedAngle native "*SVGAnimatedAngle" {
7022 7022
7023 SVGAngleJs get animVal() native "return this.animVal;"; 7023 _SVGAngleJs get animVal() native "return this.animVal;";
7024 7024
7025 SVGAngleJs get baseVal() native "return this.baseVal;"; 7025 _SVGAngleJs get baseVal() native "return this.baseVal;";
7026 } 7026 }
7027 7027
7028 class SVGAnimatedBooleanJs extends DOMTypeJs implements SVGAnimatedBoolean nativ e "*SVGAnimatedBoolean" { 7028 class _SVGAnimatedBooleanJs extends _DOMTypeJs implements SVGAnimatedBoolean nat ive "*SVGAnimatedBoolean" {
7029 7029
7030 bool get animVal() native "return this.animVal;"; 7030 bool get animVal() native "return this.animVal;";
7031 7031
7032 bool get baseVal() native "return this.baseVal;"; 7032 bool get baseVal() native "return this.baseVal;";
7033 7033
7034 void set baseVal(bool value) native "this.baseVal = value;"; 7034 void set baseVal(bool value) native "this.baseVal = value;";
7035 } 7035 }
7036 7036
7037 class SVGAnimatedEnumerationJs extends DOMTypeJs implements SVGAnimatedEnumerati on native "*SVGAnimatedEnumeration" { 7037 class _SVGAnimatedEnumerationJs extends _DOMTypeJs implements SVGAnimatedEnumera tion native "*SVGAnimatedEnumeration" {
7038 7038
7039 int get animVal() native "return this.animVal;"; 7039 int get animVal() native "return this.animVal;";
7040 7040
7041 int get baseVal() native "return this.baseVal;"; 7041 int get baseVal() native "return this.baseVal;";
7042 7042
7043 void set baseVal(int value) native "this.baseVal = value;"; 7043 void set baseVal(int value) native "this.baseVal = value;";
7044 } 7044 }
7045 7045
7046 class SVGAnimatedIntegerJs extends DOMTypeJs implements SVGAnimatedInteger nativ e "*SVGAnimatedInteger" { 7046 class _SVGAnimatedIntegerJs extends _DOMTypeJs implements SVGAnimatedInteger nat ive "*SVGAnimatedInteger" {
7047 7047
7048 int get animVal() native "return this.animVal;"; 7048 int get animVal() native "return this.animVal;";
7049 7049
7050 int get baseVal() native "return this.baseVal;"; 7050 int get baseVal() native "return this.baseVal;";
7051 7051
7052 void set baseVal(int value) native "this.baseVal = value;"; 7052 void set baseVal(int value) native "this.baseVal = value;";
7053 } 7053 }
7054 7054
7055 class SVGAnimatedLengthJs extends DOMTypeJs implements SVGAnimatedLength native "*SVGAnimatedLength" { 7055 class _SVGAnimatedLengthJs extends _DOMTypeJs implements SVGAnimatedLength nativ e "*SVGAnimatedLength" {
7056 7056
7057 SVGLengthJs get animVal() native "return this.animVal;"; 7057 _SVGLengthJs get animVal() native "return this.animVal;";
7058 7058
7059 SVGLengthJs get baseVal() native "return this.baseVal;"; 7059 _SVGLengthJs get baseVal() native "return this.baseVal;";
7060 } 7060 }
7061 7061
7062 class SVGAnimatedLengthListJs extends DOMTypeJs implements SVGAnimatedLengthList native "*SVGAnimatedLengthList" { 7062 class _SVGAnimatedLengthListJs extends _DOMTypeJs implements SVGAnimatedLengthLi st native "*SVGAnimatedLengthList" {
7063 7063
7064 SVGLengthListJs get animVal() native "return this.animVal;"; 7064 _SVGLengthListJs get animVal() native "return this.animVal;";
7065 7065
7066 SVGLengthListJs get baseVal() native "return this.baseVal;"; 7066 _SVGLengthListJs get baseVal() native "return this.baseVal;";
7067 } 7067 }
7068 7068
7069 class SVGAnimatedNumberJs extends DOMTypeJs implements SVGAnimatedNumber native "*SVGAnimatedNumber" { 7069 class _SVGAnimatedNumberJs extends _DOMTypeJs implements SVGAnimatedNumber nativ e "*SVGAnimatedNumber" {
7070 7070
7071 num get animVal() native "return this.animVal;"; 7071 num get animVal() native "return this.animVal;";
7072 7072
7073 num get baseVal() native "return this.baseVal;"; 7073 num get baseVal() native "return this.baseVal;";
7074 7074
7075 void set baseVal(num value) native "this.baseVal = value;"; 7075 void set baseVal(num value) native "this.baseVal = value;";
7076 } 7076 }
7077 7077
7078 class SVGAnimatedNumberListJs extends DOMTypeJs implements SVGAnimatedNumberList native "*SVGAnimatedNumberList" { 7078 class _SVGAnimatedNumberListJs extends _DOMTypeJs implements SVGAnimatedNumberLi st native "*SVGAnimatedNumberList" {
7079 7079
7080 SVGNumberListJs get animVal() native "return this.animVal;"; 7080 _SVGNumberListJs get animVal() native "return this.animVal;";
7081 7081
7082 SVGNumberListJs get baseVal() native "return this.baseVal;"; 7082 _SVGNumberListJs get baseVal() native "return this.baseVal;";
7083 } 7083 }
7084 7084
7085 class SVGAnimatedPreserveAspectRatioJs extends DOMTypeJs implements SVGAnimatedP reserveAspectRatio native "*SVGAnimatedPreserveAspectRatio" { 7085 class _SVGAnimatedPreserveAspectRatioJs extends _DOMTypeJs implements SVGAnimate dPreserveAspectRatio native "*SVGAnimatedPreserveAspectRatio" {
7086 7086
7087 SVGPreserveAspectRatioJs get animVal() native "return this.animVal;"; 7087 _SVGPreserveAspectRatioJs get animVal() native "return this.animVal;";
7088 7088
7089 SVGPreserveAspectRatioJs get baseVal() native "return this.baseVal;"; 7089 _SVGPreserveAspectRatioJs get baseVal() native "return this.baseVal;";
7090 } 7090 }
7091 7091
7092 class SVGAnimatedRectJs extends DOMTypeJs implements SVGAnimatedRect native "*SV GAnimatedRect" { 7092 class _SVGAnimatedRectJs extends _DOMTypeJs implements SVGAnimatedRect native "* SVGAnimatedRect" {
7093 7093
7094 SVGRectJs get animVal() native "return this.animVal;"; 7094 _SVGRectJs get animVal() native "return this.animVal;";
7095 7095
7096 SVGRectJs get baseVal() native "return this.baseVal;"; 7096 _SVGRectJs get baseVal() native "return this.baseVal;";
7097 } 7097 }
7098 7098
7099 class SVGAnimatedStringJs extends DOMTypeJs implements SVGAnimatedString native "*SVGAnimatedString" { 7099 class _SVGAnimatedStringJs extends _DOMTypeJs implements SVGAnimatedString nativ e "*SVGAnimatedString" {
7100 7100
7101 String get animVal() native "return this.animVal;"; 7101 String get animVal() native "return this.animVal;";
7102 7102
7103 String get baseVal() native "return this.baseVal;"; 7103 String get baseVal() native "return this.baseVal;";
7104 7104
7105 void set baseVal(String value) native "this.baseVal = value;"; 7105 void set baseVal(String value) native "this.baseVal = value;";
7106 } 7106 }
7107 7107
7108 class SVGAnimatedTransformListJs extends DOMTypeJs implements SVGAnimatedTransfo rmList native "*SVGAnimatedTransformList" { 7108 class _SVGAnimatedTransformListJs extends _DOMTypeJs implements SVGAnimatedTrans formList native "*SVGAnimatedTransformList" {
7109 7109
7110 SVGTransformListJs get animVal() native "return this.animVal;"; 7110 _SVGTransformListJs get animVal() native "return this.animVal;";
7111 7111
7112 SVGTransformListJs get baseVal() native "return this.baseVal;"; 7112 _SVGTransformListJs get baseVal() native "return this.baseVal;";
7113 } 7113 }
7114 7114
7115 class SVGAnimationElementJs extends SVGElementJs implements SVGAnimationElement native "*SVGAnimationElement" { 7115 class _SVGAnimationElementJs extends _SVGElementJs implements SVGAnimationElemen t native "*SVGAnimationElement" {
7116 7116
7117 SVGElementJs get targetElement() native "return this.targetElement;"; 7117 _SVGElementJs get targetElement() native "return this.targetElement;";
7118 7118
7119 num getCurrentTime() native; 7119 num getCurrentTime() native;
7120 7120
7121 num getSimpleDuration() native; 7121 num getSimpleDuration() native;
7122 7122
7123 num getStartTime() native; 7123 num getStartTime() native;
7124 7124
7125 // From SVGTests 7125 // From SVGTests
7126 7126
7127 SVGStringListJs get requiredExtensions() native "return this.requiredExtension s;"; 7127 _SVGStringListJs get requiredExtensions() native "return this.requiredExtensio ns;";
7128 7128
7129 SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;"; 7129 _SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;" ;
7130 7130
7131 SVGStringListJs get systemLanguage() native "return this.systemLanguage;"; 7131 _SVGStringListJs get systemLanguage() native "return this.systemLanguage;";
7132 7132
7133 bool hasExtension(String extension) native; 7133 bool hasExtension(String extension) native;
7134 7134
7135 // From SVGExternalResourcesRequired 7135 // From SVGExternalResourcesRequired
7136 7136
7137 SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exter nalResourcesRequired;"; 7137 _SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exte rnalResourcesRequired;";
7138 7138
7139 // From ElementTimeControl 7139 // From ElementTimeControl
7140 7140
7141 void beginElement() native; 7141 void beginElement() native;
7142 7142
7143 void beginElementAt(num offset) native; 7143 void beginElementAt(num offset) native;
7144 7144
7145 void endElement() native; 7145 void endElement() native;
7146 7146
7147 void endElementAt(num offset) native; 7147 void endElementAt(num offset) native;
7148 } 7148 }
7149 7149
7150 class SVGCircleElementJs extends SVGElementJs implements SVGCircleElement native "*SVGCircleElement" { 7150 class _SVGCircleElementJs extends _SVGElementJs implements SVGCircleElement nati ve "*SVGCircleElement" {
7151 7151
7152 SVGAnimatedLengthJs get cx() native "return this.cx;"; 7152 _SVGAnimatedLengthJs get cx() native "return this.cx;";
7153 7153
7154 SVGAnimatedLengthJs get cy() native "return this.cy;"; 7154 _SVGAnimatedLengthJs get cy() native "return this.cy;";
7155 7155
7156 SVGAnimatedLengthJs get r() native "return this.r;"; 7156 _SVGAnimatedLengthJs get r() native "return this.r;";
7157 7157
7158 // From SVGTests 7158 // From SVGTests
7159 7159
7160 SVGStringListJs get requiredExtensions() native "return this.requiredExtension s;"; 7160 _SVGStringListJs get requiredExtensions() native "return this.requiredExtensio ns;";
7161 7161
7162 SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;"; 7162 _SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;" ;
7163 7163
7164 SVGStringListJs get systemLanguage() native "return this.systemLanguage;"; 7164 _SVGStringListJs get systemLanguage() native "return this.systemLanguage;";
7165 7165
7166 bool hasExtension(String extension) native; 7166 bool hasExtension(String extension) native;
7167 7167
7168 // From SVGLangSpace 7168 // From SVGLangSpace
7169 7169
7170 String get xmllang() native "return this.xmllang;"; 7170 String get xmllang() native "return this.xmllang;";
7171 7171
7172 void set xmllang(String value) native "this.xmllang = value;"; 7172 void set xmllang(String value) native "this.xmllang = value;";
7173 7173
7174 String get xmlspace() native "return this.xmlspace;"; 7174 String get xmlspace() native "return this.xmlspace;";
7175 7175
7176 void set xmlspace(String value) native "this.xmlspace = value;"; 7176 void set xmlspace(String value) native "this.xmlspace = value;";
7177 7177
7178 // From SVGExternalResourcesRequired 7178 // From SVGExternalResourcesRequired
7179 7179
7180 SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exter nalResourcesRequired;"; 7180 _SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exte rnalResourcesRequired;";
7181 7181
7182 // From SVGStylable 7182 // From SVGStylable
7183 7183
7184 SVGAnimatedStringJs get className() native "return this.className;"; 7184 _SVGAnimatedStringJs get className() native "return this.className;";
7185 7185
7186 CSSStyleDeclarationJs get style() native "return this.style;"; 7186 _CSSStyleDeclarationJs get style() native "return this.style;";
7187 7187
7188 CSSValueJs getPresentationAttribute(String name) native; 7188 _CSSValueJs getPresentationAttribute(String name) native;
7189 7189
7190 // From SVGTransformable 7190 // From SVGTransformable
7191 7191
7192 SVGAnimatedTransformListJs get transform() native "return this.transform;"; 7192 _SVGAnimatedTransformListJs get transform() native "return this.transform;";
7193 7193
7194 // From SVGLocatable 7194 // From SVGLocatable
7195 7195
7196 SVGElementJs get farthestViewportElement() native "return this.farthestViewpor tElement;"; 7196 _SVGElementJs get farthestViewportElement() native "return this.farthestViewpo rtElement;";
7197 7197
7198 SVGElementJs get nearestViewportElement() native "return this.nearestViewportE lement;"; 7198 _SVGElementJs get nearestViewportElement() native "return this.nearestViewport Element;";
7199 7199
7200 SVGRectJs getBBox() native; 7200 _SVGRectJs getBBox() native;
7201 7201
7202 SVGMatrixJs getCTM() native; 7202 _SVGMatrixJs getCTM() native;
7203 7203
7204 SVGMatrixJs getScreenCTM() native; 7204 _SVGMatrixJs getScreenCTM() native;
7205 7205
7206 SVGMatrixJs getTransformToElement(SVGElementJs element) native; 7206 _SVGMatrixJs getTransformToElement(_SVGElementJs element) native;
7207 } 7207 }
7208 7208
7209 class SVGClipPathElementJs extends SVGElementJs implements SVGClipPathElement na tive "*SVGClipPathElement" { 7209 class _SVGClipPathElementJs extends _SVGElementJs implements SVGClipPathElement native "*SVGClipPathElement" {
7210 7210
7211 SVGAnimatedEnumerationJs get clipPathUnits() native "return this.clipPathUnits ;"; 7211 _SVGAnimatedEnumerationJs get clipPathUnits() native "return this.clipPathUnit s;";
7212 7212
7213 // From SVGTests 7213 // From SVGTests
7214 7214
7215 SVGStringListJs get requiredExtensions() native "return this.requiredExtension s;"; 7215 _SVGStringListJs get requiredExtensions() native "return this.requiredExtensio ns;";
7216 7216
7217 SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;"; 7217 _SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;" ;
7218 7218
7219 SVGStringListJs get systemLanguage() native "return this.systemLanguage;"; 7219 _SVGStringListJs get systemLanguage() native "return this.systemLanguage;";
7220 7220
7221 bool hasExtension(String extension) native; 7221 bool hasExtension(String extension) native;
7222 7222
7223 // From SVGLangSpace 7223 // From SVGLangSpace
7224 7224
7225 String get xmllang() native "return this.xmllang;"; 7225 String get xmllang() native "return this.xmllang;";
7226 7226
7227 void set xmllang(String value) native "this.xmllang = value;"; 7227 void set xmllang(String value) native "this.xmllang = value;";
7228 7228
7229 String get xmlspace() native "return this.xmlspace;"; 7229 String get xmlspace() native "return this.xmlspace;";
7230 7230
7231 void set xmlspace(String value) native "this.xmlspace = value;"; 7231 void set xmlspace(String value) native "this.xmlspace = value;";
7232 7232
7233 // From SVGExternalResourcesRequired 7233 // From SVGExternalResourcesRequired
7234 7234
7235 SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exter nalResourcesRequired;"; 7235 _SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exte rnalResourcesRequired;";
7236 7236
7237 // From SVGStylable 7237 // From SVGStylable
7238 7238
7239 SVGAnimatedStringJs get className() native "return this.className;"; 7239 _SVGAnimatedStringJs get className() native "return this.className;";
7240 7240
7241 CSSStyleDeclarationJs get style() native "return this.style;"; 7241 _CSSStyleDeclarationJs get style() native "return this.style;";
7242 7242
7243 CSSValueJs getPresentationAttribute(String name) native; 7243 _CSSValueJs getPresentationAttribute(String name) native;
7244 7244
7245 // From SVGTransformable 7245 // From SVGTransformable
7246 7246
7247 SVGAnimatedTransformListJs get transform() native "return this.transform;"; 7247 _SVGAnimatedTransformListJs get transform() native "return this.transform;";
7248 7248
7249 // From SVGLocatable 7249 // From SVGLocatable
7250 7250
7251 SVGElementJs get farthestViewportElement() native "return this.farthestViewpor tElement;"; 7251 _SVGElementJs get farthestViewportElement() native "return this.farthestViewpo rtElement;";
7252 7252
7253 SVGElementJs get nearestViewportElement() native "return this.nearestViewportE lement;"; 7253 _SVGElementJs get nearestViewportElement() native "return this.nearestViewport Element;";
7254 7254
7255 SVGRectJs getBBox() native; 7255 _SVGRectJs getBBox() native;
7256 7256
7257 SVGMatrixJs getCTM() native; 7257 _SVGMatrixJs getCTM() native;
7258 7258
7259 SVGMatrixJs getScreenCTM() native; 7259 _SVGMatrixJs getScreenCTM() native;
7260 7260
7261 SVGMatrixJs getTransformToElement(SVGElementJs element) native; 7261 _SVGMatrixJs getTransformToElement(_SVGElementJs element) native;
7262 } 7262 }
7263 7263
7264 class SVGColorJs extends CSSValueJs implements SVGColor native "*SVGColor" { 7264 class _SVGColorJs extends _CSSValueJs implements SVGColor native "*SVGColor" {
7265 7265
7266 static final int SVG_COLORTYPE_CURRENTCOLOR = 3; 7266 static final int SVG_COLORTYPE_CURRENTCOLOR = 3;
7267 7267
7268 static final int SVG_COLORTYPE_RGBCOLOR = 1; 7268 static final int SVG_COLORTYPE_RGBCOLOR = 1;
7269 7269
7270 static final int SVG_COLORTYPE_RGBCOLOR_ICCCOLOR = 2; 7270 static final int SVG_COLORTYPE_RGBCOLOR_ICCCOLOR = 2;
7271 7271
7272 static final int SVG_COLORTYPE_UNKNOWN = 0; 7272 static final int SVG_COLORTYPE_UNKNOWN = 0;
7273 7273
7274 int get colorType() native "return this.colorType;"; 7274 int get colorType() native "return this.colorType;";
7275 7275
7276 RGBColorJs get rgbColor() native "return this.rgbColor;"; 7276 _RGBColorJs get rgbColor() native "return this.rgbColor;";
7277 7277
7278 void setColor(int colorType, String rgbColor, String iccColor) native; 7278 void setColor(int colorType, String rgbColor, String iccColor) native;
7279 7279
7280 void setRGBColor(String rgbColor) native; 7280 void setRGBColor(String rgbColor) native;
7281 7281
7282 void setRGBColorICCColor(String rgbColor, String iccColor) native; 7282 void setRGBColorICCColor(String rgbColor, String iccColor) native;
7283 } 7283 }
7284 7284
7285 class SVGComponentTransferFunctionElementJs extends SVGElementJs implements SVGC omponentTransferFunctionElement native "*SVGComponentTransferFunctionElement" { 7285 class _SVGComponentTransferFunctionElementJs extends _SVGElementJs implements SV GComponentTransferFunctionElement native "*SVGComponentTransferFunctionElement" {
7286 7286
7287 static final int SVG_FECOMPONENTTRANSFER_TYPE_DISCRETE = 3; 7287 static final int SVG_FECOMPONENTTRANSFER_TYPE_DISCRETE = 3;
7288 7288
7289 static final int SVG_FECOMPONENTTRANSFER_TYPE_GAMMA = 5; 7289 static final int SVG_FECOMPONENTTRANSFER_TYPE_GAMMA = 5;
7290 7290
7291 static final int SVG_FECOMPONENTTRANSFER_TYPE_IDENTITY = 1; 7291 static final int SVG_FECOMPONENTTRANSFER_TYPE_IDENTITY = 1;
7292 7292
7293 static final int SVG_FECOMPONENTTRANSFER_TYPE_LINEAR = 4; 7293 static final int SVG_FECOMPONENTTRANSFER_TYPE_LINEAR = 4;
7294 7294
7295 static final int SVG_FECOMPONENTTRANSFER_TYPE_TABLE = 2; 7295 static final int SVG_FECOMPONENTTRANSFER_TYPE_TABLE = 2;
7296 7296
7297 static final int SVG_FECOMPONENTTRANSFER_TYPE_UNKNOWN = 0; 7297 static final int SVG_FECOMPONENTTRANSFER_TYPE_UNKNOWN = 0;
7298 7298
7299 SVGAnimatedNumberJs get amplitude() native "return this.amplitude;"; 7299 _SVGAnimatedNumberJs get amplitude() native "return this.amplitude;";
7300 7300
7301 SVGAnimatedNumberJs get exponent() native "return this.exponent;"; 7301 _SVGAnimatedNumberJs get exponent() native "return this.exponent;";
7302 7302
7303 SVGAnimatedNumberJs get intercept() native "return this.intercept;"; 7303 _SVGAnimatedNumberJs get intercept() native "return this.intercept;";
7304 7304
7305 SVGAnimatedNumberJs get offset() native "return this.offset;"; 7305 _SVGAnimatedNumberJs get offset() native "return this.offset;";
7306 7306
7307 SVGAnimatedNumberJs get slope() native "return this.slope;"; 7307 _SVGAnimatedNumberJs get slope() native "return this.slope;";
7308 7308
7309 SVGAnimatedNumberListJs get tableValues() native "return this.tableValues;"; 7309 _SVGAnimatedNumberListJs get tableValues() native "return this.tableValues;";
7310 7310
7311 SVGAnimatedEnumerationJs get type() native "return this.type;"; 7311 _SVGAnimatedEnumerationJs get type() native "return this.type;";
7312 } 7312 }
7313 7313
7314 class SVGCursorElementJs extends SVGElementJs implements SVGCursorElement native "*SVGCursorElement" { 7314 class _SVGCursorElementJs extends _SVGElementJs implements SVGCursorElement nati ve "*SVGCursorElement" {
7315 7315
7316 SVGAnimatedLengthJs get x() native "return this.x;"; 7316 _SVGAnimatedLengthJs get x() native "return this.x;";
7317 7317
7318 SVGAnimatedLengthJs get y() native "return this.y;"; 7318 _SVGAnimatedLengthJs get y() native "return this.y;";
7319 7319
7320 // From SVGURIReference 7320 // From SVGURIReference
7321 7321
7322 SVGAnimatedStringJs get href() native "return this.href;"; 7322 _SVGAnimatedStringJs get href() native "return this.href;";
7323 7323
7324 // From SVGTests 7324 // From SVGTests
7325 7325
7326 SVGStringListJs get requiredExtensions() native "return this.requiredExtension s;"; 7326 _SVGStringListJs get requiredExtensions() native "return this.requiredExtensio ns;";
7327 7327
7328 SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;"; 7328 _SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;" ;
7329 7329
7330 SVGStringListJs get systemLanguage() native "return this.systemLanguage;"; 7330 _SVGStringListJs get systemLanguage() native "return this.systemLanguage;";
7331 7331
7332 bool hasExtension(String extension) native; 7332 bool hasExtension(String extension) native;
7333 7333
7334 // From SVGExternalResourcesRequired 7334 // From SVGExternalResourcesRequired
7335 7335
7336 SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exter nalResourcesRequired;"; 7336 _SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exte rnalResourcesRequired;";
7337 } 7337 }
7338 7338
7339 class SVGDefsElementJs extends SVGElementJs implements SVGDefsElement native "*S VGDefsElement" { 7339 class _SVGDefsElementJs extends _SVGElementJs implements SVGDefsElement native " *SVGDefsElement" {
7340 7340
7341 // From SVGTests 7341 // From SVGTests
7342 7342
7343 SVGStringListJs get requiredExtensions() native "return this.requiredExtension s;"; 7343 _SVGStringListJs get requiredExtensions() native "return this.requiredExtensio ns;";
7344 7344
7345 SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;"; 7345 _SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;" ;
7346 7346
7347 SVGStringListJs get systemLanguage() native "return this.systemLanguage;"; 7347 _SVGStringListJs get systemLanguage() native "return this.systemLanguage;";
7348 7348
7349 bool hasExtension(String extension) native; 7349 bool hasExtension(String extension) native;
7350 7350
7351 // From SVGLangSpace 7351 // From SVGLangSpace
7352 7352
7353 String get xmllang() native "return this.xmllang;"; 7353 String get xmllang() native "return this.xmllang;";
7354 7354
7355 void set xmllang(String value) native "this.xmllang = value;"; 7355 void set xmllang(String value) native "this.xmllang = value;";
7356 7356
7357 String get xmlspace() native "return this.xmlspace;"; 7357 String get xmlspace() native "return this.xmlspace;";
7358 7358
7359 void set xmlspace(String value) native "this.xmlspace = value;"; 7359 void set xmlspace(String value) native "this.xmlspace = value;";
7360 7360
7361 // From SVGExternalResourcesRequired 7361 // From SVGExternalResourcesRequired
7362 7362
7363 SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exter nalResourcesRequired;"; 7363 _SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exte rnalResourcesRequired;";
7364 7364
7365 // From SVGStylable 7365 // From SVGStylable
7366 7366
7367 SVGAnimatedStringJs get className() native "return this.className;"; 7367 _SVGAnimatedStringJs get className() native "return this.className;";
7368 7368
7369 CSSStyleDeclarationJs get style() native "return this.style;"; 7369 _CSSStyleDeclarationJs get style() native "return this.style;";
7370 7370
7371 CSSValueJs getPresentationAttribute(String name) native; 7371 _CSSValueJs getPresentationAttribute(String name) native;
7372 7372
7373 // From SVGTransformable 7373 // From SVGTransformable
7374 7374
7375 SVGAnimatedTransformListJs get transform() native "return this.transform;"; 7375 _SVGAnimatedTransformListJs get transform() native "return this.transform;";
7376 7376
7377 // From SVGLocatable 7377 // From SVGLocatable
7378 7378
7379 SVGElementJs get farthestViewportElement() native "return this.farthestViewpor tElement;"; 7379 _SVGElementJs get farthestViewportElement() native "return this.farthestViewpo rtElement;";
7380 7380
7381 SVGElementJs get nearestViewportElement() native "return this.nearestViewportE lement;"; 7381 _SVGElementJs get nearestViewportElement() native "return this.nearestViewport Element;";
7382 7382
7383 SVGRectJs getBBox() native; 7383 _SVGRectJs getBBox() native;
7384 7384
7385 SVGMatrixJs getCTM() native; 7385 _SVGMatrixJs getCTM() native;
7386 7386
7387 SVGMatrixJs getScreenCTM() native; 7387 _SVGMatrixJs getScreenCTM() native;
7388 7388
7389 SVGMatrixJs getTransformToElement(SVGElementJs element) native; 7389 _SVGMatrixJs getTransformToElement(_SVGElementJs element) native;
7390 } 7390 }
7391 7391
7392 class SVGDescElementJs extends SVGElementJs implements SVGDescElement native "*S VGDescElement" { 7392 class _SVGDescElementJs extends _SVGElementJs implements SVGDescElement native " *SVGDescElement" {
7393 7393
7394 // From SVGLangSpace 7394 // From SVGLangSpace
7395 7395
7396 String get xmllang() native "return this.xmllang;"; 7396 String get xmllang() native "return this.xmllang;";
7397 7397
7398 void set xmllang(String value) native "this.xmllang = value;"; 7398 void set xmllang(String value) native "this.xmllang = value;";
7399 7399
7400 String get xmlspace() native "return this.xmlspace;"; 7400 String get xmlspace() native "return this.xmlspace;";
7401 7401
7402 void set xmlspace(String value) native "this.xmlspace = value;"; 7402 void set xmlspace(String value) native "this.xmlspace = value;";
7403 7403
7404 // From SVGStylable 7404 // From SVGStylable
7405 7405
7406 SVGAnimatedStringJs get className() native "return this.className;"; 7406 _SVGAnimatedStringJs get className() native "return this.className;";
7407 7407
7408 CSSStyleDeclarationJs get style() native "return this.style;"; 7408 _CSSStyleDeclarationJs get style() native "return this.style;";
7409 7409
7410 CSSValueJs getPresentationAttribute(String name) native; 7410 _CSSValueJs getPresentationAttribute(String name) native;
7411 } 7411 }
7412 7412
7413 class SVGDocumentJs extends DocumentJs implements SVGDocument native "*SVGDocume nt" { 7413 class _SVGDocumentJs extends _DocumentJs implements SVGDocument native "*SVGDocu ment" {
7414 7414
7415 SVGSVGElementJs get rootElement() native "return this.rootElement;"; 7415 _SVGSVGElementJs get rootElement() native "return this.rootElement;";
7416 7416
7417 EventJs createEvent(String eventType) native; 7417 _EventJs createEvent(String eventType) native;
7418 } 7418 }
7419 7419
7420 class SVGElementJs extends ElementJs implements SVGElement native "*SVGElement" { 7420 class _SVGElementJs extends _ElementJs implements SVGElement native "*SVGElement " {
7421 7421
7422 String get id() native "return this.id;"; 7422 String get id() native "return this.id;";
7423 7423
7424 void set id(String value) native "this.id = value;"; 7424 void set id(String value) native "this.id = value;";
7425 7425
7426 SVGSVGElementJs get ownerSVGElement() native "return this.ownerSVGElement;"; 7426 _SVGSVGElementJs get ownerSVGElement() native "return this.ownerSVGElement;";
7427 7427
7428 SVGElementJs get viewportElement() native "return this.viewportElement;"; 7428 _SVGElementJs get viewportElement() native "return this.viewportElement;";
7429 7429
7430 String get xmlbase() native "return this.xmlbase;"; 7430 String get xmlbase() native "return this.xmlbase;";
7431 7431
7432 void set xmlbase(String value) native "this.xmlbase = value;"; 7432 void set xmlbase(String value) native "this.xmlbase = value;";
7433 } 7433 }
7434 7434
7435 class SVGElementInstanceJs extends DOMTypeJs implements SVGElementInstance nativ e "*SVGElementInstance" { 7435 class _SVGElementInstanceJs extends _DOMTypeJs implements SVGElementInstance nat ive "*SVGElementInstance" {
7436 7436
7437 SVGElementInstanceListJs get childNodes() native "return this.childNodes;"; 7437 _SVGElementInstanceListJs get childNodes() native "return this.childNodes;";
7438 7438
7439 SVGElementJs get correspondingElement() native "return this.correspondingEleme nt;"; 7439 _SVGElementJs get correspondingElement() native "return this.correspondingElem ent;";
7440 7440
7441 SVGUseElementJs get correspondingUseElement() native "return this.correspondin gUseElement;"; 7441 _SVGUseElementJs get correspondingUseElement() native "return this.correspondi ngUseElement;";
7442 7442
7443 SVGElementInstanceJs get firstChild() native "return this.firstChild;"; 7443 _SVGElementInstanceJs get firstChild() native "return this.firstChild;";
7444 7444
7445 SVGElementInstanceJs get lastChild() native "return this.lastChild;"; 7445 _SVGElementInstanceJs get lastChild() native "return this.lastChild;";
7446 7446
7447 SVGElementInstanceJs get nextSibling() native "return this.nextSibling;"; 7447 _SVGElementInstanceJs get nextSibling() native "return this.nextSibling;";
7448 7448
7449 SVGElementInstanceJs get parentNode() native "return this.parentNode;"; 7449 _SVGElementInstanceJs get parentNode() native "return this.parentNode;";
7450 7450
7451 SVGElementInstanceJs get previousSibling() native "return this.previousSibling ;"; 7451 _SVGElementInstanceJs get previousSibling() native "return this.previousSiblin g;";
7452 7452
7453 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native; 7453 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
7454 7454
7455 bool dispatchEvent(EventJs event) native; 7455 bool dispatchEvent(_EventJs event) native;
7456 7456
7457 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native; 7457 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
7458 } 7458 }
7459 7459
7460 class SVGElementInstanceListJs extends DOMTypeJs implements SVGElementInstanceLi st native "*SVGElementInstanceList" { 7460 class _SVGElementInstanceListJs extends _DOMTypeJs implements SVGElementInstance List native "*SVGElementInstanceList" {
7461 7461
7462 int get length() native "return this.length;"; 7462 int get length() native "return this.length;";
7463 7463
7464 SVGElementInstanceJs item(int index) native; 7464 _SVGElementInstanceJs item(int index) native;
7465 } 7465 }
7466 7466
7467 class SVGEllipseElementJs extends SVGElementJs implements SVGEllipseElement nati ve "*SVGEllipseElement" { 7467 class _SVGEllipseElementJs extends _SVGElementJs implements SVGEllipseElement na tive "*SVGEllipseElement" {
7468 7468
7469 SVGAnimatedLengthJs get cx() native "return this.cx;"; 7469 _SVGAnimatedLengthJs get cx() native "return this.cx;";
7470 7470
7471 SVGAnimatedLengthJs get cy() native "return this.cy;"; 7471 _SVGAnimatedLengthJs get cy() native "return this.cy;";
7472 7472
7473 SVGAnimatedLengthJs get rx() native "return this.rx;"; 7473 _SVGAnimatedLengthJs get rx() native "return this.rx;";
7474 7474
7475 SVGAnimatedLengthJs get ry() native "return this.ry;"; 7475 _SVGAnimatedLengthJs get ry() native "return this.ry;";
7476 7476
7477 // From SVGTests 7477 // From SVGTests
7478 7478
7479 SVGStringListJs get requiredExtensions() native "return this.requiredExtension s;"; 7479 _SVGStringListJs get requiredExtensions() native "return this.requiredExtensio ns;";
7480 7480
7481 SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;"; 7481 _SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;" ;
7482 7482
7483 SVGStringListJs get systemLanguage() native "return this.systemLanguage;"; 7483 _SVGStringListJs get systemLanguage() native "return this.systemLanguage;";
7484 7484
7485 bool hasExtension(String extension) native; 7485 bool hasExtension(String extension) native;
7486 7486
7487 // From SVGLangSpace 7487 // From SVGLangSpace
7488 7488
7489 String get xmllang() native "return this.xmllang;"; 7489 String get xmllang() native "return this.xmllang;";
7490 7490
7491 void set xmllang(String value) native "this.xmllang = value;"; 7491 void set xmllang(String value) native "this.xmllang = value;";
7492 7492
7493 String get xmlspace() native "return this.xmlspace;"; 7493 String get xmlspace() native "return this.xmlspace;";
7494 7494
7495 void set xmlspace(String value) native "this.xmlspace = value;"; 7495 void set xmlspace(String value) native "this.xmlspace = value;";
7496 7496
7497 // From SVGExternalResourcesRequired 7497 // From SVGExternalResourcesRequired
7498 7498
7499 SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exter nalResourcesRequired;"; 7499 _SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exte rnalResourcesRequired;";
7500 7500
7501 // From SVGStylable 7501 // From SVGStylable
7502 7502
7503 SVGAnimatedStringJs get className() native "return this.className;"; 7503 _SVGAnimatedStringJs get className() native "return this.className;";
7504 7504
7505 CSSStyleDeclarationJs get style() native "return this.style;"; 7505 _CSSStyleDeclarationJs get style() native "return this.style;";
7506 7506
7507 CSSValueJs getPresentationAttribute(String name) native; 7507 _CSSValueJs getPresentationAttribute(String name) native;
7508 7508
7509 // From SVGTransformable 7509 // From SVGTransformable
7510 7510
7511 SVGAnimatedTransformListJs get transform() native "return this.transform;"; 7511 _SVGAnimatedTransformListJs get transform() native "return this.transform;";
7512 7512
7513 // From SVGLocatable 7513 // From SVGLocatable
7514 7514
7515 SVGElementJs get farthestViewportElement() native "return this.farthestViewpor tElement;"; 7515 _SVGElementJs get farthestViewportElement() native "return this.farthestViewpo rtElement;";
7516 7516
7517 SVGElementJs get nearestViewportElement() native "return this.nearestViewportE lement;"; 7517 _SVGElementJs get nearestViewportElement() native "return this.nearestViewport Element;";
7518 7518
7519 SVGRectJs getBBox() native; 7519 _SVGRectJs getBBox() native;
7520 7520
7521 SVGMatrixJs getCTM() native; 7521 _SVGMatrixJs getCTM() native;
7522 7522
7523 SVGMatrixJs getScreenCTM() native; 7523 _SVGMatrixJs getScreenCTM() native;
7524 7524
7525 SVGMatrixJs getTransformToElement(SVGElementJs element) native; 7525 _SVGMatrixJs getTransformToElement(_SVGElementJs element) native;
7526 } 7526 }
7527 7527
7528 class SVGExceptionJs extends DOMTypeJs implements SVGException native "*SVGExcep tion" { 7528 class _SVGExceptionJs extends _DOMTypeJs implements SVGException native "*SVGExc eption" {
7529 7529
7530 static final int SVG_INVALID_VALUE_ERR = 1; 7530 static final int SVG_INVALID_VALUE_ERR = 1;
7531 7531
7532 static final int SVG_MATRIX_NOT_INVERTABLE = 2; 7532 static final int SVG_MATRIX_NOT_INVERTABLE = 2;
7533 7533
7534 static final int SVG_WRONG_TYPE_ERR = 0; 7534 static final int SVG_WRONG_TYPE_ERR = 0;
7535 7535
7536 int get code() native "return this.code;"; 7536 int get code() native "return this.code;";
7537 7537
7538 String get message() native "return this.message;"; 7538 String get message() native "return this.message;";
7539 7539
7540 String get name() native "return this.name;"; 7540 String get name() native "return this.name;";
7541 7541
7542 String toString() native; 7542 String toString() native;
7543 } 7543 }
7544 7544
7545 class SVGExternalResourcesRequiredJs extends DOMTypeJs implements SVGExternalRes ourcesRequired native "*SVGExternalResourcesRequired" { 7545 class _SVGExternalResourcesRequiredJs extends _DOMTypeJs implements SVGExternalR esourcesRequired native "*SVGExternalResourcesRequired" {
7546 7546
7547 SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exter nalResourcesRequired;"; 7547 _SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exte rnalResourcesRequired;";
7548 } 7548 }
7549 7549
7550 class SVGFEBlendElementJs extends SVGElementJs implements SVGFEBlendElement nati ve "*SVGFEBlendElement" { 7550 class _SVGFEBlendElementJs extends _SVGElementJs implements SVGFEBlendElement na tive "*SVGFEBlendElement" {
7551 7551
7552 static final int SVG_FEBLEND_MODE_DARKEN = 4; 7552 static final int SVG_FEBLEND_MODE_DARKEN = 4;
7553 7553
7554 static final int SVG_FEBLEND_MODE_LIGHTEN = 5; 7554 static final int SVG_FEBLEND_MODE_LIGHTEN = 5;
7555 7555
7556 static final int SVG_FEBLEND_MODE_MULTIPLY = 2; 7556 static final int SVG_FEBLEND_MODE_MULTIPLY = 2;
7557 7557
7558 static final int SVG_FEBLEND_MODE_NORMAL = 1; 7558 static final int SVG_FEBLEND_MODE_NORMAL = 1;
7559 7559
7560 static final int SVG_FEBLEND_MODE_SCREEN = 3; 7560 static final int SVG_FEBLEND_MODE_SCREEN = 3;
7561 7561
7562 static final int SVG_FEBLEND_MODE_UNKNOWN = 0; 7562 static final int SVG_FEBLEND_MODE_UNKNOWN = 0;
7563 7563
7564 SVGAnimatedStringJs get in1() native "return this.in1;"; 7564 _SVGAnimatedStringJs get in1() native "return this.in1;";
7565 7565
7566 SVGAnimatedStringJs get in2() native "return this.in2;"; 7566 _SVGAnimatedStringJs get in2() native "return this.in2;";
7567 7567
7568 SVGAnimatedEnumerationJs get mode() native "return this.mode;"; 7568 _SVGAnimatedEnumerationJs get mode() native "return this.mode;";
7569 7569
7570 // From SVGFilterPrimitiveStandardAttributes 7570 // From SVGFilterPrimitiveStandardAttributes
7571 7571
7572 SVGAnimatedLengthJs get height() native "return this.height;"; 7572 _SVGAnimatedLengthJs get height() native "return this.height;";
7573 7573
7574 SVGAnimatedStringJs get result() native "return this.result;"; 7574 _SVGAnimatedStringJs get result() native "return this.result;";
7575 7575
7576 SVGAnimatedLengthJs get width() native "return this.width;"; 7576 _SVGAnimatedLengthJs get width() native "return this.width;";
7577 7577
7578 SVGAnimatedLengthJs get x() native "return this.x;"; 7578 _SVGAnimatedLengthJs get x() native "return this.x;";
7579 7579
7580 SVGAnimatedLengthJs get y() native "return this.y;"; 7580 _SVGAnimatedLengthJs get y() native "return this.y;";
7581 7581
7582 // From SVGStylable 7582 // From SVGStylable
7583 7583
7584 SVGAnimatedStringJs get className() native "return this.className;"; 7584 _SVGAnimatedStringJs get className() native "return this.className;";
7585 7585
7586 CSSStyleDeclarationJs get style() native "return this.style;"; 7586 _CSSStyleDeclarationJs get style() native "return this.style;";
7587 7587
7588 CSSValueJs getPresentationAttribute(String name) native; 7588 _CSSValueJs getPresentationAttribute(String name) native;
7589 } 7589 }
7590 7590
7591 class SVGFEColorMatrixElementJs extends SVGElementJs implements SVGFEColorMatrix Element native "*SVGFEColorMatrixElement" { 7591 class _SVGFEColorMatrixElementJs extends _SVGElementJs implements SVGFEColorMatr ixElement native "*SVGFEColorMatrixElement" {
7592 7592
7593 static final int SVG_FECOLORMATRIX_TYPE_HUEROTATE = 3; 7593 static final int SVG_FECOLORMATRIX_TYPE_HUEROTATE = 3;
7594 7594
7595 static final int SVG_FECOLORMATRIX_TYPE_LUMINANCETOALPHA = 4; 7595 static final int SVG_FECOLORMATRIX_TYPE_LUMINANCETOALPHA = 4;
7596 7596
7597 static final int SVG_FECOLORMATRIX_TYPE_MATRIX = 1; 7597 static final int SVG_FECOLORMATRIX_TYPE_MATRIX = 1;
7598 7598
7599 static final int SVG_FECOLORMATRIX_TYPE_SATURATE = 2; 7599 static final int SVG_FECOLORMATRIX_TYPE_SATURATE = 2;
7600 7600
7601 static final int SVG_FECOLORMATRIX_TYPE_UNKNOWN = 0; 7601 static final int SVG_FECOLORMATRIX_TYPE_UNKNOWN = 0;
7602 7602
7603 SVGAnimatedStringJs get in1() native "return this.in1;"; 7603 _SVGAnimatedStringJs get in1() native "return this.in1;";
7604 7604
7605 SVGAnimatedEnumerationJs get type() native "return this.type;"; 7605 _SVGAnimatedEnumerationJs get type() native "return this.type;";
7606 7606
7607 SVGAnimatedNumberListJs get values() native "return this.values;"; 7607 _SVGAnimatedNumberListJs get values() native "return this.values;";
7608 7608
7609 // From SVGFilterPrimitiveStandardAttributes 7609 // From SVGFilterPrimitiveStandardAttributes
7610 7610
7611 SVGAnimatedLengthJs get height() native "return this.height;"; 7611 _SVGAnimatedLengthJs get height() native "return this.height;";
7612 7612
7613 SVGAnimatedStringJs get result() native "return this.result;"; 7613 _SVGAnimatedStringJs get result() native "return this.result;";
7614 7614
7615 SVGAnimatedLengthJs get width() native "return this.width;"; 7615 _SVGAnimatedLengthJs get width() native "return this.width;";
7616 7616
7617 SVGAnimatedLengthJs get x() native "return this.x;"; 7617 _SVGAnimatedLengthJs get x() native "return this.x;";
7618 7618
7619 SVGAnimatedLengthJs get y() native "return this.y;"; 7619 _SVGAnimatedLengthJs get y() native "return this.y;";
7620 7620
7621 // From SVGStylable 7621 // From SVGStylable
7622 7622
7623 SVGAnimatedStringJs get className() native "return this.className;"; 7623 _SVGAnimatedStringJs get className() native "return this.className;";
7624 7624
7625 CSSStyleDeclarationJs get style() native "return this.style;"; 7625 _CSSStyleDeclarationJs get style() native "return this.style;";
7626 7626
7627 CSSValueJs getPresentationAttribute(String name) native; 7627 _CSSValueJs getPresentationAttribute(String name) native;
7628 } 7628 }
7629 7629
7630 class SVGFEComponentTransferElementJs extends SVGElementJs implements SVGFECompo nentTransferElement native "*SVGFEComponentTransferElement" { 7630 class _SVGFEComponentTransferElementJs extends _SVGElementJs implements SVGFECom ponentTransferElement native "*SVGFEComponentTransferElement" {
7631 7631
7632 SVGAnimatedStringJs get in1() native "return this.in1;"; 7632 _SVGAnimatedStringJs get in1() native "return this.in1;";
7633 7633
7634 // From SVGFilterPrimitiveStandardAttributes 7634 // From SVGFilterPrimitiveStandardAttributes
7635 7635
7636 SVGAnimatedLengthJs get height() native "return this.height;"; 7636 _SVGAnimatedLengthJs get height() native "return this.height;";
7637 7637
7638 SVGAnimatedStringJs get result() native "return this.result;"; 7638 _SVGAnimatedStringJs get result() native "return this.result;";
7639 7639
7640 SVGAnimatedLengthJs get width() native "return this.width;"; 7640 _SVGAnimatedLengthJs get width() native "return this.width;";
7641 7641
7642 SVGAnimatedLengthJs get x() native "return this.x;"; 7642 _SVGAnimatedLengthJs get x() native "return this.x;";
7643 7643
7644 SVGAnimatedLengthJs get y() native "return this.y;"; 7644 _SVGAnimatedLengthJs get y() native "return this.y;";
7645 7645
7646 // From SVGStylable 7646 // From SVGStylable
7647 7647
7648 SVGAnimatedStringJs get className() native "return this.className;"; 7648 _SVGAnimatedStringJs get className() native "return this.className;";
7649 7649
7650 CSSStyleDeclarationJs get style() native "return this.style;"; 7650 _CSSStyleDeclarationJs get style() native "return this.style;";
7651 7651
7652 CSSValueJs getPresentationAttribute(String name) native; 7652 _CSSValueJs getPresentationAttribute(String name) native;
7653 } 7653 }
7654 7654
7655 class SVGFECompositeElementJs extends SVGElementJs implements SVGFECompositeElem ent native "*SVGFECompositeElement" { 7655 class _SVGFECompositeElementJs extends _SVGElementJs implements SVGFECompositeEl ement native "*SVGFECompositeElement" {
7656 7656
7657 static final int SVG_FECOMPOSITE_OPERATOR_ARITHMETIC = 6; 7657 static final int SVG_FECOMPOSITE_OPERATOR_ARITHMETIC = 6;
7658 7658
7659 static final int SVG_FECOMPOSITE_OPERATOR_ATOP = 4; 7659 static final int SVG_FECOMPOSITE_OPERATOR_ATOP = 4;
7660 7660
7661 static final int SVG_FECOMPOSITE_OPERATOR_IN = 2; 7661 static final int SVG_FECOMPOSITE_OPERATOR_IN = 2;
7662 7662
7663 static final int SVG_FECOMPOSITE_OPERATOR_OUT = 3; 7663 static final int SVG_FECOMPOSITE_OPERATOR_OUT = 3;
7664 7664
7665 static final int SVG_FECOMPOSITE_OPERATOR_OVER = 1; 7665 static final int SVG_FECOMPOSITE_OPERATOR_OVER = 1;
7666 7666
7667 static final int SVG_FECOMPOSITE_OPERATOR_UNKNOWN = 0; 7667 static final int SVG_FECOMPOSITE_OPERATOR_UNKNOWN = 0;
7668 7668
7669 static final int SVG_FECOMPOSITE_OPERATOR_XOR = 5; 7669 static final int SVG_FECOMPOSITE_OPERATOR_XOR = 5;
7670 7670
7671 SVGAnimatedStringJs get in1() native "return this.in1;"; 7671 _SVGAnimatedStringJs get in1() native "return this.in1;";
7672 7672
7673 SVGAnimatedStringJs get in2() native "return this.in2;"; 7673 _SVGAnimatedStringJs get in2() native "return this.in2;";
7674 7674
7675 SVGAnimatedNumberJs get k1() native "return this.k1;"; 7675 _SVGAnimatedNumberJs get k1() native "return this.k1;";
7676 7676
7677 SVGAnimatedNumberJs get k2() native "return this.k2;"; 7677 _SVGAnimatedNumberJs get k2() native "return this.k2;";
7678 7678
7679 SVGAnimatedNumberJs get k3() native "return this.k3;"; 7679 _SVGAnimatedNumberJs get k3() native "return this.k3;";
7680 7680
7681 SVGAnimatedNumberJs get k4() native "return this.k4;"; 7681 _SVGAnimatedNumberJs get k4() native "return this.k4;";
7682 7682
7683 SVGAnimatedEnumerationJs get operator() native "return this.operator;"; 7683 _SVGAnimatedEnumerationJs get operator() native "return this.operator;";
7684 7684
7685 // From SVGFilterPrimitiveStandardAttributes 7685 // From SVGFilterPrimitiveStandardAttributes
7686 7686
7687 SVGAnimatedLengthJs get height() native "return this.height;"; 7687 _SVGAnimatedLengthJs get height() native "return this.height;";
7688 7688
7689 SVGAnimatedStringJs get result() native "return this.result;"; 7689 _SVGAnimatedStringJs get result() native "return this.result;";
7690 7690
7691 SVGAnimatedLengthJs get width() native "return this.width;"; 7691 _SVGAnimatedLengthJs get width() native "return this.width;";
7692 7692
7693 SVGAnimatedLengthJs get x() native "return this.x;"; 7693 _SVGAnimatedLengthJs get x() native "return this.x;";
7694 7694
7695 SVGAnimatedLengthJs get y() native "return this.y;"; 7695 _SVGAnimatedLengthJs get y() native "return this.y;";
7696 7696
7697 // From SVGStylable 7697 // From SVGStylable
7698 7698
7699 SVGAnimatedStringJs get className() native "return this.className;"; 7699 _SVGAnimatedStringJs get className() native "return this.className;";
7700 7700
7701 CSSStyleDeclarationJs get style() native "return this.style;"; 7701 _CSSStyleDeclarationJs get style() native "return this.style;";
7702 7702
7703 CSSValueJs getPresentationAttribute(String name) native; 7703 _CSSValueJs getPresentationAttribute(String name) native;
7704 } 7704 }
7705 7705
7706 class SVGFEConvolveMatrixElementJs extends SVGElementJs implements SVGFEConvolve MatrixElement native "*SVGFEConvolveMatrixElement" { 7706 class _SVGFEConvolveMatrixElementJs extends _SVGElementJs implements SVGFEConvol veMatrixElement native "*SVGFEConvolveMatrixElement" {
7707 7707
7708 static final int SVG_EDGEMODE_DUPLICATE = 1; 7708 static final int SVG_EDGEMODE_DUPLICATE = 1;
7709 7709
7710 static final int SVG_EDGEMODE_NONE = 3; 7710 static final int SVG_EDGEMODE_NONE = 3;
7711 7711
7712 static final int SVG_EDGEMODE_UNKNOWN = 0; 7712 static final int SVG_EDGEMODE_UNKNOWN = 0;
7713 7713
7714 static final int SVG_EDGEMODE_WRAP = 2; 7714 static final int SVG_EDGEMODE_WRAP = 2;
7715 7715
7716 SVGAnimatedNumberJs get bias() native "return this.bias;"; 7716 _SVGAnimatedNumberJs get bias() native "return this.bias;";
7717 7717
7718 SVGAnimatedNumberJs get divisor() native "return this.divisor;"; 7718 _SVGAnimatedNumberJs get divisor() native "return this.divisor;";
7719 7719
7720 SVGAnimatedEnumerationJs get edgeMode() native "return this.edgeMode;"; 7720 _SVGAnimatedEnumerationJs get edgeMode() native "return this.edgeMode;";
7721 7721
7722 SVGAnimatedStringJs get in1() native "return this.in1;"; 7722 _SVGAnimatedStringJs get in1() native "return this.in1;";
7723 7723
7724 SVGAnimatedNumberListJs get kernelMatrix() native "return this.kernelMatrix;"; 7724 _SVGAnimatedNumberListJs get kernelMatrix() native "return this.kernelMatrix;" ;
7725 7725
7726 SVGAnimatedNumberJs get kernelUnitLengthX() native "return this.kernelUnitLeng thX;"; 7726 _SVGAnimatedNumberJs get kernelUnitLengthX() native "return this.kernelUnitLen gthX;";
7727 7727
7728 SVGAnimatedNumberJs get kernelUnitLengthY() native "return this.kernelUnitLeng thY;"; 7728 _SVGAnimatedNumberJs get kernelUnitLengthY() native "return this.kernelUnitLen gthY;";
7729 7729
7730 SVGAnimatedIntegerJs get orderX() native "return this.orderX;"; 7730 _SVGAnimatedIntegerJs get orderX() native "return this.orderX;";
7731 7731
7732 SVGAnimatedIntegerJs get orderY() native "return this.orderY;"; 7732 _SVGAnimatedIntegerJs get orderY() native "return this.orderY;";
7733 7733
7734 SVGAnimatedBooleanJs get preserveAlpha() native "return this.preserveAlpha;"; 7734 _SVGAnimatedBooleanJs get preserveAlpha() native "return this.preserveAlpha;";
7735 7735
7736 SVGAnimatedIntegerJs get targetX() native "return this.targetX;"; 7736 _SVGAnimatedIntegerJs get targetX() native "return this.targetX;";
7737 7737
7738 SVGAnimatedIntegerJs get targetY() native "return this.targetY;"; 7738 _SVGAnimatedIntegerJs get targetY() native "return this.targetY;";
7739 7739
7740 // From SVGFilterPrimitiveStandardAttributes 7740 // From SVGFilterPrimitiveStandardAttributes
7741 7741
7742 SVGAnimatedLengthJs get height() native "return this.height;"; 7742 _SVGAnimatedLengthJs get height() native "return this.height;";
7743 7743
7744 SVGAnimatedStringJs get result() native "return this.result;"; 7744 _SVGAnimatedStringJs get result() native "return this.result;";
7745 7745
7746 SVGAnimatedLengthJs get width() native "return this.width;"; 7746 _SVGAnimatedLengthJs get width() native "return this.width;";
7747 7747
7748 SVGAnimatedLengthJs get x() native "return this.x;"; 7748 _SVGAnimatedLengthJs get x() native "return this.x;";
7749 7749
7750 SVGAnimatedLengthJs get y() native "return this.y;"; 7750 _SVGAnimatedLengthJs get y() native "return this.y;";
7751 7751
7752 // From SVGStylable 7752 // From SVGStylable
7753 7753
7754 SVGAnimatedStringJs get className() native "return this.className;"; 7754 _SVGAnimatedStringJs get className() native "return this.className;";
7755 7755
7756 CSSStyleDeclarationJs get style() native "return this.style;"; 7756 _CSSStyleDeclarationJs get style() native "return this.style;";
7757 7757
7758 CSSValueJs getPresentationAttribute(String name) native; 7758 _CSSValueJs getPresentationAttribute(String name) native;
7759 } 7759 }
7760 7760
7761 class SVGFEDiffuseLightingElementJs extends SVGElementJs implements SVGFEDiffuse LightingElement native "*SVGFEDiffuseLightingElement" { 7761 class _SVGFEDiffuseLightingElementJs extends _SVGElementJs implements SVGFEDiffu seLightingElement native "*SVGFEDiffuseLightingElement" {
7762 7762
7763 SVGAnimatedNumberJs get diffuseConstant() native "return this.diffuseConstant; "; 7763 _SVGAnimatedNumberJs get diffuseConstant() native "return this.diffuseConstant ;";
7764 7764
7765 SVGAnimatedStringJs get in1() native "return this.in1;"; 7765 _SVGAnimatedStringJs get in1() native "return this.in1;";
7766 7766
7767 SVGAnimatedNumberJs get kernelUnitLengthX() native "return this.kernelUnitLeng thX;"; 7767 _SVGAnimatedNumberJs get kernelUnitLengthX() native "return this.kernelUnitLen gthX;";
7768 7768
7769 SVGAnimatedNumberJs get kernelUnitLengthY() native "return this.kernelUnitLeng thY;"; 7769 _SVGAnimatedNumberJs get kernelUnitLengthY() native "return this.kernelUnitLen gthY;";
7770 7770
7771 SVGAnimatedNumberJs get surfaceScale() native "return this.surfaceScale;"; 7771 _SVGAnimatedNumberJs get surfaceScale() native "return this.surfaceScale;";
7772 7772
7773 // From SVGFilterPrimitiveStandardAttributes 7773 // From SVGFilterPrimitiveStandardAttributes
7774 7774
7775 SVGAnimatedLengthJs get height() native "return this.height;"; 7775 _SVGAnimatedLengthJs get height() native "return this.height;";
7776 7776
7777 SVGAnimatedStringJs get result() native "return this.result;"; 7777 _SVGAnimatedStringJs get result() native "return this.result;";
7778 7778
7779 SVGAnimatedLengthJs get width() native "return this.width;"; 7779 _SVGAnimatedLengthJs get width() native "return this.width;";
7780 7780
7781 SVGAnimatedLengthJs get x() native "return this.x;"; 7781 _SVGAnimatedLengthJs get x() native "return this.x;";
7782 7782
7783 SVGAnimatedLengthJs get y() native "return this.y;"; 7783 _SVGAnimatedLengthJs get y() native "return this.y;";
7784 7784
7785 // From SVGStylable 7785 // From SVGStylable
7786 7786
7787 SVGAnimatedStringJs get className() native "return this.className;"; 7787 _SVGAnimatedStringJs get className() native "return this.className;";
7788 7788
7789 CSSStyleDeclarationJs get style() native "return this.style;"; 7789 _CSSStyleDeclarationJs get style() native "return this.style;";
7790 7790
7791 CSSValueJs getPresentationAttribute(String name) native; 7791 _CSSValueJs getPresentationAttribute(String name) native;
7792 } 7792 }
7793 7793
7794 class SVGFEDisplacementMapElementJs extends SVGElementJs implements SVGFEDisplac ementMapElement native "*SVGFEDisplacementMapElement" { 7794 class _SVGFEDisplacementMapElementJs extends _SVGElementJs implements SVGFEDispl acementMapElement native "*SVGFEDisplacementMapElement" {
7795 7795
7796 static final int SVG_CHANNEL_A = 4; 7796 static final int SVG_CHANNEL_A = 4;
7797 7797
7798 static final int SVG_CHANNEL_B = 3; 7798 static final int SVG_CHANNEL_B = 3;
7799 7799
7800 static final int SVG_CHANNEL_G = 2; 7800 static final int SVG_CHANNEL_G = 2;
7801 7801
7802 static final int SVG_CHANNEL_R = 1; 7802 static final int SVG_CHANNEL_R = 1;
7803 7803
7804 static final int SVG_CHANNEL_UNKNOWN = 0; 7804 static final int SVG_CHANNEL_UNKNOWN = 0;
7805 7805
7806 SVGAnimatedStringJs get in1() native "return this.in1;"; 7806 _SVGAnimatedStringJs get in1() native "return this.in1;";
7807 7807
7808 SVGAnimatedStringJs get in2() native "return this.in2;"; 7808 _SVGAnimatedStringJs get in2() native "return this.in2;";
7809 7809
7810 SVGAnimatedNumberJs get scale() native "return this.scale;"; 7810 _SVGAnimatedNumberJs get scale() native "return this.scale;";
7811 7811
7812 SVGAnimatedEnumerationJs get xChannelSelector() native "return this.xChannelSe lector;"; 7812 _SVGAnimatedEnumerationJs get xChannelSelector() native "return this.xChannelS elector;";
7813 7813
7814 SVGAnimatedEnumerationJs get yChannelSelector() native "return this.yChannelSe lector;"; 7814 _SVGAnimatedEnumerationJs get yChannelSelector() native "return this.yChannelS elector;";
7815 7815
7816 // From SVGFilterPrimitiveStandardAttributes 7816 // From SVGFilterPrimitiveStandardAttributes
7817 7817
7818 SVGAnimatedLengthJs get height() native "return this.height;"; 7818 _SVGAnimatedLengthJs get height() native "return this.height;";
7819 7819
7820 SVGAnimatedStringJs get result() native "return this.result;"; 7820 _SVGAnimatedStringJs get result() native "return this.result;";
7821 7821
7822 SVGAnimatedLengthJs get width() native "return this.width;"; 7822 _SVGAnimatedLengthJs get width() native "return this.width;";
7823 7823
7824 SVGAnimatedLengthJs get x() native "return this.x;"; 7824 _SVGAnimatedLengthJs get x() native "return this.x;";
7825 7825
7826 SVGAnimatedLengthJs get y() native "return this.y;"; 7826 _SVGAnimatedLengthJs get y() native "return this.y;";
7827 7827
7828 // From SVGStylable 7828 // From SVGStylable
7829 7829
7830 SVGAnimatedStringJs get className() native "return this.className;"; 7830 _SVGAnimatedStringJs get className() native "return this.className;";
7831 7831
7832 CSSStyleDeclarationJs get style() native "return this.style;"; 7832 _CSSStyleDeclarationJs get style() native "return this.style;";
7833 7833
7834 CSSValueJs getPresentationAttribute(String name) native; 7834 _CSSValueJs getPresentationAttribute(String name) native;
7835 } 7835 }
7836 7836
7837 class SVGFEDistantLightElementJs extends SVGElementJs implements SVGFEDistantLig htElement native "*SVGFEDistantLightElement" { 7837 class _SVGFEDistantLightElementJs extends _SVGElementJs implements SVGFEDistantL ightElement native "*SVGFEDistantLightElement" {
7838 7838
7839 SVGAnimatedNumberJs get azimuth() native "return this.azimuth;"; 7839 _SVGAnimatedNumberJs get azimuth() native "return this.azimuth;";
7840 7840
7841 SVGAnimatedNumberJs get elevation() native "return this.elevation;"; 7841 _SVGAnimatedNumberJs get elevation() native "return this.elevation;";
7842 } 7842 }
7843 7843
7844 class SVGFEDropShadowElementJs extends SVGElementJs implements SVGFEDropShadowEl ement native "*SVGFEDropShadowElement" { 7844 class _SVGFEDropShadowElementJs extends _SVGElementJs implements SVGFEDropShadow Element native "*SVGFEDropShadowElement" {
7845 7845
7846 SVGAnimatedNumberJs get dx() native "return this.dx;"; 7846 _SVGAnimatedNumberJs get dx() native "return this.dx;";
7847 7847
7848 SVGAnimatedNumberJs get dy() native "return this.dy;"; 7848 _SVGAnimatedNumberJs get dy() native "return this.dy;";
7849 7849
7850 SVGAnimatedStringJs get in1() native "return this.in1;"; 7850 _SVGAnimatedStringJs get in1() native "return this.in1;";
7851 7851
7852 SVGAnimatedNumberJs get stdDeviationX() native "return this.stdDeviationX;"; 7852 _SVGAnimatedNumberJs get stdDeviationX() native "return this.stdDeviationX;";
7853 7853
7854 SVGAnimatedNumberJs get stdDeviationY() native "return this.stdDeviationY;"; 7854 _SVGAnimatedNumberJs get stdDeviationY() native "return this.stdDeviationY;";
7855 7855
7856 void setStdDeviation(num stdDeviationX, num stdDeviationY) native; 7856 void setStdDeviation(num stdDeviationX, num stdDeviationY) native;
7857 7857
7858 // From SVGFilterPrimitiveStandardAttributes 7858 // From SVGFilterPrimitiveStandardAttributes
7859 7859
7860 SVGAnimatedLengthJs get height() native "return this.height;"; 7860 _SVGAnimatedLengthJs get height() native "return this.height;";
7861 7861
7862 SVGAnimatedStringJs get result() native "return this.result;"; 7862 _SVGAnimatedStringJs get result() native "return this.result;";
7863 7863
7864 SVGAnimatedLengthJs get width() native "return this.width;"; 7864 _SVGAnimatedLengthJs get width() native "return this.width;";
7865 7865
7866 SVGAnimatedLengthJs get x() native "return this.x;"; 7866 _SVGAnimatedLengthJs get x() native "return this.x;";
7867 7867
7868 SVGAnimatedLengthJs get y() native "return this.y;"; 7868 _SVGAnimatedLengthJs get y() native "return this.y;";
7869 7869
7870 // From SVGStylable 7870 // From SVGStylable
7871 7871
7872 SVGAnimatedStringJs get className() native "return this.className;"; 7872 _SVGAnimatedStringJs get className() native "return this.className;";
7873 7873
7874 CSSStyleDeclarationJs get style() native "return this.style;"; 7874 _CSSStyleDeclarationJs get style() native "return this.style;";
7875 7875
7876 CSSValueJs getPresentationAttribute(String name) native; 7876 _CSSValueJs getPresentationAttribute(String name) native;
7877 } 7877 }
7878 7878
7879 class SVGFEFloodElementJs extends SVGElementJs implements SVGFEFloodElement nati ve "*SVGFEFloodElement" { 7879 class _SVGFEFloodElementJs extends _SVGElementJs implements SVGFEFloodElement na tive "*SVGFEFloodElement" {
7880 7880
7881 // From SVGFilterPrimitiveStandardAttributes 7881 // From SVGFilterPrimitiveStandardAttributes
7882 7882
7883 SVGAnimatedLengthJs get height() native "return this.height;"; 7883 _SVGAnimatedLengthJs get height() native "return this.height;";
7884 7884
7885 SVGAnimatedStringJs get result() native "return this.result;"; 7885 _SVGAnimatedStringJs get result() native "return this.result;";
7886 7886
7887 SVGAnimatedLengthJs get width() native "return this.width;"; 7887 _SVGAnimatedLengthJs get width() native "return this.width;";
7888 7888
7889 SVGAnimatedLengthJs get x() native "return this.x;"; 7889 _SVGAnimatedLengthJs get x() native "return this.x;";
7890 7890
7891 SVGAnimatedLengthJs get y() native "return this.y;"; 7891 _SVGAnimatedLengthJs get y() native "return this.y;";
7892 7892
7893 // From SVGStylable 7893 // From SVGStylable
7894 7894
7895 SVGAnimatedStringJs get className() native "return this.className;"; 7895 _SVGAnimatedStringJs get className() native "return this.className;";
7896 7896
7897 CSSStyleDeclarationJs get style() native "return this.style;"; 7897 _CSSStyleDeclarationJs get style() native "return this.style;";
7898 7898
7899 CSSValueJs getPresentationAttribute(String name) native; 7899 _CSSValueJs getPresentationAttribute(String name) native;
7900 } 7900 }
7901 7901
7902 class SVGFEFuncAElementJs extends SVGComponentTransferFunctionElementJs implemen ts SVGFEFuncAElement native "*SVGFEFuncAElement" { 7902 class _SVGFEFuncAElementJs extends _SVGComponentTransferFunctionElementJs implem ents SVGFEFuncAElement native "*SVGFEFuncAElement" {
7903 } 7903 }
7904 7904
7905 class SVGFEFuncBElementJs extends SVGComponentTransferFunctionElementJs implemen ts SVGFEFuncBElement native "*SVGFEFuncBElement" { 7905 class _SVGFEFuncBElementJs extends _SVGComponentTransferFunctionElementJs implem ents SVGFEFuncBElement native "*SVGFEFuncBElement" {
7906 } 7906 }
7907 7907
7908 class SVGFEFuncGElementJs extends SVGComponentTransferFunctionElementJs implemen ts SVGFEFuncGElement native "*SVGFEFuncGElement" { 7908 class _SVGFEFuncGElementJs extends _SVGComponentTransferFunctionElementJs implem ents SVGFEFuncGElement native "*SVGFEFuncGElement" {
7909 } 7909 }
7910 7910
7911 class SVGFEFuncRElementJs extends SVGComponentTransferFunctionElementJs implemen ts SVGFEFuncRElement native "*SVGFEFuncRElement" { 7911 class _SVGFEFuncRElementJs extends _SVGComponentTransferFunctionElementJs implem ents SVGFEFuncRElement native "*SVGFEFuncRElement" {
7912 } 7912 }
7913 7913
7914 class SVGFEGaussianBlurElementJs extends SVGElementJs implements SVGFEGaussianBl urElement native "*SVGFEGaussianBlurElement" { 7914 class _SVGFEGaussianBlurElementJs extends _SVGElementJs implements SVGFEGaussian BlurElement native "*SVGFEGaussianBlurElement" {
7915 7915
7916 SVGAnimatedStringJs get in1() native "return this.in1;"; 7916 _SVGAnimatedStringJs get in1() native "return this.in1;";
7917 7917
7918 SVGAnimatedNumberJs get stdDeviationX() native "return this.stdDeviationX;"; 7918 _SVGAnimatedNumberJs get stdDeviationX() native "return this.stdDeviationX;";
7919 7919
7920 SVGAnimatedNumberJs get stdDeviationY() native "return this.stdDeviationY;"; 7920 _SVGAnimatedNumberJs get stdDeviationY() native "return this.stdDeviationY;";
7921 7921
7922 void setStdDeviation(num stdDeviationX, num stdDeviationY) native; 7922 void setStdDeviation(num stdDeviationX, num stdDeviationY) native;
7923 7923
7924 // From SVGFilterPrimitiveStandardAttributes 7924 // From SVGFilterPrimitiveStandardAttributes
7925 7925
7926 SVGAnimatedLengthJs get height() native "return this.height;"; 7926 _SVGAnimatedLengthJs get height() native "return this.height;";
7927 7927
7928 SVGAnimatedStringJs get result() native "return this.result;"; 7928 _SVGAnimatedStringJs get result() native "return this.result;";
7929 7929
7930 SVGAnimatedLengthJs get width() native "return this.width;"; 7930 _SVGAnimatedLengthJs get width() native "return this.width;";
7931 7931
7932 SVGAnimatedLengthJs get x() native "return this.x;"; 7932 _SVGAnimatedLengthJs get x() native "return this.x;";
7933 7933
7934 SVGAnimatedLengthJs get y() native "return this.y;"; 7934 _SVGAnimatedLengthJs get y() native "return this.y;";
7935 7935
7936 // From SVGStylable 7936 // From SVGStylable
7937 7937
7938 SVGAnimatedStringJs get className() native "return this.className;"; 7938 _SVGAnimatedStringJs get className() native "return this.className;";
7939 7939
7940 CSSStyleDeclarationJs get style() native "return this.style;"; 7940 _CSSStyleDeclarationJs get style() native "return this.style;";
7941 7941
7942 CSSValueJs getPresentationAttribute(String name) native; 7942 _CSSValueJs getPresentationAttribute(String name) native;
7943 } 7943 }
7944 7944
7945 class SVGFEImageElementJs extends SVGElementJs implements SVGFEImageElement nati ve "*SVGFEImageElement" { 7945 class _SVGFEImageElementJs extends _SVGElementJs implements SVGFEImageElement na tive "*SVGFEImageElement" {
7946 7946
7947 SVGAnimatedPreserveAspectRatioJs get preserveAspectRatio() native "return this .preserveAspectRatio;"; 7947 _SVGAnimatedPreserveAspectRatioJs get preserveAspectRatio() native "return thi s.preserveAspectRatio;";
7948 7948
7949 // From SVGURIReference 7949 // From SVGURIReference
7950 7950
7951 SVGAnimatedStringJs get href() native "return this.href;"; 7951 _SVGAnimatedStringJs get href() native "return this.href;";
7952 7952
7953 // From SVGLangSpace 7953 // From SVGLangSpace
7954 7954
7955 String get xmllang() native "return this.xmllang;"; 7955 String get xmllang() native "return this.xmllang;";
7956 7956
7957 void set xmllang(String value) native "this.xmllang = value;"; 7957 void set xmllang(String value) native "this.xmllang = value;";
7958 7958
7959 String get xmlspace() native "return this.xmlspace;"; 7959 String get xmlspace() native "return this.xmlspace;";
7960 7960
7961 void set xmlspace(String value) native "this.xmlspace = value;"; 7961 void set xmlspace(String value) native "this.xmlspace = value;";
7962 7962
7963 // From SVGExternalResourcesRequired 7963 // From SVGExternalResourcesRequired
7964 7964
7965 SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exter nalResourcesRequired;"; 7965 _SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exte rnalResourcesRequired;";
7966 7966
7967 // From SVGFilterPrimitiveStandardAttributes 7967 // From SVGFilterPrimitiveStandardAttributes
7968 7968
7969 SVGAnimatedLengthJs get height() native "return this.height;"; 7969 _SVGAnimatedLengthJs get height() native "return this.height;";
7970 7970
7971 SVGAnimatedStringJs get result() native "return this.result;"; 7971 _SVGAnimatedStringJs get result() native "return this.result;";
7972 7972
7973 SVGAnimatedLengthJs get width() native "return this.width;"; 7973 _SVGAnimatedLengthJs get width() native "return this.width;";
7974 7974
7975 SVGAnimatedLengthJs get x() native "return this.x;"; 7975 _SVGAnimatedLengthJs get x() native "return this.x;";
7976 7976
7977 SVGAnimatedLengthJs get y() native "return this.y;"; 7977 _SVGAnimatedLengthJs get y() native "return this.y;";
7978 7978
7979 // From SVGStylable 7979 // From SVGStylable
7980 7980
7981 SVGAnimatedStringJs get className() native "return this.className;"; 7981 _SVGAnimatedStringJs get className() native "return this.className;";
7982 7982
7983 CSSStyleDeclarationJs get style() native "return this.style;"; 7983 _CSSStyleDeclarationJs get style() native "return this.style;";
7984 7984
7985 CSSValueJs getPresentationAttribute(String name) native; 7985 _CSSValueJs getPresentationAttribute(String name) native;
7986 } 7986 }
7987 7987
7988 class SVGFEMergeElementJs extends SVGElementJs implements SVGFEMergeElement nati ve "*SVGFEMergeElement" { 7988 class _SVGFEMergeElementJs extends _SVGElementJs implements SVGFEMergeElement na tive "*SVGFEMergeElement" {
7989 7989
7990 // From SVGFilterPrimitiveStandardAttributes 7990 // From SVGFilterPrimitiveStandardAttributes
7991 7991
7992 SVGAnimatedLengthJs get height() native "return this.height;"; 7992 _SVGAnimatedLengthJs get height() native "return this.height;";
7993 7993
7994 SVGAnimatedStringJs get result() native "return this.result;"; 7994 _SVGAnimatedStringJs get result() native "return this.result;";
7995 7995
7996 SVGAnimatedLengthJs get width() native "return this.width;"; 7996 _SVGAnimatedLengthJs get width() native "return this.width;";
7997 7997
7998 SVGAnimatedLengthJs get x() native "return this.x;"; 7998 _SVGAnimatedLengthJs get x() native "return this.x;";
7999 7999
8000 SVGAnimatedLengthJs get y() native "return this.y;"; 8000 _SVGAnimatedLengthJs get y() native "return this.y;";
8001 8001
8002 // From SVGStylable 8002 // From SVGStylable
8003 8003
8004 SVGAnimatedStringJs get className() native "return this.className;"; 8004 _SVGAnimatedStringJs get className() native "return this.className;";
8005 8005
8006 CSSStyleDeclarationJs get style() native "return this.style;"; 8006 _CSSStyleDeclarationJs get style() native "return this.style;";
8007 8007
8008 CSSValueJs getPresentationAttribute(String name) native; 8008 _CSSValueJs getPresentationAttribute(String name) native;
8009 } 8009 }
8010 8010
8011 class SVGFEMergeNodeElementJs extends SVGElementJs implements SVGFEMergeNodeElem ent native "*SVGFEMergeNodeElement" { 8011 class _SVGFEMergeNodeElementJs extends _SVGElementJs implements SVGFEMergeNodeEl ement native "*SVGFEMergeNodeElement" {
8012 8012
8013 SVGAnimatedStringJs get in1() native "return this.in1;"; 8013 _SVGAnimatedStringJs get in1() native "return this.in1;";
8014 } 8014 }
8015 8015
8016 class SVGFEMorphologyElementJs extends SVGElementJs implements SVGFEMorphologyEl ement native "*SVGFEMorphologyElement" { 8016 class _SVGFEMorphologyElementJs extends _SVGElementJs implements SVGFEMorphology Element native "*SVGFEMorphologyElement" {
8017 8017
8018 static final int SVG_MORPHOLOGY_OPERATOR_DILATE = 2; 8018 static final int SVG_MORPHOLOGY_OPERATOR_DILATE = 2;
8019 8019
8020 static final int SVG_MORPHOLOGY_OPERATOR_ERODE = 1; 8020 static final int SVG_MORPHOLOGY_OPERATOR_ERODE = 1;
8021 8021
8022 static final int SVG_MORPHOLOGY_OPERATOR_UNKNOWN = 0; 8022 static final int SVG_MORPHOLOGY_OPERATOR_UNKNOWN = 0;
8023 8023
8024 SVGAnimatedStringJs get in1() native "return this.in1;"; 8024 _SVGAnimatedStringJs get in1() native "return this.in1;";
8025 8025
8026 SVGAnimatedEnumerationJs get operator() native "return this.operator;"; 8026 _SVGAnimatedEnumerationJs get operator() native "return this.operator;";
8027 8027
8028 SVGAnimatedNumberJs get radiusX() native "return this.radiusX;"; 8028 _SVGAnimatedNumberJs get radiusX() native "return this.radiusX;";
8029 8029
8030 SVGAnimatedNumberJs get radiusY() native "return this.radiusY;"; 8030 _SVGAnimatedNumberJs get radiusY() native "return this.radiusY;";
8031 8031
8032 void setRadius(num radiusX, num radiusY) native; 8032 void setRadius(num radiusX, num radiusY) native;
8033 8033
8034 // From SVGFilterPrimitiveStandardAttributes 8034 // From SVGFilterPrimitiveStandardAttributes
8035 8035
8036 SVGAnimatedLengthJs get height() native "return this.height;"; 8036 _SVGAnimatedLengthJs get height() native "return this.height;";
8037 8037
8038 SVGAnimatedStringJs get result() native "return this.result;"; 8038 _SVGAnimatedStringJs get result() native "return this.result;";
8039 8039
8040 SVGAnimatedLengthJs get width() native "return this.width;"; 8040 _SVGAnimatedLengthJs get width() native "return this.width;";
8041 8041
8042 SVGAnimatedLengthJs get x() native "return this.x;"; 8042 _SVGAnimatedLengthJs get x() native "return this.x;";
8043 8043
8044 SVGAnimatedLengthJs get y() native "return this.y;"; 8044 _SVGAnimatedLengthJs get y() native "return this.y;";
8045 8045
8046 // From SVGStylable 8046 // From SVGStylable
8047 8047
8048 SVGAnimatedStringJs get className() native "return this.className;"; 8048 _SVGAnimatedStringJs get className() native "return this.className;";
8049 8049
8050 CSSStyleDeclarationJs get style() native "return this.style;"; 8050 _CSSStyleDeclarationJs get style() native "return this.style;";
8051 8051
8052 CSSValueJs getPresentationAttribute(String name) native; 8052 _CSSValueJs getPresentationAttribute(String name) native;
8053 } 8053 }
8054 8054
8055 class SVGFEOffsetElementJs extends SVGElementJs implements SVGFEOffsetElement na tive "*SVGFEOffsetElement" { 8055 class _SVGFEOffsetElementJs extends _SVGElementJs implements SVGFEOffsetElement native "*SVGFEOffsetElement" {
8056 8056
8057 SVGAnimatedNumberJs get dx() native "return this.dx;"; 8057 _SVGAnimatedNumberJs get dx() native "return this.dx;";
8058 8058
8059 SVGAnimatedNumberJs get dy() native "return this.dy;"; 8059 _SVGAnimatedNumberJs get dy() native "return this.dy;";
8060 8060
8061 SVGAnimatedStringJs get in1() native "return this.in1;"; 8061 _SVGAnimatedStringJs get in1() native "return this.in1;";
8062 8062
8063 // From SVGFilterPrimitiveStandardAttributes 8063 // From SVGFilterPrimitiveStandardAttributes
8064 8064
8065 SVGAnimatedLengthJs get height() native "return this.height;"; 8065 _SVGAnimatedLengthJs get height() native "return this.height;";
8066 8066
8067 SVGAnimatedStringJs get result() native "return this.result;"; 8067 _SVGAnimatedStringJs get result() native "return this.result;";
8068 8068
8069 SVGAnimatedLengthJs get width() native "return this.width;"; 8069 _SVGAnimatedLengthJs get width() native "return this.width;";
8070 8070
8071 SVGAnimatedLengthJs get x() native "return this.x;"; 8071 _SVGAnimatedLengthJs get x() native "return this.x;";
8072 8072
8073 SVGAnimatedLengthJs get y() native "return this.y;"; 8073 _SVGAnimatedLengthJs get y() native "return this.y;";
8074 8074
8075 // From SVGStylable 8075 // From SVGStylable
8076 8076
8077 SVGAnimatedStringJs get className() native "return this.className;"; 8077 _SVGAnimatedStringJs get className() native "return this.className;";
8078 8078
8079 CSSStyleDeclarationJs get style() native "return this.style;"; 8079 _CSSStyleDeclarationJs get style() native "return this.style;";
8080 8080
8081 CSSValueJs getPresentationAttribute(String name) native; 8081 _CSSValueJs getPresentationAttribute(String name) native;
8082 } 8082 }
8083 8083
8084 class SVGFEPointLightElementJs extends SVGElementJs implements SVGFEPointLightEl ement native "*SVGFEPointLightElement" { 8084 class _SVGFEPointLightElementJs extends _SVGElementJs implements SVGFEPointLight Element native "*SVGFEPointLightElement" {
8085 8085
8086 SVGAnimatedNumberJs get x() native "return this.x;"; 8086 _SVGAnimatedNumberJs get x() native "return this.x;";
8087 8087
8088 SVGAnimatedNumberJs get y() native "return this.y;"; 8088 _SVGAnimatedNumberJs get y() native "return this.y;";
8089 8089
8090 SVGAnimatedNumberJs get z() native "return this.z;"; 8090 _SVGAnimatedNumberJs get z() native "return this.z;";
8091 } 8091 }
8092 8092
8093 class SVGFESpecularLightingElementJs extends SVGElementJs implements SVGFESpecul arLightingElement native "*SVGFESpecularLightingElement" { 8093 class _SVGFESpecularLightingElementJs extends _SVGElementJs implements SVGFESpec ularLightingElement native "*SVGFESpecularLightingElement" {
8094 8094
8095 SVGAnimatedStringJs get in1() native "return this.in1;"; 8095 _SVGAnimatedStringJs get in1() native "return this.in1;";
8096 8096
8097 SVGAnimatedNumberJs get specularConstant() native "return this.specularConstan t;"; 8097 _SVGAnimatedNumberJs get specularConstant() native "return this.specularConsta nt;";
8098 8098
8099 SVGAnimatedNumberJs get specularExponent() native "return this.specularExponen t;"; 8099 _SVGAnimatedNumberJs get specularExponent() native "return this.specularExpone nt;";
8100 8100
8101 SVGAnimatedNumberJs get surfaceScale() native "return this.surfaceScale;"; 8101 _SVGAnimatedNumberJs get surfaceScale() native "return this.surfaceScale;";
8102 8102
8103 // From SVGFilterPrimitiveStandardAttributes 8103 // From SVGFilterPrimitiveStandardAttributes
8104 8104
8105 SVGAnimatedLengthJs get height() native "return this.height;"; 8105 _SVGAnimatedLengthJs get height() native "return this.height;";
8106 8106
8107 SVGAnimatedStringJs get result() native "return this.result;"; 8107 _SVGAnimatedStringJs get result() native "return this.result;";
8108 8108
8109 SVGAnimatedLengthJs get width() native "return this.width;"; 8109 _SVGAnimatedLengthJs get width() native "return this.width;";
8110 8110
8111 SVGAnimatedLengthJs get x() native "return this.x;"; 8111 _SVGAnimatedLengthJs get x() native "return this.x;";
8112 8112
8113 SVGAnimatedLengthJs get y() native "return this.y;"; 8113 _SVGAnimatedLengthJs get y() native "return this.y;";
8114 8114
8115 // From SVGStylable 8115 // From SVGStylable
8116 8116
8117 SVGAnimatedStringJs get className() native "return this.className;"; 8117 _SVGAnimatedStringJs get className() native "return this.className;";
8118 8118
8119 CSSStyleDeclarationJs get style() native "return this.style;"; 8119 _CSSStyleDeclarationJs get style() native "return this.style;";
8120 8120
8121 CSSValueJs getPresentationAttribute(String name) native; 8121 _CSSValueJs getPresentationAttribute(String name) native;
8122 } 8122 }
8123 8123
8124 class SVGFESpotLightElementJs extends SVGElementJs implements SVGFESpotLightElem ent native "*SVGFESpotLightElement" { 8124 class _SVGFESpotLightElementJs extends _SVGElementJs implements SVGFESpotLightEl ement native "*SVGFESpotLightElement" {
8125 8125
8126 SVGAnimatedNumberJs get limitingConeAngle() native "return this.limitingConeAn gle;"; 8126 _SVGAnimatedNumberJs get limitingConeAngle() native "return this.limitingConeA ngle;";
8127 8127
8128 SVGAnimatedNumberJs get pointsAtX() native "return this.pointsAtX;"; 8128 _SVGAnimatedNumberJs get pointsAtX() native "return this.pointsAtX;";
8129 8129
8130 SVGAnimatedNumberJs get pointsAtY() native "return this.pointsAtY;"; 8130 _SVGAnimatedNumberJs get pointsAtY() native "return this.pointsAtY;";
8131 8131
8132 SVGAnimatedNumberJs get pointsAtZ() native "return this.pointsAtZ;"; 8132 _SVGAnimatedNumberJs get pointsAtZ() native "return this.pointsAtZ;";
8133 8133
8134 SVGAnimatedNumberJs get specularExponent() native "return this.specularExponen t;"; 8134 _SVGAnimatedNumberJs get specularExponent() native "return this.specularExpone nt;";
8135 8135
8136 SVGAnimatedNumberJs get x() native "return this.x;"; 8136 _SVGAnimatedNumberJs get x() native "return this.x;";
8137 8137
8138 SVGAnimatedNumberJs get y() native "return this.y;"; 8138 _SVGAnimatedNumberJs get y() native "return this.y;";
8139 8139
8140 SVGAnimatedNumberJs get z() native "return this.z;"; 8140 _SVGAnimatedNumberJs get z() native "return this.z;";
8141 } 8141 }
8142 8142
8143 class SVGFETileElementJs extends SVGElementJs implements SVGFETileElement native "*SVGFETileElement" { 8143 class _SVGFETileElementJs extends _SVGElementJs implements SVGFETileElement nati ve "*SVGFETileElement" {
8144 8144
8145 SVGAnimatedStringJs get in1() native "return this.in1;"; 8145 _SVGAnimatedStringJs get in1() native "return this.in1;";
8146 8146
8147 // From SVGFilterPrimitiveStandardAttributes 8147 // From SVGFilterPrimitiveStandardAttributes
8148 8148
8149 SVGAnimatedLengthJs get height() native "return this.height;"; 8149 _SVGAnimatedLengthJs get height() native "return this.height;";
8150 8150
8151 SVGAnimatedStringJs get result() native "return this.result;"; 8151 _SVGAnimatedStringJs get result() native "return this.result;";
8152 8152
8153 SVGAnimatedLengthJs get width() native "return this.width;"; 8153 _SVGAnimatedLengthJs get width() native "return this.width;";
8154 8154
8155 SVGAnimatedLengthJs get x() native "return this.x;"; 8155 _SVGAnimatedLengthJs get x() native "return this.x;";
8156 8156
8157 SVGAnimatedLengthJs get y() native "return this.y;"; 8157 _SVGAnimatedLengthJs get y() native "return this.y;";
8158 8158
8159 // From SVGStylable 8159 // From SVGStylable
8160 8160
8161 SVGAnimatedStringJs get className() native "return this.className;"; 8161 _SVGAnimatedStringJs get className() native "return this.className;";
8162 8162
8163 CSSStyleDeclarationJs get style() native "return this.style;"; 8163 _CSSStyleDeclarationJs get style() native "return this.style;";
8164 8164
8165 CSSValueJs getPresentationAttribute(String name) native; 8165 _CSSValueJs getPresentationAttribute(String name) native;
8166 } 8166 }
8167 8167
8168 class SVGFETurbulenceElementJs extends SVGElementJs implements SVGFETurbulenceEl ement native "*SVGFETurbulenceElement" { 8168 class _SVGFETurbulenceElementJs extends _SVGElementJs implements SVGFETurbulence Element native "*SVGFETurbulenceElement" {
8169 8169
8170 static final int SVG_STITCHTYPE_NOSTITCH = 2; 8170 static final int SVG_STITCHTYPE_NOSTITCH = 2;
8171 8171
8172 static final int SVG_STITCHTYPE_STITCH = 1; 8172 static final int SVG_STITCHTYPE_STITCH = 1;
8173 8173
8174 static final int SVG_STITCHTYPE_UNKNOWN = 0; 8174 static final int SVG_STITCHTYPE_UNKNOWN = 0;
8175 8175
8176 static final int SVG_TURBULENCE_TYPE_FRACTALNOISE = 1; 8176 static final int SVG_TURBULENCE_TYPE_FRACTALNOISE = 1;
8177 8177
8178 static final int SVG_TURBULENCE_TYPE_TURBULENCE = 2; 8178 static final int SVG_TURBULENCE_TYPE_TURBULENCE = 2;
8179 8179
8180 static final int SVG_TURBULENCE_TYPE_UNKNOWN = 0; 8180 static final int SVG_TURBULENCE_TYPE_UNKNOWN = 0;
8181 8181
8182 SVGAnimatedNumberJs get baseFrequencyX() native "return this.baseFrequencyX;"; 8182 _SVGAnimatedNumberJs get baseFrequencyX() native "return this.baseFrequencyX;" ;
8183 8183
8184 SVGAnimatedNumberJs get baseFrequencyY() native "return this.baseFrequencyY;"; 8184 _SVGAnimatedNumberJs get baseFrequencyY() native "return this.baseFrequencyY;" ;
8185 8185
8186 SVGAnimatedIntegerJs get numOctaves() native "return this.numOctaves;"; 8186 _SVGAnimatedIntegerJs get numOctaves() native "return this.numOctaves;";
8187 8187
8188 SVGAnimatedNumberJs get seed() native "return this.seed;"; 8188 _SVGAnimatedNumberJs get seed() native "return this.seed;";
8189 8189
8190 SVGAnimatedEnumerationJs get stitchTiles() native "return this.stitchTiles;"; 8190 _SVGAnimatedEnumerationJs get stitchTiles() native "return this.stitchTiles;";
8191 8191
8192 SVGAnimatedEnumerationJs get type() native "return this.type;"; 8192 _SVGAnimatedEnumerationJs get type() native "return this.type;";
8193 8193
8194 // From SVGFilterPrimitiveStandardAttributes 8194 // From SVGFilterPrimitiveStandardAttributes
8195 8195
8196 SVGAnimatedLengthJs get height() native "return this.height;"; 8196 _SVGAnimatedLengthJs get height() native "return this.height;";
8197 8197
8198 SVGAnimatedStringJs get result() native "return this.result;"; 8198 _SVGAnimatedStringJs get result() native "return this.result;";
8199 8199
8200 SVGAnimatedLengthJs get width() native "return this.width;"; 8200 _SVGAnimatedLengthJs get width() native "return this.width;";
8201 8201
8202 SVGAnimatedLengthJs get x() native "return this.x;"; 8202 _SVGAnimatedLengthJs get x() native "return this.x;";
8203 8203
8204 SVGAnimatedLengthJs get y() native "return this.y;"; 8204 _SVGAnimatedLengthJs get y() native "return this.y;";
8205 8205
8206 // From SVGStylable 8206 // From SVGStylable
8207 8207
8208 SVGAnimatedStringJs get className() native "return this.className;"; 8208 _SVGAnimatedStringJs get className() native "return this.className;";
8209 8209
8210 CSSStyleDeclarationJs get style() native "return this.style;"; 8210 _CSSStyleDeclarationJs get style() native "return this.style;";
8211 8211
8212 CSSValueJs getPresentationAttribute(String name) native; 8212 _CSSValueJs getPresentationAttribute(String name) native;
8213 } 8213 }
8214 8214
8215 class SVGFilterElementJs extends SVGElementJs implements SVGFilterElement native "*SVGFilterElement" { 8215 class _SVGFilterElementJs extends _SVGElementJs implements SVGFilterElement nati ve "*SVGFilterElement" {
8216 8216
8217 SVGAnimatedIntegerJs get filterResX() native "return this.filterResX;"; 8217 _SVGAnimatedIntegerJs get filterResX() native "return this.filterResX;";
8218 8218
8219 SVGAnimatedIntegerJs get filterResY() native "return this.filterResY;"; 8219 _SVGAnimatedIntegerJs get filterResY() native "return this.filterResY;";
8220 8220
8221 SVGAnimatedEnumerationJs get filterUnits() native "return this.filterUnits;"; 8221 _SVGAnimatedEnumerationJs get filterUnits() native "return this.filterUnits;";
8222 8222
8223 SVGAnimatedLengthJs get height() native "return this.height;"; 8223 _SVGAnimatedLengthJs get height() native "return this.height;";
8224 8224
8225 SVGAnimatedEnumerationJs get primitiveUnits() native "return this.primitiveUni ts;"; 8225 _SVGAnimatedEnumerationJs get primitiveUnits() native "return this.primitiveUn its;";
8226 8226
8227 SVGAnimatedLengthJs get width() native "return this.width;"; 8227 _SVGAnimatedLengthJs get width() native "return this.width;";
8228 8228
8229 SVGAnimatedLengthJs get x() native "return this.x;"; 8229 _SVGAnimatedLengthJs get x() native "return this.x;";
8230 8230
8231 SVGAnimatedLengthJs get y() native "return this.y;"; 8231 _SVGAnimatedLengthJs get y() native "return this.y;";
8232 8232
8233 void setFilterRes(int filterResX, int filterResY) native; 8233 void setFilterRes(int filterResX, int filterResY) native;
8234 8234
8235 // From SVGURIReference 8235 // From SVGURIReference
8236 8236
8237 SVGAnimatedStringJs get href() native "return this.href;"; 8237 _SVGAnimatedStringJs get href() native "return this.href;";
8238 8238
8239 // From SVGLangSpace 8239 // From SVGLangSpace
8240 8240
8241 String get xmllang() native "return this.xmllang;"; 8241 String get xmllang() native "return this.xmllang;";
8242 8242
8243 void set xmllang(String value) native "this.xmllang = value;"; 8243 void set xmllang(String value) native "this.xmllang = value;";
8244 8244
8245 String get xmlspace() native "return this.xmlspace;"; 8245 String get xmlspace() native "return this.xmlspace;";
8246 8246
8247 void set xmlspace(String value) native "this.xmlspace = value;"; 8247 void set xmlspace(String value) native "this.xmlspace = value;";
8248 8248
8249 // From SVGExternalResourcesRequired 8249 // From SVGExternalResourcesRequired
8250 8250
8251 SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exter nalResourcesRequired;"; 8251 _SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exte rnalResourcesRequired;";
8252 8252
8253 // From SVGStylable 8253 // From SVGStylable
8254 8254
8255 SVGAnimatedStringJs get className() native "return this.className;"; 8255 _SVGAnimatedStringJs get className() native "return this.className;";
8256 8256
8257 CSSStyleDeclarationJs get style() native "return this.style;"; 8257 _CSSStyleDeclarationJs get style() native "return this.style;";
8258 8258
8259 CSSValueJs getPresentationAttribute(String name) native; 8259 _CSSValueJs getPresentationAttribute(String name) native;
8260 } 8260 }
8261 8261
8262 class SVGFilterPrimitiveStandardAttributesJs extends SVGStylableJs implements SV GFilterPrimitiveStandardAttributes native "*SVGFilterPrimitiveStandardAttributes " { 8262 class _SVGFilterPrimitiveStandardAttributesJs extends _SVGStylableJs implements SVGFilterPrimitiveStandardAttributes native "*SVGFilterPrimitiveStandardAttribut es" {
8263 8263
8264 SVGAnimatedLengthJs get height() native "return this.height;"; 8264 _SVGAnimatedLengthJs get height() native "return this.height;";
8265 8265
8266 SVGAnimatedStringJs get result() native "return this.result;"; 8266 _SVGAnimatedStringJs get result() native "return this.result;";
8267 8267
8268 SVGAnimatedLengthJs get width() native "return this.width;"; 8268 _SVGAnimatedLengthJs get width() native "return this.width;";
8269 8269
8270 SVGAnimatedLengthJs get x() native "return this.x;"; 8270 _SVGAnimatedLengthJs get x() native "return this.x;";
8271 8271
8272 SVGAnimatedLengthJs get y() native "return this.y;"; 8272 _SVGAnimatedLengthJs get y() native "return this.y;";
8273 } 8273 }
8274 8274
8275 class SVGFitToViewBoxJs extends DOMTypeJs implements SVGFitToViewBox native "*SV GFitToViewBox" { 8275 class _SVGFitToViewBoxJs extends _DOMTypeJs implements SVGFitToViewBox native "* SVGFitToViewBox" {
8276 8276
8277 SVGAnimatedPreserveAspectRatioJs get preserveAspectRatio() native "return this .preserveAspectRatio;"; 8277 _SVGAnimatedPreserveAspectRatioJs get preserveAspectRatio() native "return thi s.preserveAspectRatio;";
8278 8278
8279 SVGAnimatedRectJs get viewBox() native "return this.viewBox;"; 8279 _SVGAnimatedRectJs get viewBox() native "return this.viewBox;";
8280 } 8280 }
8281 8281
8282 class SVGFontElementJs extends SVGElementJs implements SVGFontElement native "*S VGFontElement" { 8282 class _SVGFontElementJs extends _SVGElementJs implements SVGFontElement native " *SVGFontElement" {
8283 } 8283 }
8284 8284
8285 class SVGFontFaceElementJs extends SVGElementJs implements SVGFontFaceElement na tive "*SVGFontFaceElement" { 8285 class _SVGFontFaceElementJs extends _SVGElementJs implements SVGFontFaceElement native "*SVGFontFaceElement" {
8286 } 8286 }
8287 8287
8288 class SVGFontFaceFormatElementJs extends SVGElementJs implements SVGFontFaceForm atElement native "*SVGFontFaceFormatElement" { 8288 class _SVGFontFaceFormatElementJs extends _SVGElementJs implements SVGFontFaceFo rmatElement native "*SVGFontFaceFormatElement" {
8289 } 8289 }
8290 8290
8291 class SVGFontFaceNameElementJs extends SVGElementJs implements SVGFontFaceNameEl ement native "*SVGFontFaceNameElement" { 8291 class _SVGFontFaceNameElementJs extends _SVGElementJs implements SVGFontFaceName Element native "*SVGFontFaceNameElement" {
8292 } 8292 }
8293 8293
8294 class SVGFontFaceSrcElementJs extends SVGElementJs implements SVGFontFaceSrcElem ent native "*SVGFontFaceSrcElement" { 8294 class _SVGFontFaceSrcElementJs extends _SVGElementJs implements SVGFontFaceSrcEl ement native "*SVGFontFaceSrcElement" {
8295 } 8295 }
8296 8296
8297 class SVGFontFaceUriElementJs extends SVGElementJs implements SVGFontFaceUriElem ent native "*SVGFontFaceUriElement" { 8297 class _SVGFontFaceUriElementJs extends _SVGElementJs implements SVGFontFaceUriEl ement native "*SVGFontFaceUriElement" {
8298 } 8298 }
8299 8299
8300 class SVGForeignObjectElementJs extends SVGElementJs implements SVGForeignObject Element native "*SVGForeignObjectElement" { 8300 class _SVGForeignObjectElementJs extends _SVGElementJs implements SVGForeignObje ctElement native "*SVGForeignObjectElement" {
8301 8301
8302 SVGAnimatedLengthJs get height() native "return this.height;"; 8302 _SVGAnimatedLengthJs get height() native "return this.height;";
8303 8303
8304 SVGAnimatedLengthJs get width() native "return this.width;"; 8304 _SVGAnimatedLengthJs get width() native "return this.width;";
8305 8305
8306 SVGAnimatedLengthJs get x() native "return this.x;"; 8306 _SVGAnimatedLengthJs get x() native "return this.x;";
8307 8307
8308 SVGAnimatedLengthJs get y() native "return this.y;"; 8308 _SVGAnimatedLengthJs get y() native "return this.y;";
8309 8309
8310 // From SVGTests 8310 // From SVGTests
8311 8311
8312 SVGStringListJs get requiredExtensions() native "return this.requiredExtension s;"; 8312 _SVGStringListJs get requiredExtensions() native "return this.requiredExtensio ns;";
8313 8313
8314 SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;"; 8314 _SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;" ;
8315 8315
8316 SVGStringListJs get systemLanguage() native "return this.systemLanguage;"; 8316 _SVGStringListJs get systemLanguage() native "return this.systemLanguage;";
8317 8317
8318 bool hasExtension(String extension) native; 8318 bool hasExtension(String extension) native;
8319 8319
8320 // From SVGLangSpace 8320 // From SVGLangSpace
8321 8321
8322 String get xmllang() native "return this.xmllang;"; 8322 String get xmllang() native "return this.xmllang;";
8323 8323
8324 void set xmllang(String value) native "this.xmllang = value;"; 8324 void set xmllang(String value) native "this.xmllang = value;";
8325 8325
8326 String get xmlspace() native "return this.xmlspace;"; 8326 String get xmlspace() native "return this.xmlspace;";
8327 8327
8328 void set xmlspace(String value) native "this.xmlspace = value;"; 8328 void set xmlspace(String value) native "this.xmlspace = value;";
8329 8329
8330 // From SVGExternalResourcesRequired 8330 // From SVGExternalResourcesRequired
8331 8331
8332 SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exter nalResourcesRequired;"; 8332 _SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exte rnalResourcesRequired;";
8333 8333
8334 // From SVGStylable 8334 // From SVGStylable
8335 8335
8336 SVGAnimatedStringJs get className() native "return this.className;"; 8336 _SVGAnimatedStringJs get className() native "return this.className;";
8337 8337
8338 CSSStyleDeclarationJs get style() native "return this.style;"; 8338 _CSSStyleDeclarationJs get style() native "return this.style;";
8339 8339
8340 CSSValueJs getPresentationAttribute(String name) native; 8340 _CSSValueJs getPresentationAttribute(String name) native;
8341 8341
8342 // From SVGTransformable 8342 // From SVGTransformable
8343 8343
8344 SVGAnimatedTransformListJs get transform() native "return this.transform;"; 8344 _SVGAnimatedTransformListJs get transform() native "return this.transform;";
8345 8345
8346 // From SVGLocatable 8346 // From SVGLocatable
8347 8347
8348 SVGElementJs get farthestViewportElement() native "return this.farthestViewpor tElement;"; 8348 _SVGElementJs get farthestViewportElement() native "return this.farthestViewpo rtElement;";
8349 8349
8350 SVGElementJs get nearestViewportElement() native "return this.nearestViewportE lement;"; 8350 _SVGElementJs get nearestViewportElement() native "return this.nearestViewport Element;";
8351 8351
8352 SVGRectJs getBBox() native; 8352 _SVGRectJs getBBox() native;
8353 8353
8354 SVGMatrixJs getCTM() native; 8354 _SVGMatrixJs getCTM() native;
8355 8355
8356 SVGMatrixJs getScreenCTM() native; 8356 _SVGMatrixJs getScreenCTM() native;
8357 8357
8358 SVGMatrixJs getTransformToElement(SVGElementJs element) native; 8358 _SVGMatrixJs getTransformToElement(_SVGElementJs element) native;
8359 } 8359 }
8360 8360
8361 class SVGGElementJs extends SVGElementJs implements SVGGElement native "*SVGGEle ment" { 8361 class _SVGGElementJs extends _SVGElementJs implements SVGGElement native "*SVGGE lement" {
8362 8362
8363 // From SVGTests 8363 // From SVGTests
8364 8364
8365 SVGStringListJs get requiredExtensions() native "return this.requiredExtension s;"; 8365 _SVGStringListJs get requiredExtensions() native "return this.requiredExtensio ns;";
8366 8366
8367 SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;"; 8367 _SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;" ;
8368 8368
8369 SVGStringListJs get systemLanguage() native "return this.systemLanguage;"; 8369 _SVGStringListJs get systemLanguage() native "return this.systemLanguage;";
8370 8370
8371 bool hasExtension(String extension) native; 8371 bool hasExtension(String extension) native;
8372 8372
8373 // From SVGLangSpace 8373 // From SVGLangSpace
8374 8374
8375 String get xmllang() native "return this.xmllang;"; 8375 String get xmllang() native "return this.xmllang;";
8376 8376
8377 void set xmllang(String value) native "this.xmllang = value;"; 8377 void set xmllang(String value) native "this.xmllang = value;";
8378 8378
8379 String get xmlspace() native "return this.xmlspace;"; 8379 String get xmlspace() native "return this.xmlspace;";
8380 8380
8381 void set xmlspace(String value) native "this.xmlspace = value;"; 8381 void set xmlspace(String value) native "this.xmlspace = value;";
8382 8382
8383 // From SVGExternalResourcesRequired 8383 // From SVGExternalResourcesRequired
8384 8384
8385 SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exter nalResourcesRequired;"; 8385 _SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exte rnalResourcesRequired;";
8386 8386
8387 // From SVGStylable 8387 // From SVGStylable
8388 8388
8389 SVGAnimatedStringJs get className() native "return this.className;"; 8389 _SVGAnimatedStringJs get className() native "return this.className;";
8390 8390
8391 CSSStyleDeclarationJs get style() native "return this.style;"; 8391 _CSSStyleDeclarationJs get style() native "return this.style;";
8392 8392
8393 CSSValueJs getPresentationAttribute(String name) native; 8393 _CSSValueJs getPresentationAttribute(String name) native;
8394 8394
8395 // From SVGTransformable 8395 // From SVGTransformable
8396 8396
8397 SVGAnimatedTransformListJs get transform() native "return this.transform;"; 8397 _SVGAnimatedTransformListJs get transform() native "return this.transform;";
8398 8398
8399 // From SVGLocatable 8399 // From SVGLocatable
8400 8400
8401 SVGElementJs get farthestViewportElement() native "return this.farthestViewpor tElement;"; 8401 _SVGElementJs get farthestViewportElement() native "return this.farthestViewpo rtElement;";
8402 8402
8403 SVGElementJs get nearestViewportElement() native "return this.nearestViewportE lement;"; 8403 _SVGElementJs get nearestViewportElement() native "return this.nearestViewport Element;";
8404 8404
8405 SVGRectJs getBBox() native; 8405 _SVGRectJs getBBox() native;
8406 8406
8407 SVGMatrixJs getCTM() native; 8407 _SVGMatrixJs getCTM() native;
8408 8408
8409 SVGMatrixJs getScreenCTM() native; 8409 _SVGMatrixJs getScreenCTM() native;
8410 8410
8411 SVGMatrixJs getTransformToElement(SVGElementJs element) native; 8411 _SVGMatrixJs getTransformToElement(_SVGElementJs element) native;
8412 } 8412 }
8413 8413
8414 class SVGGlyphElementJs extends SVGElementJs implements SVGGlyphElement native " *SVGGlyphElement" { 8414 class _SVGGlyphElementJs extends _SVGElementJs implements SVGGlyphElement native "*SVGGlyphElement" {
8415 } 8415 }
8416 8416
8417 class SVGGlyphRefElementJs extends SVGElementJs implements SVGGlyphRefElement na tive "*SVGGlyphRefElement" { 8417 class _SVGGlyphRefElementJs extends _SVGElementJs implements SVGGlyphRefElement native "*SVGGlyphRefElement" {
8418 8418
8419 num get dx() native "return this.dx;"; 8419 num get dx() native "return this.dx;";
8420 8420
8421 void set dx(num value) native "this.dx = value;"; 8421 void set dx(num value) native "this.dx = value;";
8422 8422
8423 num get dy() native "return this.dy;"; 8423 num get dy() native "return this.dy;";
8424 8424
8425 void set dy(num value) native "this.dy = value;"; 8425 void set dy(num value) native "this.dy = value;";
8426 8426
8427 String get format() native "return this.format;"; 8427 String get format() native "return this.format;";
8428 8428
8429 void set format(String value) native "this.format = value;"; 8429 void set format(String value) native "this.format = value;";
8430 8430
8431 String get glyphRef() native "return this.glyphRef;"; 8431 String get glyphRef() native "return this.glyphRef;";
8432 8432
8433 void set glyphRef(String value) native "this.glyphRef = value;"; 8433 void set glyphRef(String value) native "this.glyphRef = value;";
8434 8434
8435 num get x() native "return this.x;"; 8435 num get x() native "return this.x;";
8436 8436
8437 void set x(num value) native "this.x = value;"; 8437 void set x(num value) native "this.x = value;";
8438 8438
8439 num get y() native "return this.y;"; 8439 num get y() native "return this.y;";
8440 8440
8441 void set y(num value) native "this.y = value;"; 8441 void set y(num value) native "this.y = value;";
8442 8442
8443 // From SVGURIReference 8443 // From SVGURIReference
8444 8444
8445 SVGAnimatedStringJs get href() native "return this.href;"; 8445 _SVGAnimatedStringJs get href() native "return this.href;";
8446 8446
8447 // From SVGStylable 8447 // From SVGStylable
8448 8448
8449 SVGAnimatedStringJs get className() native "return this.className;"; 8449 _SVGAnimatedStringJs get className() native "return this.className;";
8450 8450
8451 CSSStyleDeclarationJs get style() native "return this.style;"; 8451 _CSSStyleDeclarationJs get style() native "return this.style;";
8452 8452
8453 CSSValueJs getPresentationAttribute(String name) native; 8453 _CSSValueJs getPresentationAttribute(String name) native;
8454 } 8454 }
8455 8455
8456 class SVGGradientElementJs extends SVGElementJs implements SVGGradientElement na tive "*SVGGradientElement" { 8456 class _SVGGradientElementJs extends _SVGElementJs implements SVGGradientElement native "*SVGGradientElement" {
8457 8457
8458 static final int SVG_SPREADMETHOD_PAD = 1; 8458 static final int SVG_SPREADMETHOD_PAD = 1;
8459 8459
8460 static final int SVG_SPREADMETHOD_REFLECT = 2; 8460 static final int SVG_SPREADMETHOD_REFLECT = 2;
8461 8461
8462 static final int SVG_SPREADMETHOD_REPEAT = 3; 8462 static final int SVG_SPREADMETHOD_REPEAT = 3;
8463 8463
8464 static final int SVG_SPREADMETHOD_UNKNOWN = 0; 8464 static final int SVG_SPREADMETHOD_UNKNOWN = 0;
8465 8465
8466 SVGAnimatedTransformListJs get gradientTransform() native "return this.gradien tTransform;"; 8466 _SVGAnimatedTransformListJs get gradientTransform() native "return this.gradie ntTransform;";
8467 8467
8468 SVGAnimatedEnumerationJs get gradientUnits() native "return this.gradientUnits ;"; 8468 _SVGAnimatedEnumerationJs get gradientUnits() native "return this.gradientUnit s;";
8469 8469
8470 SVGAnimatedEnumerationJs get spreadMethod() native "return this.spreadMethod;" ; 8470 _SVGAnimatedEnumerationJs get spreadMethod() native "return this.spreadMethod; ";
8471 8471
8472 // From SVGURIReference 8472 // From SVGURIReference
8473 8473
8474 SVGAnimatedStringJs get href() native "return this.href;"; 8474 _SVGAnimatedStringJs get href() native "return this.href;";
8475 8475
8476 // From SVGExternalResourcesRequired 8476 // From SVGExternalResourcesRequired
8477 8477
8478 SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exter nalResourcesRequired;"; 8478 _SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exte rnalResourcesRequired;";
8479 8479
8480 // From SVGStylable 8480 // From SVGStylable
8481 8481
8482 SVGAnimatedStringJs get className() native "return this.className;"; 8482 _SVGAnimatedStringJs get className() native "return this.className;";
8483 8483
8484 CSSStyleDeclarationJs get style() native "return this.style;"; 8484 _CSSStyleDeclarationJs get style() native "return this.style;";
8485 8485
8486 CSSValueJs getPresentationAttribute(String name) native; 8486 _CSSValueJs getPresentationAttribute(String name) native;
8487 } 8487 }
8488 8488
8489 class SVGHKernElementJs extends SVGElementJs implements SVGHKernElement native " *SVGHKernElement" { 8489 class _SVGHKernElementJs extends _SVGElementJs implements SVGHKernElement native "*SVGHKernElement" {
8490 } 8490 }
8491 8491
8492 class SVGImageElementJs extends SVGElementJs implements SVGImageElement native " *SVGImageElement" { 8492 class _SVGImageElementJs extends _SVGElementJs implements SVGImageElement native "*SVGImageElement" {
8493 8493
8494 SVGAnimatedLengthJs get height() native "return this.height;"; 8494 _SVGAnimatedLengthJs get height() native "return this.height;";
8495 8495
8496 SVGAnimatedPreserveAspectRatioJs get preserveAspectRatio() native "return this .preserveAspectRatio;"; 8496 _SVGAnimatedPreserveAspectRatioJs get preserveAspectRatio() native "return thi s.preserveAspectRatio;";
8497 8497
8498 SVGAnimatedLengthJs get width() native "return this.width;"; 8498 _SVGAnimatedLengthJs get width() native "return this.width;";
8499 8499
8500 SVGAnimatedLengthJs get x() native "return this.x;"; 8500 _SVGAnimatedLengthJs get x() native "return this.x;";
8501 8501
8502 SVGAnimatedLengthJs get y() native "return this.y;"; 8502 _SVGAnimatedLengthJs get y() native "return this.y;";
8503 8503
8504 // From SVGURIReference 8504 // From SVGURIReference
8505 8505
8506 SVGAnimatedStringJs get href() native "return this.href;"; 8506 _SVGAnimatedStringJs get href() native "return this.href;";
8507 8507
8508 // From SVGTests 8508 // From SVGTests
8509 8509
8510 SVGStringListJs get requiredExtensions() native "return this.requiredExtension s;"; 8510 _SVGStringListJs get requiredExtensions() native "return this.requiredExtensio ns;";
8511 8511
8512 SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;"; 8512 _SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;" ;
8513 8513
8514 SVGStringListJs get systemLanguage() native "return this.systemLanguage;"; 8514 _SVGStringListJs get systemLanguage() native "return this.systemLanguage;";
8515 8515
8516 bool hasExtension(String extension) native; 8516 bool hasExtension(String extension) native;
8517 8517
8518 // From SVGLangSpace 8518 // From SVGLangSpace
8519 8519
8520 String get xmllang() native "return this.xmllang;"; 8520 String get xmllang() native "return this.xmllang;";
8521 8521
8522 void set xmllang(String value) native "this.xmllang = value;"; 8522 void set xmllang(String value) native "this.xmllang = value;";
8523 8523
8524 String get xmlspace() native "return this.xmlspace;"; 8524 String get xmlspace() native "return this.xmlspace;";
8525 8525
8526 void set xmlspace(String value) native "this.xmlspace = value;"; 8526 void set xmlspace(String value) native "this.xmlspace = value;";
8527 8527
8528 // From SVGExternalResourcesRequired 8528 // From SVGExternalResourcesRequired
8529 8529
8530 SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exter nalResourcesRequired;"; 8530 _SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exte rnalResourcesRequired;";
8531 8531
8532 // From SVGStylable 8532 // From SVGStylable
8533 8533
8534 SVGAnimatedStringJs get className() native "return this.className;"; 8534 _SVGAnimatedStringJs get className() native "return this.className;";
8535 8535
8536 CSSStyleDeclarationJs get style() native "return this.style;"; 8536 _CSSStyleDeclarationJs get style() native "return this.style;";
8537 8537
8538 CSSValueJs getPresentationAttribute(String name) native; 8538 _CSSValueJs getPresentationAttribute(String name) native;
8539 8539
8540 // From SVGTransformable 8540 // From SVGTransformable
8541 8541
8542 SVGAnimatedTransformListJs get transform() native "return this.transform;"; 8542 _SVGAnimatedTransformListJs get transform() native "return this.transform;";
8543 8543
8544 // From SVGLocatable 8544 // From SVGLocatable
8545 8545
8546 SVGElementJs get farthestViewportElement() native "return this.farthestViewpor tElement;"; 8546 _SVGElementJs get farthestViewportElement() native "return this.farthestViewpo rtElement;";
8547 8547
8548 SVGElementJs get nearestViewportElement() native "return this.nearestViewportE lement;"; 8548 _SVGElementJs get nearestViewportElement() native "return this.nearestViewport Element;";
8549 8549
8550 SVGRectJs getBBox() native; 8550 _SVGRectJs getBBox() native;
8551 8551
8552 SVGMatrixJs getCTM() native; 8552 _SVGMatrixJs getCTM() native;
8553 8553
8554 SVGMatrixJs getScreenCTM() native; 8554 _SVGMatrixJs getScreenCTM() native;
8555 8555
8556 SVGMatrixJs getTransformToElement(SVGElementJs element) native; 8556 _SVGMatrixJs getTransformToElement(_SVGElementJs element) native;
8557 } 8557 }
8558 8558
8559 class SVGLangSpaceJs extends DOMTypeJs implements SVGLangSpace native "*SVGLangS pace" { 8559 class _SVGLangSpaceJs extends _DOMTypeJs implements SVGLangSpace native "*SVGLan gSpace" {
8560 8560
8561 String get xmllang() native "return this.xmllang;"; 8561 String get xmllang() native "return this.xmllang;";
8562 8562
8563 void set xmllang(String value) native "this.xmllang = value;"; 8563 void set xmllang(String value) native "this.xmllang = value;";
8564 8564
8565 String get xmlspace() native "return this.xmlspace;"; 8565 String get xmlspace() native "return this.xmlspace;";
8566 8566
8567 void set xmlspace(String value) native "this.xmlspace = value;"; 8567 void set xmlspace(String value) native "this.xmlspace = value;";
8568 } 8568 }
8569 8569
8570 class SVGLengthJs extends DOMTypeJs implements SVGLength native "*SVGLength" { 8570 class _SVGLengthJs extends _DOMTypeJs implements SVGLength native "*SVGLength" {
8571 8571
8572 static final int SVG_LENGTHTYPE_CM = 6; 8572 static final int SVG_LENGTHTYPE_CM = 6;
8573 8573
8574 static final int SVG_LENGTHTYPE_EMS = 3; 8574 static final int SVG_LENGTHTYPE_EMS = 3;
8575 8575
8576 static final int SVG_LENGTHTYPE_EXS = 4; 8576 static final int SVG_LENGTHTYPE_EXS = 4;
8577 8577
8578 static final int SVG_LENGTHTYPE_IN = 8; 8578 static final int SVG_LENGTHTYPE_IN = 8;
8579 8579
8580 static final int SVG_LENGTHTYPE_MM = 7; 8580 static final int SVG_LENGTHTYPE_MM = 7;
(...skipping 22 matching lines...) Expand all
8603 8603
8604 num get valueInSpecifiedUnits() native "return this.valueInSpecifiedUnits;"; 8604 num get valueInSpecifiedUnits() native "return this.valueInSpecifiedUnits;";
8605 8605
8606 void set valueInSpecifiedUnits(num value) native "this.valueInSpecifiedUnits = value;"; 8606 void set valueInSpecifiedUnits(num value) native "this.valueInSpecifiedUnits = value;";
8607 8607
8608 void convertToSpecifiedUnits(int unitType) native; 8608 void convertToSpecifiedUnits(int unitType) native;
8609 8609
8610 void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) native; 8610 void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) native;
8611 } 8611 }
8612 8612
8613 class SVGLengthListJs extends DOMTypeJs implements SVGLengthList native "*SVGLen gthList" { 8613 class _SVGLengthListJs extends _DOMTypeJs implements SVGLengthList native "*SVGL engthList" {
8614 8614
8615 int get numberOfItems() native "return this.numberOfItems;"; 8615 int get numberOfItems() native "return this.numberOfItems;";
8616 8616
8617 SVGLengthJs appendItem(SVGLengthJs item) native; 8617 _SVGLengthJs appendItem(_SVGLengthJs item) native;
8618 8618
8619 void clear() native; 8619 void clear() native;
8620 8620
8621 SVGLengthJs getItem(int index) native; 8621 _SVGLengthJs getItem(int index) native;
8622 8622
8623 SVGLengthJs initialize(SVGLengthJs item) native; 8623 _SVGLengthJs initialize(_SVGLengthJs item) native;
8624 8624
8625 SVGLengthJs insertItemBefore(SVGLengthJs item, int index) native; 8625 _SVGLengthJs insertItemBefore(_SVGLengthJs item, int index) native;
8626 8626
8627 SVGLengthJs removeItem(int index) native; 8627 _SVGLengthJs removeItem(int index) native;
8628 8628
8629 SVGLengthJs replaceItem(SVGLengthJs item, int index) native; 8629 _SVGLengthJs replaceItem(_SVGLengthJs item, int index) native;
8630 } 8630 }
8631 8631
8632 class SVGLineElementJs extends SVGElementJs implements SVGLineElement native "*S VGLineElement" { 8632 class _SVGLineElementJs extends _SVGElementJs implements SVGLineElement native " *SVGLineElement" {
8633 8633
8634 SVGAnimatedLengthJs get x1() native "return this.x1;"; 8634 _SVGAnimatedLengthJs get x1() native "return this.x1;";
8635 8635
8636 SVGAnimatedLengthJs get x2() native "return this.x2;"; 8636 _SVGAnimatedLengthJs get x2() native "return this.x2;";
8637 8637
8638 SVGAnimatedLengthJs get y1() native "return this.y1;"; 8638 _SVGAnimatedLengthJs get y1() native "return this.y1;";
8639 8639
8640 SVGAnimatedLengthJs get y2() native "return this.y2;"; 8640 _SVGAnimatedLengthJs get y2() native "return this.y2;";
8641 8641
8642 // From SVGTests 8642 // From SVGTests
8643 8643
8644 SVGStringListJs get requiredExtensions() native "return this.requiredExtension s;"; 8644 _SVGStringListJs get requiredExtensions() native "return this.requiredExtensio ns;";
8645 8645
8646 SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;"; 8646 _SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;" ;
8647 8647
8648 SVGStringListJs get systemLanguage() native "return this.systemLanguage;"; 8648 _SVGStringListJs get systemLanguage() native "return this.systemLanguage;";
8649 8649
8650 bool hasExtension(String extension) native; 8650 bool hasExtension(String extension) native;
8651 8651
8652 // From SVGLangSpace 8652 // From SVGLangSpace
8653 8653
8654 String get xmllang() native "return this.xmllang;"; 8654 String get xmllang() native "return this.xmllang;";
8655 8655
8656 void set xmllang(String value) native "this.xmllang = value;"; 8656 void set xmllang(String value) native "this.xmllang = value;";
8657 8657
8658 String get xmlspace() native "return this.xmlspace;"; 8658 String get xmlspace() native "return this.xmlspace;";
8659 8659
8660 void set xmlspace(String value) native "this.xmlspace = value;"; 8660 void set xmlspace(String value) native "this.xmlspace = value;";
8661 8661
8662 // From SVGExternalResourcesRequired 8662 // From SVGExternalResourcesRequired
8663 8663
8664 SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exter nalResourcesRequired;"; 8664 _SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exte rnalResourcesRequired;";
8665 8665
8666 // From SVGStylable 8666 // From SVGStylable
8667 8667
8668 SVGAnimatedStringJs get className() native "return this.className;"; 8668 _SVGAnimatedStringJs get className() native "return this.className;";
8669 8669
8670 CSSStyleDeclarationJs get style() native "return this.style;"; 8670 _CSSStyleDeclarationJs get style() native "return this.style;";
8671 8671
8672 CSSValueJs getPresentationAttribute(String name) native; 8672 _CSSValueJs getPresentationAttribute(String name) native;
8673 8673
8674 // From SVGTransformable 8674 // From SVGTransformable
8675 8675
8676 SVGAnimatedTransformListJs get transform() native "return this.transform;"; 8676 _SVGAnimatedTransformListJs get transform() native "return this.transform;";
8677 8677
8678 // From SVGLocatable 8678 // From SVGLocatable
8679 8679
8680 SVGElementJs get farthestViewportElement() native "return this.farthestViewpor tElement;"; 8680 _SVGElementJs get farthestViewportElement() native "return this.farthestViewpo rtElement;";
8681 8681
8682 SVGElementJs get nearestViewportElement() native "return this.nearestViewportE lement;"; 8682 _SVGElementJs get nearestViewportElement() native "return this.nearestViewport Element;";
8683 8683
8684 SVGRectJs getBBox() native; 8684 _SVGRectJs getBBox() native;
8685 8685
8686 SVGMatrixJs getCTM() native; 8686 _SVGMatrixJs getCTM() native;
8687 8687
8688 SVGMatrixJs getScreenCTM() native; 8688 _SVGMatrixJs getScreenCTM() native;
8689 8689
8690 SVGMatrixJs getTransformToElement(SVGElementJs element) native; 8690 _SVGMatrixJs getTransformToElement(_SVGElementJs element) native;
8691 } 8691 }
8692 8692
8693 class SVGLinearGradientElementJs extends SVGGradientElementJs implements SVGLine arGradientElement native "*SVGLinearGradientElement" { 8693 class _SVGLinearGradientElementJs extends _SVGGradientElementJs implements SVGLi nearGradientElement native "*SVGLinearGradientElement" {
8694 8694
8695 SVGAnimatedLengthJs get x1() native "return this.x1;"; 8695 _SVGAnimatedLengthJs get x1() native "return this.x1;";
8696 8696
8697 SVGAnimatedLengthJs get x2() native "return this.x2;"; 8697 _SVGAnimatedLengthJs get x2() native "return this.x2;";
8698 8698
8699 SVGAnimatedLengthJs get y1() native "return this.y1;"; 8699 _SVGAnimatedLengthJs get y1() native "return this.y1;";
8700 8700
8701 SVGAnimatedLengthJs get y2() native "return this.y2;"; 8701 _SVGAnimatedLengthJs get y2() native "return this.y2;";
8702 } 8702 }
8703 8703
8704 class SVGLocatableJs extends DOMTypeJs implements SVGLocatable native "*SVGLocat able" { 8704 class _SVGLocatableJs extends _DOMTypeJs implements SVGLocatable native "*SVGLoc atable" {
8705 8705
8706 SVGElementJs get farthestViewportElement() native "return this.farthestViewpor tElement;"; 8706 _SVGElementJs get farthestViewportElement() native "return this.farthestViewpo rtElement;";
8707 8707
8708 SVGElementJs get nearestViewportElement() native "return this.nearestViewportE lement;"; 8708 _SVGElementJs get nearestViewportElement() native "return this.nearestViewport Element;";
8709 8709
8710 SVGRectJs getBBox() native; 8710 _SVGRectJs getBBox() native;
8711 8711
8712 SVGMatrixJs getCTM() native; 8712 _SVGMatrixJs getCTM() native;
8713 8713
8714 SVGMatrixJs getScreenCTM() native; 8714 _SVGMatrixJs getScreenCTM() native;
8715 8715
8716 SVGMatrixJs getTransformToElement(SVGElementJs element) native; 8716 _SVGMatrixJs getTransformToElement(_SVGElementJs element) native;
8717 } 8717 }
8718 8718
8719 class SVGMPathElementJs extends SVGElementJs implements SVGMPathElement native " *SVGMPathElement" { 8719 class _SVGMPathElementJs extends _SVGElementJs implements SVGMPathElement native "*SVGMPathElement" {
8720 8720
8721 // From SVGURIReference 8721 // From SVGURIReference
8722 8722
8723 SVGAnimatedStringJs get href() native "return this.href;"; 8723 _SVGAnimatedStringJs get href() native "return this.href;";
8724 8724
8725 // From SVGExternalResourcesRequired 8725 // From SVGExternalResourcesRequired
8726 8726
8727 SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exter nalResourcesRequired;"; 8727 _SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exte rnalResourcesRequired;";
8728 } 8728 }
8729 8729
8730 class SVGMarkerElementJs extends SVGElementJs implements SVGMarkerElement native "*SVGMarkerElement" { 8730 class _SVGMarkerElementJs extends _SVGElementJs implements SVGMarkerElement nati ve "*SVGMarkerElement" {
8731 8731
8732 static final int SVG_MARKERUNITS_STROKEWIDTH = 2; 8732 static final int SVG_MARKERUNITS_STROKEWIDTH = 2;
8733 8733
8734 static final int SVG_MARKERUNITS_UNKNOWN = 0; 8734 static final int SVG_MARKERUNITS_UNKNOWN = 0;
8735 8735
8736 static final int SVG_MARKERUNITS_USERSPACEONUSE = 1; 8736 static final int SVG_MARKERUNITS_USERSPACEONUSE = 1;
8737 8737
8738 static final int SVG_MARKER_ORIENT_ANGLE = 2; 8738 static final int SVG_MARKER_ORIENT_ANGLE = 2;
8739 8739
8740 static final int SVG_MARKER_ORIENT_AUTO = 1; 8740 static final int SVG_MARKER_ORIENT_AUTO = 1;
8741 8741
8742 static final int SVG_MARKER_ORIENT_UNKNOWN = 0; 8742 static final int SVG_MARKER_ORIENT_UNKNOWN = 0;
8743 8743
8744 SVGAnimatedLengthJs get markerHeight() native "return this.markerHeight;"; 8744 _SVGAnimatedLengthJs get markerHeight() native "return this.markerHeight;";
8745 8745
8746 SVGAnimatedEnumerationJs get markerUnits() native "return this.markerUnits;"; 8746 _SVGAnimatedEnumerationJs get markerUnits() native "return this.markerUnits;";
8747 8747
8748 SVGAnimatedLengthJs get markerWidth() native "return this.markerWidth;"; 8748 _SVGAnimatedLengthJs get markerWidth() native "return this.markerWidth;";
8749 8749
8750 SVGAnimatedAngleJs get orientAngle() native "return this.orientAngle;"; 8750 _SVGAnimatedAngleJs get orientAngle() native "return this.orientAngle;";
8751 8751
8752 SVGAnimatedEnumerationJs get orientType() native "return this.orientType;"; 8752 _SVGAnimatedEnumerationJs get orientType() native "return this.orientType;";
8753 8753
8754 SVGAnimatedLengthJs get refX() native "return this.refX;"; 8754 _SVGAnimatedLengthJs get refX() native "return this.refX;";
8755 8755
8756 SVGAnimatedLengthJs get refY() native "return this.refY;"; 8756 _SVGAnimatedLengthJs get refY() native "return this.refY;";
8757 8757
8758 void setOrientToAngle(SVGAngleJs angle) native; 8758 void setOrientToAngle(_SVGAngleJs angle) native;
8759 8759
8760 void setOrientToAuto() native; 8760 void setOrientToAuto() native;
8761 8761
8762 // From SVGLangSpace 8762 // From SVGLangSpace
8763 8763
8764 String get xmllang() native "return this.xmllang;"; 8764 String get xmllang() native "return this.xmllang;";
8765 8765
8766 void set xmllang(String value) native "this.xmllang = value;"; 8766 void set xmllang(String value) native "this.xmllang = value;";
8767 8767
8768 String get xmlspace() native "return this.xmlspace;"; 8768 String get xmlspace() native "return this.xmlspace;";
8769 8769
8770 void set xmlspace(String value) native "this.xmlspace = value;"; 8770 void set xmlspace(String value) native "this.xmlspace = value;";
8771 8771
8772 // From SVGExternalResourcesRequired 8772 // From SVGExternalResourcesRequired
8773 8773
8774 SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exter nalResourcesRequired;"; 8774 _SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exte rnalResourcesRequired;";
8775 8775
8776 // From SVGStylable 8776 // From SVGStylable
8777 8777
8778 SVGAnimatedStringJs get className() native "return this.className;"; 8778 _SVGAnimatedStringJs get className() native "return this.className;";
8779 8779
8780 CSSStyleDeclarationJs get style() native "return this.style;"; 8780 _CSSStyleDeclarationJs get style() native "return this.style;";
8781 8781
8782 CSSValueJs getPresentationAttribute(String name) native; 8782 _CSSValueJs getPresentationAttribute(String name) native;
8783 8783
8784 // From SVGFitToViewBox 8784 // From SVGFitToViewBox
8785 8785
8786 SVGAnimatedPreserveAspectRatioJs get preserveAspectRatio() native "return this .preserveAspectRatio;"; 8786 _SVGAnimatedPreserveAspectRatioJs get preserveAspectRatio() native "return thi s.preserveAspectRatio;";
8787 8787
8788 SVGAnimatedRectJs get viewBox() native "return this.viewBox;"; 8788 _SVGAnimatedRectJs get viewBox() native "return this.viewBox;";
8789 } 8789 }
8790 8790
8791 class SVGMaskElementJs extends SVGElementJs implements SVGMaskElement native "*S VGMaskElement" { 8791 class _SVGMaskElementJs extends _SVGElementJs implements SVGMaskElement native " *SVGMaskElement" {
8792 8792
8793 SVGAnimatedLengthJs get height() native "return this.height;"; 8793 _SVGAnimatedLengthJs get height() native "return this.height;";
8794 8794
8795 SVGAnimatedEnumerationJs get maskContentUnits() native "return this.maskConten tUnits;"; 8795 _SVGAnimatedEnumerationJs get maskContentUnits() native "return this.maskConte ntUnits;";
8796 8796
8797 SVGAnimatedEnumerationJs get maskUnits() native "return this.maskUnits;"; 8797 _SVGAnimatedEnumerationJs get maskUnits() native "return this.maskUnits;";
8798 8798
8799 SVGAnimatedLengthJs get width() native "return this.width;"; 8799 _SVGAnimatedLengthJs get width() native "return this.width;";
8800 8800
8801 SVGAnimatedLengthJs get x() native "return this.x;"; 8801 _SVGAnimatedLengthJs get x() native "return this.x;";
8802 8802
8803 SVGAnimatedLengthJs get y() native "return this.y;"; 8803 _SVGAnimatedLengthJs get y() native "return this.y;";
8804 8804
8805 // From SVGTests 8805 // From SVGTests
8806 8806
8807 SVGStringListJs get requiredExtensions() native "return this.requiredExtension s;"; 8807 _SVGStringListJs get requiredExtensions() native "return this.requiredExtensio ns;";
8808 8808
8809 SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;"; 8809 _SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;" ;
8810 8810
8811 SVGStringListJs get systemLanguage() native "return this.systemLanguage;"; 8811 _SVGStringListJs get systemLanguage() native "return this.systemLanguage;";
8812 8812
8813 bool hasExtension(String extension) native; 8813 bool hasExtension(String extension) native;
8814 8814
8815 // From SVGLangSpace 8815 // From SVGLangSpace
8816 8816
8817 String get xmllang() native "return this.xmllang;"; 8817 String get xmllang() native "return this.xmllang;";
8818 8818
8819 void set xmllang(String value) native "this.xmllang = value;"; 8819 void set xmllang(String value) native "this.xmllang = value;";
8820 8820
8821 String get xmlspace() native "return this.xmlspace;"; 8821 String get xmlspace() native "return this.xmlspace;";
8822 8822
8823 void set xmlspace(String value) native "this.xmlspace = value;"; 8823 void set xmlspace(String value) native "this.xmlspace = value;";
8824 8824
8825 // From SVGExternalResourcesRequired 8825 // From SVGExternalResourcesRequired
8826 8826
8827 SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exter nalResourcesRequired;"; 8827 _SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exte rnalResourcesRequired;";
8828 8828
8829 // From SVGStylable 8829 // From SVGStylable
8830 8830
8831 SVGAnimatedStringJs get className() native "return this.className;"; 8831 _SVGAnimatedStringJs get className() native "return this.className;";
8832 8832
8833 CSSStyleDeclarationJs get style() native "return this.style;"; 8833 _CSSStyleDeclarationJs get style() native "return this.style;";
8834 8834
8835 CSSValueJs getPresentationAttribute(String name) native; 8835 _CSSValueJs getPresentationAttribute(String name) native;
8836 } 8836 }
8837 8837
8838 class SVGMatrixJs extends DOMTypeJs implements SVGMatrix native "*SVGMatrix" { 8838 class _SVGMatrixJs extends _DOMTypeJs implements SVGMatrix native "*SVGMatrix" {
8839 8839
8840 num get a() native "return this.a;"; 8840 num get a() native "return this.a;";
8841 8841
8842 void set a(num value) native "this.a = value;"; 8842 void set a(num value) native "this.a = value;";
8843 8843
8844 num get b() native "return this.b;"; 8844 num get b() native "return this.b;";
8845 8845
8846 void set b(num value) native "this.b = value;"; 8846 void set b(num value) native "this.b = value;";
8847 8847
8848 num get c() native "return this.c;"; 8848 num get c() native "return this.c;";
8849 8849
8850 void set c(num value) native "this.c = value;"; 8850 void set c(num value) native "this.c = value;";
8851 8851
8852 num get d() native "return this.d;"; 8852 num get d() native "return this.d;";
8853 8853
8854 void set d(num value) native "this.d = value;"; 8854 void set d(num value) native "this.d = value;";
8855 8855
8856 num get e() native "return this.e;"; 8856 num get e() native "return this.e;";
8857 8857
8858 void set e(num value) native "this.e = value;"; 8858 void set e(num value) native "this.e = value;";
8859 8859
8860 num get f() native "return this.f;"; 8860 num get f() native "return this.f;";
8861 8861
8862 void set f(num value) native "this.f = value;"; 8862 void set f(num value) native "this.f = value;";
8863 8863
8864 SVGMatrixJs flipX() native; 8864 _SVGMatrixJs flipX() native;
8865 8865
8866 SVGMatrixJs flipY() native; 8866 _SVGMatrixJs flipY() native;
8867 8867
8868 SVGMatrixJs inverse() native; 8868 _SVGMatrixJs inverse() native;
8869 8869
8870 SVGMatrixJs multiply(SVGMatrixJs secondMatrix) native; 8870 _SVGMatrixJs multiply(_SVGMatrixJs secondMatrix) native;
8871 8871
8872 SVGMatrixJs rotate(num angle) native; 8872 _SVGMatrixJs rotate(num angle) native;
8873 8873
8874 SVGMatrixJs rotateFromVector(num x, num y) native; 8874 _SVGMatrixJs rotateFromVector(num x, num y) native;
8875 8875
8876 SVGMatrixJs scale(num scaleFactor) native; 8876 _SVGMatrixJs scale(num scaleFactor) native;
8877 8877
8878 SVGMatrixJs scaleNonUniform(num scaleFactorX, num scaleFactorY) native; 8878 _SVGMatrixJs scaleNonUniform(num scaleFactorX, num scaleFactorY) native;
8879 8879
8880 SVGMatrixJs skewX(num angle) native; 8880 _SVGMatrixJs skewX(num angle) native;
8881 8881
8882 SVGMatrixJs skewY(num angle) native; 8882 _SVGMatrixJs skewY(num angle) native;
8883 8883
8884 SVGMatrixJs translate(num x, num y) native; 8884 _SVGMatrixJs translate(num x, num y) native;
8885 } 8885 }
8886 8886
8887 class SVGMetadataElementJs extends SVGElementJs implements SVGMetadataElement na tive "*SVGMetadataElement" { 8887 class _SVGMetadataElementJs extends _SVGElementJs implements SVGMetadataElement native "*SVGMetadataElement" {
8888 } 8888 }
8889 8889
8890 class SVGMissingGlyphElementJs extends SVGElementJs implements SVGMissingGlyphEl ement native "*SVGMissingGlyphElement" { 8890 class _SVGMissingGlyphElementJs extends _SVGElementJs implements SVGMissingGlyph Element native "*SVGMissingGlyphElement" {
8891 } 8891 }
8892 8892
8893 class SVGNumberJs extends DOMTypeJs implements SVGNumber native "*SVGNumber" { 8893 class _SVGNumberJs extends _DOMTypeJs implements SVGNumber native "*SVGNumber" {
8894 8894
8895 num get value() native "return this.value;"; 8895 num get value() native "return this.value;";
8896 8896
8897 void set value(num value) native "this.value = value;"; 8897 void set value(num value) native "this.value = value;";
8898 } 8898 }
8899 8899
8900 class SVGNumberListJs extends DOMTypeJs implements SVGNumberList native "*SVGNum berList" { 8900 class _SVGNumberListJs extends _DOMTypeJs implements SVGNumberList native "*SVGN umberList" {
8901 8901
8902 int get numberOfItems() native "return this.numberOfItems;"; 8902 int get numberOfItems() native "return this.numberOfItems;";
8903 8903
8904 SVGNumberJs appendItem(SVGNumberJs item) native; 8904 _SVGNumberJs appendItem(_SVGNumberJs item) native;
8905 8905
8906 void clear() native; 8906 void clear() native;
8907 8907
8908 SVGNumberJs getItem(int index) native; 8908 _SVGNumberJs getItem(int index) native;
8909 8909
8910 SVGNumberJs initialize(SVGNumberJs item) native; 8910 _SVGNumberJs initialize(_SVGNumberJs item) native;
8911 8911
8912 SVGNumberJs insertItemBefore(SVGNumberJs item, int index) native; 8912 _SVGNumberJs insertItemBefore(_SVGNumberJs item, int index) native;
8913 8913
8914 SVGNumberJs removeItem(int index) native; 8914 _SVGNumberJs removeItem(int index) native;
8915 8915
8916 SVGNumberJs replaceItem(SVGNumberJs item, int index) native; 8916 _SVGNumberJs replaceItem(_SVGNumberJs item, int index) native;
8917 } 8917 }
8918 8918
8919 class SVGPaintJs extends SVGColorJs implements SVGPaint native "*SVGPaint" { 8919 class _SVGPaintJs extends _SVGColorJs implements SVGPaint native "*SVGPaint" {
8920 8920
8921 static final int SVG_PAINTTYPE_CURRENTCOLOR = 102; 8921 static final int SVG_PAINTTYPE_CURRENTCOLOR = 102;
8922 8922
8923 static final int SVG_PAINTTYPE_NONE = 101; 8923 static final int SVG_PAINTTYPE_NONE = 101;
8924 8924
8925 static final int SVG_PAINTTYPE_RGBCOLOR = 1; 8925 static final int SVG_PAINTTYPE_RGBCOLOR = 1;
8926 8926
8927 static final int SVG_PAINTTYPE_RGBCOLOR_ICCCOLOR = 2; 8927 static final int SVG_PAINTTYPE_RGBCOLOR_ICCCOLOR = 2;
8928 8928
8929 static final int SVG_PAINTTYPE_UNKNOWN = 0; 8929 static final int SVG_PAINTTYPE_UNKNOWN = 0;
(...skipping 10 matching lines...) Expand all
8940 8940
8941 int get paintType() native "return this.paintType;"; 8941 int get paintType() native "return this.paintType;";
8942 8942
8943 String get uri() native "return this.uri;"; 8943 String get uri() native "return this.uri;";
8944 8944
8945 void setPaint(int paintType, String uri, String rgbColor, String iccColor) nat ive; 8945 void setPaint(int paintType, String uri, String rgbColor, String iccColor) nat ive;
8946 8946
8947 void setUri(String uri) native; 8947 void setUri(String uri) native;
8948 } 8948 }
8949 8949
8950 class SVGPathElementJs extends SVGElementJs implements SVGPathElement native "*S VGPathElement" { 8950 class _SVGPathElementJs extends _SVGElementJs implements SVGPathElement native " *SVGPathElement" {
8951 8951
8952 SVGPathSegListJs get animatedNormalizedPathSegList() native "return this.anima tedNormalizedPathSegList;"; 8952 _SVGPathSegListJs get animatedNormalizedPathSegList() native "return this.anim atedNormalizedPathSegList;";
8953 8953
8954 SVGPathSegListJs get animatedPathSegList() native "return this.animatedPathSeg List;"; 8954 _SVGPathSegListJs get animatedPathSegList() native "return this.animatedPathSe gList;";
8955 8955
8956 SVGPathSegListJs get normalizedPathSegList() native "return this.normalizedPat hSegList;"; 8956 _SVGPathSegListJs get normalizedPathSegList() native "return this.normalizedPa thSegList;";
8957 8957
8958 SVGAnimatedNumberJs get pathLength() native "return this.pathLength;"; 8958 _SVGAnimatedNumberJs get pathLength() native "return this.pathLength;";
8959 8959
8960 SVGPathSegListJs get pathSegList() native "return this.pathSegList;"; 8960 _SVGPathSegListJs get pathSegList() native "return this.pathSegList;";
8961 8961
8962 SVGPathSegArcAbsJs createSVGPathSegArcAbs(num x, num y, num r1, num r2, num an gle, bool largeArcFlag, bool sweepFlag) native; 8962 _SVGPathSegArcAbsJs createSVGPathSegArcAbs(num x, num y, num r1, num r2, num a ngle, bool largeArcFlag, bool sweepFlag) native;
8963 8963
8964 SVGPathSegArcRelJs createSVGPathSegArcRel(num x, num y, num r1, num r2, num an gle, bool largeArcFlag, bool sweepFlag) native; 8964 _SVGPathSegArcRelJs createSVGPathSegArcRel(num x, num y, num r1, num r2, num a ngle, bool largeArcFlag, bool sweepFlag) native;
8965 8965
8966 SVGPathSegClosePathJs createSVGPathSegClosePath() native; 8966 _SVGPathSegClosePathJs createSVGPathSegClosePath() native;
8967 8967
8968 SVGPathSegCurvetoCubicAbsJs createSVGPathSegCurvetoCubicAbs(num x, num y, num x1, num y1, num x2, num y2) native; 8968 _SVGPathSegCurvetoCubicAbsJs createSVGPathSegCurvetoCubicAbs(num x, num y, num x1, num y1, num x2, num y2) native;
8969 8969
8970 SVGPathSegCurvetoCubicRelJs createSVGPathSegCurvetoCubicRel(num x, num y, num x1, num y1, num x2, num y2) native; 8970 _SVGPathSegCurvetoCubicRelJs createSVGPathSegCurvetoCubicRel(num x, num y, num x1, num y1, num x2, num y2) native;
8971 8971
8972 SVGPathSegCurvetoCubicSmoothAbsJs createSVGPathSegCurvetoCubicSmoothAbs(num x, num y, num x2, num y2) native; 8972 _SVGPathSegCurvetoCubicSmoothAbsJs createSVGPathSegCurvetoCubicSmoothAbs(num x , num y, num x2, num y2) native;
8973 8973
8974 SVGPathSegCurvetoCubicSmoothRelJs createSVGPathSegCurvetoCubicSmoothRel(num x, num y, num x2, num y2) native; 8974 _SVGPathSegCurvetoCubicSmoothRelJs createSVGPathSegCurvetoCubicSmoothRel(num x , num y, num x2, num y2) native;
8975 8975
8976 SVGPathSegCurvetoQuadraticAbsJs createSVGPathSegCurvetoQuadraticAbs(num x, num y, num x1, num y1) native; 8976 _SVGPathSegCurvetoQuadraticAbsJs createSVGPathSegCurvetoQuadraticAbs(num x, nu m y, num x1, num y1) native;
8977 8977
8978 SVGPathSegCurvetoQuadraticRelJs createSVGPathSegCurvetoQuadraticRel(num x, num y, num x1, num y1) native; 8978 _SVGPathSegCurvetoQuadraticRelJs createSVGPathSegCurvetoQuadraticRel(num x, nu m y, num x1, num y1) native;
8979 8979
8980 SVGPathSegCurvetoQuadraticSmoothAbsJs createSVGPathSegCurvetoQuadraticSmoothAb s(num x, num y) native; 8980 _SVGPathSegCurvetoQuadraticSmoothAbsJs createSVGPathSegCurvetoQuadraticSmoothA bs(num x, num y) native;
8981 8981
8982 SVGPathSegCurvetoQuadraticSmoothRelJs createSVGPathSegCurvetoQuadraticSmoothRe l(num x, num y) native; 8982 _SVGPathSegCurvetoQuadraticSmoothRelJs createSVGPathSegCurvetoQuadraticSmoothR el(num x, num y) native;
8983 8983
8984 SVGPathSegLinetoAbsJs createSVGPathSegLinetoAbs(num x, num y) native; 8984 _SVGPathSegLinetoAbsJs createSVGPathSegLinetoAbs(num x, num y) native;
8985 8985
8986 SVGPathSegLinetoHorizontalAbsJs createSVGPathSegLinetoHorizontalAbs(num x) nat ive; 8986 _SVGPathSegLinetoHorizontalAbsJs createSVGPathSegLinetoHorizontalAbs(num x) na tive;
8987 8987
8988 SVGPathSegLinetoHorizontalRelJs createSVGPathSegLinetoHorizontalRel(num x) nat ive; 8988 _SVGPathSegLinetoHorizontalRelJs createSVGPathSegLinetoHorizontalRel(num x) na tive;
8989 8989
8990 SVGPathSegLinetoRelJs createSVGPathSegLinetoRel(num x, num y) native; 8990 _SVGPathSegLinetoRelJs createSVGPathSegLinetoRel(num x, num y) native;
8991 8991
8992 SVGPathSegLinetoVerticalAbsJs createSVGPathSegLinetoVerticalAbs(num y) native; 8992 _SVGPathSegLinetoVerticalAbsJs createSVGPathSegLinetoVerticalAbs(num y) native ;
8993 8993
8994 SVGPathSegLinetoVerticalRelJs createSVGPathSegLinetoVerticalRel(num y) native; 8994 _SVGPathSegLinetoVerticalRelJs createSVGPathSegLinetoVerticalRel(num y) native ;
8995 8995
8996 SVGPathSegMovetoAbsJs createSVGPathSegMovetoAbs(num x, num y) native; 8996 _SVGPathSegMovetoAbsJs createSVGPathSegMovetoAbs(num x, num y) native;
8997 8997
8998 SVGPathSegMovetoRelJs createSVGPathSegMovetoRel(num x, num y) native; 8998 _SVGPathSegMovetoRelJs createSVGPathSegMovetoRel(num x, num y) native;
8999 8999
9000 int getPathSegAtLength(num distance) native; 9000 int getPathSegAtLength(num distance) native;
9001 9001
9002 SVGPointJs getPointAtLength(num distance) native; 9002 _SVGPointJs getPointAtLength(num distance) native;
9003 9003
9004 num getTotalLength() native; 9004 num getTotalLength() native;
9005 9005
9006 // From SVGTests 9006 // From SVGTests
9007 9007
9008 SVGStringListJs get requiredExtensions() native "return this.requiredExtension s;"; 9008 _SVGStringListJs get requiredExtensions() native "return this.requiredExtensio ns;";
9009 9009
9010 SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;"; 9010 _SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;" ;
9011 9011
9012 SVGStringListJs get systemLanguage() native "return this.systemLanguage;"; 9012 _SVGStringListJs get systemLanguage() native "return this.systemLanguage;";
9013 9013
9014 bool hasExtension(String extension) native; 9014 bool hasExtension(String extension) native;
9015 9015
9016 // From SVGLangSpace 9016 // From SVGLangSpace
9017 9017
9018 String get xmllang() native "return this.xmllang;"; 9018 String get xmllang() native "return this.xmllang;";
9019 9019
9020 void set xmllang(String value) native "this.xmllang = value;"; 9020 void set xmllang(String value) native "this.xmllang = value;";
9021 9021
9022 String get xmlspace() native "return this.xmlspace;"; 9022 String get xmlspace() native "return this.xmlspace;";
9023 9023
9024 void set xmlspace(String value) native "this.xmlspace = value;"; 9024 void set xmlspace(String value) native "this.xmlspace = value;";
9025 9025
9026 // From SVGExternalResourcesRequired 9026 // From SVGExternalResourcesRequired
9027 9027
9028 SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exter nalResourcesRequired;"; 9028 _SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exte rnalResourcesRequired;";
9029 9029
9030 // From SVGStylable 9030 // From SVGStylable
9031 9031
9032 SVGAnimatedStringJs get className() native "return this.className;"; 9032 _SVGAnimatedStringJs get className() native "return this.className;";
9033 9033
9034 CSSStyleDeclarationJs get style() native "return this.style;"; 9034 _CSSStyleDeclarationJs get style() native "return this.style;";
9035 9035
9036 CSSValueJs getPresentationAttribute(String name) native; 9036 _CSSValueJs getPresentationAttribute(String name) native;
9037 9037
9038 // From SVGTransformable 9038 // From SVGTransformable
9039 9039
9040 SVGAnimatedTransformListJs get transform() native "return this.transform;"; 9040 _SVGAnimatedTransformListJs get transform() native "return this.transform;";
9041 9041
9042 // From SVGLocatable 9042 // From SVGLocatable
9043 9043
9044 SVGElementJs get farthestViewportElement() native "return this.farthestViewpor tElement;"; 9044 _SVGElementJs get farthestViewportElement() native "return this.farthestViewpo rtElement;";
9045 9045
9046 SVGElementJs get nearestViewportElement() native "return this.nearestViewportE lement;"; 9046 _SVGElementJs get nearestViewportElement() native "return this.nearestViewport Element;";
9047 9047
9048 SVGRectJs getBBox() native; 9048 _SVGRectJs getBBox() native;
9049 9049
9050 SVGMatrixJs getCTM() native; 9050 _SVGMatrixJs getCTM() native;
9051 9051
9052 SVGMatrixJs getScreenCTM() native; 9052 _SVGMatrixJs getScreenCTM() native;
9053 9053
9054 SVGMatrixJs getTransformToElement(SVGElementJs element) native; 9054 _SVGMatrixJs getTransformToElement(_SVGElementJs element) native;
9055 } 9055 }
9056 9056
9057 class SVGPathSegJs extends DOMTypeJs implements SVGPathSeg native "*SVGPathSeg" { 9057 class _SVGPathSegJs extends _DOMTypeJs implements SVGPathSeg native "*SVGPathSeg " {
9058 9058
9059 static final int PATHSEG_ARC_ABS = 10; 9059 static final int PATHSEG_ARC_ABS = 10;
9060 9060
9061 static final int PATHSEG_ARC_REL = 11; 9061 static final int PATHSEG_ARC_REL = 11;
9062 9062
9063 static final int PATHSEG_CLOSEPATH = 1; 9063 static final int PATHSEG_CLOSEPATH = 1;
9064 9064
9065 static final int PATHSEG_CURVETO_CUBIC_ABS = 6; 9065 static final int PATHSEG_CURVETO_CUBIC_ABS = 6;
9066 9066
9067 static final int PATHSEG_CURVETO_CUBIC_REL = 7; 9067 static final int PATHSEG_CURVETO_CUBIC_REL = 7;
(...skipping 26 matching lines...) Expand all
9094 9094
9095 static final int PATHSEG_MOVETO_REL = 3; 9095 static final int PATHSEG_MOVETO_REL = 3;
9096 9096
9097 static final int PATHSEG_UNKNOWN = 0; 9097 static final int PATHSEG_UNKNOWN = 0;
9098 9098
9099 int get pathSegType() native "return this.pathSegType;"; 9099 int get pathSegType() native "return this.pathSegType;";
9100 9100
9101 String get pathSegTypeAsLetter() native "return this.pathSegTypeAsLetter;"; 9101 String get pathSegTypeAsLetter() native "return this.pathSegTypeAsLetter;";
9102 } 9102 }
9103 9103
9104 class SVGPathSegArcAbsJs extends SVGPathSegJs implements SVGPathSegArcAbs native "*SVGPathSegArcAbs" { 9104 class _SVGPathSegArcAbsJs extends _SVGPathSegJs implements SVGPathSegArcAbs nati ve "*SVGPathSegArcAbs" {
9105 9105
9106 num get angle() native "return this.angle;"; 9106 num get angle() native "return this.angle;";
9107 9107
9108 void set angle(num value) native "this.angle = value;"; 9108 void set angle(num value) native "this.angle = value;";
9109 9109
9110 bool get largeArcFlag() native "return this.largeArcFlag;"; 9110 bool get largeArcFlag() native "return this.largeArcFlag;";
9111 9111
9112 void set largeArcFlag(bool value) native "this.largeArcFlag = value;"; 9112 void set largeArcFlag(bool value) native "this.largeArcFlag = value;";
9113 9113
9114 num get r1() native "return this.r1;"; 9114 num get r1() native "return this.r1;";
(...skipping 10 matching lines...) Expand all
9125 9125
9126 num get x() native "return this.x;"; 9126 num get x() native "return this.x;";
9127 9127
9128 void set x(num value) native "this.x = value;"; 9128 void set x(num value) native "this.x = value;";
9129 9129
9130 num get y() native "return this.y;"; 9130 num get y() native "return this.y;";
9131 9131
9132 void set y(num value) native "this.y = value;"; 9132 void set y(num value) native "this.y = value;";
9133 } 9133 }
9134 9134
9135 class SVGPathSegArcRelJs extends SVGPathSegJs implements SVGPathSegArcRel native "*SVGPathSegArcRel" { 9135 class _SVGPathSegArcRelJs extends _SVGPathSegJs implements SVGPathSegArcRel nati ve "*SVGPathSegArcRel" {
9136 9136
9137 num get angle() native "return this.angle;"; 9137 num get angle() native "return this.angle;";
9138 9138
9139 void set angle(num value) native "this.angle = value;"; 9139 void set angle(num value) native "this.angle = value;";
9140 9140
9141 bool get largeArcFlag() native "return this.largeArcFlag;"; 9141 bool get largeArcFlag() native "return this.largeArcFlag;";
9142 9142
9143 void set largeArcFlag(bool value) native "this.largeArcFlag = value;"; 9143 void set largeArcFlag(bool value) native "this.largeArcFlag = value;";
9144 9144
9145 num get r1() native "return this.r1;"; 9145 num get r1() native "return this.r1;";
(...skipping 10 matching lines...) Expand all
9156 9156
9157 num get x() native "return this.x;"; 9157 num get x() native "return this.x;";
9158 9158
9159 void set x(num value) native "this.x = value;"; 9159 void set x(num value) native "this.x = value;";
9160 9160
9161 num get y() native "return this.y;"; 9161 num get y() native "return this.y;";
9162 9162
9163 void set y(num value) native "this.y = value;"; 9163 void set y(num value) native "this.y = value;";
9164 } 9164 }
9165 9165
9166 class SVGPathSegClosePathJs extends SVGPathSegJs implements SVGPathSegClosePath native "*SVGPathSegClosePath" { 9166 class _SVGPathSegClosePathJs extends _SVGPathSegJs implements SVGPathSegClosePat h native "*SVGPathSegClosePath" {
9167 } 9167 }
9168 9168
9169 class SVGPathSegCurvetoCubicAbsJs extends SVGPathSegJs implements SVGPathSegCurv etoCubicAbs native "*SVGPathSegCurvetoCubicAbs" { 9169 class _SVGPathSegCurvetoCubicAbsJs extends _SVGPathSegJs implements SVGPathSegCu rvetoCubicAbs native "*SVGPathSegCurvetoCubicAbs" {
9170 9170
9171 num get x() native "return this.x;"; 9171 num get x() native "return this.x;";
9172 9172
9173 void set x(num value) native "this.x = value;"; 9173 void set x(num value) native "this.x = value;";
9174 9174
9175 num get x1() native "return this.x1;"; 9175 num get x1() native "return this.x1;";
9176 9176
9177 void set x1(num value) native "this.x1 = value;"; 9177 void set x1(num value) native "this.x1 = value;";
9178 9178
9179 num get x2() native "return this.x2;"; 9179 num get x2() native "return this.x2;";
9180 9180
9181 void set x2(num value) native "this.x2 = value;"; 9181 void set x2(num value) native "this.x2 = value;";
9182 9182
9183 num get y() native "return this.y;"; 9183 num get y() native "return this.y;";
9184 9184
9185 void set y(num value) native "this.y = value;"; 9185 void set y(num value) native "this.y = value;";
9186 9186
9187 num get y1() native "return this.y1;"; 9187 num get y1() native "return this.y1;";
9188 9188
9189 void set y1(num value) native "this.y1 = value;"; 9189 void set y1(num value) native "this.y1 = value;";
9190 9190
9191 num get y2() native "return this.y2;"; 9191 num get y2() native "return this.y2;";
9192 9192
9193 void set y2(num value) native "this.y2 = value;"; 9193 void set y2(num value) native "this.y2 = value;";
9194 } 9194 }
9195 9195
9196 class SVGPathSegCurvetoCubicRelJs extends SVGPathSegJs implements SVGPathSegCurv etoCubicRel native "*SVGPathSegCurvetoCubicRel" { 9196 class _SVGPathSegCurvetoCubicRelJs extends _SVGPathSegJs implements SVGPathSegCu rvetoCubicRel native "*SVGPathSegCurvetoCubicRel" {
9197 9197
9198 num get x() native "return this.x;"; 9198 num get x() native "return this.x;";
9199 9199
9200 void set x(num value) native "this.x = value;"; 9200 void set x(num value) native "this.x = value;";
9201 9201
9202 num get x1() native "return this.x1;"; 9202 num get x1() native "return this.x1;";
9203 9203
9204 void set x1(num value) native "this.x1 = value;"; 9204 void set x1(num value) native "this.x1 = value;";
9205 9205
9206 num get x2() native "return this.x2;"; 9206 num get x2() native "return this.x2;";
9207 9207
9208 void set x2(num value) native "this.x2 = value;"; 9208 void set x2(num value) native "this.x2 = value;";
9209 9209
9210 num get y() native "return this.y;"; 9210 num get y() native "return this.y;";
9211 9211
9212 void set y(num value) native "this.y = value;"; 9212 void set y(num value) native "this.y = value;";
9213 9213
9214 num get y1() native "return this.y1;"; 9214 num get y1() native "return this.y1;";
9215 9215
9216 void set y1(num value) native "this.y1 = value;"; 9216 void set y1(num value) native "this.y1 = value;";
9217 9217
9218 num get y2() native "return this.y2;"; 9218 num get y2() native "return this.y2;";
9219 9219
9220 void set y2(num value) native "this.y2 = value;"; 9220 void set y2(num value) native "this.y2 = value;";
9221 } 9221 }
9222 9222
9223 class SVGPathSegCurvetoCubicSmoothAbsJs extends SVGPathSegJs implements SVGPathS egCurvetoCubicSmoothAbs native "*SVGPathSegCurvetoCubicSmoothAbs" { 9223 class _SVGPathSegCurvetoCubicSmoothAbsJs extends _SVGPathSegJs implements SVGPat hSegCurvetoCubicSmoothAbs native "*SVGPathSegCurvetoCubicSmoothAbs" {
9224 9224
9225 num get x() native "return this.x;"; 9225 num get x() native "return this.x;";
9226 9226
9227 void set x(num value) native "this.x = value;"; 9227 void set x(num value) native "this.x = value;";
9228 9228
9229 num get x2() native "return this.x2;"; 9229 num get x2() native "return this.x2;";
9230 9230
9231 void set x2(num value) native "this.x2 = value;"; 9231 void set x2(num value) native "this.x2 = value;";
9232 9232
9233 num get y() native "return this.y;"; 9233 num get y() native "return this.y;";
9234 9234
9235 void set y(num value) native "this.y = value;"; 9235 void set y(num value) native "this.y = value;";
9236 9236
9237 num get y2() native "return this.y2;"; 9237 num get y2() native "return this.y2;";
9238 9238
9239 void set y2(num value) native "this.y2 = value;"; 9239 void set y2(num value) native "this.y2 = value;";
9240 } 9240 }
9241 9241
9242 class SVGPathSegCurvetoCubicSmoothRelJs extends SVGPathSegJs implements SVGPathS egCurvetoCubicSmoothRel native "*SVGPathSegCurvetoCubicSmoothRel" { 9242 class _SVGPathSegCurvetoCubicSmoothRelJs extends _SVGPathSegJs implements SVGPat hSegCurvetoCubicSmoothRel native "*SVGPathSegCurvetoCubicSmoothRel" {
9243 9243
9244 num get x() native "return this.x;"; 9244 num get x() native "return this.x;";
9245 9245
9246 void set x(num value) native "this.x = value;"; 9246 void set x(num value) native "this.x = value;";
9247 9247
9248 num get x2() native "return this.x2;"; 9248 num get x2() native "return this.x2;";
9249 9249
9250 void set x2(num value) native "this.x2 = value;"; 9250 void set x2(num value) native "this.x2 = value;";
9251 9251
9252 num get y() native "return this.y;"; 9252 num get y() native "return this.y;";
9253 9253
9254 void set y(num value) native "this.y = value;"; 9254 void set y(num value) native "this.y = value;";
9255 9255
9256 num get y2() native "return this.y2;"; 9256 num get y2() native "return this.y2;";
9257 9257
9258 void set y2(num value) native "this.y2 = value;"; 9258 void set y2(num value) native "this.y2 = value;";
9259 } 9259 }
9260 9260
9261 class SVGPathSegCurvetoQuadraticAbsJs extends SVGPathSegJs implements SVGPathSeg CurvetoQuadraticAbs native "*SVGPathSegCurvetoQuadraticAbs" { 9261 class _SVGPathSegCurvetoQuadraticAbsJs extends _SVGPathSegJs implements SVGPathS egCurvetoQuadraticAbs native "*SVGPathSegCurvetoQuadraticAbs" {
9262 9262
9263 num get x() native "return this.x;"; 9263 num get x() native "return this.x;";
9264 9264
9265 void set x(num value) native "this.x = value;"; 9265 void set x(num value) native "this.x = value;";
9266 9266
9267 num get x1() native "return this.x1;"; 9267 num get x1() native "return this.x1;";
9268 9268
9269 void set x1(num value) native "this.x1 = value;"; 9269 void set x1(num value) native "this.x1 = value;";
9270 9270
9271 num get y() native "return this.y;"; 9271 num get y() native "return this.y;";
9272 9272
9273 void set y(num value) native "this.y = value;"; 9273 void set y(num value) native "this.y = value;";
9274 9274
9275 num get y1() native "return this.y1;"; 9275 num get y1() native "return this.y1;";
9276 9276
9277 void set y1(num value) native "this.y1 = value;"; 9277 void set y1(num value) native "this.y1 = value;";
9278 } 9278 }
9279 9279
9280 class SVGPathSegCurvetoQuadraticRelJs extends SVGPathSegJs implements SVGPathSeg CurvetoQuadraticRel native "*SVGPathSegCurvetoQuadraticRel" { 9280 class _SVGPathSegCurvetoQuadraticRelJs extends _SVGPathSegJs implements SVGPathS egCurvetoQuadraticRel native "*SVGPathSegCurvetoQuadraticRel" {
9281 9281
9282 num get x() native "return this.x;"; 9282 num get x() native "return this.x;";
9283 9283
9284 void set x(num value) native "this.x = value;"; 9284 void set x(num value) native "this.x = value;";
9285 9285
9286 num get x1() native "return this.x1;"; 9286 num get x1() native "return this.x1;";
9287 9287
9288 void set x1(num value) native "this.x1 = value;"; 9288 void set x1(num value) native "this.x1 = value;";
9289 9289
9290 num get y() native "return this.y;"; 9290 num get y() native "return this.y;";
9291 9291
9292 void set y(num value) native "this.y = value;"; 9292 void set y(num value) native "this.y = value;";
9293 9293
9294 num get y1() native "return this.y1;"; 9294 num get y1() native "return this.y1;";
9295 9295
9296 void set y1(num value) native "this.y1 = value;"; 9296 void set y1(num value) native "this.y1 = value;";
9297 } 9297 }
9298 9298
9299 class SVGPathSegCurvetoQuadraticSmoothAbsJs extends SVGPathSegJs implements SVGP athSegCurvetoQuadraticSmoothAbs native "*SVGPathSegCurvetoQuadraticSmoothAbs" { 9299 class _SVGPathSegCurvetoQuadraticSmoothAbsJs extends _SVGPathSegJs implements SV GPathSegCurvetoQuadraticSmoothAbs native "*SVGPathSegCurvetoQuadraticSmoothAbs" {
9300 9300
9301 num get x() native "return this.x;"; 9301 num get x() native "return this.x;";
9302 9302
9303 void set x(num value) native "this.x = value;"; 9303 void set x(num value) native "this.x = value;";
9304 9304
9305 num get y() native "return this.y;"; 9305 num get y() native "return this.y;";
9306 9306
9307 void set y(num value) native "this.y = value;"; 9307 void set y(num value) native "this.y = value;";
9308 } 9308 }
9309 9309
9310 class SVGPathSegCurvetoQuadraticSmoothRelJs extends SVGPathSegJs implements SVGP athSegCurvetoQuadraticSmoothRel native "*SVGPathSegCurvetoQuadraticSmoothRel" { 9310 class _SVGPathSegCurvetoQuadraticSmoothRelJs extends _SVGPathSegJs implements SV GPathSegCurvetoQuadraticSmoothRel native "*SVGPathSegCurvetoQuadraticSmoothRel" {
9311 9311
9312 num get x() native "return this.x;"; 9312 num get x() native "return this.x;";
9313 9313
9314 void set x(num value) native "this.x = value;"; 9314 void set x(num value) native "this.x = value;";
9315 9315
9316 num get y() native "return this.y;"; 9316 num get y() native "return this.y;";
9317 9317
9318 void set y(num value) native "this.y = value;"; 9318 void set y(num value) native "this.y = value;";
9319 } 9319 }
9320 9320
9321 class SVGPathSegLinetoAbsJs extends SVGPathSegJs implements SVGPathSegLinetoAbs native "*SVGPathSegLinetoAbs" { 9321 class _SVGPathSegLinetoAbsJs extends _SVGPathSegJs implements SVGPathSegLinetoAb s native "*SVGPathSegLinetoAbs" {
9322 9322
9323 num get x() native "return this.x;"; 9323 num get x() native "return this.x;";
9324 9324
9325 void set x(num value) native "this.x = value;"; 9325 void set x(num value) native "this.x = value;";
9326 9326
9327 num get y() native "return this.y;"; 9327 num get y() native "return this.y;";
9328 9328
9329 void set y(num value) native "this.y = value;"; 9329 void set y(num value) native "this.y = value;";
9330 } 9330 }
9331 9331
9332 class SVGPathSegLinetoHorizontalAbsJs extends SVGPathSegJs implements SVGPathSeg LinetoHorizontalAbs native "*SVGPathSegLinetoHorizontalAbs" { 9332 class _SVGPathSegLinetoHorizontalAbsJs extends _SVGPathSegJs implements SVGPathS egLinetoHorizontalAbs native "*SVGPathSegLinetoHorizontalAbs" {
9333 9333
9334 num get x() native "return this.x;"; 9334 num get x() native "return this.x;";
9335 9335
9336 void set x(num value) native "this.x = value;"; 9336 void set x(num value) native "this.x = value;";
9337 } 9337 }
9338 9338
9339 class SVGPathSegLinetoHorizontalRelJs extends SVGPathSegJs implements SVGPathSeg LinetoHorizontalRel native "*SVGPathSegLinetoHorizontalRel" { 9339 class _SVGPathSegLinetoHorizontalRelJs extends _SVGPathSegJs implements SVGPathS egLinetoHorizontalRel native "*SVGPathSegLinetoHorizontalRel" {
9340 9340
9341 num get x() native "return this.x;"; 9341 num get x() native "return this.x;";
9342 9342
9343 void set x(num value) native "this.x = value;"; 9343 void set x(num value) native "this.x = value;";
9344 } 9344 }
9345 9345
9346 class SVGPathSegLinetoRelJs extends SVGPathSegJs implements SVGPathSegLinetoRel native "*SVGPathSegLinetoRel" { 9346 class _SVGPathSegLinetoRelJs extends _SVGPathSegJs implements SVGPathSegLinetoRe l native "*SVGPathSegLinetoRel" {
9347 9347
9348 num get x() native "return this.x;"; 9348 num get x() native "return this.x;";
9349 9349
9350 void set x(num value) native "this.x = value;"; 9350 void set x(num value) native "this.x = value;";
9351 9351
9352 num get y() native "return this.y;"; 9352 num get y() native "return this.y;";
9353 9353
9354 void set y(num value) native "this.y = value;"; 9354 void set y(num value) native "this.y = value;";
9355 } 9355 }
9356 9356
9357 class SVGPathSegLinetoVerticalAbsJs extends SVGPathSegJs implements SVGPathSegLi netoVerticalAbs native "*SVGPathSegLinetoVerticalAbs" { 9357 class _SVGPathSegLinetoVerticalAbsJs extends _SVGPathSegJs implements SVGPathSeg LinetoVerticalAbs native "*SVGPathSegLinetoVerticalAbs" {
9358 9358
9359 num get y() native "return this.y;"; 9359 num get y() native "return this.y;";
9360 9360
9361 void set y(num value) native "this.y = value;"; 9361 void set y(num value) native "this.y = value;";
9362 } 9362 }
9363 9363
9364 class SVGPathSegLinetoVerticalRelJs extends SVGPathSegJs implements SVGPathSegLi netoVerticalRel native "*SVGPathSegLinetoVerticalRel" { 9364 class _SVGPathSegLinetoVerticalRelJs extends _SVGPathSegJs implements SVGPathSeg LinetoVerticalRel native "*SVGPathSegLinetoVerticalRel" {
9365 9365
9366 num get y() native "return this.y;"; 9366 num get y() native "return this.y;";
9367 9367
9368 void set y(num value) native "this.y = value;"; 9368 void set y(num value) native "this.y = value;";
9369 } 9369 }
9370 9370
9371 class SVGPathSegListJs extends DOMTypeJs implements SVGPathSegList native "*SVGP athSegList" { 9371 class _SVGPathSegListJs extends _DOMTypeJs implements SVGPathSegList native "*SV GPathSegList" {
9372 9372
9373 int get numberOfItems() native "return this.numberOfItems;"; 9373 int get numberOfItems() native "return this.numberOfItems;";
9374 9374
9375 SVGPathSegJs appendItem(SVGPathSegJs newItem) native; 9375 _SVGPathSegJs appendItem(_SVGPathSegJs newItem) native;
9376 9376
9377 void clear() native; 9377 void clear() native;
9378 9378
9379 SVGPathSegJs getItem(int index) native; 9379 _SVGPathSegJs getItem(int index) native;
9380 9380
9381 SVGPathSegJs initialize(SVGPathSegJs newItem) native; 9381 _SVGPathSegJs initialize(_SVGPathSegJs newItem) native;
9382 9382
9383 SVGPathSegJs insertItemBefore(SVGPathSegJs newItem, int index) native; 9383 _SVGPathSegJs insertItemBefore(_SVGPathSegJs newItem, int index) native;
9384 9384
9385 SVGPathSegJs removeItem(int index) native; 9385 _SVGPathSegJs removeItem(int index) native;
9386 9386
9387 SVGPathSegJs replaceItem(SVGPathSegJs newItem, int index) native; 9387 _SVGPathSegJs replaceItem(_SVGPathSegJs newItem, int index) native;
9388 } 9388 }
9389 9389
9390 class SVGPathSegMovetoAbsJs extends SVGPathSegJs implements SVGPathSegMovetoAbs native "*SVGPathSegMovetoAbs" { 9390 class _SVGPathSegMovetoAbsJs extends _SVGPathSegJs implements SVGPathSegMovetoAb s native "*SVGPathSegMovetoAbs" {
9391 9391
9392 num get x() native "return this.x;"; 9392 num get x() native "return this.x;";
9393 9393
9394 void set x(num value) native "this.x = value;"; 9394 void set x(num value) native "this.x = value;";
9395 9395
9396 num get y() native "return this.y;"; 9396 num get y() native "return this.y;";
9397 9397
9398 void set y(num value) native "this.y = value;"; 9398 void set y(num value) native "this.y = value;";
9399 } 9399 }
9400 9400
9401 class SVGPathSegMovetoRelJs extends SVGPathSegJs implements SVGPathSegMovetoRel native "*SVGPathSegMovetoRel" { 9401 class _SVGPathSegMovetoRelJs extends _SVGPathSegJs implements SVGPathSegMovetoRe l native "*SVGPathSegMovetoRel" {
9402 9402
9403 num get x() native "return this.x;"; 9403 num get x() native "return this.x;";
9404 9404
9405 void set x(num value) native "this.x = value;"; 9405 void set x(num value) native "this.x = value;";
9406 9406
9407 num get y() native "return this.y;"; 9407 num get y() native "return this.y;";
9408 9408
9409 void set y(num value) native "this.y = value;"; 9409 void set y(num value) native "this.y = value;";
9410 } 9410 }
9411 9411
9412 class SVGPatternElementJs extends SVGElementJs implements SVGPatternElement nati ve "*SVGPatternElement" { 9412 class _SVGPatternElementJs extends _SVGElementJs implements SVGPatternElement na tive "*SVGPatternElement" {
9413 9413
9414 SVGAnimatedLengthJs get height() native "return this.height;"; 9414 _SVGAnimatedLengthJs get height() native "return this.height;";
9415 9415
9416 SVGAnimatedEnumerationJs get patternContentUnits() native "return this.pattern ContentUnits;"; 9416 _SVGAnimatedEnumerationJs get patternContentUnits() native "return this.patter nContentUnits;";
9417 9417
9418 SVGAnimatedTransformListJs get patternTransform() native "return this.patternT ransform;"; 9418 _SVGAnimatedTransformListJs get patternTransform() native "return this.pattern Transform;";
9419 9419
9420 SVGAnimatedEnumerationJs get patternUnits() native "return this.patternUnits;" ; 9420 _SVGAnimatedEnumerationJs get patternUnits() native "return this.patternUnits; ";
9421 9421
9422 SVGAnimatedLengthJs get width() native "return this.width;"; 9422 _SVGAnimatedLengthJs get width() native "return this.width;";
9423 9423
9424 SVGAnimatedLengthJs get x() native "return this.x;"; 9424 _SVGAnimatedLengthJs get x() native "return this.x;";
9425 9425
9426 SVGAnimatedLengthJs get y() native "return this.y;"; 9426 _SVGAnimatedLengthJs get y() native "return this.y;";
9427 9427
9428 // From SVGURIReference 9428 // From SVGURIReference
9429 9429
9430 SVGAnimatedStringJs get href() native "return this.href;"; 9430 _SVGAnimatedStringJs get href() native "return this.href;";
9431 9431
9432 // From SVGTests 9432 // From SVGTests
9433 9433
9434 SVGStringListJs get requiredExtensions() native "return this.requiredExtension s;"; 9434 _SVGStringListJs get requiredExtensions() native "return this.requiredExtensio ns;";
9435 9435
9436 SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;"; 9436 _SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;" ;
9437 9437
9438 SVGStringListJs get systemLanguage() native "return this.systemLanguage;"; 9438 _SVGStringListJs get systemLanguage() native "return this.systemLanguage;";
9439 9439
9440 bool hasExtension(String extension) native; 9440 bool hasExtension(String extension) native;
9441 9441
9442 // From SVGLangSpace 9442 // From SVGLangSpace
9443 9443
9444 String get xmllang() native "return this.xmllang;"; 9444 String get xmllang() native "return this.xmllang;";
9445 9445
9446 void set xmllang(String value) native "this.xmllang = value;"; 9446 void set xmllang(String value) native "this.xmllang = value;";
9447 9447
9448 String get xmlspace() native "return this.xmlspace;"; 9448 String get xmlspace() native "return this.xmlspace;";
9449 9449
9450 void set xmlspace(String value) native "this.xmlspace = value;"; 9450 void set xmlspace(String value) native "this.xmlspace = value;";
9451 9451
9452 // From SVGExternalResourcesRequired 9452 // From SVGExternalResourcesRequired
9453 9453
9454 SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exter nalResourcesRequired;"; 9454 _SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exte rnalResourcesRequired;";
9455 9455
9456 // From SVGStylable 9456 // From SVGStylable
9457 9457
9458 SVGAnimatedStringJs get className() native "return this.className;"; 9458 _SVGAnimatedStringJs get className() native "return this.className;";
9459 9459
9460 CSSStyleDeclarationJs get style() native "return this.style;"; 9460 _CSSStyleDeclarationJs get style() native "return this.style;";
9461 9461
9462 CSSValueJs getPresentationAttribute(String name) native; 9462 _CSSValueJs getPresentationAttribute(String name) native;
9463 9463
9464 // From SVGFitToViewBox 9464 // From SVGFitToViewBox
9465 9465
9466 SVGAnimatedPreserveAspectRatioJs get preserveAspectRatio() native "return this .preserveAspectRatio;"; 9466 _SVGAnimatedPreserveAspectRatioJs get preserveAspectRatio() native "return thi s.preserveAspectRatio;";
9467 9467
9468 SVGAnimatedRectJs get viewBox() native "return this.viewBox;"; 9468 _SVGAnimatedRectJs get viewBox() native "return this.viewBox;";
9469 } 9469 }
9470 9470
9471 class SVGPointJs extends DOMTypeJs implements SVGPoint native "*SVGPoint" { 9471 class _SVGPointJs extends _DOMTypeJs implements SVGPoint native "*SVGPoint" {
9472 9472
9473 num get x() native "return this.x;"; 9473 num get x() native "return this.x;";
9474 9474
9475 void set x(num value) native "this.x = value;"; 9475 void set x(num value) native "this.x = value;";
9476 9476
9477 num get y() native "return this.y;"; 9477 num get y() native "return this.y;";
9478 9478
9479 void set y(num value) native "this.y = value;"; 9479 void set y(num value) native "this.y = value;";
9480 9480
9481 SVGPointJs matrixTransform(SVGMatrixJs matrix) native; 9481 _SVGPointJs matrixTransform(_SVGMatrixJs matrix) native;
9482 } 9482 }
9483 9483
9484 class SVGPointListJs extends DOMTypeJs implements SVGPointList native "*SVGPoint List" { 9484 class _SVGPointListJs extends _DOMTypeJs implements SVGPointList native "*SVGPoi ntList" {
9485 9485
9486 int get numberOfItems() native "return this.numberOfItems;"; 9486 int get numberOfItems() native "return this.numberOfItems;";
9487 9487
9488 SVGPointJs appendItem(SVGPointJs item) native; 9488 _SVGPointJs appendItem(_SVGPointJs item) native;
9489 9489
9490 void clear() native; 9490 void clear() native;
9491 9491
9492 SVGPointJs getItem(int index) native; 9492 _SVGPointJs getItem(int index) native;
9493 9493
9494 SVGPointJs initialize(SVGPointJs item) native; 9494 _SVGPointJs initialize(_SVGPointJs item) native;
9495 9495
9496 SVGPointJs insertItemBefore(SVGPointJs item, int index) native; 9496 _SVGPointJs insertItemBefore(_SVGPointJs item, int index) native;
9497 9497
9498 SVGPointJs removeItem(int index) native; 9498 _SVGPointJs removeItem(int index) native;
9499 9499
9500 SVGPointJs replaceItem(SVGPointJs item, int index) native; 9500 _SVGPointJs replaceItem(_SVGPointJs item, int index) native;
9501 } 9501 }
9502 9502
9503 class SVGPolygonElementJs extends SVGElementJs implements SVGPolygonElement nati ve "*SVGPolygonElement" { 9503 class _SVGPolygonElementJs extends _SVGElementJs implements SVGPolygonElement na tive "*SVGPolygonElement" {
9504 9504
9505 SVGPointListJs get animatedPoints() native "return this.animatedPoints;"; 9505 _SVGPointListJs get animatedPoints() native "return this.animatedPoints;";
9506 9506
9507 SVGPointListJs get points() native "return this.points;"; 9507 _SVGPointListJs get points() native "return this.points;";
9508 9508
9509 // From SVGTests 9509 // From SVGTests
9510 9510
9511 SVGStringListJs get requiredExtensions() native "return this.requiredExtension s;"; 9511 _SVGStringListJs get requiredExtensions() native "return this.requiredExtensio ns;";
9512 9512
9513 SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;"; 9513 _SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;" ;
9514 9514
9515 SVGStringListJs get systemLanguage() native "return this.systemLanguage;"; 9515 _SVGStringListJs get systemLanguage() native "return this.systemLanguage;";
9516 9516
9517 bool hasExtension(String extension) native; 9517 bool hasExtension(String extension) native;
9518 9518
9519 // From SVGLangSpace 9519 // From SVGLangSpace
9520 9520
9521 String get xmllang() native "return this.xmllang;"; 9521 String get xmllang() native "return this.xmllang;";
9522 9522
9523 void set xmllang(String value) native "this.xmllang = value;"; 9523 void set xmllang(String value) native "this.xmllang = value;";
9524 9524
9525 String get xmlspace() native "return this.xmlspace;"; 9525 String get xmlspace() native "return this.xmlspace;";
9526 9526
9527 void set xmlspace(String value) native "this.xmlspace = value;"; 9527 void set xmlspace(String value) native "this.xmlspace = value;";
9528 9528
9529 // From SVGExternalResourcesRequired 9529 // From SVGExternalResourcesRequired
9530 9530
9531 SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exter nalResourcesRequired;"; 9531 _SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exte rnalResourcesRequired;";
9532 9532
9533 // From SVGStylable 9533 // From SVGStylable
9534 9534
9535 SVGAnimatedStringJs get className() native "return this.className;"; 9535 _SVGAnimatedStringJs get className() native "return this.className;";
9536 9536
9537 CSSStyleDeclarationJs get style() native "return this.style;"; 9537 _CSSStyleDeclarationJs get style() native "return this.style;";
9538 9538
9539 CSSValueJs getPresentationAttribute(String name) native; 9539 _CSSValueJs getPresentationAttribute(String name) native;
9540 9540
9541 // From SVGTransformable 9541 // From SVGTransformable
9542 9542
9543 SVGAnimatedTransformListJs get transform() native "return this.transform;"; 9543 _SVGAnimatedTransformListJs get transform() native "return this.transform;";
9544 9544
9545 // From SVGLocatable 9545 // From SVGLocatable
9546 9546
9547 SVGElementJs get farthestViewportElement() native "return this.farthestViewpor tElement;"; 9547 _SVGElementJs get farthestViewportElement() native "return this.farthestViewpo rtElement;";
9548 9548
9549 SVGElementJs get nearestViewportElement() native "return this.nearestViewportE lement;"; 9549 _SVGElementJs get nearestViewportElement() native "return this.nearestViewport Element;";
9550 9550
9551 SVGRectJs getBBox() native; 9551 _SVGRectJs getBBox() native;
9552 9552
9553 SVGMatrixJs getCTM() native; 9553 _SVGMatrixJs getCTM() native;
9554 9554
9555 SVGMatrixJs getScreenCTM() native; 9555 _SVGMatrixJs getScreenCTM() native;
9556 9556
9557 SVGMatrixJs getTransformToElement(SVGElementJs element) native; 9557 _SVGMatrixJs getTransformToElement(_SVGElementJs element) native;
9558 } 9558 }
9559 9559
9560 class SVGPolylineElementJs extends SVGElementJs implements SVGPolylineElement na tive "*SVGPolylineElement" { 9560 class _SVGPolylineElementJs extends _SVGElementJs implements SVGPolylineElement native "*SVGPolylineElement" {
9561 9561
9562 SVGPointListJs get animatedPoints() native "return this.animatedPoints;"; 9562 _SVGPointListJs get animatedPoints() native "return this.animatedPoints;";
9563 9563
9564 SVGPointListJs get points() native "return this.points;"; 9564 _SVGPointListJs get points() native "return this.points;";
9565 9565
9566 // From SVGTests 9566 // From SVGTests
9567 9567
9568 SVGStringListJs get requiredExtensions() native "return this.requiredExtension s;"; 9568 _SVGStringListJs get requiredExtensions() native "return this.requiredExtensio ns;";
9569 9569
9570 SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;"; 9570 _SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;" ;
9571 9571
9572 SVGStringListJs get systemLanguage() native "return this.systemLanguage;"; 9572 _SVGStringListJs get systemLanguage() native "return this.systemLanguage;";
9573 9573
9574 bool hasExtension(String extension) native; 9574 bool hasExtension(String extension) native;
9575 9575
9576 // From SVGLangSpace 9576 // From SVGLangSpace
9577 9577
9578 String get xmllang() native "return this.xmllang;"; 9578 String get xmllang() native "return this.xmllang;";
9579 9579
9580 void set xmllang(String value) native "this.xmllang = value;"; 9580 void set xmllang(String value) native "this.xmllang = value;";
9581 9581
9582 String get xmlspace() native "return this.xmlspace;"; 9582 String get xmlspace() native "return this.xmlspace;";
9583 9583
9584 void set xmlspace(String value) native "this.xmlspace = value;"; 9584 void set xmlspace(String value) native "this.xmlspace = value;";
9585 9585
9586 // From SVGExternalResourcesRequired 9586 // From SVGExternalResourcesRequired
9587 9587
9588 SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exter nalResourcesRequired;"; 9588 _SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exte rnalResourcesRequired;";
9589 9589
9590 // From SVGStylable 9590 // From SVGStylable
9591 9591
9592 SVGAnimatedStringJs get className() native "return this.className;"; 9592 _SVGAnimatedStringJs get className() native "return this.className;";
9593 9593
9594 CSSStyleDeclarationJs get style() native "return this.style;"; 9594 _CSSStyleDeclarationJs get style() native "return this.style;";
9595 9595
9596 CSSValueJs getPresentationAttribute(String name) native; 9596 _CSSValueJs getPresentationAttribute(String name) native;
9597 9597
9598 // From SVGTransformable 9598 // From SVGTransformable
9599 9599
9600 SVGAnimatedTransformListJs get transform() native "return this.transform;"; 9600 _SVGAnimatedTransformListJs get transform() native "return this.transform;";
9601 9601
9602 // From SVGLocatable 9602 // From SVGLocatable
9603 9603
9604 SVGElementJs get farthestViewportElement() native "return this.farthestViewpor tElement;"; 9604 _SVGElementJs get farthestViewportElement() native "return this.farthestViewpo rtElement;";
9605 9605
9606 SVGElementJs get nearestViewportElement() native "return this.nearestViewportE lement;"; 9606 _SVGElementJs get nearestViewportElement() native "return this.nearestViewport Element;";
9607 9607
9608 SVGRectJs getBBox() native; 9608 _SVGRectJs getBBox() native;
9609 9609
9610 SVGMatrixJs getCTM() native; 9610 _SVGMatrixJs getCTM() native;
9611 9611
9612 SVGMatrixJs getScreenCTM() native; 9612 _SVGMatrixJs getScreenCTM() native;
9613 9613
9614 SVGMatrixJs getTransformToElement(SVGElementJs element) native; 9614 _SVGMatrixJs getTransformToElement(_SVGElementJs element) native;
9615 } 9615 }
9616 9616
9617 class SVGPreserveAspectRatioJs extends DOMTypeJs implements SVGPreserveAspectRat io native "*SVGPreserveAspectRatio" { 9617 class _SVGPreserveAspectRatioJs extends _DOMTypeJs implements SVGPreserveAspectR atio native "*SVGPreserveAspectRatio" {
9618 9618
9619 static final int SVG_MEETORSLICE_MEET = 1; 9619 static final int SVG_MEETORSLICE_MEET = 1;
9620 9620
9621 static final int SVG_MEETORSLICE_SLICE = 2; 9621 static final int SVG_MEETORSLICE_SLICE = 2;
9622 9622
9623 static final int SVG_MEETORSLICE_UNKNOWN = 0; 9623 static final int SVG_MEETORSLICE_UNKNOWN = 0;
9624 9624
9625 static final int SVG_PRESERVEASPECTRATIO_NONE = 1; 9625 static final int SVG_PRESERVEASPECTRATIO_NONE = 1;
9626 9626
9627 static final int SVG_PRESERVEASPECTRATIO_UNKNOWN = 0; 9627 static final int SVG_PRESERVEASPECTRATIO_UNKNOWN = 0;
(...skipping 18 matching lines...) Expand all
9646 9646
9647 int get align() native "return this.align;"; 9647 int get align() native "return this.align;";
9648 9648
9649 void set align(int value) native "this.align = value;"; 9649 void set align(int value) native "this.align = value;";
9650 9650
9651 int get meetOrSlice() native "return this.meetOrSlice;"; 9651 int get meetOrSlice() native "return this.meetOrSlice;";
9652 9652
9653 void set meetOrSlice(int value) native "this.meetOrSlice = value;"; 9653 void set meetOrSlice(int value) native "this.meetOrSlice = value;";
9654 } 9654 }
9655 9655
9656 class SVGRadialGradientElementJs extends SVGGradientElementJs implements SVGRadi alGradientElement native "*SVGRadialGradientElement" { 9656 class _SVGRadialGradientElementJs extends _SVGGradientElementJs implements SVGRa dialGradientElement native "*SVGRadialGradientElement" {
9657 9657
9658 SVGAnimatedLengthJs get cx() native "return this.cx;"; 9658 _SVGAnimatedLengthJs get cx() native "return this.cx;";
9659 9659
9660 SVGAnimatedLengthJs get cy() native "return this.cy;"; 9660 _SVGAnimatedLengthJs get cy() native "return this.cy;";
9661 9661
9662 SVGAnimatedLengthJs get fx() native "return this.fx;"; 9662 _SVGAnimatedLengthJs get fx() native "return this.fx;";
9663 9663
9664 SVGAnimatedLengthJs get fy() native "return this.fy;"; 9664 _SVGAnimatedLengthJs get fy() native "return this.fy;";
9665 9665
9666 SVGAnimatedLengthJs get r() native "return this.r;"; 9666 _SVGAnimatedLengthJs get r() native "return this.r;";
9667 } 9667 }
9668 9668
9669 class SVGRectJs extends DOMTypeJs implements SVGRect native "*SVGRect" { 9669 class _SVGRectJs extends _DOMTypeJs implements SVGRect native "*SVGRect" {
9670 9670
9671 num get height() native "return this.height;"; 9671 num get height() native "return this.height;";
9672 9672
9673 void set height(num value) native "this.height = value;"; 9673 void set height(num value) native "this.height = value;";
9674 9674
9675 num get width() native "return this.width;"; 9675 num get width() native "return this.width;";
9676 9676
9677 void set width(num value) native "this.width = value;"; 9677 void set width(num value) native "this.width = value;";
9678 9678
9679 num get x() native "return this.x;"; 9679 num get x() native "return this.x;";
9680 9680
9681 void set x(num value) native "this.x = value;"; 9681 void set x(num value) native "this.x = value;";
9682 9682
9683 num get y() native "return this.y;"; 9683 num get y() native "return this.y;";
9684 9684
9685 void set y(num value) native "this.y = value;"; 9685 void set y(num value) native "this.y = value;";
9686 } 9686 }
9687 9687
9688 class SVGRectElementJs extends SVGElementJs implements SVGRectElement native "*S VGRectElement" { 9688 class _SVGRectElementJs extends _SVGElementJs implements SVGRectElement native " *SVGRectElement" {
9689 9689
9690 SVGAnimatedLengthJs get height() native "return this.height;"; 9690 _SVGAnimatedLengthJs get height() native "return this.height;";
9691 9691
9692 SVGAnimatedLengthJs get rx() native "return this.rx;"; 9692 _SVGAnimatedLengthJs get rx() native "return this.rx;";
9693 9693
9694 SVGAnimatedLengthJs get ry() native "return this.ry;"; 9694 _SVGAnimatedLengthJs get ry() native "return this.ry;";
9695 9695
9696 SVGAnimatedLengthJs get width() native "return this.width;"; 9696 _SVGAnimatedLengthJs get width() native "return this.width;";
9697 9697
9698 SVGAnimatedLengthJs get x() native "return this.x;"; 9698 _SVGAnimatedLengthJs get x() native "return this.x;";
9699 9699
9700 SVGAnimatedLengthJs get y() native "return this.y;"; 9700 _SVGAnimatedLengthJs get y() native "return this.y;";
9701 9701
9702 // From SVGTests 9702 // From SVGTests
9703 9703
9704 SVGStringListJs get requiredExtensions() native "return this.requiredExtension s;"; 9704 _SVGStringListJs get requiredExtensions() native "return this.requiredExtensio ns;";
9705 9705
9706 SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;"; 9706 _SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;" ;
9707 9707
9708 SVGStringListJs get systemLanguage() native "return this.systemLanguage;"; 9708 _SVGStringListJs get systemLanguage() native "return this.systemLanguage;";
9709 9709
9710 bool hasExtension(String extension) native; 9710 bool hasExtension(String extension) native;
9711 9711
9712 // From SVGLangSpace 9712 // From SVGLangSpace
9713 9713
9714 String get xmllang() native "return this.xmllang;"; 9714 String get xmllang() native "return this.xmllang;";
9715 9715
9716 void set xmllang(String value) native "this.xmllang = value;"; 9716 void set xmllang(String value) native "this.xmllang = value;";
9717 9717
9718 String get xmlspace() native "return this.xmlspace;"; 9718 String get xmlspace() native "return this.xmlspace;";
9719 9719
9720 void set xmlspace(String value) native "this.xmlspace = value;"; 9720 void set xmlspace(String value) native "this.xmlspace = value;";
9721 9721
9722 // From SVGExternalResourcesRequired 9722 // From SVGExternalResourcesRequired
9723 9723
9724 SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exter nalResourcesRequired;"; 9724 _SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exte rnalResourcesRequired;";
9725 9725
9726 // From SVGStylable 9726 // From SVGStylable
9727 9727
9728 SVGAnimatedStringJs get className() native "return this.className;"; 9728 _SVGAnimatedStringJs get className() native "return this.className;";
9729 9729
9730 CSSStyleDeclarationJs get style() native "return this.style;"; 9730 _CSSStyleDeclarationJs get style() native "return this.style;";
9731 9731
9732 CSSValueJs getPresentationAttribute(String name) native; 9732 _CSSValueJs getPresentationAttribute(String name) native;
9733 9733
9734 // From SVGTransformable 9734 // From SVGTransformable
9735 9735
9736 SVGAnimatedTransformListJs get transform() native "return this.transform;"; 9736 _SVGAnimatedTransformListJs get transform() native "return this.transform;";
9737 9737
9738 // From SVGLocatable 9738 // From SVGLocatable
9739 9739
9740 SVGElementJs get farthestViewportElement() native "return this.farthestViewpor tElement;"; 9740 _SVGElementJs get farthestViewportElement() native "return this.farthestViewpo rtElement;";
9741 9741
9742 SVGElementJs get nearestViewportElement() native "return this.nearestViewportE lement;"; 9742 _SVGElementJs get nearestViewportElement() native "return this.nearestViewport Element;";
9743 9743
9744 SVGRectJs getBBox() native; 9744 _SVGRectJs getBBox() native;
9745 9745
9746 SVGMatrixJs getCTM() native; 9746 _SVGMatrixJs getCTM() native;
9747 9747
9748 SVGMatrixJs getScreenCTM() native; 9748 _SVGMatrixJs getScreenCTM() native;
9749 9749
9750 SVGMatrixJs getTransformToElement(SVGElementJs element) native; 9750 _SVGMatrixJs getTransformToElement(_SVGElementJs element) native;
9751 } 9751 }
9752 9752
9753 class SVGRenderingIntentJs extends DOMTypeJs implements SVGRenderingIntent nativ e "*SVGRenderingIntent" { 9753 class _SVGRenderingIntentJs extends _DOMTypeJs implements SVGRenderingIntent nat ive "*SVGRenderingIntent" {
9754 9754
9755 static final int RENDERING_INTENT_ABSOLUTE_COLORIMETRIC = 5; 9755 static final int RENDERING_INTENT_ABSOLUTE_COLORIMETRIC = 5;
9756 9756
9757 static final int RENDERING_INTENT_AUTO = 1; 9757 static final int RENDERING_INTENT_AUTO = 1;
9758 9758
9759 static final int RENDERING_INTENT_PERCEPTUAL = 2; 9759 static final int RENDERING_INTENT_PERCEPTUAL = 2;
9760 9760
9761 static final int RENDERING_INTENT_RELATIVE_COLORIMETRIC = 3; 9761 static final int RENDERING_INTENT_RELATIVE_COLORIMETRIC = 3;
9762 9762
9763 static final int RENDERING_INTENT_SATURATION = 4; 9763 static final int RENDERING_INTENT_SATURATION = 4;
9764 9764
9765 static final int RENDERING_INTENT_UNKNOWN = 0; 9765 static final int RENDERING_INTENT_UNKNOWN = 0;
9766 } 9766 }
9767 9767
9768 class SVGSVGElementJs extends SVGElementJs implements SVGSVGElement native "*SVG SVGElement" { 9768 class _SVGSVGElementJs extends _SVGElementJs implements SVGSVGElement native "*S VGSVGElement" {
9769 9769
9770 String get contentScriptType() native "return this.contentScriptType;"; 9770 String get contentScriptType() native "return this.contentScriptType;";
9771 9771
9772 void set contentScriptType(String value) native "this.contentScriptType = valu e;"; 9772 void set contentScriptType(String value) native "this.contentScriptType = valu e;";
9773 9773
9774 String get contentStyleType() native "return this.contentStyleType;"; 9774 String get contentStyleType() native "return this.contentStyleType;";
9775 9775
9776 void set contentStyleType(String value) native "this.contentStyleType = value; "; 9776 void set contentStyleType(String value) native "this.contentStyleType = value; ";
9777 9777
9778 num get currentScale() native "return this.currentScale;"; 9778 num get currentScale() native "return this.currentScale;";
9779 9779
9780 void set currentScale(num value) native "this.currentScale = value;"; 9780 void set currentScale(num value) native "this.currentScale = value;";
9781 9781
9782 SVGPointJs get currentTranslate() native "return this.currentTranslate;"; 9782 _SVGPointJs get currentTranslate() native "return this.currentTranslate;";
9783 9783
9784 SVGAnimatedLengthJs get height() native "return this.height;"; 9784 _SVGAnimatedLengthJs get height() native "return this.height;";
9785 9785
9786 num get pixelUnitToMillimeterX() native "return this.pixelUnitToMillimeterX;"; 9786 num get pixelUnitToMillimeterX() native "return this.pixelUnitToMillimeterX;";
9787 9787
9788 num get pixelUnitToMillimeterY() native "return this.pixelUnitToMillimeterY;"; 9788 num get pixelUnitToMillimeterY() native "return this.pixelUnitToMillimeterY;";
9789 9789
9790 num get screenPixelToMillimeterX() native "return this.screenPixelToMillimeter X;"; 9790 num get screenPixelToMillimeterX() native "return this.screenPixelToMillimeter X;";
9791 9791
9792 num get screenPixelToMillimeterY() native "return this.screenPixelToMillimeter Y;"; 9792 num get screenPixelToMillimeterY() native "return this.screenPixelToMillimeter Y;";
9793 9793
9794 bool get useCurrentView() native "return this.useCurrentView;"; 9794 bool get useCurrentView() native "return this.useCurrentView;";
9795 9795
9796 void set useCurrentView(bool value) native "this.useCurrentView = value;"; 9796 void set useCurrentView(bool value) native "this.useCurrentView = value;";
9797 9797
9798 SVGRectJs get viewport() native "return this.viewport;"; 9798 _SVGRectJs get viewport() native "return this.viewport;";
9799 9799
9800 SVGAnimatedLengthJs get width() native "return this.width;"; 9800 _SVGAnimatedLengthJs get width() native "return this.width;";
9801 9801
9802 SVGAnimatedLengthJs get x() native "return this.x;"; 9802 _SVGAnimatedLengthJs get x() native "return this.x;";
9803 9803
9804 SVGAnimatedLengthJs get y() native "return this.y;"; 9804 _SVGAnimatedLengthJs get y() native "return this.y;";
9805 9805
9806 bool animationsPaused() native; 9806 bool animationsPaused() native;
9807 9807
9808 bool checkEnclosure(SVGElementJs element, SVGRectJs rect) native; 9808 bool checkEnclosure(_SVGElementJs element, _SVGRectJs rect) native;
9809 9809
9810 bool checkIntersection(SVGElementJs element, SVGRectJs rect) native; 9810 bool checkIntersection(_SVGElementJs element, _SVGRectJs rect) native;
9811 9811
9812 SVGAngleJs createSVGAngle() native; 9812 _SVGAngleJs createSVGAngle() native;
9813 9813
9814 SVGLengthJs createSVGLength() native; 9814 _SVGLengthJs createSVGLength() native;
9815 9815
9816 SVGMatrixJs createSVGMatrix() native; 9816 _SVGMatrixJs createSVGMatrix() native;
9817 9817
9818 SVGNumberJs createSVGNumber() native; 9818 _SVGNumberJs createSVGNumber() native;
9819 9819
9820 SVGPointJs createSVGPoint() native; 9820 _SVGPointJs createSVGPoint() native;
9821 9821
9822 SVGRectJs createSVGRect() native; 9822 _SVGRectJs createSVGRect() native;
9823 9823
9824 SVGTransformJs createSVGTransform() native; 9824 _SVGTransformJs createSVGTransform() native;
9825 9825
9826 SVGTransformJs createSVGTransformFromMatrix(SVGMatrixJs matrix) native; 9826 _SVGTransformJs createSVGTransformFromMatrix(_SVGMatrixJs matrix) native;
9827 9827
9828 void deselectAll() native; 9828 void deselectAll() native;
9829 9829
9830 void forceRedraw() native; 9830 void forceRedraw() native;
9831 9831
9832 num getCurrentTime() native; 9832 num getCurrentTime() native;
9833 9833
9834 ElementJs getElementById(String elementId) native; 9834 _ElementJs getElementById(String elementId) native;
9835 9835
9836 NodeListJs getEnclosureList(SVGRectJs rect, SVGElementJs referenceElement) nat ive; 9836 _NodeListJs getEnclosureList(_SVGRectJs rect, _SVGElementJs referenceElement) native;
9837 9837
9838 NodeListJs getIntersectionList(SVGRectJs rect, SVGElementJs referenceElement) native; 9838 _NodeListJs getIntersectionList(_SVGRectJs rect, _SVGElementJs referenceElemen t) native;
9839 9839
9840 void pauseAnimations() native; 9840 void pauseAnimations() native;
9841 9841
9842 void setCurrentTime(num seconds) native; 9842 void setCurrentTime(num seconds) native;
9843 9843
9844 int suspendRedraw(int maxWaitMilliseconds) native; 9844 int suspendRedraw(int maxWaitMilliseconds) native;
9845 9845
9846 void unpauseAnimations() native; 9846 void unpauseAnimations() native;
9847 9847
9848 void unsuspendRedraw(int suspendHandleId) native; 9848 void unsuspendRedraw(int suspendHandleId) native;
9849 9849
9850 void unsuspendRedrawAll() native; 9850 void unsuspendRedrawAll() native;
9851 9851
9852 // From SVGTests 9852 // From SVGTests
9853 9853
9854 SVGStringListJs get requiredExtensions() native "return this.requiredExtension s;"; 9854 _SVGStringListJs get requiredExtensions() native "return this.requiredExtensio ns;";
9855 9855
9856 SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;"; 9856 _SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;" ;
9857 9857
9858 SVGStringListJs get systemLanguage() native "return this.systemLanguage;"; 9858 _SVGStringListJs get systemLanguage() native "return this.systemLanguage;";
9859 9859
9860 bool hasExtension(String extension) native; 9860 bool hasExtension(String extension) native;
9861 9861
9862 // From SVGLangSpace 9862 // From SVGLangSpace
9863 9863
9864 String get xmllang() native "return this.xmllang;"; 9864 String get xmllang() native "return this.xmllang;";
9865 9865
9866 void set xmllang(String value) native "this.xmllang = value;"; 9866 void set xmllang(String value) native "this.xmllang = value;";
9867 9867
9868 String get xmlspace() native "return this.xmlspace;"; 9868 String get xmlspace() native "return this.xmlspace;";
9869 9869
9870 void set xmlspace(String value) native "this.xmlspace = value;"; 9870 void set xmlspace(String value) native "this.xmlspace = value;";
9871 9871
9872 // From SVGExternalResourcesRequired 9872 // From SVGExternalResourcesRequired
9873 9873
9874 SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exter nalResourcesRequired;"; 9874 _SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exte rnalResourcesRequired;";
9875 9875
9876 // From SVGStylable 9876 // From SVGStylable
9877 9877
9878 SVGAnimatedStringJs get className() native "return this.className;"; 9878 _SVGAnimatedStringJs get className() native "return this.className;";
9879 9879
9880 CSSStyleDeclarationJs get style() native "return this.style;"; 9880 _CSSStyleDeclarationJs get style() native "return this.style;";
9881 9881
9882 CSSValueJs getPresentationAttribute(String name) native; 9882 _CSSValueJs getPresentationAttribute(String name) native;
9883 9883
9884 // From SVGLocatable 9884 // From SVGLocatable
9885 9885
9886 SVGElementJs get farthestViewportElement() native "return this.farthestViewpor tElement;"; 9886 _SVGElementJs get farthestViewportElement() native "return this.farthestViewpo rtElement;";
9887 9887
9888 SVGElementJs get nearestViewportElement() native "return this.nearestViewportE lement;"; 9888 _SVGElementJs get nearestViewportElement() native "return this.nearestViewport Element;";
9889 9889
9890 SVGRectJs getBBox() native; 9890 _SVGRectJs getBBox() native;
9891 9891
9892 SVGMatrixJs getCTM() native; 9892 _SVGMatrixJs getCTM() native;
9893 9893
9894 SVGMatrixJs getScreenCTM() native; 9894 _SVGMatrixJs getScreenCTM() native;
9895 9895
9896 SVGMatrixJs getTransformToElement(SVGElementJs element) native; 9896 _SVGMatrixJs getTransformToElement(_SVGElementJs element) native;
9897 9897
9898 // From SVGFitToViewBox 9898 // From SVGFitToViewBox
9899 9899
9900 SVGAnimatedPreserveAspectRatioJs get preserveAspectRatio() native "return this .preserveAspectRatio;"; 9900 _SVGAnimatedPreserveAspectRatioJs get preserveAspectRatio() native "return thi s.preserveAspectRatio;";
9901 9901
9902 SVGAnimatedRectJs get viewBox() native "return this.viewBox;"; 9902 _SVGAnimatedRectJs get viewBox() native "return this.viewBox;";
9903 9903
9904 // From SVGZoomAndPan 9904 // From SVGZoomAndPan
9905 9905
9906 int get zoomAndPan() native "return this.zoomAndPan;"; 9906 int get zoomAndPan() native "return this.zoomAndPan;";
9907 9907
9908 void set zoomAndPan(int value) native "this.zoomAndPan = value;"; 9908 void set zoomAndPan(int value) native "this.zoomAndPan = value;";
9909 } 9909 }
9910 9910
9911 class SVGScriptElementJs extends SVGElementJs implements SVGScriptElement native "*SVGScriptElement" { 9911 class _SVGScriptElementJs extends _SVGElementJs implements SVGScriptElement nati ve "*SVGScriptElement" {
9912 9912
9913 String get type() native "return this.type;"; 9913 String get type() native "return this.type;";
9914 9914
9915 void set type(String value) native "this.type = value;"; 9915 void set type(String value) native "this.type = value;";
9916 9916
9917 // From SVGURIReference 9917 // From SVGURIReference
9918 9918
9919 SVGAnimatedStringJs get href() native "return this.href;"; 9919 _SVGAnimatedStringJs get href() native "return this.href;";
9920 9920
9921 // From SVGExternalResourcesRequired 9921 // From SVGExternalResourcesRequired
9922 9922
9923 SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exter nalResourcesRequired;"; 9923 _SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exte rnalResourcesRequired;";
9924 } 9924 }
9925 9925
9926 class SVGSetElementJs extends SVGAnimationElementJs implements SVGSetElement nat ive "*SVGSetElement" { 9926 class _SVGSetElementJs extends _SVGAnimationElementJs implements SVGSetElement n ative "*SVGSetElement" {
9927 } 9927 }
9928 9928
9929 class SVGStopElementJs extends SVGElementJs implements SVGStopElement native "*S VGStopElement" { 9929 class _SVGStopElementJs extends _SVGElementJs implements SVGStopElement native " *SVGStopElement" {
9930 9930
9931 SVGAnimatedNumberJs get offset() native "return this.offset;"; 9931 _SVGAnimatedNumberJs get offset() native "return this.offset;";
9932 9932
9933 // From SVGStylable 9933 // From SVGStylable
9934 9934
9935 SVGAnimatedStringJs get className() native "return this.className;"; 9935 _SVGAnimatedStringJs get className() native "return this.className;";
9936 9936
9937 CSSStyleDeclarationJs get style() native "return this.style;"; 9937 _CSSStyleDeclarationJs get style() native "return this.style;";
9938 9938
9939 CSSValueJs getPresentationAttribute(String name) native; 9939 _CSSValueJs getPresentationAttribute(String name) native;
9940 } 9940 }
9941 9941
9942 class SVGStringListJs extends DOMTypeJs implements SVGStringList native "*SVGStr ingList" { 9942 class _SVGStringListJs extends _DOMTypeJs implements SVGStringList native "*SVGS tringList" {
9943 9943
9944 int get numberOfItems() native "return this.numberOfItems;"; 9944 int get numberOfItems() native "return this.numberOfItems;";
9945 9945
9946 String appendItem(String item) native; 9946 String appendItem(String item) native;
9947 9947
9948 void clear() native; 9948 void clear() native;
9949 9949
9950 String getItem(int index) native; 9950 String getItem(int index) native;
9951 9951
9952 String initialize(String item) native; 9952 String initialize(String item) native;
9953 9953
9954 String insertItemBefore(String item, int index) native; 9954 String insertItemBefore(String item, int index) native;
9955 9955
9956 String removeItem(int index) native; 9956 String removeItem(int index) native;
9957 9957
9958 String replaceItem(String item, int index) native; 9958 String replaceItem(String item, int index) native;
9959 } 9959 }
9960 9960
9961 class SVGStylableJs extends DOMTypeJs implements SVGStylable native "*SVGStylabl e" { 9961 class _SVGStylableJs extends _DOMTypeJs implements SVGStylable native "*SVGStyla ble" {
9962 9962
9963 SVGAnimatedStringJs get className() native "return this.className;"; 9963 _SVGAnimatedStringJs get className() native "return this.className;";
9964 9964
9965 CSSStyleDeclarationJs get style() native "return this.style;"; 9965 _CSSStyleDeclarationJs get style() native "return this.style;";
9966 9966
9967 CSSValueJs getPresentationAttribute(String name) native; 9967 _CSSValueJs getPresentationAttribute(String name) native;
9968 } 9968 }
9969 9969
9970 class SVGStyleElementJs extends SVGElementJs implements SVGStyleElement native " *SVGStyleElement" { 9970 class _SVGStyleElementJs extends _SVGElementJs implements SVGStyleElement native "*SVGStyleElement" {
9971 9971
9972 String get media() native "return this.media;"; 9972 String get media() native "return this.media;";
9973 9973
9974 void set media(String value) native "this.media = value;"; 9974 void set media(String value) native "this.media = value;";
9975 9975
9976 String get title() native "return this.title;"; 9976 String get title() native "return this.title;";
9977 9977
9978 void set title(String value) native "this.title = value;"; 9978 void set title(String value) native "this.title = value;";
9979 9979
9980 String get type() native "return this.type;"; 9980 String get type() native "return this.type;";
9981 9981
9982 void set type(String value) native "this.type = value;"; 9982 void set type(String value) native "this.type = value;";
9983 9983
9984 // From SVGLangSpace 9984 // From SVGLangSpace
9985 9985
9986 String get xmllang() native "return this.xmllang;"; 9986 String get xmllang() native "return this.xmllang;";
9987 9987
9988 void set xmllang(String value) native "this.xmllang = value;"; 9988 void set xmllang(String value) native "this.xmllang = value;";
9989 9989
9990 String get xmlspace() native "return this.xmlspace;"; 9990 String get xmlspace() native "return this.xmlspace;";
9991 9991
9992 void set xmlspace(String value) native "this.xmlspace = value;"; 9992 void set xmlspace(String value) native "this.xmlspace = value;";
9993 } 9993 }
9994 9994
9995 class SVGSwitchElementJs extends SVGElementJs implements SVGSwitchElement native "*SVGSwitchElement" { 9995 class _SVGSwitchElementJs extends _SVGElementJs implements SVGSwitchElement nati ve "*SVGSwitchElement" {
9996 9996
9997 // From SVGTests 9997 // From SVGTests
9998 9998
9999 SVGStringListJs get requiredExtensions() native "return this.requiredExtension s;"; 9999 _SVGStringListJs get requiredExtensions() native "return this.requiredExtensio ns;";
10000 10000
10001 SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;"; 10001 _SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;" ;
10002 10002
10003 SVGStringListJs get systemLanguage() native "return this.systemLanguage;"; 10003 _SVGStringListJs get systemLanguage() native "return this.systemLanguage;";
10004 10004
10005 bool hasExtension(String extension) native; 10005 bool hasExtension(String extension) native;
10006 10006
10007 // From SVGLangSpace 10007 // From SVGLangSpace
10008 10008
10009 String get xmllang() native "return this.xmllang;"; 10009 String get xmllang() native "return this.xmllang;";
10010 10010
10011 void set xmllang(String value) native "this.xmllang = value;"; 10011 void set xmllang(String value) native "this.xmllang = value;";
10012 10012
10013 String get xmlspace() native "return this.xmlspace;"; 10013 String get xmlspace() native "return this.xmlspace;";
10014 10014
10015 void set xmlspace(String value) native "this.xmlspace = value;"; 10015 void set xmlspace(String value) native "this.xmlspace = value;";
10016 10016
10017 // From SVGExternalResourcesRequired 10017 // From SVGExternalResourcesRequired
10018 10018
10019 SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exter nalResourcesRequired;"; 10019 _SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exte rnalResourcesRequired;";
10020 10020
10021 // From SVGStylable 10021 // From SVGStylable
10022 10022
10023 SVGAnimatedStringJs get className() native "return this.className;"; 10023 _SVGAnimatedStringJs get className() native "return this.className;";
10024 10024
10025 CSSStyleDeclarationJs get style() native "return this.style;"; 10025 _CSSStyleDeclarationJs get style() native "return this.style;";
10026 10026
10027 CSSValueJs getPresentationAttribute(String name) native; 10027 _CSSValueJs getPresentationAttribute(String name) native;
10028 10028
10029 // From SVGTransformable 10029 // From SVGTransformable
10030 10030
10031 SVGAnimatedTransformListJs get transform() native "return this.transform;"; 10031 _SVGAnimatedTransformListJs get transform() native "return this.transform;";
10032 10032
10033 // From SVGLocatable 10033 // From SVGLocatable
10034 10034
10035 SVGElementJs get farthestViewportElement() native "return this.farthestViewpor tElement;"; 10035 _SVGElementJs get farthestViewportElement() native "return this.farthestViewpo rtElement;";
10036 10036
10037 SVGElementJs get nearestViewportElement() native "return this.nearestViewportE lement;"; 10037 _SVGElementJs get nearestViewportElement() native "return this.nearestViewport Element;";
10038 10038
10039 SVGRectJs getBBox() native; 10039 _SVGRectJs getBBox() native;
10040 10040
10041 SVGMatrixJs getCTM() native; 10041 _SVGMatrixJs getCTM() native;
10042 10042
10043 SVGMatrixJs getScreenCTM() native; 10043 _SVGMatrixJs getScreenCTM() native;
10044 10044
10045 SVGMatrixJs getTransformToElement(SVGElementJs element) native; 10045 _SVGMatrixJs getTransformToElement(_SVGElementJs element) native;
10046 } 10046 }
10047 10047
10048 class SVGSymbolElementJs extends SVGElementJs implements SVGSymbolElement native "*SVGSymbolElement" { 10048 class _SVGSymbolElementJs extends _SVGElementJs implements SVGSymbolElement nati ve "*SVGSymbolElement" {
10049 10049
10050 // From SVGLangSpace 10050 // From SVGLangSpace
10051 10051
10052 String get xmllang() native "return this.xmllang;"; 10052 String get xmllang() native "return this.xmllang;";
10053 10053
10054 void set xmllang(String value) native "this.xmllang = value;"; 10054 void set xmllang(String value) native "this.xmllang = value;";
10055 10055
10056 String get xmlspace() native "return this.xmlspace;"; 10056 String get xmlspace() native "return this.xmlspace;";
10057 10057
10058 void set xmlspace(String value) native "this.xmlspace = value;"; 10058 void set xmlspace(String value) native "this.xmlspace = value;";
10059 10059
10060 // From SVGExternalResourcesRequired 10060 // From SVGExternalResourcesRequired
10061 10061
10062 SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exter nalResourcesRequired;"; 10062 _SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exte rnalResourcesRequired;";
10063 10063
10064 // From SVGStylable 10064 // From SVGStylable
10065 10065
10066 SVGAnimatedStringJs get className() native "return this.className;"; 10066 _SVGAnimatedStringJs get className() native "return this.className;";
10067 10067
10068 CSSStyleDeclarationJs get style() native "return this.style;"; 10068 _CSSStyleDeclarationJs get style() native "return this.style;";
10069 10069
10070 CSSValueJs getPresentationAttribute(String name) native; 10070 _CSSValueJs getPresentationAttribute(String name) native;
10071 10071
10072 // From SVGFitToViewBox 10072 // From SVGFitToViewBox
10073 10073
10074 SVGAnimatedPreserveAspectRatioJs get preserveAspectRatio() native "return this .preserveAspectRatio;"; 10074 _SVGAnimatedPreserveAspectRatioJs get preserveAspectRatio() native "return thi s.preserveAspectRatio;";
10075 10075
10076 SVGAnimatedRectJs get viewBox() native "return this.viewBox;"; 10076 _SVGAnimatedRectJs get viewBox() native "return this.viewBox;";
10077 } 10077 }
10078 10078
10079 class SVGTRefElementJs extends SVGTextPositioningElementJs implements SVGTRefEle ment native "*SVGTRefElement" { 10079 class _SVGTRefElementJs extends _SVGTextPositioningElementJs implements SVGTRefE lement native "*SVGTRefElement" {
10080 10080
10081 // From SVGURIReference 10081 // From SVGURIReference
10082 10082
10083 SVGAnimatedStringJs get href() native "return this.href;"; 10083 _SVGAnimatedStringJs get href() native "return this.href;";
10084 } 10084 }
10085 10085
10086 class SVGTSpanElementJs extends SVGTextPositioningElementJs implements SVGTSpanE lement native "*SVGTSpanElement" { 10086 class _SVGTSpanElementJs extends _SVGTextPositioningElementJs implements SVGTSpa nElement native "*SVGTSpanElement" {
10087 } 10087 }
10088 10088
10089 class SVGTestsJs extends DOMTypeJs implements SVGTests native "*SVGTests" { 10089 class _SVGTestsJs extends _DOMTypeJs implements SVGTests native "*SVGTests" {
10090 10090
10091 SVGStringListJs get requiredExtensions() native "return this.requiredExtension s;"; 10091 _SVGStringListJs get requiredExtensions() native "return this.requiredExtensio ns;";
10092 10092
10093 SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;"; 10093 _SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;" ;
10094 10094
10095 SVGStringListJs get systemLanguage() native "return this.systemLanguage;"; 10095 _SVGStringListJs get systemLanguage() native "return this.systemLanguage;";
10096 10096
10097 bool hasExtension(String extension) native; 10097 bool hasExtension(String extension) native;
10098 } 10098 }
10099 10099
10100 class SVGTextContentElementJs extends SVGElementJs implements SVGTextContentElem ent native "*SVGTextContentElement" { 10100 class _SVGTextContentElementJs extends _SVGElementJs implements SVGTextContentEl ement native "*SVGTextContentElement" {
10101 10101
10102 static final int LENGTHADJUST_SPACING = 1; 10102 static final int LENGTHADJUST_SPACING = 1;
10103 10103
10104 static final int LENGTHADJUST_SPACINGANDGLYPHS = 2; 10104 static final int LENGTHADJUST_SPACINGANDGLYPHS = 2;
10105 10105
10106 static final int LENGTHADJUST_UNKNOWN = 0; 10106 static final int LENGTHADJUST_UNKNOWN = 0;
10107 10107
10108 SVGAnimatedEnumerationJs get lengthAdjust() native "return this.lengthAdjust;" ; 10108 _SVGAnimatedEnumerationJs get lengthAdjust() native "return this.lengthAdjust; ";
10109 10109
10110 SVGAnimatedLengthJs get textLength() native "return this.textLength;"; 10110 _SVGAnimatedLengthJs get textLength() native "return this.textLength;";
10111 10111
10112 int getCharNumAtPosition(SVGPointJs point) native; 10112 int getCharNumAtPosition(_SVGPointJs point) native;
10113 10113
10114 num getComputedTextLength() native; 10114 num getComputedTextLength() native;
10115 10115
10116 SVGPointJs getEndPositionOfChar(int offset) native; 10116 _SVGPointJs getEndPositionOfChar(int offset) native;
10117 10117
10118 SVGRectJs getExtentOfChar(int offset) native; 10118 _SVGRectJs getExtentOfChar(int offset) native;
10119 10119
10120 int getNumberOfChars() native; 10120 int getNumberOfChars() native;
10121 10121
10122 num getRotationOfChar(int offset) native; 10122 num getRotationOfChar(int offset) native;
10123 10123
10124 SVGPointJs getStartPositionOfChar(int offset) native; 10124 _SVGPointJs getStartPositionOfChar(int offset) native;
10125 10125
10126 num getSubStringLength(int offset, int length) native; 10126 num getSubStringLength(int offset, int length) native;
10127 10127
10128 void selectSubString(int offset, int length) native; 10128 void selectSubString(int offset, int length) native;
10129 10129
10130 // From SVGTests 10130 // From SVGTests
10131 10131
10132 SVGStringListJs get requiredExtensions() native "return this.requiredExtension s;"; 10132 _SVGStringListJs get requiredExtensions() native "return this.requiredExtensio ns;";
10133 10133
10134 SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;"; 10134 _SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;" ;
10135 10135
10136 SVGStringListJs get systemLanguage() native "return this.systemLanguage;"; 10136 _SVGStringListJs get systemLanguage() native "return this.systemLanguage;";
10137 10137
10138 bool hasExtension(String extension) native; 10138 bool hasExtension(String extension) native;
10139 10139
10140 // From SVGLangSpace 10140 // From SVGLangSpace
10141 10141
10142 String get xmllang() native "return this.xmllang;"; 10142 String get xmllang() native "return this.xmllang;";
10143 10143
10144 void set xmllang(String value) native "this.xmllang = value;"; 10144 void set xmllang(String value) native "this.xmllang = value;";
10145 10145
10146 String get xmlspace() native "return this.xmlspace;"; 10146 String get xmlspace() native "return this.xmlspace;";
10147 10147
10148 void set xmlspace(String value) native "this.xmlspace = value;"; 10148 void set xmlspace(String value) native "this.xmlspace = value;";
10149 10149
10150 // From SVGExternalResourcesRequired 10150 // From SVGExternalResourcesRequired
10151 10151
10152 SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exter nalResourcesRequired;"; 10152 _SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exte rnalResourcesRequired;";
10153 10153
10154 // From SVGStylable 10154 // From SVGStylable
10155 10155
10156 SVGAnimatedStringJs get className() native "return this.className;"; 10156 _SVGAnimatedStringJs get className() native "return this.className;";
10157 10157
10158 CSSStyleDeclarationJs get style() native "return this.style;"; 10158 _CSSStyleDeclarationJs get style() native "return this.style;";
10159 10159
10160 CSSValueJs getPresentationAttribute(String name) native; 10160 _CSSValueJs getPresentationAttribute(String name) native;
10161 } 10161 }
10162 10162
10163 class SVGTextElementJs extends SVGTextPositioningElementJs implements SVGTextEle ment native "*SVGTextElement" { 10163 class _SVGTextElementJs extends _SVGTextPositioningElementJs implements SVGTextE lement native "*SVGTextElement" {
10164 10164
10165 // From SVGTransformable 10165 // From SVGTransformable
10166 10166
10167 SVGAnimatedTransformListJs get transform() native "return this.transform;"; 10167 _SVGAnimatedTransformListJs get transform() native "return this.transform;";
10168 10168
10169 // From SVGLocatable 10169 // From SVGLocatable
10170 10170
10171 SVGElementJs get farthestViewportElement() native "return this.farthestViewpor tElement;"; 10171 _SVGElementJs get farthestViewportElement() native "return this.farthestViewpo rtElement;";
10172 10172
10173 SVGElementJs get nearestViewportElement() native "return this.nearestViewportE lement;"; 10173 _SVGElementJs get nearestViewportElement() native "return this.nearestViewport Element;";
10174 10174
10175 SVGRectJs getBBox() native; 10175 _SVGRectJs getBBox() native;
10176 10176
10177 SVGMatrixJs getCTM() native; 10177 _SVGMatrixJs getCTM() native;
10178 10178
10179 SVGMatrixJs getScreenCTM() native; 10179 _SVGMatrixJs getScreenCTM() native;
10180 10180
10181 SVGMatrixJs getTransformToElement(SVGElementJs element) native; 10181 _SVGMatrixJs getTransformToElement(_SVGElementJs element) native;
10182 } 10182 }
10183 10183
10184 class SVGTextPathElementJs extends SVGTextContentElementJs implements SVGTextPat hElement native "*SVGTextPathElement" { 10184 class _SVGTextPathElementJs extends _SVGTextContentElementJs implements SVGTextP athElement native "*SVGTextPathElement" {
10185 10185
10186 static final int TEXTPATH_METHODTYPE_ALIGN = 1; 10186 static final int TEXTPATH_METHODTYPE_ALIGN = 1;
10187 10187
10188 static final int TEXTPATH_METHODTYPE_STRETCH = 2; 10188 static final int TEXTPATH_METHODTYPE_STRETCH = 2;
10189 10189
10190 static final int TEXTPATH_METHODTYPE_UNKNOWN = 0; 10190 static final int TEXTPATH_METHODTYPE_UNKNOWN = 0;
10191 10191
10192 static final int TEXTPATH_SPACINGTYPE_AUTO = 1; 10192 static final int TEXTPATH_SPACINGTYPE_AUTO = 1;
10193 10193
10194 static final int TEXTPATH_SPACINGTYPE_EXACT = 2; 10194 static final int TEXTPATH_SPACINGTYPE_EXACT = 2;
10195 10195
10196 static final int TEXTPATH_SPACINGTYPE_UNKNOWN = 0; 10196 static final int TEXTPATH_SPACINGTYPE_UNKNOWN = 0;
10197 10197
10198 SVGAnimatedEnumerationJs get method() native "return this.method;"; 10198 _SVGAnimatedEnumerationJs get method() native "return this.method;";
10199 10199
10200 SVGAnimatedEnumerationJs get spacing() native "return this.spacing;"; 10200 _SVGAnimatedEnumerationJs get spacing() native "return this.spacing;";
10201 10201
10202 SVGAnimatedLengthJs get startOffset() native "return this.startOffset;"; 10202 _SVGAnimatedLengthJs get startOffset() native "return this.startOffset;";
10203 10203
10204 // From SVGURIReference 10204 // From SVGURIReference
10205 10205
10206 SVGAnimatedStringJs get href() native "return this.href;"; 10206 _SVGAnimatedStringJs get href() native "return this.href;";
10207 } 10207 }
10208 10208
10209 class SVGTextPositioningElementJs extends SVGTextContentElementJs implements SVG TextPositioningElement native "*SVGTextPositioningElement" { 10209 class _SVGTextPositioningElementJs extends _SVGTextContentElementJs implements S VGTextPositioningElement native "*SVGTextPositioningElement" {
10210 10210
10211 SVGAnimatedLengthListJs get dx() native "return this.dx;"; 10211 _SVGAnimatedLengthListJs get dx() native "return this.dx;";
10212 10212
10213 SVGAnimatedLengthListJs get dy() native "return this.dy;"; 10213 _SVGAnimatedLengthListJs get dy() native "return this.dy;";
10214 10214
10215 SVGAnimatedNumberListJs get rotate() native "return this.rotate;"; 10215 _SVGAnimatedNumberListJs get rotate() native "return this.rotate;";
10216 10216
10217 SVGAnimatedLengthListJs get x() native "return this.x;"; 10217 _SVGAnimatedLengthListJs get x() native "return this.x;";
10218 10218
10219 SVGAnimatedLengthListJs get y() native "return this.y;"; 10219 _SVGAnimatedLengthListJs get y() native "return this.y;";
10220 } 10220 }
10221 10221
10222 class SVGTitleElementJs extends SVGElementJs implements SVGTitleElement native " *SVGTitleElement" { 10222 class _SVGTitleElementJs extends _SVGElementJs implements SVGTitleElement native "*SVGTitleElement" {
10223 10223
10224 // From SVGLangSpace 10224 // From SVGLangSpace
10225 10225
10226 String get xmllang() native "return this.xmllang;"; 10226 String get xmllang() native "return this.xmllang;";
10227 10227
10228 void set xmllang(String value) native "this.xmllang = value;"; 10228 void set xmllang(String value) native "this.xmllang = value;";
10229 10229
10230 String get xmlspace() native "return this.xmlspace;"; 10230 String get xmlspace() native "return this.xmlspace;";
10231 10231
10232 void set xmlspace(String value) native "this.xmlspace = value;"; 10232 void set xmlspace(String value) native "this.xmlspace = value;";
10233 10233
10234 // From SVGStylable 10234 // From SVGStylable
10235 10235
10236 SVGAnimatedStringJs get className() native "return this.className;"; 10236 _SVGAnimatedStringJs get className() native "return this.className;";
10237 10237
10238 CSSStyleDeclarationJs get style() native "return this.style;"; 10238 _CSSStyleDeclarationJs get style() native "return this.style;";
10239 10239
10240 CSSValueJs getPresentationAttribute(String name) native; 10240 _CSSValueJs getPresentationAttribute(String name) native;
10241 } 10241 }
10242 10242
10243 class SVGTransformJs extends DOMTypeJs implements SVGTransform native "*SVGTrans form" { 10243 class _SVGTransformJs extends _DOMTypeJs implements SVGTransform native "*SVGTra nsform" {
10244 10244
10245 static final int SVG_TRANSFORM_MATRIX = 1; 10245 static final int SVG_TRANSFORM_MATRIX = 1;
10246 10246
10247 static final int SVG_TRANSFORM_ROTATE = 4; 10247 static final int SVG_TRANSFORM_ROTATE = 4;
10248 10248
10249 static final int SVG_TRANSFORM_SCALE = 3; 10249 static final int SVG_TRANSFORM_SCALE = 3;
10250 10250
10251 static final int SVG_TRANSFORM_SKEWX = 5; 10251 static final int SVG_TRANSFORM_SKEWX = 5;
10252 10252
10253 static final int SVG_TRANSFORM_SKEWY = 6; 10253 static final int SVG_TRANSFORM_SKEWY = 6;
10254 10254
10255 static final int SVG_TRANSFORM_TRANSLATE = 2; 10255 static final int SVG_TRANSFORM_TRANSLATE = 2;
10256 10256
10257 static final int SVG_TRANSFORM_UNKNOWN = 0; 10257 static final int SVG_TRANSFORM_UNKNOWN = 0;
10258 10258
10259 num get angle() native "return this.angle;"; 10259 num get angle() native "return this.angle;";
10260 10260
10261 SVGMatrixJs get matrix() native "return this.matrix;"; 10261 _SVGMatrixJs get matrix() native "return this.matrix;";
10262 10262
10263 int get type() native "return this.type;"; 10263 int get type() native "return this.type;";
10264 10264
10265 void setMatrix(SVGMatrixJs matrix) native; 10265 void setMatrix(_SVGMatrixJs matrix) native;
10266 10266
10267 void setRotate(num angle, num cx, num cy) native; 10267 void setRotate(num angle, num cx, num cy) native;
10268 10268
10269 void setScale(num sx, num sy) native; 10269 void setScale(num sx, num sy) native;
10270 10270
10271 void setSkewX(num angle) native; 10271 void setSkewX(num angle) native;
10272 10272
10273 void setSkewY(num angle) native; 10273 void setSkewY(num angle) native;
10274 10274
10275 void setTranslate(num tx, num ty) native; 10275 void setTranslate(num tx, num ty) native;
10276 } 10276 }
10277 10277
10278 class SVGTransformListJs extends DOMTypeJs implements SVGTransformList native "* SVGTransformList" { 10278 class _SVGTransformListJs extends _DOMTypeJs implements SVGTransformList native "*SVGTransformList" {
10279 10279
10280 int get numberOfItems() native "return this.numberOfItems;"; 10280 int get numberOfItems() native "return this.numberOfItems;";
10281 10281
10282 SVGTransformJs appendItem(SVGTransformJs item) native; 10282 _SVGTransformJs appendItem(_SVGTransformJs item) native;
10283 10283
10284 void clear() native; 10284 void clear() native;
10285 10285
10286 SVGTransformJs consolidate() native; 10286 _SVGTransformJs consolidate() native;
10287 10287
10288 SVGTransformJs createSVGTransformFromMatrix(SVGMatrixJs matrix) native; 10288 _SVGTransformJs createSVGTransformFromMatrix(_SVGMatrixJs matrix) native;
10289 10289
10290 SVGTransformJs getItem(int index) native; 10290 _SVGTransformJs getItem(int index) native;
10291 10291
10292 SVGTransformJs initialize(SVGTransformJs item) native; 10292 _SVGTransformJs initialize(_SVGTransformJs item) native;
10293 10293
10294 SVGTransformJs insertItemBefore(SVGTransformJs item, int index) native; 10294 _SVGTransformJs insertItemBefore(_SVGTransformJs item, int index) native;
10295 10295
10296 SVGTransformJs removeItem(int index) native; 10296 _SVGTransformJs removeItem(int index) native;
10297 10297
10298 SVGTransformJs replaceItem(SVGTransformJs item, int index) native; 10298 _SVGTransformJs replaceItem(_SVGTransformJs item, int index) native;
10299 } 10299 }
10300 10300
10301 class SVGTransformableJs extends SVGLocatableJs implements SVGTransformable nati ve "*SVGTransformable" { 10301 class _SVGTransformableJs extends _SVGLocatableJs implements SVGTransformable na tive "*SVGTransformable" {
10302 10302
10303 SVGAnimatedTransformListJs get transform() native "return this.transform;"; 10303 _SVGAnimatedTransformListJs get transform() native "return this.transform;";
10304 } 10304 }
10305 10305
10306 class SVGURIReferenceJs extends DOMTypeJs implements SVGURIReference native "*SV GURIReference" { 10306 class _SVGURIReferenceJs extends _DOMTypeJs implements SVGURIReference native "* SVGURIReference" {
10307 10307
10308 SVGAnimatedStringJs get href() native "return this.href;"; 10308 _SVGAnimatedStringJs get href() native "return this.href;";
10309 } 10309 }
10310 10310
10311 class SVGUnitTypesJs extends DOMTypeJs implements SVGUnitTypes native "*SVGUnitT ypes" { 10311 class _SVGUnitTypesJs extends _DOMTypeJs implements SVGUnitTypes native "*SVGUni tTypes" {
10312 10312
10313 static final int SVG_UNIT_TYPE_OBJECTBOUNDINGBOX = 2; 10313 static final int SVG_UNIT_TYPE_OBJECTBOUNDINGBOX = 2;
10314 10314
10315 static final int SVG_UNIT_TYPE_UNKNOWN = 0; 10315 static final int SVG_UNIT_TYPE_UNKNOWN = 0;
10316 10316
10317 static final int SVG_UNIT_TYPE_USERSPACEONUSE = 1; 10317 static final int SVG_UNIT_TYPE_USERSPACEONUSE = 1;
10318 } 10318 }
10319 10319
10320 class SVGUseElementJs extends SVGElementJs implements SVGUseElement native "*SVG UseElement" { 10320 class _SVGUseElementJs extends _SVGElementJs implements SVGUseElement native "*S VGUseElement" {
10321 10321
10322 SVGElementInstanceJs get animatedInstanceRoot() native "return this.animatedIn stanceRoot;"; 10322 _SVGElementInstanceJs get animatedInstanceRoot() native "return this.animatedI nstanceRoot;";
10323 10323
10324 SVGAnimatedLengthJs get height() native "return this.height;"; 10324 _SVGAnimatedLengthJs get height() native "return this.height;";
10325 10325
10326 SVGElementInstanceJs get instanceRoot() native "return this.instanceRoot;"; 10326 _SVGElementInstanceJs get instanceRoot() native "return this.instanceRoot;";
10327 10327
10328 SVGAnimatedLengthJs get width() native "return this.width;"; 10328 _SVGAnimatedLengthJs get width() native "return this.width;";
10329 10329
10330 SVGAnimatedLengthJs get x() native "return this.x;"; 10330 _SVGAnimatedLengthJs get x() native "return this.x;";
10331 10331
10332 SVGAnimatedLengthJs get y() native "return this.y;"; 10332 _SVGAnimatedLengthJs get y() native "return this.y;";
10333 10333
10334 // From SVGURIReference 10334 // From SVGURIReference
10335 10335
10336 SVGAnimatedStringJs get href() native "return this.href;"; 10336 _SVGAnimatedStringJs get href() native "return this.href;";
10337 10337
10338 // From SVGTests 10338 // From SVGTests
10339 10339
10340 SVGStringListJs get requiredExtensions() native "return this.requiredExtension s;"; 10340 _SVGStringListJs get requiredExtensions() native "return this.requiredExtensio ns;";
10341 10341
10342 SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;"; 10342 _SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;" ;
10343 10343
10344 SVGStringListJs get systemLanguage() native "return this.systemLanguage;"; 10344 _SVGStringListJs get systemLanguage() native "return this.systemLanguage;";
10345 10345
10346 bool hasExtension(String extension) native; 10346 bool hasExtension(String extension) native;
10347 10347
10348 // From SVGLangSpace 10348 // From SVGLangSpace
10349 10349
10350 String get xmllang() native "return this.xmllang;"; 10350 String get xmllang() native "return this.xmllang;";
10351 10351
10352 void set xmllang(String value) native "this.xmllang = value;"; 10352 void set xmllang(String value) native "this.xmllang = value;";
10353 10353
10354 String get xmlspace() native "return this.xmlspace;"; 10354 String get xmlspace() native "return this.xmlspace;";
10355 10355
10356 void set xmlspace(String value) native "this.xmlspace = value;"; 10356 void set xmlspace(String value) native "this.xmlspace = value;";
10357 10357
10358 // From SVGExternalResourcesRequired 10358 // From SVGExternalResourcesRequired
10359 10359
10360 SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exter nalResourcesRequired;"; 10360 _SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exte rnalResourcesRequired;";
10361 10361
10362 // From SVGStylable 10362 // From SVGStylable
10363 10363
10364 SVGAnimatedStringJs get className() native "return this.className;"; 10364 _SVGAnimatedStringJs get className() native "return this.className;";
10365 10365
10366 CSSStyleDeclarationJs get style() native "return this.style;"; 10366 _CSSStyleDeclarationJs get style() native "return this.style;";
10367 10367
10368 CSSValueJs getPresentationAttribute(String name) native; 10368 _CSSValueJs getPresentationAttribute(String name) native;
10369 10369
10370 // From SVGTransformable 10370 // From SVGTransformable
10371 10371
10372 SVGAnimatedTransformListJs get transform() native "return this.transform;"; 10372 _SVGAnimatedTransformListJs get transform() native "return this.transform;";
10373 10373
10374 // From SVGLocatable 10374 // From SVGLocatable
10375 10375
10376 SVGElementJs get farthestViewportElement() native "return this.farthestViewpor tElement;"; 10376 _SVGElementJs get farthestViewportElement() native "return this.farthestViewpo rtElement;";
10377 10377
10378 SVGElementJs get nearestViewportElement() native "return this.nearestViewportE lement;"; 10378 _SVGElementJs get nearestViewportElement() native "return this.nearestViewport Element;";
10379 10379
10380 SVGRectJs getBBox() native; 10380 _SVGRectJs getBBox() native;
10381 10381
10382 SVGMatrixJs getCTM() native; 10382 _SVGMatrixJs getCTM() native;
10383 10383
10384 SVGMatrixJs getScreenCTM() native; 10384 _SVGMatrixJs getScreenCTM() native;
10385 10385
10386 SVGMatrixJs getTransformToElement(SVGElementJs element) native; 10386 _SVGMatrixJs getTransformToElement(_SVGElementJs element) native;
10387 } 10387 }
10388 10388
10389 class SVGVKernElementJs extends SVGElementJs implements SVGVKernElement native " *SVGVKernElement" { 10389 class _SVGVKernElementJs extends _SVGElementJs implements SVGVKernElement native "*SVGVKernElement" {
10390 } 10390 }
10391 10391
10392 class SVGViewElementJs extends SVGElementJs implements SVGViewElement native "*S VGViewElement" { 10392 class _SVGViewElementJs extends _SVGElementJs implements SVGViewElement native " *SVGViewElement" {
10393 10393
10394 SVGStringListJs get viewTarget() native "return this.viewTarget;"; 10394 _SVGStringListJs get viewTarget() native "return this.viewTarget;";
10395 10395
10396 // From SVGExternalResourcesRequired 10396 // From SVGExternalResourcesRequired
10397 10397
10398 SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exter nalResourcesRequired;"; 10398 _SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exte rnalResourcesRequired;";
10399 10399
10400 // From SVGFitToViewBox 10400 // From SVGFitToViewBox
10401 10401
10402 SVGAnimatedPreserveAspectRatioJs get preserveAspectRatio() native "return this .preserveAspectRatio;"; 10402 _SVGAnimatedPreserveAspectRatioJs get preserveAspectRatio() native "return thi s.preserveAspectRatio;";
10403 10403
10404 SVGAnimatedRectJs get viewBox() native "return this.viewBox;"; 10404 _SVGAnimatedRectJs get viewBox() native "return this.viewBox;";
10405 10405
10406 // From SVGZoomAndPan 10406 // From SVGZoomAndPan
10407 10407
10408 int get zoomAndPan() native "return this.zoomAndPan;"; 10408 int get zoomAndPan() native "return this.zoomAndPan;";
10409 10409
10410 void set zoomAndPan(int value) native "this.zoomAndPan = value;"; 10410 void set zoomAndPan(int value) native "this.zoomAndPan = value;";
10411 } 10411 }
10412 10412
10413 class SVGViewSpecJs extends SVGZoomAndPanJs implements SVGViewSpec native "*SVGV iewSpec" { 10413 class _SVGViewSpecJs extends _SVGZoomAndPanJs implements SVGViewSpec native "*SV GViewSpec" {
10414 10414
10415 String get preserveAspectRatioString() native "return this.preserveAspectRatio String;"; 10415 String get preserveAspectRatioString() native "return this.preserveAspectRatio String;";
10416 10416
10417 SVGTransformListJs get transform() native "return this.transform;"; 10417 _SVGTransformListJs get transform() native "return this.transform;";
10418 10418
10419 String get transformString() native "return this.transformString;"; 10419 String get transformString() native "return this.transformString;";
10420 10420
10421 String get viewBoxString() native "return this.viewBoxString;"; 10421 String get viewBoxString() native "return this.viewBoxString;";
10422 10422
10423 SVGElementJs get viewTarget() native "return this.viewTarget;"; 10423 _SVGElementJs get viewTarget() native "return this.viewTarget;";
10424 10424
10425 String get viewTargetString() native "return this.viewTargetString;"; 10425 String get viewTargetString() native "return this.viewTargetString;";
10426 10426
10427 // From SVGFitToViewBox 10427 // From SVGFitToViewBox
10428 10428
10429 SVGAnimatedPreserveAspectRatioJs get preserveAspectRatio() native "return this .preserveAspectRatio;"; 10429 _SVGAnimatedPreserveAspectRatioJs get preserveAspectRatio() native "return thi s.preserveAspectRatio;";
10430 10430
10431 SVGAnimatedRectJs get viewBox() native "return this.viewBox;"; 10431 _SVGAnimatedRectJs get viewBox() native "return this.viewBox;";
10432 } 10432 }
10433 10433
10434 class SVGZoomAndPanJs extends DOMTypeJs implements SVGZoomAndPan native "*SVGZoo mAndPan" { 10434 class _SVGZoomAndPanJs extends _DOMTypeJs implements SVGZoomAndPan native "*SVGZ oomAndPan" {
10435 10435
10436 static final int SVG_ZOOMANDPAN_DISABLE = 1; 10436 static final int SVG_ZOOMANDPAN_DISABLE = 1;
10437 10437
10438 static final int SVG_ZOOMANDPAN_MAGNIFY = 2; 10438 static final int SVG_ZOOMANDPAN_MAGNIFY = 2;
10439 10439
10440 static final int SVG_ZOOMANDPAN_UNKNOWN = 0; 10440 static final int SVG_ZOOMANDPAN_UNKNOWN = 0;
10441 10441
10442 int get zoomAndPan() native "return this.zoomAndPan;"; 10442 int get zoomAndPan() native "return this.zoomAndPan;";
10443 10443
10444 void set zoomAndPan(int value) native "this.zoomAndPan = value;"; 10444 void set zoomAndPan(int value) native "this.zoomAndPan = value;";
10445 } 10445 }
10446 10446
10447 class SVGZoomEventJs extends UIEventJs implements SVGZoomEvent native "*SVGZoomE vent" { 10447 class _SVGZoomEventJs extends _UIEventJs implements SVGZoomEvent native "*SVGZoo mEvent" {
10448 10448
10449 num get newScale() native "return this.newScale;"; 10449 num get newScale() native "return this.newScale;";
10450 10450
10451 SVGPointJs get newTranslate() native "return this.newTranslate;"; 10451 _SVGPointJs get newTranslate() native "return this.newTranslate;";
10452 10452
10453 num get previousScale() native "return this.previousScale;"; 10453 num get previousScale() native "return this.previousScale;";
10454 10454
10455 SVGPointJs get previousTranslate() native "return this.previousTranslate;"; 10455 _SVGPointJs get previousTranslate() native "return this.previousTranslate;";
10456 10456
10457 SVGRectJs get zoomRectScreen() native "return this.zoomRectScreen;"; 10457 _SVGRectJs get zoomRectScreen() native "return this.zoomRectScreen;";
10458 } 10458 }
10459 10459
10460 class ScreenJs extends DOMTypeJs implements Screen native "*Screen" { 10460 class _ScreenJs extends _DOMTypeJs implements Screen native "*Screen" {
10461 10461
10462 int get availHeight() native "return this.availHeight;"; 10462 int get availHeight() native "return this.availHeight;";
10463 10463
10464 int get availLeft() native "return this.availLeft;"; 10464 int get availLeft() native "return this.availLeft;";
10465 10465
10466 int get availTop() native "return this.availTop;"; 10466 int get availTop() native "return this.availTop;";
10467 10467
10468 int get availWidth() native "return this.availWidth;"; 10468 int get availWidth() native "return this.availWidth;";
10469 10469
10470 int get colorDepth() native "return this.colorDepth;"; 10470 int get colorDepth() native "return this.colorDepth;";
10471 10471
10472 int get height() native "return this.height;"; 10472 int get height() native "return this.height;";
10473 10473
10474 int get pixelDepth() native "return this.pixelDepth;"; 10474 int get pixelDepth() native "return this.pixelDepth;";
10475 10475
10476 int get width() native "return this.width;"; 10476 int get width() native "return this.width;";
10477 } 10477 }
10478 10478
10479 class ScriptProfileJs extends DOMTypeJs implements ScriptProfile native "*Script Profile" { 10479 class _ScriptProfileJs extends _DOMTypeJs implements ScriptProfile native "*Scri ptProfile" {
10480 10480
10481 ScriptProfileNodeJs get head() native "return this.head;"; 10481 _ScriptProfileNodeJs get head() native "return this.head;";
10482 10482
10483 String get title() native "return this.title;"; 10483 String get title() native "return this.title;";
10484 10484
10485 int get uid() native "return this.uid;"; 10485 int get uid() native "return this.uid;";
10486 } 10486 }
10487 10487
10488 class ScriptProfileNodeJs extends DOMTypeJs implements ScriptProfileNode native "*ScriptProfileNode" { 10488 class _ScriptProfileNodeJs extends _DOMTypeJs implements ScriptProfileNode nativ e "*ScriptProfileNode" {
10489 10489
10490 int get callUID() native "return this.callUID;"; 10490 int get callUID() native "return this.callUID;";
10491 10491
10492 List get children() native "return this.children;"; 10492 List get children() native "return this.children;";
10493 10493
10494 String get functionName() native "return this.functionName;"; 10494 String get functionName() native "return this.functionName;";
10495 10495
10496 int get lineNumber() native "return this.lineNumber;"; 10496 int get lineNumber() native "return this.lineNumber;";
10497 10497
10498 int get numberOfCalls() native "return this.numberOfCalls;"; 10498 int get numberOfCalls() native "return this.numberOfCalls;";
10499 10499
10500 num get selfTime() native "return this.selfTime;"; 10500 num get selfTime() native "return this.selfTime;";
10501 10501
10502 num get totalTime() native "return this.totalTime;"; 10502 num get totalTime() native "return this.totalTime;";
10503 10503
10504 String get url() native "return this.url;"; 10504 String get url() native "return this.url;";
10505 10505
10506 bool get visible() native "return this.visible;"; 10506 bool get visible() native "return this.visible;";
10507 } 10507 }
10508 10508
10509 class ShadowRootJs extends NodeJs implements ShadowRoot native "*ShadowRoot" { 10509 class _ShadowRootJs extends _NodeJs implements ShadowRoot native "*ShadowRoot" {
10510 10510
10511 ElementJs get host() native "return this.host;"; 10511 _ElementJs get host() native "return this.host;";
10512 } 10512 }
10513 10513
10514 class SharedWorkerJs extends AbstractWorkerJs implements SharedWorker native "*S haredWorker" { 10514 class _SharedWorkerJs extends _AbstractWorkerJs implements SharedWorker native " *SharedWorker" {
10515 10515
10516 MessagePortJs get port() native "return this.port;"; 10516 _MessagePortJs get port() native "return this.port;";
10517 } 10517 }
10518 10518
10519 class SharedWorkerContextJs extends WorkerContextJs implements SharedWorkerConte xt native "*SharedWorkerContext" { 10519 class _SharedWorkerContextJs extends _WorkerContextJs implements SharedWorkerCon text native "*SharedWorkerContext" {
10520 10520
10521 String get name() native "return this.name;"; 10521 String get name() native "return this.name;";
10522 10522
10523 EventListener get onconnect() native "return this.onconnect;"; 10523 EventListener get onconnect() native "return this.onconnect;";
10524 10524
10525 void set onconnect(EventListener value) native "this.onconnect = value;"; 10525 void set onconnect(EventListener value) native "this.onconnect = value;";
10526 } 10526 }
10527 10527
10528 class SpeechInputEventJs extends EventJs implements SpeechInputEvent native "*Sp eechInputEvent" { 10528 class _SpeechInputEventJs extends _EventJs implements SpeechInputEvent native "* SpeechInputEvent" {
10529 10529
10530 SpeechInputResultListJs get results() native "return this.results;"; 10530 _SpeechInputResultListJs get results() native "return this.results;";
10531 } 10531 }
10532 10532
10533 class SpeechInputResultJs extends DOMTypeJs implements SpeechInputResult native "*SpeechInputResult" { 10533 class _SpeechInputResultJs extends _DOMTypeJs implements SpeechInputResult nativ e "*SpeechInputResult" {
10534 10534
10535 num get confidence() native "return this.confidence;"; 10535 num get confidence() native "return this.confidence;";
10536 10536
10537 String get utterance() native "return this.utterance;"; 10537 String get utterance() native "return this.utterance;";
10538 } 10538 }
10539 10539
10540 class SpeechInputResultListJs extends DOMTypeJs implements SpeechInputResultList native "*SpeechInputResultList" { 10540 class _SpeechInputResultListJs extends _DOMTypeJs implements SpeechInputResultLi st native "*SpeechInputResultList" {
10541 10541
10542 int get length() native "return this.length;"; 10542 int get length() native "return this.length;";
10543 10543
10544 SpeechInputResultJs item(int index) native; 10544 _SpeechInputResultJs item(int index) native;
10545 } 10545 }
10546 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 10546 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
10547 // for details. All rights reserved. Use of this source code is governed by a 10547 // for details. All rights reserved. Use of this source code is governed by a
10548 // BSD-style license that can be found in the LICENSE file. 10548 // BSD-style license that can be found in the LICENSE file.
10549 10549
10550 class StorageJs extends DOMTypeJs implements Storage native "*Storage" { 10550 class _StorageJs extends _DOMTypeJs implements Storage native "*Storage" {
10551 10551
10552 int get length() native "return this.length;"; 10552 int get length() native "return this.length;";
10553 10553
10554 void clear() native; 10554 void clear() native;
10555 10555
10556 String getItem(String key) native; 10556 String getItem(String key) native;
10557 10557
10558 String key(int index) native; 10558 String key(int index) native;
10559 10559
10560 void removeItem(String key) native; 10560 void removeItem(String key) native;
(...skipping 17 matching lines...) Expand all
10578 void set dartObjectLocalStorage(var value) native """ 10578 void set dartObjectLocalStorage(var value) native """
10579 if (this === window.localStorage) 10579 if (this === window.localStorage)
10580 window._dartLocalStorageLocalStorage = value; 10580 window._dartLocalStorageLocalStorage = value;
10581 else if (this === window.sessionStorage) 10581 else if (this === window.sessionStorage)
10582 window._dartSessionStorageLocalStorage = value; 10582 window._dartSessionStorageLocalStorage = value;
10583 else 10583 else
10584 throw new UnsupportedOperationException('Cannot dartObjectLocalStorage for unknown Storage object.'); 10584 throw new UnsupportedOperationException('Cannot dartObjectLocalStorage for unknown Storage object.');
10585 """ { throw new UnsupportedOperationException(''); } 10585 """ { throw new UnsupportedOperationException(''); }
10586 } 10586 }
10587 10587
10588 class StorageEventJs extends EventJs implements StorageEvent native "*StorageEve nt" { 10588 class _StorageEventJs extends _EventJs implements StorageEvent native "*StorageE vent" {
10589 10589
10590 String get key() native "return this.key;"; 10590 String get key() native "return this.key;";
10591 10591
10592 String get newValue() native "return this.newValue;"; 10592 String get newValue() native "return this.newValue;";
10593 10593
10594 String get oldValue() native "return this.oldValue;"; 10594 String get oldValue() native "return this.oldValue;";
10595 10595
10596 StorageJs get storageArea() native "return this.storageArea;"; 10596 _StorageJs get storageArea() native "return this.storageArea;";
10597 10597
10598 String get url() native "return this.url;"; 10598 String get url() native "return this.url;";
10599 10599
10600 void initStorageEvent(String typeArg, bool canBubbleArg, bool cancelableArg, S tring keyArg, String oldValueArg, String newValueArg, String urlArg, StorageJs s torageAreaArg) native; 10600 void initStorageEvent(String typeArg, bool canBubbleArg, bool cancelableArg, S tring keyArg, String oldValueArg, String newValueArg, String urlArg, _StorageJs storageAreaArg) native;
10601 } 10601 }
10602 10602
10603 class StorageInfoJs extends DOMTypeJs implements StorageInfo native "*StorageInf o" { 10603 class _StorageInfoJs extends _DOMTypeJs implements StorageInfo native "*StorageI nfo" {
10604 10604
10605 static final int PERSISTENT = 1; 10605 static final int PERSISTENT = 1;
10606 10606
10607 static final int TEMPORARY = 0; 10607 static final int TEMPORARY = 0;
10608 10608
10609 void queryUsageAndQuota(int storageType, [StorageInfoUsageCallback usageCallba ck = null, StorageInfoErrorCallback errorCallback = null]) native; 10609 void queryUsageAndQuota(int storageType, [StorageInfoUsageCallback usageCallba ck = null, StorageInfoErrorCallback errorCallback = null]) native;
10610 10610
10611 void requestQuota(int storageType, int newQuotaInBytes, [StorageInfoQuotaCallb ack quotaCallback = null, StorageInfoErrorCallback errorCallback = null]) native ; 10611 void requestQuota(int storageType, int newQuotaInBytes, [StorageInfoQuotaCallb ack quotaCallback = null, StorageInfoErrorCallback errorCallback = null]) native ;
10612 } 10612 }
10613 10613
10614 class StyleMediaJs extends DOMTypeJs implements StyleMedia native "*StyleMedia" { 10614 class _StyleMediaJs extends _DOMTypeJs implements StyleMedia native "*StyleMedia " {
10615 10615
10616 String get type() native "return this.type;"; 10616 String get type() native "return this.type;";
10617 10617
10618 bool matchMedium(String mediaquery) native; 10618 bool matchMedium(String mediaquery) native;
10619 } 10619 }
10620 10620
10621 class StyleSheetJs extends DOMTypeJs implements StyleSheet native "*StyleSheet" { 10621 class _StyleSheetJs extends _DOMTypeJs implements StyleSheet native "*StyleSheet " {
10622 10622
10623 bool get disabled() native "return this.disabled;"; 10623 bool get disabled() native "return this.disabled;";
10624 10624
10625 void set disabled(bool value) native "this.disabled = value;"; 10625 void set disabled(bool value) native "this.disabled = value;";
10626 10626
10627 String get href() native "return this.href;"; 10627 String get href() native "return this.href;";
10628 10628
10629 MediaListJs get media() native "return this.media;"; 10629 _MediaListJs get media() native "return this.media;";
10630 10630
10631 NodeJs get ownerNode() native "return this.ownerNode;"; 10631 _NodeJs get ownerNode() native "return this.ownerNode;";
10632 10632
10633 StyleSheetJs get parentStyleSheet() native "return this.parentStyleSheet;"; 10633 _StyleSheetJs get parentStyleSheet() native "return this.parentStyleSheet;";
10634 10634
10635 String get title() native "return this.title;"; 10635 String get title() native "return this.title;";
10636 10636
10637 String get type() native "return this.type;"; 10637 String get type() native "return this.type;";
10638 } 10638 }
10639 10639
10640 class StyleSheetListJs extends DOMTypeJs implements StyleSheetList native "*Styl eSheetList" { 10640 class _StyleSheetListJs extends _DOMTypeJs implements StyleSheetList native "*St yleSheetList" {
10641 10641
10642 int get length() native "return this.length;"; 10642 int get length() native "return this.length;";
10643 10643
10644 StyleSheetJs operator[](int index) native "return this[index];"; 10644 _StyleSheetJs operator[](int index) native "return this[index];";
10645 10645
10646 void operator[]=(int index, StyleSheetJs value) { 10646 void operator[]=(int index, _StyleSheetJs value) {
10647 throw new UnsupportedOperationException("Cannot assign element of immutable List."); 10647 throw new UnsupportedOperationException("Cannot assign element of immutable List.");
10648 } 10648 }
10649 // -- start List<StyleSheet> mixins. 10649 // -- start List<StyleSheet> mixins.
10650 // StyleSheet is the element type. 10650 // StyleSheet is the element type.
10651 10651
10652 // From Iterable<StyleSheet>: 10652 // From Iterable<StyleSheet>:
10653 10653
10654 Iterator<StyleSheet> iterator() { 10654 Iterator<StyleSheet> iterator() {
10655 // Note: NodeLists are not fixed size. And most probably length shouldn't 10655 // Note: NodeLists are not fixed size. And most probably length shouldn't
10656 // be cached in both iterator _and_ forEach method. For now caching it 10656 // be cached in both iterator _and_ forEach method. For now caching it
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
10707 throw new UnsupportedOperationException("Cannot removeRange on immutable Lis t."); 10707 throw new UnsupportedOperationException("Cannot removeRange on immutable Lis t.");
10708 } 10708 }
10709 void insertRange(int start, int length, [StyleSheet initialValue]) { 10709 void insertRange(int start, int length, [StyleSheet initialValue]) {
10710 throw new UnsupportedOperationException("Cannot insertRange on immutable Lis t."); 10710 throw new UnsupportedOperationException("Cannot insertRange on immutable Lis t.");
10711 } 10711 }
10712 List<StyleSheet> getRange(int start, int length) => 10712 List<StyleSheet> getRange(int start, int length) =>
10713 _Lists.getRange(this, start, length, <StyleSheet>[]); 10713 _Lists.getRange(this, start, length, <StyleSheet>[]);
10714 10714
10715 // -- end List<StyleSheet> mixins. 10715 // -- end List<StyleSheet> mixins.
10716 10716
10717 StyleSheetJs item(int index) native; 10717 _StyleSheetJs item(int index) native;
10718 } 10718 }
10719 10719
10720 class TextJs extends CharacterDataJs implements Text native "*Text" { 10720 class _TextJs extends _CharacterDataJs implements Text native "*Text" {
10721 10721
10722 String get wholeText() native "return this.wholeText;"; 10722 String get wholeText() native "return this.wholeText;";
10723 10723
10724 TextJs replaceWholeText(String content) native; 10724 _TextJs replaceWholeText(String content) native;
10725 10725
10726 TextJs splitText(int offset) native; 10726 _TextJs splitText(int offset) native;
10727 } 10727 }
10728 10728
10729 class TextEventJs extends UIEventJs implements TextEvent native "*TextEvent" { 10729 class _TextEventJs extends _UIEventJs implements TextEvent native "*TextEvent" {
10730 10730
10731 String get data() native "return this.data;"; 10731 String get data() native "return this.data;";
10732 10732
10733 void initTextEvent(String typeArg, bool canBubbleArg, bool cancelableArg, DOMW indowJs viewArg, String dataArg) native; 10733 void initTextEvent(String typeArg, bool canBubbleArg, bool cancelableArg, _DOM WindowJs viewArg, String dataArg) native;
10734 } 10734 }
10735 10735
10736 class TextMetricsJs extends DOMTypeJs implements TextMetrics native "*TextMetric s" { 10736 class _TextMetricsJs extends _DOMTypeJs implements TextMetrics native "*TextMetr ics" {
10737 10737
10738 num get width() native "return this.width;"; 10738 num get width() native "return this.width;";
10739 } 10739 }
10740 10740
10741 class TextTrackJs extends DOMTypeJs implements TextTrack native "*TextTrack" { 10741 class _TextTrackJs extends _DOMTypeJs implements TextTrack native "*TextTrack" {
10742 10742
10743 static final int DISABLED = 0; 10743 static final int DISABLED = 0;
10744 10744
10745 static final int HIDDEN = 1; 10745 static final int HIDDEN = 1;
10746 10746
10747 static final int SHOWING = 2; 10747 static final int SHOWING = 2;
10748 10748
10749 TextTrackCueListJs get activeCues() native "return this.activeCues;"; 10749 _TextTrackCueListJs get activeCues() native "return this.activeCues;";
10750 10750
10751 TextTrackCueListJs get cues() native "return this.cues;"; 10751 _TextTrackCueListJs get cues() native "return this.cues;";
10752 10752
10753 String get kind() native "return this.kind;"; 10753 String get kind() native "return this.kind;";
10754 10754
10755 String get label() native "return this.label;"; 10755 String get label() native "return this.label;";
10756 10756
10757 String get language() native "return this.language;"; 10757 String get language() native "return this.language;";
10758 10758
10759 int get mode() native "return this.mode;"; 10759 int get mode() native "return this.mode;";
10760 10760
10761 void set mode(int value) native "this.mode = value;"; 10761 void set mode(int value) native "this.mode = value;";
10762 10762
10763 EventListener get oncuechange() native "return this.oncuechange;"; 10763 EventListener get oncuechange() native "return this.oncuechange;";
10764 10764
10765 void set oncuechange(EventListener value) native "this.oncuechange = value;"; 10765 void set oncuechange(EventListener value) native "this.oncuechange = value;";
10766 10766
10767 void addCue(TextTrackCueJs cue) native; 10767 void addCue(_TextTrackCueJs cue) native;
10768 10768
10769 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native; 10769 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
10770 10770
10771 bool dispatchEvent(EventJs evt) native; 10771 bool dispatchEvent(_EventJs evt) native;
10772 10772
10773 void removeCue(TextTrackCueJs cue) native; 10773 void removeCue(_TextTrackCueJs cue) native;
10774 10774
10775 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native; 10775 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
10776 } 10776 }
10777 10777
10778 class TextTrackCueJs extends DOMTypeJs implements TextTrackCue native "*TextTrac kCue" { 10778 class _TextTrackCueJs extends _DOMTypeJs implements TextTrackCue native "*TextTr ackCue" {
10779 10779
10780 String get alignment() native "return this.alignment;"; 10780 String get alignment() native "return this.alignment;";
10781 10781
10782 void set alignment(String value) native "this.alignment = value;"; 10782 void set alignment(String value) native "this.alignment = value;";
10783 10783
10784 String get direction() native "return this.direction;"; 10784 String get direction() native "return this.direction;";
10785 10785
10786 void set direction(String value) native "this.direction = value;"; 10786 void set direction(String value) native "this.direction = value;";
10787 10787
10788 num get endTime() native "return this.endTime;"; 10788 num get endTime() native "return this.endTime;";
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
10822 void set startTime(num value) native "this.startTime = value;"; 10822 void set startTime(num value) native "this.startTime = value;";
10823 10823
10824 String get text() native "return this.text;"; 10824 String get text() native "return this.text;";
10825 10825
10826 void set text(String value) native "this.text = value;"; 10826 void set text(String value) native "this.text = value;";
10827 10827
10828 int get textPosition() native "return this.textPosition;"; 10828 int get textPosition() native "return this.textPosition;";
10829 10829
10830 void set textPosition(int value) native "this.textPosition = value;"; 10830 void set textPosition(int value) native "this.textPosition = value;";
10831 10831
10832 TextTrackJs get track() native "return this.track;"; 10832 _TextTrackJs get track() native "return this.track;";
10833 10833
10834 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native; 10834 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
10835 10835
10836 bool dispatchEvent(EventJs evt) native; 10836 bool dispatchEvent(_EventJs evt) native;
10837 10837
10838 DocumentFragmentJs getCueAsHTML() native; 10838 _DocumentFragmentJs getCueAsHTML() native;
10839 10839
10840 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native; 10840 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
10841 } 10841 }
10842 10842
10843 class TextTrackCueListJs extends DOMTypeJs implements TextTrackCueList native "* TextTrackCueList" { 10843 class _TextTrackCueListJs extends _DOMTypeJs implements TextTrackCueList native "*TextTrackCueList" {
10844 10844
10845 int get length() native "return this.length;"; 10845 int get length() native "return this.length;";
10846 10846
10847 TextTrackCueJs getCueById(String id) native; 10847 _TextTrackCueJs getCueById(String id) native;
10848 10848
10849 TextTrackCueJs item(int index) native; 10849 _TextTrackCueJs item(int index) native;
10850 } 10850 }
10851 10851
10852 class TextTrackListJs extends DOMTypeJs implements TextTrackList native "*TextTr ackList" { 10852 class _TextTrackListJs extends _DOMTypeJs implements TextTrackList native "*Text TrackList" {
10853 10853
10854 int get length() native "return this.length;"; 10854 int get length() native "return this.length;";
10855 10855
10856 EventListener get onaddtrack() native "return this.onaddtrack;"; 10856 EventListener get onaddtrack() native "return this.onaddtrack;";
10857 10857
10858 void set onaddtrack(EventListener value) native "this.onaddtrack = value;"; 10858 void set onaddtrack(EventListener value) native "this.onaddtrack = value;";
10859 10859
10860 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native; 10860 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
10861 10861
10862 bool dispatchEvent(EventJs evt) native; 10862 bool dispatchEvent(_EventJs evt) native;
10863 10863
10864 TextTrackJs item(int index) native; 10864 _TextTrackJs item(int index) native;
10865 10865
10866 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native; 10866 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
10867 } 10867 }
10868 10868
10869 class TimeRangesJs extends DOMTypeJs implements TimeRanges native "*TimeRanges" { 10869 class _TimeRangesJs extends _DOMTypeJs implements TimeRanges native "*TimeRanges " {
10870 10870
10871 int get length() native "return this.length;"; 10871 int get length() native "return this.length;";
10872 10872
10873 num end(int index) native; 10873 num end(int index) native;
10874 10874
10875 num start(int index) native; 10875 num start(int index) native;
10876 } 10876 }
10877 10877
10878 class TouchJs extends DOMTypeJs implements Touch native "*Touch" { 10878 class _TouchJs extends _DOMTypeJs implements Touch native "*Touch" {
10879 10879
10880 int get clientX() native "return this.clientX;"; 10880 int get clientX() native "return this.clientX;";
10881 10881
10882 int get clientY() native "return this.clientY;"; 10882 int get clientY() native "return this.clientY;";
10883 10883
10884 int get identifier() native "return this.identifier;"; 10884 int get identifier() native "return this.identifier;";
10885 10885
10886 int get pageX() native "return this.pageX;"; 10886 int get pageX() native "return this.pageX;";
10887 10887
10888 int get pageY() native "return this.pageY;"; 10888 int get pageY() native "return this.pageY;";
10889 10889
10890 int get screenX() native "return this.screenX;"; 10890 int get screenX() native "return this.screenX;";
10891 10891
10892 int get screenY() native "return this.screenY;"; 10892 int get screenY() native "return this.screenY;";
10893 10893
10894 EventTargetJs get target() native "return this.target;"; 10894 _EventTargetJs get target() native "return this.target;";
10895 10895
10896 num get webkitForce() native "return this.webkitForce;"; 10896 num get webkitForce() native "return this.webkitForce;";
10897 10897
10898 int get webkitRadiusX() native "return this.webkitRadiusX;"; 10898 int get webkitRadiusX() native "return this.webkitRadiusX;";
10899 10899
10900 int get webkitRadiusY() native "return this.webkitRadiusY;"; 10900 int get webkitRadiusY() native "return this.webkitRadiusY;";
10901 10901
10902 num get webkitRotationAngle() native "return this.webkitRotationAngle;"; 10902 num get webkitRotationAngle() native "return this.webkitRotationAngle;";
10903 } 10903 }
10904 10904
10905 class TouchEventJs extends UIEventJs implements TouchEvent native "*TouchEvent" { 10905 class _TouchEventJs extends _UIEventJs implements TouchEvent native "*TouchEvent " {
10906 10906
10907 bool get altKey() native "return this.altKey;"; 10907 bool get altKey() native "return this.altKey;";
10908 10908
10909 TouchListJs get changedTouches() native "return this.changedTouches;"; 10909 _TouchListJs get changedTouches() native "return this.changedTouches;";
10910 10910
10911 bool get ctrlKey() native "return this.ctrlKey;"; 10911 bool get ctrlKey() native "return this.ctrlKey;";
10912 10912
10913 bool get metaKey() native "return this.metaKey;"; 10913 bool get metaKey() native "return this.metaKey;";
10914 10914
10915 bool get shiftKey() native "return this.shiftKey;"; 10915 bool get shiftKey() native "return this.shiftKey;";
10916 10916
10917 TouchListJs get targetTouches() native "return this.targetTouches;"; 10917 _TouchListJs get targetTouches() native "return this.targetTouches;";
10918 10918
10919 TouchListJs get touches() native "return this.touches;"; 10919 _TouchListJs get touches() native "return this.touches;";
10920 10920
10921 void initTouchEvent(TouchListJs touches, TouchListJs targetTouches, TouchListJ s changedTouches, String type, DOMWindowJs view, int screenX, int screenY, int c lientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) nat ive; 10921 void initTouchEvent(_TouchListJs touches, _TouchListJs targetTouches, _TouchLi stJs changedTouches, String type, _DOMWindowJs view, int screenX, int screenY, i nt clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) native;
10922 } 10922 }
10923 10923
10924 class TouchListJs extends DOMTypeJs implements TouchList native "*TouchList" { 10924 class _TouchListJs extends _DOMTypeJs implements TouchList native "*TouchList" {
10925 10925
10926 int get length() native "return this.length;"; 10926 int get length() native "return this.length;";
10927 10927
10928 TouchJs operator[](int index) native "return this[index];"; 10928 _TouchJs operator[](int index) native "return this[index];";
10929 10929
10930 void operator[]=(int index, TouchJs value) { 10930 void operator[]=(int index, _TouchJs value) {
10931 throw new UnsupportedOperationException("Cannot assign element of immutable List."); 10931 throw new UnsupportedOperationException("Cannot assign element of immutable List.");
10932 } 10932 }
10933 // -- start List<Touch> mixins. 10933 // -- start List<Touch> mixins.
10934 // Touch is the element type. 10934 // Touch is the element type.
10935 10935
10936 // From Iterable<Touch>: 10936 // From Iterable<Touch>:
10937 10937
10938 Iterator<Touch> iterator() { 10938 Iterator<Touch> iterator() {
10939 // Note: NodeLists are not fixed size. And most probably length shouldn't 10939 // Note: NodeLists are not fixed size. And most probably length shouldn't
10940 // be cached in both iterator _and_ forEach method. For now caching it 10940 // be cached in both iterator _and_ forEach method. For now caching it
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
10991 throw new UnsupportedOperationException("Cannot removeRange on immutable Lis t."); 10991 throw new UnsupportedOperationException("Cannot removeRange on immutable Lis t.");
10992 } 10992 }
10993 void insertRange(int start, int length, [Touch initialValue]) { 10993 void insertRange(int start, int length, [Touch initialValue]) {
10994 throw new UnsupportedOperationException("Cannot insertRange on immutable Lis t."); 10994 throw new UnsupportedOperationException("Cannot insertRange on immutable Lis t.");
10995 } 10995 }
10996 List<Touch> getRange(int start, int length) => 10996 List<Touch> getRange(int start, int length) =>
10997 _Lists.getRange(this, start, length, <Touch>[]); 10997 _Lists.getRange(this, start, length, <Touch>[]);
10998 10998
10999 // -- end List<Touch> mixins. 10999 // -- end List<Touch> mixins.
11000 11000
11001 TouchJs item(int index) native; 11001 _TouchJs item(int index) native;
11002 } 11002 }
11003 11003
11004 class TrackEventJs extends EventJs implements TrackEvent native "*TrackEvent" { 11004 class _TrackEventJs extends _EventJs implements TrackEvent native "*TrackEvent" {
11005 11005
11006 Object get track() native "return this.track;"; 11006 Object get track() native "return this.track;";
11007 } 11007 }
11008 11008
11009 class TreeWalkerJs extends DOMTypeJs implements TreeWalker native "*TreeWalker" { 11009 class _TreeWalkerJs extends _DOMTypeJs implements TreeWalker native "*TreeWalker " {
11010 11010
11011 NodeJs get currentNode() native "return this.currentNode;"; 11011 _NodeJs get currentNode() native "return this.currentNode;";
11012 11012
11013 void set currentNode(NodeJs value) native "this.currentNode = value;"; 11013 void set currentNode(_NodeJs value) native "this.currentNode = value;";
11014 11014
11015 bool get expandEntityReferences() native "return this.expandEntityReferences;" ; 11015 bool get expandEntityReferences() native "return this.expandEntityReferences;" ;
11016 11016
11017 NodeFilterJs get filter() native "return this.filter;"; 11017 _NodeFilterJs get filter() native "return this.filter;";
11018 11018
11019 NodeJs get root() native "return this.root;"; 11019 _NodeJs get root() native "return this.root;";
11020 11020
11021 int get whatToShow() native "return this.whatToShow;"; 11021 int get whatToShow() native "return this.whatToShow;";
11022 11022
11023 NodeJs firstChild() native; 11023 _NodeJs firstChild() native;
11024 11024
11025 NodeJs lastChild() native; 11025 _NodeJs lastChild() native;
11026 11026
11027 NodeJs nextNode() native; 11027 _NodeJs nextNode() native;
11028 11028
11029 NodeJs nextSibling() native; 11029 _NodeJs nextSibling() native;
11030 11030
11031 NodeJs parentNode() native; 11031 _NodeJs parentNode() native;
11032 11032
11033 NodeJs previousNode() native; 11033 _NodeJs previousNode() native;
11034 11034
11035 NodeJs previousSibling() native; 11035 _NodeJs previousSibling() native;
11036 } 11036 }
11037 11037
11038 class UIEventJs extends EventJs implements UIEvent native "*UIEvent" { 11038 class _UIEventJs extends _EventJs implements UIEvent native "*UIEvent" {
11039 11039
11040 int get charCode() native "return this.charCode;"; 11040 int get charCode() native "return this.charCode;";
11041 11041
11042 int get detail() native "return this.detail;"; 11042 int get detail() native "return this.detail;";
11043 11043
11044 int get keyCode() native "return this.keyCode;"; 11044 int get keyCode() native "return this.keyCode;";
11045 11045
11046 int get layerX() native "return this.layerX;"; 11046 int get layerX() native "return this.layerX;";
11047 11047
11048 int get layerY() native "return this.layerY;"; 11048 int get layerY() native "return this.layerY;";
11049 11049
11050 int get pageX() native "return this.pageX;"; 11050 int get pageX() native "return this.pageX;";
11051 11051
11052 int get pageY() native "return this.pageY;"; 11052 int get pageY() native "return this.pageY;";
11053 11053
11054 DOMWindowJs get view() native "return this.view;"; 11054 _DOMWindowJs get view() native "return this.view;";
11055 11055
11056 int get which() native "return this.which;"; 11056 int get which() native "return this.which;";
11057 11057
11058 void initUIEvent(String type, bool canBubble, bool cancelable, DOMWindowJs vie w, int detail) native; 11058 void initUIEvent(String type, bool canBubble, bool cancelable, _DOMWindowJs vi ew, int detail) native;
11059 } 11059 }
11060 11060
11061 class Uint16ArrayJs extends ArrayBufferViewJs implements Uint16Array, List<int> native "*Uint16Array" { 11061 class _Uint16ArrayJs extends _ArrayBufferViewJs implements Uint16Array, List<int > native "*Uint16Array" {
11062 11062
11063 factory Uint16Array(int length) => _construct_Uint16Array(length); 11063 factory Uint16Array(int length) => _construct_Uint16Array(length);
11064 11064
11065 factory Uint16Array.fromList(List<int> list) => _construct_Uint16Array(list); 11065 factory Uint16Array.fromList(List<int> list) => _construct_Uint16Array(list);
11066 11066
11067 factory Uint16Array.fromBuffer(ArrayBuffer buffer) => _construct_Uint16Array(b uffer); 11067 factory Uint16Array.fromBuffer(ArrayBuffer buffer) => _construct_Uint16Array(b uffer);
11068 11068
11069 static _construct_Uint16Array(arg) native 'return new Uint16Array(arg);'; 11069 static _construct_Uint16Array(arg) native 'return new Uint16Array(arg);';
11070 11070
11071 static final int BYTES_PER_ELEMENT = 2; 11071 static final int BYTES_PER_ELEMENT = 2;
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
11138 void insertRange(int start, int length, [int initialValue]) { 11138 void insertRange(int start, int length, [int initialValue]) {
11139 throw new UnsupportedOperationException("Cannot insertRange on immutable Lis t."); 11139 throw new UnsupportedOperationException("Cannot insertRange on immutable Lis t.");
11140 } 11140 }
11141 List<int> getRange(int start, int length) => 11141 List<int> getRange(int start, int length) =>
11142 _Lists.getRange(this, start, length, <int>[]); 11142 _Lists.getRange(this, start, length, <int>[]);
11143 11143
11144 // -- end List<int> mixins. 11144 // -- end List<int> mixins.
11145 11145
11146 void setElements(Object array, [int offset = null]) native; 11146 void setElements(Object array, [int offset = null]) native;
11147 11147
11148 Uint16ArrayJs subarray(int start, [int end = null]) native; 11148 _Uint16ArrayJs subarray(int start, [int end = null]) native;
11149 } 11149 }
11150 11150
11151 class Uint32ArrayJs extends ArrayBufferViewJs implements Uint32Array, List<int> native "*Uint32Array" { 11151 class _Uint32ArrayJs extends _ArrayBufferViewJs implements Uint32Array, List<int > native "*Uint32Array" {
11152 11152
11153 factory Uint32Array(int length) => _construct_Uint32Array(length); 11153 factory Uint32Array(int length) => _construct_Uint32Array(length);
11154 11154
11155 factory Uint32Array.fromList(List<int> list) => _construct_Uint32Array(list); 11155 factory Uint32Array.fromList(List<int> list) => _construct_Uint32Array(list);
11156 11156
11157 factory Uint32Array.fromBuffer(ArrayBuffer buffer) => _construct_Uint32Array(b uffer); 11157 factory Uint32Array.fromBuffer(ArrayBuffer buffer) => _construct_Uint32Array(b uffer);
11158 11158
11159 static _construct_Uint32Array(arg) native 'return new Uint32Array(arg);'; 11159 static _construct_Uint32Array(arg) native 'return new Uint32Array(arg);';
11160 11160
11161 static final int BYTES_PER_ELEMENT = 4; 11161 static final int BYTES_PER_ELEMENT = 4;
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
11228 void insertRange(int start, int length, [int initialValue]) { 11228 void insertRange(int start, int length, [int initialValue]) {
11229 throw new UnsupportedOperationException("Cannot insertRange on immutable Lis t."); 11229 throw new UnsupportedOperationException("Cannot insertRange on immutable Lis t.");
11230 } 11230 }
11231 List<int> getRange(int start, int length) => 11231 List<int> getRange(int start, int length) =>
11232 _Lists.getRange(this, start, length, <int>[]); 11232 _Lists.getRange(this, start, length, <int>[]);
11233 11233
11234 // -- end List<int> mixins. 11234 // -- end List<int> mixins.
11235 11235
11236 void setElements(Object array, [int offset = null]) native; 11236 void setElements(Object array, [int offset = null]) native;
11237 11237
11238 Uint32ArrayJs subarray(int start, [int end = null]) native; 11238 _Uint32ArrayJs subarray(int start, [int end = null]) native;
11239 } 11239 }
11240 11240
11241 class Uint8ArrayJs extends ArrayBufferViewJs implements Uint8Array, List<int> na tive "*Uint8Array" { 11241 class _Uint8ArrayJs extends _ArrayBufferViewJs implements Uint8Array, List<int> native "*Uint8Array" {
11242 11242
11243 factory Uint8Array(int length) => _construct_Uint8Array(length); 11243 factory Uint8Array(int length) => _construct_Uint8Array(length);
11244 11244
11245 factory Uint8Array.fromList(List<int> list) => _construct_Uint8Array(list); 11245 factory Uint8Array.fromList(List<int> list) => _construct_Uint8Array(list);
11246 11246
11247 factory Uint8Array.fromBuffer(ArrayBuffer buffer) => _construct_Uint8Array(buf fer); 11247 factory Uint8Array.fromBuffer(ArrayBuffer buffer) => _construct_Uint8Array(buf fer);
11248 11248
11249 static _construct_Uint8Array(arg) native 'return new Uint8Array(arg);'; 11249 static _construct_Uint8Array(arg) native 'return new Uint8Array(arg);';
11250 11250
11251 static final int BYTES_PER_ELEMENT = 1; 11251 static final int BYTES_PER_ELEMENT = 1;
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
11318 void insertRange(int start, int length, [int initialValue]) { 11318 void insertRange(int start, int length, [int initialValue]) {
11319 throw new UnsupportedOperationException("Cannot insertRange on immutable Lis t."); 11319 throw new UnsupportedOperationException("Cannot insertRange on immutable Lis t.");
11320 } 11320 }
11321 List<int> getRange(int start, int length) => 11321 List<int> getRange(int start, int length) =>
11322 _Lists.getRange(this, start, length, <int>[]); 11322 _Lists.getRange(this, start, length, <int>[]);
11323 11323
11324 // -- end List<int> mixins. 11324 // -- end List<int> mixins.
11325 11325
11326 void setElements(Object array, [int offset = null]) native; 11326 void setElements(Object array, [int offset = null]) native;
11327 11327
11328 Uint8ArrayJs subarray(int start, [int end = null]) native; 11328 _Uint8ArrayJs subarray(int start, [int end = null]) native;
11329 } 11329 }
11330 11330
11331 class Uint8ClampedArrayJs extends Uint8ArrayJs implements Uint8ClampedArray, Lis t<int> native "*Uint8ClampedArray" { 11331 class _Uint8ClampedArrayJs extends _Uint8ArrayJs implements Uint8ClampedArray, L ist<int> native "*Uint8ClampedArray" {
11332 11332
11333 factory Uint8ClampedArray(int length) => _construct_Uint8ClampedArray(length) ; 11333 factory Uint8ClampedArray(int length) => _construct_Uint8ClampedArray(length) ;
11334 11334
11335 factory Uint8ClampedArray.fromList(List<int> list) => _construct_Uint8ClampedA rray(list); 11335 factory Uint8ClampedArray.fromList(List<int> list) => _construct_Uint8ClampedA rray(list);
11336 11336
11337 factory Uint8ClampedArray.fromBuffer(ArrayBuffer buffer) => _construct_Uint8Cl ampedArray(buffer); 11337 factory Uint8ClampedArray.fromBuffer(ArrayBuffer buffer) => _construct_Uint8Cl ampedArray(buffer);
11338 11338
11339 static _construct_Uint8ClampedArray(arg) native 'return new Uint8ClampedArray( arg);'; 11339 static _construct_Uint8ClampedArray(arg) native 'return new Uint8ClampedArray( arg);';
11340 11340
11341 int get length() native "return this.length;"; 11341 int get length() native "return this.length;";
11342 11342
11343 Uint8ClampedArrayJs subarray(int start, [int end = null]) native; 11343 _Uint8ClampedArrayJs subarray(int start, [int end = null]) native;
11344 } 11344 }
11345 11345
11346 class ValidityStateJs extends DOMTypeJs implements ValidityState native "*Validi tyState" { 11346 class _ValidityStateJs extends _DOMTypeJs implements ValidityState native "*Vali dityState" {
11347 11347
11348 bool get customError() native "return this.customError;"; 11348 bool get customError() native "return this.customError;";
11349 11349
11350 bool get patternMismatch() native "return this.patternMismatch;"; 11350 bool get patternMismatch() native "return this.patternMismatch;";
11351 11351
11352 bool get rangeOverflow() native "return this.rangeOverflow;"; 11352 bool get rangeOverflow() native "return this.rangeOverflow;";
11353 11353
11354 bool get rangeUnderflow() native "return this.rangeUnderflow;"; 11354 bool get rangeUnderflow() native "return this.rangeUnderflow;";
11355 11355
11356 bool get stepMismatch() native "return this.stepMismatch;"; 11356 bool get stepMismatch() native "return this.stepMismatch;";
11357 11357
11358 bool get tooLong() native "return this.tooLong;"; 11358 bool get tooLong() native "return this.tooLong;";
11359 11359
11360 bool get typeMismatch() native "return this.typeMismatch;"; 11360 bool get typeMismatch() native "return this.typeMismatch;";
11361 11361
11362 bool get valid() native "return this.valid;"; 11362 bool get valid() native "return this.valid;";
11363 11363
11364 bool get valueMissing() native "return this.valueMissing;"; 11364 bool get valueMissing() native "return this.valueMissing;";
11365 } 11365 }
11366 11366
11367 class WaveShaperNodeJs extends AudioNodeJs implements WaveShaperNode native "*Wa veShaperNode" { 11367 class _WaveShaperNodeJs extends _AudioNodeJs implements WaveShaperNode native "* WaveShaperNode" {
11368 11368
11369 Float32ArrayJs get curve() native "return this.curve;"; 11369 _Float32ArrayJs get curve() native "return this.curve;";
11370 11370
11371 void set curve(Float32ArrayJs value) native "this.curve = value;"; 11371 void set curve(_Float32ArrayJs value) native "this.curve = value;";
11372 } 11372 }
11373 11373
11374 class WebGLActiveInfoJs extends DOMTypeJs implements WebGLActiveInfo native "*We bGLActiveInfo" { 11374 class _WebGLActiveInfoJs extends _DOMTypeJs implements WebGLActiveInfo native "* WebGLActiveInfo" {
11375 11375
11376 String get name() native "return this.name;"; 11376 String get name() native "return this.name;";
11377 11377
11378 int get size() native "return this.size;"; 11378 int get size() native "return this.size;";
11379 11379
11380 int get type() native "return this.type;"; 11380 int get type() native "return this.type;";
11381 } 11381 }
11382 11382
11383 class WebGLBufferJs extends DOMTypeJs implements WebGLBuffer native "*WebGLBuffe r" { 11383 class _WebGLBufferJs extends _DOMTypeJs implements WebGLBuffer native "*WebGLBuf fer" {
11384 } 11384 }
11385 11385
11386 class WebGLCompressedTexturesJs extends DOMTypeJs implements WebGLCompressedText ures native "*WebGLCompressedTextures" { 11386 class _WebGLCompressedTexturesJs extends _DOMTypeJs implements WebGLCompressedTe xtures native "*WebGLCompressedTextures" {
11387 11387
11388 static final int COMPRESSED_RGBA_PVRTC_4BPPV1_IMG = 0x8C02; 11388 static final int COMPRESSED_RGBA_PVRTC_4BPPV1_IMG = 0x8C02;
11389 11389
11390 static final int COMPRESSED_RGBA_S3TC_DXT1_EXT = 0x83F1; 11390 static final int COMPRESSED_RGBA_S3TC_DXT1_EXT = 0x83F1;
11391 11391
11392 static final int COMPRESSED_RGBA_S3TC_DXT5_EXT = 0x83F3; 11392 static final int COMPRESSED_RGBA_S3TC_DXT5_EXT = 0x83F3;
11393 11393
11394 static final int COMPRESSED_RGB_PVRTC_4BPPV1_IMG = 0x8C00; 11394 static final int COMPRESSED_RGB_PVRTC_4BPPV1_IMG = 0x8C00;
11395 11395
11396 static final int COMPRESSED_RGB_S3TC_DXT1_EXT = 0x83F0; 11396 static final int COMPRESSED_RGB_S3TC_DXT1_EXT = 0x83F0;
11397 11397
11398 static final int ETC1_RGB8_OES = 0x8D64; 11398 static final int ETC1_RGB8_OES = 0x8D64;
11399 11399
11400 void compressedTexImage2D(int target, int level, int internalformat, int width , int height, int border, ArrayBufferViewJs data) native; 11400 void compressedTexImage2D(int target, int level, int internalformat, int width , int height, int border, _ArrayBufferViewJs data) native;
11401 11401
11402 void compressedTexSubImage2D(int target, int level, int xoffset, int yoffset, int width, int height, int format, ArrayBufferViewJs data) native; 11402 void compressedTexSubImage2D(int target, int level, int xoffset, int yoffset, int width, int height, int format, _ArrayBufferViewJs data) native;
11403 } 11403 }
11404 11404
11405 class WebGLContextAttributesJs extends DOMTypeJs implements WebGLContextAttribut es native "*WebGLContextAttributes" { 11405 class _WebGLContextAttributesJs extends _DOMTypeJs implements WebGLContextAttrib utes native "*WebGLContextAttributes" {
11406 11406
11407 bool get alpha() native "return this.alpha;"; 11407 bool get alpha() native "return this.alpha;";
11408 11408
11409 void set alpha(bool value) native "this.alpha = value;"; 11409 void set alpha(bool value) native "this.alpha = value;";
11410 11410
11411 bool get antialias() native "return this.antialias;"; 11411 bool get antialias() native "return this.antialias;";
11412 11412
11413 void set antialias(bool value) native "this.antialias = value;"; 11413 void set antialias(bool value) native "this.antialias = value;";
11414 11414
11415 bool get depth() native "return this.depth;"; 11415 bool get depth() native "return this.depth;";
11416 11416
11417 void set depth(bool value) native "this.depth = value;"; 11417 void set depth(bool value) native "this.depth = value;";
11418 11418
11419 bool get premultipliedAlpha() native "return this.premultipliedAlpha;"; 11419 bool get premultipliedAlpha() native "return this.premultipliedAlpha;";
11420 11420
11421 void set premultipliedAlpha(bool value) native "this.premultipliedAlpha = valu e;"; 11421 void set premultipliedAlpha(bool value) native "this.premultipliedAlpha = valu e;";
11422 11422
11423 bool get preserveDrawingBuffer() native "return this.preserveDrawingBuffer;"; 11423 bool get preserveDrawingBuffer() native "return this.preserveDrawingBuffer;";
11424 11424
11425 void set preserveDrawingBuffer(bool value) native "this.preserveDrawingBuffer = value;"; 11425 void set preserveDrawingBuffer(bool value) native "this.preserveDrawingBuffer = value;";
11426 11426
11427 bool get stencil() native "return this.stencil;"; 11427 bool get stencil() native "return this.stencil;";
11428 11428
11429 void set stencil(bool value) native "this.stencil = value;"; 11429 void set stencil(bool value) native "this.stencil = value;";
11430 } 11430 }
11431 11431
11432 class WebGLContextEventJs extends EventJs implements WebGLContextEvent native "* WebGLContextEvent" { 11432 class _WebGLContextEventJs extends _EventJs implements WebGLContextEvent native "*WebGLContextEvent" {
11433 11433
11434 String get statusMessage() native "return this.statusMessage;"; 11434 String get statusMessage() native "return this.statusMessage;";
11435 } 11435 }
11436 11436
11437 class WebGLDebugRendererInfoJs extends DOMTypeJs implements WebGLDebugRendererIn fo native "*WebGLDebugRendererInfo" { 11437 class _WebGLDebugRendererInfoJs extends _DOMTypeJs implements WebGLDebugRenderer Info native "*WebGLDebugRendererInfo" {
11438 11438
11439 static final int UNMASKED_RENDERER_WEBGL = 0x9246; 11439 static final int UNMASKED_RENDERER_WEBGL = 0x9246;
11440 11440
11441 static final int UNMASKED_VENDOR_WEBGL = 0x9245; 11441 static final int UNMASKED_VENDOR_WEBGL = 0x9245;
11442 } 11442 }
11443 11443
11444 class WebGLDebugShadersJs extends DOMTypeJs implements WebGLDebugShaders native "*WebGLDebugShaders" { 11444 class _WebGLDebugShadersJs extends _DOMTypeJs implements WebGLDebugShaders nativ e "*WebGLDebugShaders" {
11445 11445
11446 String getTranslatedShaderSource(WebGLShaderJs shader) native; 11446 String getTranslatedShaderSource(_WebGLShaderJs shader) native;
11447 } 11447 }
11448 11448
11449 class WebGLFramebufferJs extends DOMTypeJs implements WebGLFramebuffer native "* WebGLFramebuffer" { 11449 class _WebGLFramebufferJs extends _DOMTypeJs implements WebGLFramebuffer native "*WebGLFramebuffer" {
11450 } 11450 }
11451 11451
11452 class WebGLLoseContextJs extends DOMTypeJs implements WebGLLoseContext native "* WebGLLoseContext" { 11452 class _WebGLLoseContextJs extends _DOMTypeJs implements WebGLLoseContext native "*WebGLLoseContext" {
11453 11453
11454 void loseContext() native; 11454 void loseContext() native;
11455 11455
11456 void restoreContext() native; 11456 void restoreContext() native;
11457 } 11457 }
11458 11458
11459 class WebGLProgramJs extends DOMTypeJs implements WebGLProgram native "*WebGLPro gram" { 11459 class _WebGLProgramJs extends _DOMTypeJs implements WebGLProgram native "*WebGLP rogram" {
11460 } 11460 }
11461 11461
11462 class WebGLRenderbufferJs extends DOMTypeJs implements WebGLRenderbuffer native "*WebGLRenderbuffer" { 11462 class _WebGLRenderbufferJs extends _DOMTypeJs implements WebGLRenderbuffer nativ e "*WebGLRenderbuffer" {
11463 } 11463 }
11464 11464
11465 class WebGLRenderingContextJs extends CanvasRenderingContextJs implements WebGLR enderingContext native "*WebGLRenderingContext" { 11465 class _WebGLRenderingContextJs extends _CanvasRenderingContextJs implements WebG LRenderingContext native "*WebGLRenderingContext" {
11466 11466
11467 static final int ACTIVE_ATTRIBUTES = 0x8B89; 11467 static final int ACTIVE_ATTRIBUTES = 0x8B89;
11468 11468
11469 static final int ACTIVE_TEXTURE = 0x84E0; 11469 static final int ACTIVE_TEXTURE = 0x84E0;
11470 11470
11471 static final int ACTIVE_UNIFORMS = 0x8B86; 11471 static final int ACTIVE_UNIFORMS = 0x8B86;
11472 11472
11473 static final int ALIASED_LINE_WIDTH_RANGE = 0x846E; 11473 static final int ALIASED_LINE_WIDTH_RANGE = 0x846E;
11474 11474
11475 static final int ALIASED_POINT_SIZE_RANGE = 0x846D; 11475 static final int ALIASED_POINT_SIZE_RANGE = 0x846D;
(...skipping 581 matching lines...) Expand 10 before | Expand all | Expand 10 after
12057 static final int VIEWPORT = 0x0BA2; 12057 static final int VIEWPORT = 0x0BA2;
12058 12058
12059 static final int ZERO = 0; 12059 static final int ZERO = 0;
12060 12060
12061 int get drawingBufferHeight() native "return this.drawingBufferHeight;"; 12061 int get drawingBufferHeight() native "return this.drawingBufferHeight;";
12062 12062
12063 int get drawingBufferWidth() native "return this.drawingBufferWidth;"; 12063 int get drawingBufferWidth() native "return this.drawingBufferWidth;";
12064 12064
12065 void activeTexture(int texture) native; 12065 void activeTexture(int texture) native;
12066 12066
12067 void attachShader(WebGLProgramJs program, WebGLShaderJs shader) native; 12067 void attachShader(_WebGLProgramJs program, _WebGLShaderJs shader) native;
12068 12068
12069 void bindAttribLocation(WebGLProgramJs program, int index, String name) native ; 12069 void bindAttribLocation(_WebGLProgramJs program, int index, String name) nativ e;
12070 12070
12071 void bindBuffer(int target, WebGLBufferJs buffer) native; 12071 void bindBuffer(int target, _WebGLBufferJs buffer) native;
12072 12072
12073 void bindFramebuffer(int target, WebGLFramebufferJs framebuffer) native; 12073 void bindFramebuffer(int target, _WebGLFramebufferJs framebuffer) native;
12074 12074
12075 void bindRenderbuffer(int target, WebGLRenderbufferJs renderbuffer) native; 12075 void bindRenderbuffer(int target, _WebGLRenderbufferJs renderbuffer) native;
12076 12076
12077 void bindTexture(int target, WebGLTextureJs texture) native; 12077 void bindTexture(int target, _WebGLTextureJs texture) native;
12078 12078
12079 void blendColor(num red, num green, num blue, num alpha) native; 12079 void blendColor(num red, num green, num blue, num alpha) native;
12080 12080
12081 void blendEquation(int mode) native; 12081 void blendEquation(int mode) native;
12082 12082
12083 void blendEquationSeparate(int modeRGB, int modeAlpha) native; 12083 void blendEquationSeparate(int modeRGB, int modeAlpha) native;
12084 12084
12085 void blendFunc(int sfactor, int dfactor) native; 12085 void blendFunc(int sfactor, int dfactor) native;
12086 12086
12087 void blendFuncSeparate(int srcRGB, int dstRGB, int srcAlpha, int dstAlpha) nat ive; 12087 void blendFuncSeparate(int srcRGB, int dstRGB, int srcAlpha, int dstAlpha) nat ive;
12088 12088
12089 void bufferData(int target, var data_OR_size, int usage) native; 12089 void bufferData(int target, var data_OR_size, int usage) native;
12090 12090
12091 void bufferSubData(int target, int offset, var data) native; 12091 void bufferSubData(int target, int offset, var data) native;
12092 12092
12093 int checkFramebufferStatus(int target) native; 12093 int checkFramebufferStatus(int target) native;
12094 12094
12095 void clear(int mask) native; 12095 void clear(int mask) native;
12096 12096
12097 void clearColor(num red, num green, num blue, num alpha) native; 12097 void clearColor(num red, num green, num blue, num alpha) native;
12098 12098
12099 void clearDepth(num depth) native; 12099 void clearDepth(num depth) native;
12100 12100
12101 void clearStencil(int s) native; 12101 void clearStencil(int s) native;
12102 12102
12103 void colorMask(bool red, bool green, bool blue, bool alpha) native; 12103 void colorMask(bool red, bool green, bool blue, bool alpha) native;
12104 12104
12105 void compileShader(WebGLShaderJs shader) native; 12105 void compileShader(_WebGLShaderJs shader) native;
12106 12106
12107 void compressedTexImage2D(int target, int level, int internalformat, int width , int height, int border, ArrayBufferViewJs data) native; 12107 void compressedTexImage2D(int target, int level, int internalformat, int width , int height, int border, _ArrayBufferViewJs data) native;
12108 12108
12109 void compressedTexSubImage2D(int target, int level, int xoffset, int yoffset, int width, int height, int format, ArrayBufferViewJs data) native; 12109 void compressedTexSubImage2D(int target, int level, int xoffset, int yoffset, int width, int height, int format, _ArrayBufferViewJs data) native;
12110 12110
12111 void copyTexImage2D(int target, int level, int internalformat, int x, int y, i nt width, int height, int border) native; 12111 void copyTexImage2D(int target, int level, int internalformat, int x, int y, i nt width, int height, int border) native;
12112 12112
12113 void copyTexSubImage2D(int target, int level, int xoffset, int yoffset, int x, int y, int width, int height) native; 12113 void copyTexSubImage2D(int target, int level, int xoffset, int yoffset, int x, int y, int width, int height) native;
12114 12114
12115 WebGLBufferJs createBuffer() native; 12115 _WebGLBufferJs createBuffer() native;
12116 12116
12117 WebGLFramebufferJs createFramebuffer() native; 12117 _WebGLFramebufferJs createFramebuffer() native;
12118 12118
12119 WebGLProgramJs createProgram() native; 12119 _WebGLProgramJs createProgram() native;
12120 12120
12121 WebGLRenderbufferJs createRenderbuffer() native; 12121 _WebGLRenderbufferJs createRenderbuffer() native;
12122 12122
12123 WebGLShaderJs createShader(int type) native; 12123 _WebGLShaderJs createShader(int type) native;
12124 12124
12125 WebGLTextureJs createTexture() native; 12125 _WebGLTextureJs createTexture() native;
12126 12126
12127 void cullFace(int mode) native; 12127 void cullFace(int mode) native;
12128 12128
12129 void deleteBuffer(WebGLBufferJs buffer) native; 12129 void deleteBuffer(_WebGLBufferJs buffer) native;
12130 12130
12131 void deleteFramebuffer(WebGLFramebufferJs framebuffer) native; 12131 void deleteFramebuffer(_WebGLFramebufferJs framebuffer) native;
12132 12132
12133 void deleteProgram(WebGLProgramJs program) native; 12133 void deleteProgram(_WebGLProgramJs program) native;
12134 12134
12135 void deleteRenderbuffer(WebGLRenderbufferJs renderbuffer) native; 12135 void deleteRenderbuffer(_WebGLRenderbufferJs renderbuffer) native;
12136 12136
12137 void deleteShader(WebGLShaderJs shader) native; 12137 void deleteShader(_WebGLShaderJs shader) native;
12138 12138
12139 void deleteTexture(WebGLTextureJs texture) native; 12139 void deleteTexture(_WebGLTextureJs texture) native;
12140 12140
12141 void depthFunc(int func) native; 12141 void depthFunc(int func) native;
12142 12142
12143 void depthMask(bool flag) native; 12143 void depthMask(bool flag) native;
12144 12144
12145 void depthRange(num zNear, num zFar) native; 12145 void depthRange(num zNear, num zFar) native;
12146 12146
12147 void detachShader(WebGLProgramJs program, WebGLShaderJs shader) native; 12147 void detachShader(_WebGLProgramJs program, _WebGLShaderJs shader) native;
12148 12148
12149 void disable(int cap) native; 12149 void disable(int cap) native;
12150 12150
12151 void disableVertexAttribArray(int index) native; 12151 void disableVertexAttribArray(int index) native;
12152 12152
12153 void drawArrays(int mode, int first, int count) native; 12153 void drawArrays(int mode, int first, int count) native;
12154 12154
12155 void drawElements(int mode, int count, int type, int offset) native; 12155 void drawElements(int mode, int count, int type, int offset) native;
12156 12156
12157 void enable(int cap) native; 12157 void enable(int cap) native;
12158 12158
12159 void enableVertexAttribArray(int index) native; 12159 void enableVertexAttribArray(int index) native;
12160 12160
12161 void finish() native; 12161 void finish() native;
12162 12162
12163 void flush() native; 12163 void flush() native;
12164 12164
12165 void framebufferRenderbuffer(int target, int attachment, int renderbuffertarge t, WebGLRenderbufferJs renderbuffer) native; 12165 void framebufferRenderbuffer(int target, int attachment, int renderbuffertarge t, _WebGLRenderbufferJs renderbuffer) native;
12166 12166
12167 void framebufferTexture2D(int target, int attachment, int textarget, WebGLText ureJs texture, int level) native; 12167 void framebufferTexture2D(int target, int attachment, int textarget, _WebGLTex tureJs texture, int level) native;
12168 12168
12169 void frontFace(int mode) native; 12169 void frontFace(int mode) native;
12170 12170
12171 void generateMipmap(int target) native; 12171 void generateMipmap(int target) native;
12172 12172
12173 WebGLActiveInfoJs getActiveAttrib(WebGLProgramJs program, int index) native; 12173 _WebGLActiveInfoJs getActiveAttrib(_WebGLProgramJs program, int index) native;
12174 12174
12175 WebGLActiveInfoJs getActiveUniform(WebGLProgramJs program, int index) native; 12175 _WebGLActiveInfoJs getActiveUniform(_WebGLProgramJs program, int index) native ;
12176 12176
12177 List getAttachedShaders(WebGLProgramJs program) native; 12177 List getAttachedShaders(_WebGLProgramJs program) native;
12178 12178
12179 int getAttribLocation(WebGLProgramJs program, String name) native; 12179 int getAttribLocation(_WebGLProgramJs program, String name) native;
12180 12180
12181 Object getBufferParameter(int target, int pname) native; 12181 Object getBufferParameter(int target, int pname) native;
12182 12182
12183 WebGLContextAttributesJs getContextAttributes() native; 12183 _WebGLContextAttributesJs getContextAttributes() native;
12184 12184
12185 int getError() native; 12185 int getError() native;
12186 12186
12187 Object getExtension(String name) native; 12187 Object getExtension(String name) native;
12188 12188
12189 Object getFramebufferAttachmentParameter(int target, int attachment, int pname ) native; 12189 Object getFramebufferAttachmentParameter(int target, int attachment, int pname ) native;
12190 12190
12191 Object getParameter(int pname) native; 12191 Object getParameter(int pname) native;
12192 12192
12193 String getProgramInfoLog(WebGLProgramJs program) native; 12193 String getProgramInfoLog(_WebGLProgramJs program) native;
12194 12194
12195 Object getProgramParameter(WebGLProgramJs program, int pname) native; 12195 Object getProgramParameter(_WebGLProgramJs program, int pname) native;
12196 12196
12197 Object getRenderbufferParameter(int target, int pname) native; 12197 Object getRenderbufferParameter(int target, int pname) native;
12198 12198
12199 String getShaderInfoLog(WebGLShaderJs shader) native; 12199 String getShaderInfoLog(_WebGLShaderJs shader) native;
12200 12200
12201 Object getShaderParameter(WebGLShaderJs shader, int pname) native; 12201 Object getShaderParameter(_WebGLShaderJs shader, int pname) native;
12202 12202
12203 String getShaderSource(WebGLShaderJs shader) native; 12203 String getShaderSource(_WebGLShaderJs shader) native;
12204 12204
12205 Object getTexParameter(int target, int pname) native; 12205 Object getTexParameter(int target, int pname) native;
12206 12206
12207 Object getUniform(WebGLProgramJs program, WebGLUniformLocationJs location) nat ive; 12207 Object getUniform(_WebGLProgramJs program, _WebGLUniformLocationJs location) n ative;
12208 12208
12209 WebGLUniformLocationJs getUniformLocation(WebGLProgramJs program, String name) native; 12209 _WebGLUniformLocationJs getUniformLocation(_WebGLProgramJs program, String nam e) native;
12210 12210
12211 Object getVertexAttrib(int index, int pname) native; 12211 Object getVertexAttrib(int index, int pname) native;
12212 12212
12213 int getVertexAttribOffset(int index, int pname) native; 12213 int getVertexAttribOffset(int index, int pname) native;
12214 12214
12215 void hint(int target, int mode) native; 12215 void hint(int target, int mode) native;
12216 12216
12217 bool isBuffer(WebGLBufferJs buffer) native; 12217 bool isBuffer(_WebGLBufferJs buffer) native;
12218 12218
12219 bool isContextLost() native; 12219 bool isContextLost() native;
12220 12220
12221 bool isEnabled(int cap) native; 12221 bool isEnabled(int cap) native;
12222 12222
12223 bool isFramebuffer(WebGLFramebufferJs framebuffer) native; 12223 bool isFramebuffer(_WebGLFramebufferJs framebuffer) native;
12224 12224
12225 bool isProgram(WebGLProgramJs program) native; 12225 bool isProgram(_WebGLProgramJs program) native;
12226 12226
12227 bool isRenderbuffer(WebGLRenderbufferJs renderbuffer) native; 12227 bool isRenderbuffer(_WebGLRenderbufferJs renderbuffer) native;
12228 12228
12229 bool isShader(WebGLShaderJs shader) native; 12229 bool isShader(_WebGLShaderJs shader) native;
12230 12230
12231 bool isTexture(WebGLTextureJs texture) native; 12231 bool isTexture(_WebGLTextureJs texture) native;
12232 12232
12233 void lineWidth(num width) native; 12233 void lineWidth(num width) native;
12234 12234
12235 void linkProgram(WebGLProgramJs program) native; 12235 void linkProgram(_WebGLProgramJs program) native;
12236 12236
12237 void pixelStorei(int pname, int param) native; 12237 void pixelStorei(int pname, int param) native;
12238 12238
12239 void polygonOffset(num factor, num units) native; 12239 void polygonOffset(num factor, num units) native;
12240 12240
12241 void readPixels(int x, int y, int width, int height, int format, int type, Arr ayBufferViewJs pixels) native; 12241 void readPixels(int x, int y, int width, int height, int format, int type, _Ar rayBufferViewJs pixels) native;
12242 12242
12243 void releaseShaderCompiler() native; 12243 void releaseShaderCompiler() native;
12244 12244
12245 void renderbufferStorage(int target, int internalformat, int width, int height ) native; 12245 void renderbufferStorage(int target, int internalformat, int width, int height ) native;
12246 12246
12247 void sampleCoverage(num value, bool invert) native; 12247 void sampleCoverage(num value, bool invert) native;
12248 12248
12249 void scissor(int x, int y, int width, int height) native; 12249 void scissor(int x, int y, int width, int height) native;
12250 12250
12251 void shaderSource(WebGLShaderJs shader, String string) native; 12251 void shaderSource(_WebGLShaderJs shader, String string) native;
12252 12252
12253 void stencilFunc(int func, int ref, int mask) native; 12253 void stencilFunc(int func, int ref, int mask) native;
12254 12254
12255 void stencilFuncSeparate(int face, int func, int ref, int mask) native; 12255 void stencilFuncSeparate(int face, int func, int ref, int mask) native;
12256 12256
12257 void stencilMask(int mask) native; 12257 void stencilMask(int mask) native;
12258 12258
12259 void stencilMaskSeparate(int face, int mask) native; 12259 void stencilMaskSeparate(int face, int mask) native;
12260 12260
12261 void stencilOp(int fail, int zfail, int zpass) native; 12261 void stencilOp(int fail, int zfail, int zpass) native;
12262 12262
12263 void stencilOpSeparate(int face, int fail, int zfail, int zpass) native; 12263 void stencilOpSeparate(int face, int fail, int zfail, int zpass) native;
12264 12264
12265 void texImage2D(int target, int level, int internalformat, int format_OR_width , int height_OR_type, var border_OR_canvas_OR_image_OR_pixels_OR_video, [int for mat = null, int type = null, ArrayBufferViewJs pixels = null]) native; 12265 void texImage2D(int target, int level, int internalformat, int format_OR_width , int height_OR_type, var border_OR_canvas_OR_image_OR_pixels_OR_video, [int for mat = null, int type = null, _ArrayBufferViewJs pixels = null]) native;
12266 12266
12267 void texParameterf(int target, int pname, num param) native; 12267 void texParameterf(int target, int pname, num param) native;
12268 12268
12269 void texParameteri(int target, int pname, int param) native; 12269 void texParameteri(int target, int pname, int param) native;
12270 12270
12271 void texSubImage2D(int target, int level, int xoffset, int yoffset, int format _OR_width, int height_OR_type, var canvas_OR_format_OR_image_OR_pixels_OR_video, [int type = null, ArrayBufferViewJs pixels = null]) native; 12271 void texSubImage2D(int target, int level, int xoffset, int yoffset, int format _OR_width, int height_OR_type, var canvas_OR_format_OR_image_OR_pixels_OR_video, [int type = null, _ArrayBufferViewJs pixels = null]) native;
12272 12272
12273 void uniform1f(WebGLUniformLocationJs location, num x) native; 12273 void uniform1f(_WebGLUniformLocationJs location, num x) native;
12274 12274
12275 void uniform1fv(WebGLUniformLocationJs location, Float32ArrayJs v) native; 12275 void uniform1fv(_WebGLUniformLocationJs location, _Float32ArrayJs v) native;
12276 12276
12277 void uniform1i(WebGLUniformLocationJs location, int x) native; 12277 void uniform1i(_WebGLUniformLocationJs location, int x) native;
12278 12278
12279 void uniform1iv(WebGLUniformLocationJs location, Int32ArrayJs v) native; 12279 void uniform1iv(_WebGLUniformLocationJs location, _Int32ArrayJs v) native;
12280 12280
12281 void uniform2f(WebGLUniformLocationJs location, num x, num y) native; 12281 void uniform2f(_WebGLUniformLocationJs location, num x, num y) native;
12282 12282
12283 void uniform2fv(WebGLUniformLocationJs location, Float32ArrayJs v) native; 12283 void uniform2fv(_WebGLUniformLocationJs location, _Float32ArrayJs v) native;
12284 12284
12285 void uniform2i(WebGLUniformLocationJs location, int x, int y) native; 12285 void uniform2i(_WebGLUniformLocationJs location, int x, int y) native;
12286 12286
12287 void uniform2iv(WebGLUniformLocationJs location, Int32ArrayJs v) native; 12287 void uniform2iv(_WebGLUniformLocationJs location, _Int32ArrayJs v) native;
12288 12288
12289 void uniform3f(WebGLUniformLocationJs location, num x, num y, num z) native; 12289 void uniform3f(_WebGLUniformLocationJs location, num x, num y, num z) native;
12290 12290
12291 void uniform3fv(WebGLUniformLocationJs location, Float32ArrayJs v) native; 12291 void uniform3fv(_WebGLUniformLocationJs location, _Float32ArrayJs v) native;
12292 12292
12293 void uniform3i(WebGLUniformLocationJs location, int x, int y, int z) native; 12293 void uniform3i(_WebGLUniformLocationJs location, int x, int y, int z) native;
12294 12294
12295 void uniform3iv(WebGLUniformLocationJs location, Int32ArrayJs v) native; 12295 void uniform3iv(_WebGLUniformLocationJs location, _Int32ArrayJs v) native;
12296 12296
12297 void uniform4f(WebGLUniformLocationJs location, num x, num y, num z, num w) na tive; 12297 void uniform4f(_WebGLUniformLocationJs location, num x, num y, num z, num w) n ative;
12298 12298
12299 void uniform4fv(WebGLUniformLocationJs location, Float32ArrayJs v) native; 12299 void uniform4fv(_WebGLUniformLocationJs location, _Float32ArrayJs v) native;
12300 12300
12301 void uniform4i(WebGLUniformLocationJs location, int x, int y, int z, int w) na tive; 12301 void uniform4i(_WebGLUniformLocationJs location, int x, int y, int z, int w) n ative;
12302 12302
12303 void uniform4iv(WebGLUniformLocationJs location, Int32ArrayJs v) native; 12303 void uniform4iv(_WebGLUniformLocationJs location, _Int32ArrayJs v) native;
12304 12304
12305 void uniformMatrix2fv(WebGLUniformLocationJs location, bool transpose, Float32 ArrayJs array) native; 12305 void uniformMatrix2fv(_WebGLUniformLocationJs location, bool transpose, _Float 32ArrayJs array) native;
12306 12306
12307 void uniformMatrix3fv(WebGLUniformLocationJs location, bool transpose, Float32 ArrayJs array) native; 12307 void uniformMatrix3fv(_WebGLUniformLocationJs location, bool transpose, _Float 32ArrayJs array) native;
12308 12308
12309 void uniformMatrix4fv(WebGLUniformLocationJs location, bool transpose, Float32 ArrayJs array) native; 12309 void uniformMatrix4fv(_WebGLUniformLocationJs location, bool transpose, _Float 32ArrayJs array) native;
12310 12310
12311 void useProgram(WebGLProgramJs program) native; 12311 void useProgram(_WebGLProgramJs program) native;
12312 12312
12313 void validateProgram(WebGLProgramJs program) native; 12313 void validateProgram(_WebGLProgramJs program) native;
12314 12314
12315 void vertexAttrib1f(int indx, num x) native; 12315 void vertexAttrib1f(int indx, num x) native;
12316 12316
12317 void vertexAttrib1fv(int indx, Float32ArrayJs values) native; 12317 void vertexAttrib1fv(int indx, _Float32ArrayJs values) native;
12318 12318
12319 void vertexAttrib2f(int indx, num x, num y) native; 12319 void vertexAttrib2f(int indx, num x, num y) native;
12320 12320
12321 void vertexAttrib2fv(int indx, Float32ArrayJs values) native; 12321 void vertexAttrib2fv(int indx, _Float32ArrayJs values) native;
12322 12322
12323 void vertexAttrib3f(int indx, num x, num y, num z) native; 12323 void vertexAttrib3f(int indx, num x, num y, num z) native;
12324 12324
12325 void vertexAttrib3fv(int indx, Float32ArrayJs values) native; 12325 void vertexAttrib3fv(int indx, _Float32ArrayJs values) native;
12326 12326
12327 void vertexAttrib4f(int indx, num x, num y, num z, num w) native; 12327 void vertexAttrib4f(int indx, num x, num y, num z, num w) native;
12328 12328
12329 void vertexAttrib4fv(int indx, Float32ArrayJs values) native; 12329 void vertexAttrib4fv(int indx, _Float32ArrayJs values) native;
12330 12330
12331 void vertexAttribPointer(int indx, int size, int type, bool normalized, int st ride, int offset) native; 12331 void vertexAttribPointer(int indx, int size, int type, bool normalized, int st ride, int offset) native;
12332 12332
12333 void viewport(int x, int y, int width, int height) native; 12333 void viewport(int x, int y, int width, int height) native;
12334 } 12334 }
12335 12335
12336 class WebGLShaderJs extends DOMTypeJs implements WebGLShader native "*WebGLShade r" { 12336 class _WebGLShaderJs extends _DOMTypeJs implements WebGLShader native "*WebGLSha der" {
12337 } 12337 }
12338 12338
12339 class WebGLTextureJs extends DOMTypeJs implements WebGLTexture native "*WebGLTex ture" { 12339 class _WebGLTextureJs extends _DOMTypeJs implements WebGLTexture native "*WebGLT exture" {
12340 } 12340 }
12341 12341
12342 class WebGLUniformLocationJs extends DOMTypeJs implements WebGLUniformLocation n ative "*WebGLUniformLocation" { 12342 class _WebGLUniformLocationJs extends _DOMTypeJs implements WebGLUniformLocation native "*WebGLUniformLocation" {
12343 } 12343 }
12344 12344
12345 class WebGLVertexArrayObjectOESJs extends DOMTypeJs implements WebGLVertexArrayO bjectOES native "*WebGLVertexArrayObjectOES" { 12345 class _WebGLVertexArrayObjectOESJs extends _DOMTypeJs implements WebGLVertexArra yObjectOES native "*WebGLVertexArrayObjectOES" {
12346 } 12346 }
12347 12347
12348 class WebKitAnimationJs extends DOMTypeJs implements WebKitAnimation native "*We bKitAnimation" { 12348 class _WebKitAnimationJs extends _DOMTypeJs implements WebKitAnimation native "* WebKitAnimation" {
12349 12349
12350 static final int DIRECTION_ALTERNATE = 1; 12350 static final int DIRECTION_ALTERNATE = 1;
12351 12351
12352 static final int DIRECTION_NORMAL = 0; 12352 static final int DIRECTION_NORMAL = 0;
12353 12353
12354 static final int FILL_BACKWARDS = 1; 12354 static final int FILL_BACKWARDS = 1;
12355 12355
12356 static final int FILL_BOTH = 3; 12356 static final int FILL_BOTH = 3;
12357 12357
12358 static final int FILL_FORWARDS = 2; 12358 static final int FILL_FORWARDS = 2;
(...skipping 18 matching lines...) Expand all
12377 12377
12378 String get name() native "return this.name;"; 12378 String get name() native "return this.name;";
12379 12379
12380 bool get paused() native "return this.paused;"; 12380 bool get paused() native "return this.paused;";
12381 12381
12382 void pause() native; 12382 void pause() native;
12383 12383
12384 void play() native; 12384 void play() native;
12385 } 12385 }
12386 12386
12387 class WebKitAnimationEventJs extends EventJs implements WebKitAnimationEvent nat ive "*WebKitAnimationEvent" { 12387 class _WebKitAnimationEventJs extends _EventJs implements WebKitAnimationEvent n ative "*WebKitAnimationEvent" {
12388 12388
12389 String get animationName() native "return this.animationName;"; 12389 String get animationName() native "return this.animationName;";
12390 12390
12391 num get elapsedTime() native "return this.elapsedTime;"; 12391 num get elapsedTime() native "return this.elapsedTime;";
12392 } 12392 }
12393 12393
12394 class WebKitAnimationListJs extends DOMTypeJs implements WebKitAnimationList nat ive "*WebKitAnimationList" { 12394 class _WebKitAnimationListJs extends _DOMTypeJs implements WebKitAnimationList n ative "*WebKitAnimationList" {
12395 12395
12396 int get length() native "return this.length;"; 12396 int get length() native "return this.length;";
12397 12397
12398 WebKitAnimationJs item(int index) native; 12398 _WebKitAnimationJs item(int index) native;
12399 } 12399 }
12400 12400
12401 class WebKitBlobBuilderJs extends DOMTypeJs implements WebKitBlobBuilder native "*WebKitBlobBuilder" { 12401 class _WebKitBlobBuilderJs extends _DOMTypeJs implements WebKitBlobBuilder nativ e "*WebKitBlobBuilder" {
12402 12402
12403 void append(var arrayBuffer_OR_blob_OR_value, [String endings = null]) native; 12403 void append(var arrayBuffer_OR_blob_OR_value, [String endings = null]) native;
12404 12404
12405 BlobJs getBlob([String contentType = null]) native; 12405 _BlobJs getBlob([String contentType = null]) native;
12406 } 12406 }
12407 12407
12408 class WebKitCSSFilterValueJs extends CSSValueListJs implements WebKitCSSFilterVa lue native "*WebKitCSSFilterValue" { 12408 class _WebKitCSSFilterValueJs extends _CSSValueListJs implements WebKitCSSFilter Value native "*WebKitCSSFilterValue" {
12409 12409
12410 static final int CSS_FILTER_BLUR = 10; 12410 static final int CSS_FILTER_BLUR = 10;
12411 12411
12412 static final int CSS_FILTER_BRIGHTNESS = 8; 12412 static final int CSS_FILTER_BRIGHTNESS = 8;
12413 12413
12414 static final int CSS_FILTER_CONTRAST = 9; 12414 static final int CSS_FILTER_CONTRAST = 9;
12415 12415
12416 static final int CSS_FILTER_DROP_SHADOW = 11; 12416 static final int CSS_FILTER_DROP_SHADOW = 11;
12417 12417
12418 static final int CSS_FILTER_GRAYSCALE = 2; 12418 static final int CSS_FILTER_GRAYSCALE = 2;
12419 12419
12420 static final int CSS_FILTER_HUE_ROTATE = 5; 12420 static final int CSS_FILTER_HUE_ROTATE = 5;
12421 12421
12422 static final int CSS_FILTER_INVERT = 6; 12422 static final int CSS_FILTER_INVERT = 6;
12423 12423
12424 static final int CSS_FILTER_OPACITY = 7; 12424 static final int CSS_FILTER_OPACITY = 7;
12425 12425
12426 static final int CSS_FILTER_REFERENCE = 1; 12426 static final int CSS_FILTER_REFERENCE = 1;
12427 12427
12428 static final int CSS_FILTER_SATURATE = 4; 12428 static final int CSS_FILTER_SATURATE = 4;
12429 12429
12430 static final int CSS_FILTER_SEPIA = 3; 12430 static final int CSS_FILTER_SEPIA = 3;
12431 12431
12432 int get operationType() native "return this.operationType;"; 12432 int get operationType() native "return this.operationType;";
12433 } 12433 }
12434 12434
12435 class WebKitCSSKeyframeRuleJs extends CSSRuleJs implements WebKitCSSKeyframeRule native "*WebKitCSSKeyframeRule" { 12435 class _WebKitCSSKeyframeRuleJs extends _CSSRuleJs implements WebKitCSSKeyframeRu le native "*WebKitCSSKeyframeRule" {
12436 12436
12437 String get keyText() native "return this.keyText;"; 12437 String get keyText() native "return this.keyText;";
12438 12438
12439 void set keyText(String value) native "this.keyText = value;"; 12439 void set keyText(String value) native "this.keyText = value;";
12440 12440
12441 CSSStyleDeclarationJs get style() native "return this.style;"; 12441 _CSSStyleDeclarationJs get style() native "return this.style;";
12442 } 12442 }
12443 12443
12444 class WebKitCSSKeyframesRuleJs extends CSSRuleJs implements WebKitCSSKeyframesRu le native "*WebKitCSSKeyframesRule" { 12444 class _WebKitCSSKeyframesRuleJs extends _CSSRuleJs implements WebKitCSSKeyframes Rule native "*WebKitCSSKeyframesRule" {
12445 12445
12446 CSSRuleListJs get cssRules() native "return this.cssRules;"; 12446 _CSSRuleListJs get cssRules() native "return this.cssRules;";
12447 12447
12448 String get name() native "return this.name;"; 12448 String get name() native "return this.name;";
12449 12449
12450 void set name(String value) native "this.name = value;"; 12450 void set name(String value) native "this.name = value;";
12451 12451
12452 void deleteRule(String key) native; 12452 void deleteRule(String key) native;
12453 12453
12454 WebKitCSSKeyframeRuleJs findRule(String key) native; 12454 _WebKitCSSKeyframeRuleJs findRule(String key) native;
12455 12455
12456 void insertRule(String rule) native; 12456 void insertRule(String rule) native;
12457 } 12457 }
12458 12458
12459 class WebKitCSSMatrixJs extends DOMTypeJs implements WebKitCSSMatrix native "*We bKitCSSMatrix" { 12459 class _WebKitCSSMatrixJs extends _DOMTypeJs implements WebKitCSSMatrix native "* WebKitCSSMatrix" {
12460 WebKitCSSMatrix([String spec]) native; 12460 WebKitCSSMatrix([String spec]) native;
12461 12461
12462 12462
12463 num get a() native "return this.a;"; 12463 num get a() native "return this.a;";
12464 12464
12465 void set a(num value) native "this.a = value;"; 12465 void set a(num value) native "this.a = value;";
12466 12466
12467 num get b() native "return this.b;"; 12467 num get b() native "return this.b;";
12468 12468
12469 void set b(num value) native "this.b = value;"; 12469 void set b(num value) native "this.b = value;";
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
12541 void set m42(num value) native "this.m42 = value;"; 12541 void set m42(num value) native "this.m42 = value;";
12542 12542
12543 num get m43() native "return this.m43;"; 12543 num get m43() native "return this.m43;";
12544 12544
12545 void set m43(num value) native "this.m43 = value;"; 12545 void set m43(num value) native "this.m43 = value;";
12546 12546
12547 num get m44() native "return this.m44;"; 12547 num get m44() native "return this.m44;";
12548 12548
12549 void set m44(num value) native "this.m44 = value;"; 12549 void set m44(num value) native "this.m44 = value;";
12550 12550
12551 WebKitCSSMatrixJs inverse() native; 12551 _WebKitCSSMatrixJs inverse() native;
12552 12552
12553 WebKitCSSMatrixJs multiply(WebKitCSSMatrixJs secondMatrix) native; 12553 _WebKitCSSMatrixJs multiply(_WebKitCSSMatrixJs secondMatrix) native;
12554 12554
12555 WebKitCSSMatrixJs rotate(num rotX, num rotY, num rotZ) native; 12555 _WebKitCSSMatrixJs rotate(num rotX, num rotY, num rotZ) native;
12556 12556
12557 WebKitCSSMatrixJs rotateAxisAngle(num x, num y, num z, num angle) native; 12557 _WebKitCSSMatrixJs rotateAxisAngle(num x, num y, num z, num angle) native;
12558 12558
12559 WebKitCSSMatrixJs scale(num scaleX, num scaleY, num scaleZ) native; 12559 _WebKitCSSMatrixJs scale(num scaleX, num scaleY, num scaleZ) native;
12560 12560
12561 void setMatrixValue(String string) native; 12561 void setMatrixValue(String string) native;
12562 12562
12563 WebKitCSSMatrixJs skewX(num angle) native; 12563 _WebKitCSSMatrixJs skewX(num angle) native;
12564 12564
12565 WebKitCSSMatrixJs skewY(num angle) native; 12565 _WebKitCSSMatrixJs skewY(num angle) native;
12566 12566
12567 String toString() native; 12567 String toString() native;
12568 12568
12569 WebKitCSSMatrixJs translate(num x, num y, num z) native; 12569 _WebKitCSSMatrixJs translate(num x, num y, num z) native;
12570 } 12570 }
12571 12571
12572 class WebKitCSSRegionRuleJs extends CSSRuleJs implements WebKitCSSRegionRule nat ive "*WebKitCSSRegionRule" { 12572 class _WebKitCSSRegionRuleJs extends _CSSRuleJs implements WebKitCSSRegionRule n ative "*WebKitCSSRegionRule" {
12573 12573
12574 CSSRuleListJs get cssRules() native "return this.cssRules;"; 12574 _CSSRuleListJs get cssRules() native "return this.cssRules;";
12575 } 12575 }
12576 12576
12577 class WebKitCSSTransformValueJs extends CSSValueListJs implements WebKitCSSTrans formValue native "*WebKitCSSTransformValue" { 12577 class _WebKitCSSTransformValueJs extends _CSSValueListJs implements WebKitCSSTra nsformValue native "*WebKitCSSTransformValue" {
12578 12578
12579 static final int CSS_MATRIX = 11; 12579 static final int CSS_MATRIX = 11;
12580 12580
12581 static final int CSS_MATRIX3D = 21; 12581 static final int CSS_MATRIX3D = 21;
12582 12582
12583 static final int CSS_PERSPECTIVE = 20; 12583 static final int CSS_PERSPECTIVE = 20;
12584 12584
12585 static final int CSS_ROTATE = 4; 12585 static final int CSS_ROTATE = 4;
12586 12586
12587 static final int CSS_ROTATE3D = 17; 12587 static final int CSS_ROTATE3D = 17;
(...skipping 26 matching lines...) Expand all
12614 12614
12615 static final int CSS_TRANSLATEX = 2; 12615 static final int CSS_TRANSLATEX = 2;
12616 12616
12617 static final int CSS_TRANSLATEY = 3; 12617 static final int CSS_TRANSLATEY = 3;
12618 12618
12619 static final int CSS_TRANSLATEZ = 12; 12619 static final int CSS_TRANSLATEZ = 12;
12620 12620
12621 int get operationType() native "return this.operationType;"; 12621 int get operationType() native "return this.operationType;";
12622 } 12622 }
12623 12623
12624 class WebKitMutationObserverJs extends DOMTypeJs implements WebKitMutationObserv er native "*WebKitMutationObserver" { 12624 class _WebKitMutationObserverJs extends _DOMTypeJs implements WebKitMutationObse rver native "*WebKitMutationObserver" {
12625 12625
12626 void disconnect() native; 12626 void disconnect() native;
12627 } 12627 }
12628 12628
12629 class WebKitNamedFlowJs extends DOMTypeJs implements WebKitNamedFlow native "*We bKitNamedFlow" { 12629 class _WebKitNamedFlowJs extends _DOMTypeJs implements WebKitNamedFlow native "* WebKitNamedFlow" {
12630 } 12630 }
12631 12631
12632 class WebKitPointJs extends DOMTypeJs implements WebKitPoint native "*WebKitPoin t" { 12632 class _WebKitPointJs extends _DOMTypeJs implements WebKitPoint native "*WebKitPo int" {
12633 WebKitPoint(num x, num y) native; 12633 WebKitPoint(num x, num y) native;
12634 12634
12635 12635
12636 num get x() native "return this.x;"; 12636 num get x() native "return this.x;";
12637 12637
12638 void set x(num value) native "this.x = value;"; 12638 void set x(num value) native "this.x = value;";
12639 12639
12640 num get y() native "return this.y;"; 12640 num get y() native "return this.y;";
12641 12641
12642 void set y(num value) native "this.y = value;"; 12642 void set y(num value) native "this.y = value;";
12643 } 12643 }
12644 12644
12645 class WebKitTransitionEventJs extends EventJs implements WebKitTransitionEvent n ative "*WebKitTransitionEvent" { 12645 class _WebKitTransitionEventJs extends _EventJs implements WebKitTransitionEvent native "*WebKitTransitionEvent" {
12646 12646
12647 num get elapsedTime() native "return this.elapsedTime;"; 12647 num get elapsedTime() native "return this.elapsedTime;";
12648 12648
12649 String get propertyName() native "return this.propertyName;"; 12649 String get propertyName() native "return this.propertyName;";
12650 } 12650 }
12651 12651
12652 class WebSocketJs extends DOMTypeJs implements WebSocket native "*WebSocket" { 12652 class _WebSocketJs extends _DOMTypeJs implements WebSocket native "*WebSocket" {
12653 WebSocket(String url) native; 12653 WebSocket(String url) native;
12654 12654
12655 12655
12656 static final int CLOSED = 3; 12656 static final int CLOSED = 3;
12657 12657
12658 static final int CLOSING = 2; 12658 static final int CLOSING = 2;
12659 12659
12660 static final int CONNECTING = 0; 12660 static final int CONNECTING = 0;
12661 12661
12662 static final int OPEN = 1; 12662 static final int OPEN = 1;
(...skipping 11 matching lines...) Expand all
12674 String get protocol() native "return this.protocol;"; 12674 String get protocol() native "return this.protocol;";
12675 12675
12676 int get readyState() native "return this.readyState;"; 12676 int get readyState() native "return this.readyState;";
12677 12677
12678 String get url() native "return this.url;"; 12678 String get url() native "return this.url;";
12679 12679
12680 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native; 12680 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
12681 12681
12682 void close([int code = null, String reason = null]) native; 12682 void close([int code = null, String reason = null]) native;
12683 12683
12684 bool dispatchEvent(EventJs evt) native; 12684 bool dispatchEvent(_EventJs evt) native;
12685 12685
12686 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native; 12686 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
12687 12687
12688 bool send(String data) native; 12688 bool send(String data) native;
12689 } 12689 }
12690 12690
12691 class WheelEventJs extends UIEventJs implements WheelEvent native "*WheelEvent" { 12691 class _WheelEventJs extends _UIEventJs implements WheelEvent native "*WheelEvent " {
12692 12692
12693 bool get altKey() native "return this.altKey;"; 12693 bool get altKey() native "return this.altKey;";
12694 12694
12695 int get clientX() native "return this.clientX;"; 12695 int get clientX() native "return this.clientX;";
12696 12696
12697 int get clientY() native "return this.clientY;"; 12697 int get clientY() native "return this.clientY;";
12698 12698
12699 bool get ctrlKey() native "return this.ctrlKey;"; 12699 bool get ctrlKey() native "return this.ctrlKey;";
12700 12700
12701 bool get metaKey() native "return this.metaKey;"; 12701 bool get metaKey() native "return this.metaKey;";
(...skipping 13 matching lines...) Expand all
12715 int get wheelDelta() native "return this.wheelDelta;"; 12715 int get wheelDelta() native "return this.wheelDelta;";
12716 12716
12717 int get wheelDeltaX() native "return this.wheelDeltaX;"; 12717 int get wheelDeltaX() native "return this.wheelDeltaX;";
12718 12718
12719 int get wheelDeltaY() native "return this.wheelDeltaY;"; 12719 int get wheelDeltaY() native "return this.wheelDeltaY;";
12720 12720
12721 int get x() native "return this.x;"; 12721 int get x() native "return this.x;";
12722 12722
12723 int get y() native "return this.y;"; 12723 int get y() native "return this.y;";
12724 12724
12725 void initWebKitWheelEvent(int wheelDeltaX, int wheelDeltaY, DOMWindowJs view, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, b ool shiftKey, bool metaKey) native; 12725 void initWebKitWheelEvent(int wheelDeltaX, int wheelDeltaY, _DOMWindowJs view, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) native;
12726 } 12726 }
12727 12727
12728 class WorkerJs extends AbstractWorkerJs implements Worker native "*Worker" { 12728 class _WorkerJs extends _AbstractWorkerJs implements Worker native "*Worker" {
12729 12729
12730 void postMessage(Dynamic message, [List messagePorts = null]) native; 12730 void postMessage(Dynamic message, [List messagePorts = null]) native;
12731 12731
12732 void terminate() native; 12732 void terminate() native;
12733 12733
12734 void webkitPostMessage(Dynamic message, [List messagePorts = null]) native; 12734 void webkitPostMessage(Dynamic message, [List messagePorts = null]) native;
12735 } 12735 }
12736 12736
12737 class WorkerContextJs extends DOMTypeJs implements WorkerContext native "*Worker Context" { 12737 class _WorkerContextJs extends _DOMTypeJs implements WorkerContext native "*Work erContext" {
12738 12738
12739 static final int PERSISTENT = 1; 12739 static final int PERSISTENT = 1;
12740 12740
12741 static final int TEMPORARY = 0; 12741 static final int TEMPORARY = 0;
12742 12742
12743 WorkerLocationJs get location() native "return this.location;"; 12743 _WorkerLocationJs get location() native "return this.location;";
12744 12744
12745 void set location(WorkerLocationJs value) native "this.location = value;"; 12745 void set location(_WorkerLocationJs value) native "this.location = value;";
12746 12746
12747 WorkerNavigatorJs get navigator() native "return this.navigator;"; 12747 _WorkerNavigatorJs get navigator() native "return this.navigator;";
12748 12748
12749 void set navigator(WorkerNavigatorJs value) native "this.navigator = value;"; 12749 void set navigator(_WorkerNavigatorJs value) native "this.navigator = value;";
12750 12750
12751 EventListener get onerror() native "return this.onerror;"; 12751 EventListener get onerror() native "return this.onerror;";
12752 12752
12753 void set onerror(EventListener value) native "this.onerror = value;"; 12753 void set onerror(EventListener value) native "this.onerror = value;";
12754 12754
12755 WorkerContextJs get self() native "return this.self;"; 12755 _WorkerContextJs get self() native "return this.self;";
12756 12756
12757 void set self(WorkerContextJs value) native "this.self = value;"; 12757 void set self(_WorkerContextJs value) native "this.self = value;";
12758 12758
12759 IDBFactoryJs get webkitIndexedDB() native "return this.webkitIndexedDB;"; 12759 _IDBFactoryJs get webkitIndexedDB() native "return this.webkitIndexedDB;";
12760 12760
12761 NotificationCenterJs get webkitNotifications() native "return this.webkitNotif ications;"; 12761 _NotificationCenterJs get webkitNotifications() native "return this.webkitNoti fications;";
12762 12762
12763 DOMURLJs get webkitURL() native "return this.webkitURL;"; 12763 _DOMURLJs get webkitURL() native "return this.webkitURL;";
12764 12764
12765 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native; 12765 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
12766 12766
12767 void clearInterval(int handle) native; 12767 void clearInterval(int handle) native;
12768 12768
12769 void clearTimeout(int handle) native; 12769 void clearTimeout(int handle) native;
12770 12770
12771 void close() native; 12771 void close() native;
12772 12772
12773 bool dispatchEvent(EventJs evt) native; 12773 bool dispatchEvent(_EventJs evt) native;
12774 12774
12775 void importScripts() native; 12775 void importScripts() native;
12776 12776
12777 DatabaseJs openDatabase(String name, String version, String displayName, int e stimatedSize, [DatabaseCallback creationCallback = null]) native; 12777 _DatabaseJs openDatabase(String name, String version, String displayName, int estimatedSize, [DatabaseCallback creationCallback = null]) native;
12778 12778
12779 DatabaseSyncJs openDatabaseSync(String name, String version, String displayNam e, int estimatedSize, [DatabaseCallback creationCallback = null]) native; 12779 _DatabaseSyncJs openDatabaseSync(String name, String version, String displayNa me, int estimatedSize, [DatabaseCallback creationCallback = null]) native;
12780 12780
12781 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native; 12781 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
12782 12782
12783 int setInterval(TimeoutHandler handler, int timeout) native; 12783 int setInterval(TimeoutHandler handler, int timeout) native;
12784 12784
12785 int setTimeout(TimeoutHandler handler, int timeout) native; 12785 int setTimeout(TimeoutHandler handler, int timeout) native;
12786 12786
12787 void webkitRequestFileSystem(int type, int size, [FileSystemCallback successCa llback = null, ErrorCallback errorCallback = null]) native; 12787 void webkitRequestFileSystem(int type, int size, [FileSystemCallback successCa llback = null, ErrorCallback errorCallback = null]) native;
12788 12788
12789 DOMFileSystemSyncJs webkitRequestFileSystemSync(int type, int size) native; 12789 _DOMFileSystemSyncJs webkitRequestFileSystemSync(int type, int size) native;
12790 12790
12791 EntrySyncJs webkitResolveLocalFileSystemSyncURL(String url) native; 12791 _EntrySyncJs webkitResolveLocalFileSystemSyncURL(String url) native;
12792 12792
12793 void webkitResolveLocalFileSystemURL(String url, [EntryCallback successCallbac k = null, ErrorCallback errorCallback = null]) native; 12793 void webkitResolveLocalFileSystemURL(String url, [EntryCallback successCallbac k = null, ErrorCallback errorCallback = null]) native;
12794 } 12794 }
12795 12795
12796 class WorkerLocationJs extends DOMTypeJs implements WorkerLocation native "*Work erLocation" { 12796 class _WorkerLocationJs extends _DOMTypeJs implements WorkerLocation native "*Wo rkerLocation" {
12797 12797
12798 String get hash() native "return this.hash;"; 12798 String get hash() native "return this.hash;";
12799 12799
12800 String get host() native "return this.host;"; 12800 String get host() native "return this.host;";
12801 12801
12802 String get hostname() native "return this.hostname;"; 12802 String get hostname() native "return this.hostname;";
12803 12803
12804 String get href() native "return this.href;"; 12804 String get href() native "return this.href;";
12805 12805
12806 String get pathname() native "return this.pathname;"; 12806 String get pathname() native "return this.pathname;";
12807 12807
12808 String get port() native "return this.port;"; 12808 String get port() native "return this.port;";
12809 12809
12810 String get protocol() native "return this.protocol;"; 12810 String get protocol() native "return this.protocol;";
12811 12811
12812 String get search() native "return this.search;"; 12812 String get search() native "return this.search;";
12813 12813
12814 String toString() native; 12814 String toString() native;
12815 } 12815 }
12816 12816
12817 class WorkerNavigatorJs extends DOMTypeJs implements WorkerNavigator native "*Wo rkerNavigator" { 12817 class _WorkerNavigatorJs extends _DOMTypeJs implements WorkerNavigator native "* WorkerNavigator" {
12818 12818
12819 String get appName() native "return this.appName;"; 12819 String get appName() native "return this.appName;";
12820 12820
12821 String get appVersion() native "return this.appVersion;"; 12821 String get appVersion() native "return this.appVersion;";
12822 12822
12823 bool get onLine() native "return this.onLine;"; 12823 bool get onLine() native "return this.onLine;";
12824 12824
12825 String get platform() native "return this.platform;"; 12825 String get platform() native "return this.platform;";
12826 12826
12827 String get userAgent() native "return this.userAgent;"; 12827 String get userAgent() native "return this.userAgent;";
12828 } 12828 }
12829 12829
12830 class XMLHttpRequestJs extends DOMTypeJs implements XMLHttpRequest native "*XMLH ttpRequest" { 12830 class _XMLHttpRequestJs extends _DOMTypeJs implements XMLHttpRequest native "*XM LHttpRequest" {
12831 XMLHttpRequest() native; 12831 XMLHttpRequest() native;
12832 12832
12833 12833
12834 static final int DONE = 4; 12834 static final int DONE = 4;
12835 12835
12836 static final int HEADERS_RECEIVED = 2; 12836 static final int HEADERS_RECEIVED = 2;
12837 12837
12838 static final int LOADING = 3; 12838 static final int LOADING = 3;
12839 12839
12840 static final int OPENED = 1; 12840 static final int OPENED = 1;
12841 12841
12842 static final int UNSENT = 0; 12842 static final int UNSENT = 0;
12843 12843
12844 bool get asBlob() native "return this.asBlob;"; 12844 bool get asBlob() native "return this.asBlob;";
12845 12845
12846 void set asBlob(bool value) native "this.asBlob = value;"; 12846 void set asBlob(bool value) native "this.asBlob = value;";
12847 12847
12848 int get readyState() native "return this.readyState;"; 12848 int get readyState() native "return this.readyState;";
12849 12849
12850 Object get response() native "return this.response;"; 12850 Object get response() native "return this.response;";
12851 12851
12852 BlobJs get responseBlob() native "return this.responseBlob;"; 12852 _BlobJs get responseBlob() native "return this.responseBlob;";
12853 12853
12854 String get responseText() native "return this.responseText;"; 12854 String get responseText() native "return this.responseText;";
12855 12855
12856 String get responseType() native "return this.responseType;"; 12856 String get responseType() native "return this.responseType;";
12857 12857
12858 void set responseType(String value) native "this.responseType = value;"; 12858 void set responseType(String value) native "this.responseType = value;";
12859 12859
12860 DocumentJs get responseXML() native "return this.responseXML;"; 12860 _DocumentJs get responseXML() native "return this.responseXML;";
12861 12861
12862 int get status() native "return this.status;"; 12862 int get status() native "return this.status;";
12863 12863
12864 String get statusText() native "return this.statusText;"; 12864 String get statusText() native "return this.statusText;";
12865 12865
12866 XMLHttpRequestUploadJs get upload() native "return this.upload;"; 12866 _XMLHttpRequestUploadJs get upload() native "return this.upload;";
12867 12867
12868 bool get withCredentials() native "return this.withCredentials;"; 12868 bool get withCredentials() native "return this.withCredentials;";
12869 12869
12870 void set withCredentials(bool value) native "this.withCredentials = value;"; 12870 void set withCredentials(bool value) native "this.withCredentials = value;";
12871 12871
12872 void abort() native; 12872 void abort() native;
12873 12873
12874 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native; 12874 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
12875 12875
12876 bool dispatchEvent(EventJs evt) native; 12876 bool dispatchEvent(_EventJs evt) native;
12877 12877
12878 String getAllResponseHeaders() native; 12878 String getAllResponseHeaders() native;
12879 12879
12880 String getResponseHeader(String header) native; 12880 String getResponseHeader(String header) native;
12881 12881
12882 void open(String method, String url, [bool async = null, String user = null, S tring password = null]) native; 12882 void open(String method, String url, [bool async = null, String user = null, S tring password = null]) native;
12883 12883
12884 void overrideMimeType(String override) native; 12884 void overrideMimeType(String override) native;
12885 12885
12886 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native; 12886 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
12887 12887
12888 void send([var data = null]) native; 12888 void send([var data = null]) native;
12889 12889
12890 void setRequestHeader(String header, String value) native; 12890 void setRequestHeader(String header, String value) native;
12891 } 12891 }
12892 12892
12893 class XMLHttpRequestExceptionJs extends DOMTypeJs implements XMLHttpRequestExcep tion native "*XMLHttpRequestException" { 12893 class _XMLHttpRequestExceptionJs extends _DOMTypeJs implements XMLHttpRequestExc eption native "*XMLHttpRequestException" {
12894 12894
12895 static final int ABORT_ERR = 102; 12895 static final int ABORT_ERR = 102;
12896 12896
12897 static final int NETWORK_ERR = 101; 12897 static final int NETWORK_ERR = 101;
12898 12898
12899 int get code() native "return this.code;"; 12899 int get code() native "return this.code;";
12900 12900
12901 String get message() native "return this.message;"; 12901 String get message() native "return this.message;";
12902 12902
12903 String get name() native "return this.name;"; 12903 String get name() native "return this.name;";
12904 12904
12905 String toString() native; 12905 String toString() native;
12906 } 12906 }
12907 12907
12908 class XMLHttpRequestProgressEventJs extends ProgressEventJs implements XMLHttpRe questProgressEvent native "*XMLHttpRequestProgressEvent" { 12908 class _XMLHttpRequestProgressEventJs extends _ProgressEventJs implements XMLHttp RequestProgressEvent native "*XMLHttpRequestProgressEvent" {
12909 12909
12910 int get position() native "return this.position;"; 12910 int get position() native "return this.position;";
12911 12911
12912 int get totalSize() native "return this.totalSize;"; 12912 int get totalSize() native "return this.totalSize;";
12913 } 12913 }
12914 12914
12915 class XMLHttpRequestUploadJs extends DOMTypeJs implements XMLHttpRequestUpload n ative "*XMLHttpRequestUpload" { 12915 class _XMLHttpRequestUploadJs extends _DOMTypeJs implements XMLHttpRequestUpload native "*XMLHttpRequestUpload" {
12916 12916
12917 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native; 12917 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
12918 12918
12919 bool dispatchEvent(EventJs evt) native; 12919 bool dispatchEvent(_EventJs evt) native;
12920 12920
12921 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native; 12921 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
12922 } 12922 }
12923 12923
12924 class XMLSerializerJs extends DOMTypeJs implements XMLSerializer native "*XMLSer ializer" { 12924 class _XMLSerializerJs extends _DOMTypeJs implements XMLSerializer native "*XMLS erializer" {
12925 12925
12926 String serializeToString(NodeJs node) native; 12926 String serializeToString(_NodeJs node) native;
12927 } 12927 }
12928 12928
12929 class XPathEvaluatorJs extends DOMTypeJs implements XPathEvaluator native "*XPat hEvaluator" { 12929 class _XPathEvaluatorJs extends _DOMTypeJs implements XPathEvaluator native "*XP athEvaluator" {
12930 12930
12931 XPathExpressionJs createExpression(String expression, XPathNSResolverJs resolv er) native; 12931 _XPathExpressionJs createExpression(String expression, _XPathNSResolverJs reso lver) native;
12932 12932
12933 XPathNSResolverJs createNSResolver(NodeJs nodeResolver) native; 12933 _XPathNSResolverJs createNSResolver(_NodeJs nodeResolver) native;
12934 12934
12935 XPathResultJs evaluate(String expression, NodeJs contextNode, XPathNSResolverJ s resolver, int type, XPathResultJs inResult) native; 12935 _XPathResultJs evaluate(String expression, _NodeJs contextNode, _XPathNSResolv erJs resolver, int type, _XPathResultJs inResult) native;
12936 } 12936 }
12937 12937
12938 class XPathExceptionJs extends DOMTypeJs implements XPathException native "*XPat hException" { 12938 class _XPathExceptionJs extends _DOMTypeJs implements XPathException native "*XP athException" {
12939 12939
12940 static final int INVALID_EXPRESSION_ERR = 51; 12940 static final int INVALID_EXPRESSION_ERR = 51;
12941 12941
12942 static final int TYPE_ERR = 52; 12942 static final int TYPE_ERR = 52;
12943 12943
12944 int get code() native "return this.code;"; 12944 int get code() native "return this.code;";
12945 12945
12946 String get message() native "return this.message;"; 12946 String get message() native "return this.message;";
12947 12947
12948 String get name() native "return this.name;"; 12948 String get name() native "return this.name;";
12949 12949
12950 String toString() native; 12950 String toString() native;
12951 } 12951 }
12952 12952
12953 class XPathExpressionJs extends DOMTypeJs implements XPathExpression native "*XP athExpression" { 12953 class _XPathExpressionJs extends _DOMTypeJs implements XPathExpression native "* XPathExpression" {
12954 12954
12955 XPathResultJs evaluate(NodeJs contextNode, int type, XPathResultJs inResult) n ative; 12955 _XPathResultJs evaluate(_NodeJs contextNode, int type, _XPathResultJs inResult ) native;
12956 } 12956 }
12957 12957
12958 class XPathNSResolverJs extends DOMTypeJs implements XPathNSResolver native "*XP athNSResolver" { 12958 class _XPathNSResolverJs extends _DOMTypeJs implements XPathNSResolver native "* XPathNSResolver" {
12959 12959
12960 String lookupNamespaceURI(String prefix) native; 12960 String lookupNamespaceURI(String prefix) native;
12961 } 12961 }
12962 12962
12963 class XPathResultJs extends DOMTypeJs implements XPathResult native "*XPathResul t" { 12963 class _XPathResultJs extends _DOMTypeJs implements XPathResult native "*XPathRes ult" {
12964 12964
12965 static final int ANY_TYPE = 0; 12965 static final int ANY_TYPE = 0;
12966 12966
12967 static final int ANY_UNORDERED_NODE_TYPE = 8; 12967 static final int ANY_UNORDERED_NODE_TYPE = 8;
12968 12968
12969 static final int BOOLEAN_TYPE = 3; 12969 static final int BOOLEAN_TYPE = 3;
12970 12970
12971 static final int FIRST_ORDERED_NODE_TYPE = 9; 12971 static final int FIRST_ORDERED_NODE_TYPE = 9;
12972 12972
12973 static final int NUMBER_TYPE = 1; 12973 static final int NUMBER_TYPE = 1;
12974 12974
12975 static final int ORDERED_NODE_ITERATOR_TYPE = 5; 12975 static final int ORDERED_NODE_ITERATOR_TYPE = 5;
12976 12976
12977 static final int ORDERED_NODE_SNAPSHOT_TYPE = 7; 12977 static final int ORDERED_NODE_SNAPSHOT_TYPE = 7;
12978 12978
12979 static final int STRING_TYPE = 2; 12979 static final int STRING_TYPE = 2;
12980 12980
12981 static final int UNORDERED_NODE_ITERATOR_TYPE = 4; 12981 static final int UNORDERED_NODE_ITERATOR_TYPE = 4;
12982 12982
12983 static final int UNORDERED_NODE_SNAPSHOT_TYPE = 6; 12983 static final int UNORDERED_NODE_SNAPSHOT_TYPE = 6;
12984 12984
12985 bool get booleanValue() native "return this.booleanValue;"; 12985 bool get booleanValue() native "return this.booleanValue;";
12986 12986
12987 bool get invalidIteratorState() native "return this.invalidIteratorState;"; 12987 bool get invalidIteratorState() native "return this.invalidIteratorState;";
12988 12988
12989 num get numberValue() native "return this.numberValue;"; 12989 num get numberValue() native "return this.numberValue;";
12990 12990
12991 int get resultType() native "return this.resultType;"; 12991 int get resultType() native "return this.resultType;";
12992 12992
12993 NodeJs get singleNodeValue() native "return this.singleNodeValue;"; 12993 _NodeJs get singleNodeValue() native "return this.singleNodeValue;";
12994 12994
12995 int get snapshotLength() native "return this.snapshotLength;"; 12995 int get snapshotLength() native "return this.snapshotLength;";
12996 12996
12997 String get stringValue() native "return this.stringValue;"; 12997 String get stringValue() native "return this.stringValue;";
12998 12998
12999 NodeJs iterateNext() native; 12999 _NodeJs iterateNext() native;
13000 13000
13001 NodeJs snapshotItem(int index) native; 13001 _NodeJs snapshotItem(int index) native;
13002 } 13002 }
13003 13003
13004 class XSLTProcessorJs extends DOMTypeJs implements XSLTProcessor native "*XSLTPr ocessor" { 13004 class _XSLTProcessorJs extends _DOMTypeJs implements XSLTProcessor native "*XSLT Processor" {
13005 13005
13006 void clearParameters() native; 13006 void clearParameters() native;
13007 13007
13008 String getParameter(String namespaceURI, String localName) native; 13008 String getParameter(String namespaceURI, String localName) native;
13009 13009
13010 void importStylesheet(NodeJs stylesheet) native; 13010 void importStylesheet(_NodeJs stylesheet) native;
13011 13011
13012 void removeParameter(String namespaceURI, String localName) native; 13012 void removeParameter(String namespaceURI, String localName) native;
13013 13013
13014 void reset() native; 13014 void reset() native;
13015 13015
13016 void setParameter(String namespaceURI, String localName, String value) native; 13016 void setParameter(String namespaceURI, String localName, String value) native;
13017 13017
13018 DocumentJs transformToDocument(NodeJs source) native; 13018 _DocumentJs transformToDocument(_NodeJs source) native;
13019 13019
13020 DocumentFragmentJs transformToFragment(NodeJs source, DocumentJs docVal) nativ e; 13020 _DocumentFragmentJs transformToFragment(_NodeJs source, _DocumentJs docVal) na tive;
13021 } 13021 }
13022 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 13022 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
13023 // for details. All rights reserved. Use of this source code is governed by a 13023 // for details. All rights reserved. Use of this source code is governed by a
13024 // BSD-style license that can be found in the LICENSE file. 13024 // BSD-style license that can be found in the LICENSE file.
13025 13025
13026 // WARNING: Do not edit - generated code. 13026 // WARNING: Do not edit - generated code.
13027 13027
13028 interface AbstractWorker extends EventTarget { 13028 interface AbstractWorker extends EventTarget {
13029 13029
13030 void addEventListener(String type, EventListener listener, [bool useCapture]); 13030 void addEventListener(String type, EventListener listener, [bool useCapture]);
(...skipping 13632 matching lines...) Expand 10 before | Expand all | Expand 10 after
26663 interface DOMType { 26663 interface DOMType {
26664 // TODO(vsm): Remove if/when Dart supports OLS for all objects. 26664 // TODO(vsm): Remove if/when Dart supports OLS for all objects.
26665 var dartObjectLocalStorage; 26665 var dartObjectLocalStorage;
26666 26666
26667 String get typeName(); 26667 String get typeName();
26668 } 26668 }
26669 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 26669 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
26670 // for details. All rights reserved. Use of this source code is governed by a 26670 // for details. All rights reserved. Use of this source code is governed by a
26671 // BSD-style license that can be found in the LICENSE file. 26671 // BSD-style license that can be found in the LICENSE file.
26672 26672
26673 class DOMTypeJs implements DOMType native '*DOMType' { 26673 class _DOMTypeJs implements DOMType native '*DOMType' {
26674 26674
26675 var dartObjectLocalStorage; 26675 var dartObjectLocalStorage;
26676 26676
26677 String get typeName() native; 26677 String get typeName() native;
26678 } 26678 }
26679 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 26679 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
26680 // for details. All rights reserved. Use of this source code is governed by a 26680 // for details. All rights reserved. Use of this source code is governed by a
26681 // BSD-style license that can be found in the LICENSE file. 26681 // BSD-style license that can be found in the LICENSE file.
26682 26682
26683 26683
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
26862 if (length < 0) throw new IllegalArgumentException('length'); 26862 if (length < 0) throw new IllegalArgumentException('length');
26863 if (start < 0) throw new IndexOutOfRangeException(start); 26863 if (start < 0) throw new IndexOutOfRangeException(start);
26864 int end = start + length; 26864 int end = start + length;
26865 if (end > a.length) throw new IndexOutOfRangeException(end); 26865 if (end > a.length) throw new IndexOutOfRangeException(end);
26866 for (int i = start; i < end; i++) { 26866 for (int i = start; i < end; i++) {
26867 accumulator.add(a[i]); 26867 accumulator.add(a[i]);
26868 } 26868 }
26869 return accumulator; 26869 return accumulator;
26870 } 26870 }
26871 } 26871 }
OLDNEW
« no previous file with comments | « no previous file | client/dom/generated/src/frog/AbstractWorker.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698