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

Side by Side Diff: client/samples/hi/hi.dart.js

Issue 9226025: New dart.js bootstrap script for apps (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 11 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
OLDNEW
(Empty)
1 // ********** Library dart:core **************
2 // ********** Natives dart:core **************
3 Object.defineProperty(Object.prototype, '$typeNameOf', { value: function() {
4 if ((typeof(window) != 'undefined' && window.constructor.name == 'DOMWindow')
5 || typeof(process) != 'undefined') { // fast-path for Chrome and Node
6 return this.constructor.name;
7 }
8 var str = Object.prototype.toString.call(this);
9 str = str.substring(8, str.length - 1);
10 if (str == 'Window') {
11 str = 'DOMWindow';
12 } else if (str == 'Document') {
13 str = 'HTMLDocument';
14 }
15 return str;
16 }, enumerable: false, writable: true, configurable: true});
17 function $throw(e) {
18 // If e is not a value, we can use V8's captureStackTrace utility method.
19 // TODO(jmesserly): capture the stack trace on other JS engines.
20 if (e && (typeof e == 'object') && Error.captureStackTrace) {
21 // TODO(jmesserly): this will clobber the e.stack property
22 Error.captureStackTrace(e, $throw);
23 }
24 throw e;
25 }
26 Object.defineProperty(Object.prototype, '$index', { value: function(i) {
27 var proto = Object.getPrototypeOf(this);
28 if (proto !== Object) {
29 proto.$index = function(i) { return this[i]; }
30 }
31 return this[i];
32 }, enumerable: false, writable: true, configurable: true});
33 Object.defineProperty(Array.prototype, '$index', { value: function(i) {
34 return this[i];
35 }, enumerable: false, writable: true, configurable: true});
36 Object.defineProperty(String.prototype, '$index', { value: function(i) {
37 return this[i];
38 }, enumerable: false, writable: true, configurable: true});
39 Object.defineProperty(Object.prototype, '$setindex', { value: function(i, value) {
40 var proto = Object.getPrototypeOf(this);
41 if (proto !== Object) {
42 proto.$setindex = function(i, value) { return this[i] = value; }
43 }
44 return this[i] = value;
45 }, enumerable: false, writable: true, configurable: true});
46 Object.defineProperty(Array.prototype, '$setindex', { value: function(i, value) {
47 return this[i] = value; }, enumerable: false, writable: true,
48 configurable: true});
49 Object.defineProperty(Object.prototype, "get$typeName", { value: Object.prototyp e.$typeNameOf, enumerable: false, writable: true, configurable: true});
50 // ********** Code for Object **************
51 Object.defineProperty(Object.prototype, "get$dynamic", { value: function() {
52 "use strict"; return this;
53 }, enumerable: false, writable: true, configurable: true });
54 Object.defineProperty(Object.prototype, "noSuchMethod", { value: function(name, args) {
55 $throw(new NoSuchMethodException(this, name, args));
56 }, enumerable: false, writable: true, configurable: true });
57 Object.defineProperty(Object.prototype, "add$1", { value: function($0) {
58 return this.noSuchMethod$2("add", [$0]);
59 }, enumerable: false, writable: true, configurable: true });
60 Object.defineProperty(Object.prototype, "addAll$1", { value: function($0) {
61 return this.noSuchMethod$2("addAll", [$0]);
62 }, enumerable: false, writable: true, configurable: true });
63 Object.defineProperty(Object.prototype, "appendChild$1", { value: function($0) {
64 return this.noSuchMethod$2("appendChild", [$0]);
65 }, enumerable: false, writable: true, configurable: true });
66 Object.defineProperty(Object.prototype, "clear$0", { value: function() {
67 return this.noSuchMethod$2("clear", []);
68 }, enumerable: false, writable: true, configurable: true });
69 Object.defineProperty(Object.prototype, "filter$1", { value: function($0) {
70 return this.noSuchMethod$2("filter", [$0]);
71 }, enumerable: false, writable: true, configurable: true });
72 Object.defineProperty(Object.prototype, "hasNext$0", { value: function() {
73 return this.noSuchMethod$2("hasNext", []);
74 }, enumerable: false, writable: true, configurable: true });
75 Object.defineProperty(Object.prototype, "is$html_Element", { value: function() {
76 return false;
77 }, enumerable: false, writable: true, configurable: true });
78 Object.defineProperty(Object.prototype, "item$1", { value: function($0) {
79 return this.noSuchMethod$2("item", [$0]);
80 }, enumerable: false, writable: true, configurable: true });
81 Object.defineProperty(Object.prototype, "iterator$0", { value: function() {
82 return this.noSuchMethod$2("iterator", []);
83 }, enumerable: false, writable: true, configurable: true });
84 Object.defineProperty(Object.prototype, "next$0", { value: function() {
85 return this.noSuchMethod$2("next", []);
86 }, enumerable: false, writable: true, configurable: true });
87 Object.defineProperty(Object.prototype, "noSuchMethod$2", { value: function($0, $1) {
88 return this.noSuchMethod($0, $1);
89 }, enumerable: false, writable: true, configurable: true });
90 Object.defineProperty(Object.prototype, "querySelector$1", { value: function($0) {
91 return this.noSuchMethod$2("querySelector", [$0]);
92 }, enumerable: false, writable: true, configurable: true });
93 Object.defineProperty(Object.prototype, "replaceChild$2", { value: function($0, $1) {
94 return this.noSuchMethod$2("replaceChild", [$0, $1]);
95 }, enumerable: false, writable: true, configurable: true });
96 Object.defineProperty(Object.prototype, "toString$0", { value: function() {
97 return this.toString();
98 }, enumerable: false, writable: true, configurable: true });
99 // ********** Code for NoSuchMethodException **************
100 function NoSuchMethodException(_receiver, _functionName, _arguments) {
101 this._receiver = _receiver;
102 this._functionName = _functionName;
103 this._arguments = _arguments;
104 }
105 NoSuchMethodException.prototype.toString = function() {
106 var sb = new StringBufferImpl("");
107 for (var i = (0);
108 i < this._arguments.get$length(); i++) {
109 if (i > (0)) {
110 sb.add(", ");
111 }
112 sb.add(this._arguments.$index(i));
113 }
114 sb.add("]");
115 return ("NoSuchMethodException - receiver: '" + this._receiver + "' ") + ("fun ction name: '" + this._functionName + "' arguments: [" + sb + "]");
116 }
117 NoSuchMethodException.prototype.toString$0 = NoSuchMethodException.prototype.toS tring;
118 // ********** Code for ClosureArgumentMismatchException **************
119 function ClosureArgumentMismatchException() {
120
121 }
122 ClosureArgumentMismatchException.prototype.toString = function() {
123 return "Closure argument mismatch";
124 }
125 ClosureArgumentMismatchException.prototype.toString$0 = ClosureArgumentMismatchE xception.prototype.toString;
126 // ********** Code for ObjectNotClosureException **************
127 function ObjectNotClosureException() {
128
129 }
130 ObjectNotClosureException.prototype.toString = function() {
131 return "Object is not closure";
132 }
133 ObjectNotClosureException.prototype.toString$0 = ObjectNotClosureException.proto type.toString;
134 // ********** Code for StackOverflowException **************
135 function StackOverflowException() {
136
137 }
138 StackOverflowException.prototype.toString = function() {
139 return "Stack Overflow";
140 }
141 StackOverflowException.prototype.toString$0 = StackOverflowException.prototype.t oString;
142 // ********** Code for NullPointerException **************
143 function NullPointerException() {
144
145 }
146 NullPointerException.prototype.toString = function() {
147 return "NullPointerException";
148 }
149 NullPointerException.prototype.toString$0 = NullPointerException.prototype.toStr ing;
150 // ********** Code for NoMoreElementsException **************
151 function NoMoreElementsException() {
152
153 }
154 NoMoreElementsException.prototype.toString = function() {
155 return "NoMoreElementsException";
156 }
157 NoMoreElementsException.prototype.toString$0 = NoMoreElementsException.prototype .toString;
158 // ********** Code for UnsupportedOperationException **************
159 function UnsupportedOperationException(_message) {
160 this._message = _message;
161 }
162 UnsupportedOperationException.prototype.toString = function() {
163 return ("UnsupportedOperationException: " + this._message);
164 }
165 UnsupportedOperationException.prototype.toString$0 = UnsupportedOperationExcepti on.prototype.toString;
166 // ********** Code for dart_core_Function **************
167 Function.prototype.to$call$0 = function() {
168 this.call$0 = this._genStub(0);
169 this.to$call$0 = function() { return this.call$0; };
170 return this.call$0;
171 };
172 Function.prototype.call$0 = function() {
173 return this.to$call$0()();
174 };
175 function to$call$0(f) { return f && f.to$call$0(); }
176 Function.prototype.to$call$1 = function() {
177 this.call$1 = this._genStub(1);
178 this.to$call$1 = function() { return this.call$1; };
179 return this.call$1;
180 };
181 Function.prototype.call$1 = function($0) {
182 return this.to$call$1()($0);
183 };
184 function to$call$1(f) { return f && f.to$call$1(); }
185 // ********** Code for top level **************
186 function _toDartException(e) {
187 function attachStack(dartEx) {
188 // TODO(jmesserly): setting the stack property is not a long term solution.
189 var stack = e.stack;
190 // The stack contains the error message, and the stack is all that is
191 // printed (the exception's toString() is never called). Make the Dart
192 // exception's toString() be the dominant message.
193 if (typeof stack == 'string') {
194 var message = dartEx.toString();
195 if (/^(Type|Range)Error:/.test(stack)) {
196 // Indent JS message (it can be helpful) so new message stands out.
197 stack = ' (' + stack.substring(0, stack.indexOf('\n')) + ')\n' +
198 stack.substring(stack.indexOf('\n') + 1);
199 }
200 stack = message + '\n' + stack;
201 }
202 dartEx.stack = stack;
203 return dartEx;
204 }
205
206 if (e instanceof TypeError) {
207 switch(e.type) {
208 case 'property_not_function':
209 case 'called_non_callable':
210 if (e.arguments[0] == null) {
211 return attachStack(new NullPointerException());
212 } else {
213 return attachStack(new ObjectNotClosureException());
214 }
215 break;
216 case 'non_object_property_call':
217 case 'non_object_property_load':
218 return attachStack(new NullPointerException());
219 break;
220 case 'undefined_method':
221 var mname = e.arguments[0];
222 if (typeof(mname) == 'string' && (mname.indexOf('call$') == 0
223 || mname == 'call' || mname == 'apply')) {
224 return attachStack(new ObjectNotClosureException());
225 } else {
226 // TODO(jmesserly): fix noSuchMethod on operators so we don't hit this
227 return attachStack(new NoSuchMethodException('', e.arguments[0], []));
228 }
229 break;
230 }
231 } else if (e instanceof RangeError) {
232 if (e.message.indexOf('call stack') >= 0) {
233 return attachStack(new StackOverflowException());
234 }
235 }
236 return e;
237 }
238 // ********** Library dart:coreimpl **************
239 // ********** Code for ListFactory **************
240 ListFactory = Array;
241 ListFactory.ListFactory$from$factory = function(other) {
242 var list = [];
243 for (var $$i = other.iterator$0(); $$i.hasNext$0(); ) {
244 var e = $$i.next$0();
245 list.add$1(e);
246 }
247 return list;
248 }
249 Object.defineProperty(ListFactory.prototype, "get$length", { value: function() { return this.length; }, enumerable: false, writable: true, configurable: true }) ;
250 Object.defineProperty(ListFactory.prototype, "set$length", { value: function(val ue) { return this.length = value; }, enumerable: false, writable: true, configur able: true });
251 Object.defineProperty(ListFactory.prototype, "add", { value: function(value) {
252 this.push(value);
253 }, enumerable: false, writable: true, configurable: true });
254 Object.defineProperty(ListFactory.prototype, "addAll", { value: function(collect ion) {
255 for (var $$i = collection.iterator$0(); $$i.hasNext$0(); ) {
256 var item = $$i.next$0();
257 this.add(item);
258 }
259 }, enumerable: false, writable: true, configurable: true });
260 Object.defineProperty(ListFactory.prototype, "clear", { value: function() {
261 this.set$length((0));
262 }, enumerable: false, writable: true, configurable: true });
263 Object.defineProperty(ListFactory.prototype, "get$clear", { value: function() {
264 return this.clear.bind(this);
265 }, enumerable: false, writable: true, configurable: true });
266 Object.defineProperty(ListFactory.prototype, "iterator", { value: function() {
267 return new ListIterator(this);
268 }, enumerable: false, writable: true, configurable: true });
269 Object.defineProperty(ListFactory.prototype, "add$1", { value: ListFactory.proto type.add, enumerable: false, writable: true, configurable: true });
270 Object.defineProperty(ListFactory.prototype, "addAll$1", { value: ListFactory.pr ototype.addAll, enumerable: false, writable: true, configurable: true });
271 Object.defineProperty(ListFactory.prototype, "clear$0", { value: ListFactory.pro totype.clear, enumerable: false, writable: true, configurable: true });
272 Object.defineProperty(ListFactory.prototype, "filter$1", { value: function($0) {
273 return this.filter(to$call$1($0));
274 }, enumerable: false, writable: true, configurable: true });
275 Object.defineProperty(ListFactory.prototype, "iterator$0", { value: ListFactory. prototype.iterator, enumerable: false, writable: true, configurable: true });
276 ListFactory_E = ListFactory;
277 ListFactory_dart_core_String = ListFactory;
278 // ********** Code for ListIterator **************
279 function ListIterator(array) {
280 this._array = array;
281 this._pos = (0);
282 }
283 ListIterator.prototype.hasNext = function() {
284 return this._array.get$length() > this._pos;
285 }
286 ListIterator.prototype.next = function() {
287 if (!this.hasNext()) {
288 $throw(const$0000);
289 }
290 return this._array.$index(this._pos++);
291 }
292 ListIterator.prototype.hasNext$0 = ListIterator.prototype.hasNext;
293 ListIterator.prototype.next$0 = ListIterator.prototype.next;
294 // ********** Code for NumImplementation **************
295 NumImplementation = Number;
296 // ********** Code for StringBufferImpl **************
297 function StringBufferImpl(content) {
298 this.clear();
299 this.add(content);
300 }
301 StringBufferImpl.prototype.get$length = function() {
302 return this._length;
303 }
304 StringBufferImpl.prototype.add = function(obj) {
305 var str = obj.toString$0();
306 if (str == null || str.isEmpty()) return this;
307 this._buffer.add$1(str);
308 this._length = this._length + str.length;
309 return this;
310 }
311 StringBufferImpl.prototype.addAll = function(objects) {
312 for (var $$i = objects.iterator$0(); $$i.hasNext$0(); ) {
313 var obj = $$i.next$0();
314 this.add(obj);
315 }
316 return this;
317 }
318 StringBufferImpl.prototype.clear = function() {
319 this._buffer = new Array();
320 this._length = (0);
321 return this;
322 }
323 StringBufferImpl.prototype.get$clear = function() {
324 return this.clear.bind(this);
325 }
326 StringBufferImpl.prototype.toString = function() {
327 if (this._buffer.get$length() == (0)) return "";
328 if (this._buffer.get$length() == (1)) return this._buffer.$index((0));
329 var result = StringBase.concatAll(this._buffer);
330 this._buffer.clear$0();
331 this._buffer.add$1(result);
332 return result;
333 }
334 StringBufferImpl.prototype.add$1 = StringBufferImpl.prototype.add;
335 StringBufferImpl.prototype.addAll$1 = StringBufferImpl.prototype.addAll;
336 StringBufferImpl.prototype.clear$0 = StringBufferImpl.prototype.clear;
337 StringBufferImpl.prototype.toString$0 = StringBufferImpl.prototype.toString;
338 // ********** Code for StringBase **************
339 function StringBase() {}
340 StringBase.join = function(strings, separator) {
341 if (strings.get$length() == (0)) return "";
342 var s = strings.$index((0));
343 for (var i = (1);
344 i < strings.get$length(); i++) {
345 s = s + separator + strings.$index(i);
346 }
347 return s;
348 }
349 StringBase.concatAll = function(strings) {
350 return StringBase.join(strings, "");
351 }
352 // ********** Code for StringImplementation **************
353 StringImplementation = String;
354 StringImplementation.prototype.get$length = function() { return this.length; };
355 StringImplementation.prototype.isEmpty = function() {
356 return this.length == (0);
357 }
358 // ********** Code for _Worker **************
359 // ********** Code for _ArgumentMismatchException **************
360 /** Implements extends for Dart classes on JavaScript prototypes. */
361 function $inherits(child, parent) {
362 if (child.prototype.__proto__) {
363 child.prototype.__proto__ = parent.prototype;
364 } else {
365 function tmp() {};
366 tmp.prototype = parent.prototype;
367 child.prototype = new tmp();
368 child.prototype.constructor = child;
369 }
370 }
371 $inherits(_ArgumentMismatchException, ClosureArgumentMismatchException);
372 function _ArgumentMismatchException(_message) {
373 this._dart_coreimpl_message = _message;
374 ClosureArgumentMismatchException.call(this);
375 }
376 _ArgumentMismatchException.prototype.toString = function() {
377 return ("Closure argument mismatch: " + this._dart_coreimpl_message);
378 }
379 _ArgumentMismatchException.prototype.toString$0 = _ArgumentMismatchException.pro totype.toString;
380 // ********** Code for _FunctionImplementation **************
381 _FunctionImplementation = Function;
382 _FunctionImplementation.prototype._genStub = function(argsLength, names) {
383 // Fast path #1: if no named arguments and arg count matches
384 if (this.length == argsLength && !names) {
385 return this;
386 }
387
388 var paramsNamed = this.$optional ? (this.$optional.length / 2) : 0;
389 var paramsBare = this.length - paramsNamed;
390 var argsNamed = names ? names.length : 0;
391 var argsBare = argsLength - argsNamed;
392
393 // Check we got the right number of arguments
394 if (argsBare < paramsBare || argsLength > this.length ||
395 argsNamed > paramsNamed) {
396 return function() {
397 $throw(new _ArgumentMismatchException(
398 'Wrong number of arguments to function. Expected ' + paramsBare +
399 ' positional arguments and at most ' + paramsNamed +
400 ' named arguments, but got ' + argsBare +
401 ' positional arguments and ' + argsNamed + ' named arguments.'));
402 };
403 }
404
405 // First, fill in all of the default values
406 var p = new Array(paramsBare);
407 if (paramsNamed) {
408 p = p.concat(this.$optional.slice(paramsNamed));
409 }
410 // Fill in positional args
411 var a = new Array(argsLength);
412 for (var i = 0; i < argsBare; i++) {
413 p[i] = a[i] = '$' + i;
414 }
415 // Then overwrite with supplied values for optional args
416 var lastParameterIndex;
417 var namesInOrder = true;
418 for (var i = 0; i < argsNamed; i++) {
419 var name = names[i];
420 a[i + argsBare] = name;
421 var j = this.$optional.indexOf(name);
422 if (j < 0 || j >= paramsNamed) {
423 return function() {
424 $throw(new _ArgumentMismatchException(
425 'Named argument "' + name + '" was not expected by function.' +
426 ' Did you forget to mark the function parameter [optional]?'));
427 };
428 } else if (lastParameterIndex && lastParameterIndex > j) {
429 namesInOrder = false;
430 }
431 p[j + paramsBare] = name;
432 lastParameterIndex = j;
433 }
434
435 if (this.length == argsLength && namesInOrder) {
436 // Fast path #2: named arguments, but they're in order and all supplied.
437 return this;
438 }
439
440 // Note: using Function instead of 'eval' to get a clean scope.
441 // TODO(jmesserly): evaluate the performance of these stubs.
442 var f = 'function(' + a.join(',') + '){return $f(' + p.join(',') + ');}';
443 return new Function('$f', 'return ' + f + '').call(null, this);
444
445 }
446 // ********** Code for top level **************
447 // ********** Library dom **************
448 // ********** Code for dom_Window **************
449 // ********** Code for dom_AbstractWorker **************
450 function $dynamic(name) {
451 var f = Object.prototype[name];
452 if (f && f.methods) return f.methods;
453
454 var methods = {};
455 if (f) methods.Object = f;
456 function $dynamicBind() {
457 // Find the target method
458 var obj = this;
459 var tag = obj.$typeNameOf();
460 var method = methods[tag];
461 if (!method) {
462 var table = $dynamicMetadata;
463 for (var i = 0; i < table.length; i++) {
464 var entry = table[i];
465 if (entry.map.hasOwnProperty(tag)) {
466 method = methods[entry.tag];
467 if (method) break;
468 }
469 }
470 }
471 method = method || methods.Object;
472 var proto = Object.getPrototypeOf(obj);
473 if (!proto.hasOwnProperty(name)) {
474 Object.defineProperty(proto, name,
475 { value: method, enumerable: false, writable: true,
476 configurable: true });
477 }
478
479 return method.apply(this, Array.prototype.slice.call(arguments));
480 };
481 $dynamicBind.methods = methods;
482 Object.defineProperty(Object.prototype, name, { value: $dynamicBind,
483 enumerable: false, writable: true, configurable: true});
484 return methods;
485 }
486 if (typeof $dynamicMetadata == 'undefined') $dynamicMetadata = [];
487
488 function $dynamicSetMetadata(inputTable) {
489 // TODO: Deal with light isolates.
490 var table = [];
491 for (var i = 0; i < inputTable.length; i++) {
492 var tag = inputTable[i][0];
493 var tags = inputTable[i][1];
494 var map = {};
495 var tagNames = tags.split('|');
496 for (var j = 0; j < tagNames.length; j++) {
497 map[tagNames[j]] = true;
498 }
499 table.push({tag: tag, tags: tags, map: map});
500 }
501 $dynamicMetadata = table;
502 }
503 $dynamic("get$dartObjectLocalStorage").AbstractWorker = function() { return this .dartObjectLocalStorage; };
504 $dynamic("set$dartObjectLocalStorage").AbstractWorker = function(value) { return this.dartObjectLocalStorage = value; };
505 // ********** Code for dom_ArrayBuffer **************
506 $dynamic("get$dartObjectLocalStorage").ArrayBuffer = function() { return this.da rtObjectLocalStorage; };
507 $dynamic("set$dartObjectLocalStorage").ArrayBuffer = function(value) { return th is.dartObjectLocalStorage = value; };
508 // ********** Code for dom_ArrayBufferView **************
509 $dynamic("get$dartObjectLocalStorage").ArrayBufferView = function() { return thi s.dartObjectLocalStorage; };
510 $dynamic("set$dartObjectLocalStorage").ArrayBufferView = function(value) { retur n this.dartObjectLocalStorage = value; };
511 // ********** Code for dom_Attr **************
512 // ********** Code for dom_AudioBuffer **************
513 $dynamic("get$length").AudioBuffer = function() { return this.length; };
514 $dynamic("set$length").AudioBuffer = function(value) { return this.length = valu e; };
515 $dynamic("get$dartObjectLocalStorage").AudioBuffer = function() { return this.da rtObjectLocalStorage; };
516 $dynamic("set$dartObjectLocalStorage").AudioBuffer = function(value) { return th is.dartObjectLocalStorage = value; };
517 // ********** Code for dom_AudioBufferSourceNode **************
518 // ********** Code for dom_AudioChannelMerger **************
519 // ********** Code for dom_AudioChannelSplitter **************
520 // ********** Code for dom_AudioContext **************
521 $dynamic("get$dartObjectLocalStorage").AudioContext = function() { return this.d artObjectLocalStorage; };
522 $dynamic("set$dartObjectLocalStorage").AudioContext = function(value) { return t his.dartObjectLocalStorage = value; };
523 // ********** Code for dom_AudioDestinationNode **************
524 // ********** Code for dom_AudioGain **************
525 // ********** Code for dom_AudioGainNode **************
526 // ********** Code for dom_AudioListener **************
527 $dynamic("get$dartObjectLocalStorage").AudioListener = function() { return this. dartObjectLocalStorage; };
528 $dynamic("set$dartObjectLocalStorage").AudioListener = function(value) { return this.dartObjectLocalStorage = value; };
529 // ********** Code for dom_AudioNode **************
530 $dynamic("get$dartObjectLocalStorage").AudioNode = function() { return this.dart ObjectLocalStorage; };
531 $dynamic("set$dartObjectLocalStorage").AudioNode = function(value) { return this .dartObjectLocalStorage = value; };
532 // ********** Code for dom_AudioPannerNode **************
533 // ********** Code for dom_AudioParam **************
534 $dynamic("get$dartObjectLocalStorage").AudioParam = function() { return this.dar tObjectLocalStorage; };
535 $dynamic("set$dartObjectLocalStorage").AudioParam = function(value) { return thi s.dartObjectLocalStorage = value; };
536 // ********** Code for dom_AudioProcessingEvent **************
537 // ********** Code for dom_AudioSourceNode **************
538 // ********** Code for dom_BarInfo **************
539 $dynamic("get$dartObjectLocalStorage").BarInfo = function() { return this.dartOb jectLocalStorage; };
540 $dynamic("set$dartObjectLocalStorage").BarInfo = function(value) { return this.d artObjectLocalStorage = value; };
541 // ********** Code for dom_BeforeLoadEvent **************
542 // ********** Code for dom_BiquadFilterNode **************
543 // ********** Code for dom_Blob **************
544 $dynamic("get$dartObjectLocalStorage").Blob = function() { return this.dartObjec tLocalStorage; };
545 $dynamic("set$dartObjectLocalStorage").Blob = function(value) { return this.dart ObjectLocalStorage = value; };
546 // ********** Code for dom_CDATASection **************
547 // ********** Code for dom_CSSCharsetRule **************
548 // ********** Code for dom_CSSFontFaceRule **************
549 // ********** Code for dom_CSSImportRule **************
550 // ********** Code for dom_CSSMediaRule **************
551 // ********** Code for dom_CSSPageRule **************
552 // ********** Code for dom_CSSPrimitiveValue **************
553 // ********** Code for dom_CSSRule **************
554 $dynamic("get$dartObjectLocalStorage").CSSRule = function() { return this.dartOb jectLocalStorage; };
555 $dynamic("set$dartObjectLocalStorage").CSSRule = function(value) { return this.d artObjectLocalStorage = value; };
556 // ********** Code for dom_CSSRuleList **************
557 $dynamic("get$length").CSSRuleList = function() { return this.length; };
558 $dynamic("set$length").CSSRuleList = function(value) { return this.length = valu e; };
559 $dynamic("get$dartObjectLocalStorage").CSSRuleList = function() { return this.da rtObjectLocalStorage; };
560 $dynamic("set$dartObjectLocalStorage").CSSRuleList = function(value) { return th is.dartObjectLocalStorage = value; };
561 $dynamic("item$1").CSSRuleList = function($0) {
562 return this.item($0);
563 };
564 // ********** Code for dom_CSSStyleDeclaration **************
565 $dynamic("get$length").CSSStyleDeclaration = function() { return this.length; };
566 $dynamic("set$length").CSSStyleDeclaration = function(value) { return this.lengt h = value; };
567 $dynamic("get$dartObjectLocalStorage").CSSStyleDeclaration = function() { return this.dartObjectLocalStorage; };
568 $dynamic("set$dartObjectLocalStorage").CSSStyleDeclaration = function(value) { r eturn this.dartObjectLocalStorage = value; };
569 $dynamic("item$1").CSSStyleDeclaration = function($0) {
570 return this.item($0);
571 };
572 // ********** Code for dom_CSSStyleRule **************
573 // ********** Code for dom_CSSStyleSheet **************
574 // ********** Code for dom_CSSUnknownRule **************
575 // ********** Code for dom_CSSValue **************
576 $dynamic("get$dartObjectLocalStorage").CSSValue = function() { return this.dartO bjectLocalStorage; };
577 $dynamic("set$dartObjectLocalStorage").CSSValue = function(value) { return this. dartObjectLocalStorage = value; };
578 // ********** Code for dom_CSSValueList **************
579 $dynamic("get$length").CSSValueList = function() { return this.length; };
580 $dynamic("set$length").CSSValueList = function(value) { return this.length = val ue; };
581 $dynamic("item$1").CSSValueList = function($0) {
582 return this.item($0);
583 };
584 // ********** Code for dom_CanvasGradient **************
585 $dynamic("get$dartObjectLocalStorage").CanvasGradient = function() { return this .dartObjectLocalStorage; };
586 $dynamic("set$dartObjectLocalStorage").CanvasGradient = function(value) { return this.dartObjectLocalStorage = value; };
587 // ********** Code for dom_CanvasPattern **************
588 $dynamic("get$dartObjectLocalStorage").CanvasPattern = function() { return this. dartObjectLocalStorage; };
589 $dynamic("set$dartObjectLocalStorage").CanvasPattern = function(value) { return this.dartObjectLocalStorage = value; };
590 // ********** Code for dom_CanvasPixelArray **************
591 $dynamic("get$length").CanvasPixelArray = function() { return this.length; };
592 $dynamic("set$length").CanvasPixelArray = function(value) { return this.length = value; };
593 $dynamic("get$dartObjectLocalStorage").CanvasPixelArray = function() { return th is.dartObjectLocalStorage; };
594 $dynamic("set$dartObjectLocalStorage").CanvasPixelArray = function(value) { retu rn this.dartObjectLocalStorage = value; };
595 // ********** Code for dom_CanvasRenderingContext **************
596 $dynamic("get$dartObjectLocalStorage").CanvasRenderingContext = function() { ret urn this.dartObjectLocalStorage; };
597 $dynamic("set$dartObjectLocalStorage").CanvasRenderingContext = function(value) { return this.dartObjectLocalStorage = value; };
598 // ********** Code for dom_CanvasRenderingContext2D **************
599 // ********** Code for dom_CharacterData **************
600 $dynamic("get$length").CharacterData = function() { return this.length; };
601 $dynamic("set$length").CharacterData = function(value) { return this.length = va lue; };
602 // ********** Code for dom_ClientRect **************
603 $dynamic("get$dartObjectLocalStorage").ClientRect = function() { return this.dar tObjectLocalStorage; };
604 $dynamic("set$dartObjectLocalStorage").ClientRect = function(value) { return thi s.dartObjectLocalStorage = value; };
605 // ********** Code for dom_ClientRectList **************
606 $dynamic("get$length").ClientRectList = function() { return this.length; };
607 $dynamic("set$length").ClientRectList = function(value) { return this.length = v alue; };
608 $dynamic("get$dartObjectLocalStorage").ClientRectList = function() { return this .dartObjectLocalStorage; };
609 $dynamic("set$dartObjectLocalStorage").ClientRectList = function(value) { return this.dartObjectLocalStorage = value; };
610 $dynamic("item$1").ClientRectList = function($0) {
611 return this.item($0);
612 };
613 // ********** Code for dom_Clipboard **************
614 $dynamic("get$dartObjectLocalStorage").Clipboard = function() { return this.dart ObjectLocalStorage; };
615 $dynamic("set$dartObjectLocalStorage").Clipboard = function(value) { return this .dartObjectLocalStorage = value; };
616 // ********** Code for dom_CloseEvent **************
617 // ********** Code for dom_Comment **************
618 // ********** Code for dom_CompositionEvent **************
619 // ********** Code for Console **************
620 Console = (typeof console == 'undefined' ? {} : console);
621 Console.get$dartObjectLocalStorage = function() { return this.dartObjectLocalSto rage; };
622 Console.set$dartObjectLocalStorage = function(value) { return this.dartObjectLoc alStorage = value; };
623 // ********** Code for dom_ConvolverNode **************
624 // ********** Code for dom_Coordinates **************
625 $dynamic("get$dartObjectLocalStorage").Coordinates = function() { return this.da rtObjectLocalStorage; };
626 $dynamic("set$dartObjectLocalStorage").Coordinates = function(value) { return th is.dartObjectLocalStorage = value; };
627 // ********** Code for dom_Counter **************
628 $dynamic("get$dartObjectLocalStorage").Counter = function() { return this.dartOb jectLocalStorage; };
629 $dynamic("set$dartObjectLocalStorage").Counter = function(value) { return this.d artObjectLocalStorage = value; };
630 // ********** Code for dom_Crypto **************
631 $dynamic("get$dartObjectLocalStorage").Crypto = function() { return this.dartObj ectLocalStorage; };
632 $dynamic("set$dartObjectLocalStorage").Crypto = function(value) { return this.da rtObjectLocalStorage = value; };
633 // ********** Code for dom_CustomEvent **************
634 // ********** Code for dom_DOMApplicationCache **************
635 $dynamic("get$dartObjectLocalStorage").DOMApplicationCache = function() { return this.dartObjectLocalStorage; };
636 $dynamic("set$dartObjectLocalStorage").DOMApplicationCache = function(value) { r eturn this.dartObjectLocalStorage = value; };
637 // ********** Code for dom_DOMException **************
638 $dynamic("get$dartObjectLocalStorage").DOMException = function() { return this.d artObjectLocalStorage; };
639 $dynamic("set$dartObjectLocalStorage").DOMException = function(value) { return t his.dartObjectLocalStorage = value; };
640 $dynamic("toString$0").DOMException = function() {
641 return this.toString();
642 };
643 // ********** Code for dom_DOMFileSystem **************
644 $dynamic("get$dartObjectLocalStorage").DOMFileSystem = function() { return this. dartObjectLocalStorage; };
645 $dynamic("set$dartObjectLocalStorage").DOMFileSystem = function(value) { return this.dartObjectLocalStorage = value; };
646 // ********** Code for dom_DOMFileSystemSync **************
647 $dynamic("get$dartObjectLocalStorage").DOMFileSystemSync = function() { return t his.dartObjectLocalStorage; };
648 $dynamic("set$dartObjectLocalStorage").DOMFileSystemSync = function(value) { ret urn this.dartObjectLocalStorage = value; };
649 // ********** Code for dom_DOMFormData **************
650 $dynamic("get$dartObjectLocalStorage").DOMFormData = function() { return this.da rtObjectLocalStorage; };
651 $dynamic("set$dartObjectLocalStorage").DOMFormData = function(value) { return th is.dartObjectLocalStorage = value; };
652 // ********** Code for dom_DOMImplementation **************
653 $dynamic("get$dartObjectLocalStorage").DOMImplementation = function() { return t his.dartObjectLocalStorage; };
654 $dynamic("set$dartObjectLocalStorage").DOMImplementation = function(value) { ret urn this.dartObjectLocalStorage = value; };
655 // ********** Code for dom_DOMMimeType **************
656 $dynamic("get$dartObjectLocalStorage").DOMMimeType = function() { return this.da rtObjectLocalStorage; };
657 $dynamic("set$dartObjectLocalStorage").DOMMimeType = function(value) { return th is.dartObjectLocalStorage = value; };
658 // ********** Code for dom_DOMMimeTypeArray **************
659 $dynamic("get$length").DOMMimeTypeArray = function() { return this.length; };
660 $dynamic("set$length").DOMMimeTypeArray = function(value) { return this.length = value; };
661 $dynamic("get$dartObjectLocalStorage").DOMMimeTypeArray = function() { return th is.dartObjectLocalStorage; };
662 $dynamic("set$dartObjectLocalStorage").DOMMimeTypeArray = function(value) { retu rn this.dartObjectLocalStorage = value; };
663 $dynamic("item$1").DOMMimeTypeArray = function($0) {
664 return this.item($0);
665 };
666 // ********** Code for dom_DOMParser **************
667 $dynamic("get$dartObjectLocalStorage").DOMParser = function() { return this.dart ObjectLocalStorage; };
668 $dynamic("set$dartObjectLocalStorage").DOMParser = function(value) { return this .dartObjectLocalStorage = value; };
669 // ********** Code for dom_DOMPlugin **************
670 $dynamic("get$length").DOMPlugin = function() { return this.length; };
671 $dynamic("set$length").DOMPlugin = function(value) { return this.length = value; };
672 $dynamic("get$dartObjectLocalStorage").DOMPlugin = function() { return this.dart ObjectLocalStorage; };
673 $dynamic("set$dartObjectLocalStorage").DOMPlugin = function(value) { return this .dartObjectLocalStorage = value; };
674 $dynamic("item$1").DOMPlugin = function($0) {
675 return this.item($0);
676 };
677 // ********** Code for dom_DOMPluginArray **************
678 $dynamic("get$length").DOMPluginArray = function() { return this.length; };
679 $dynamic("set$length").DOMPluginArray = function(value) { return this.length = v alue; };
680 $dynamic("get$dartObjectLocalStorage").DOMPluginArray = function() { return this .dartObjectLocalStorage; };
681 $dynamic("set$dartObjectLocalStorage").DOMPluginArray = function(value) { return this.dartObjectLocalStorage = value; };
682 $dynamic("item$1").DOMPluginArray = function($0) {
683 return this.item($0);
684 };
685 // ********** Code for dom_DOMSelection **************
686 $dynamic("get$dartObjectLocalStorage").DOMSelection = function() { return this.d artObjectLocalStorage; };
687 $dynamic("set$dartObjectLocalStorage").DOMSelection = function(value) { return t his.dartObjectLocalStorage = value; };
688 $dynamic("toString$0").DOMSelection = function() {
689 return this.toString();
690 };
691 // ********** Code for dom_DOMSettableTokenList **************
692 // ********** Code for dom_DOMTokenList **************
693 $dynamic("get$length").DOMTokenList = function() { return this.length; };
694 $dynamic("set$length").DOMTokenList = function(value) { return this.length = val ue; };
695 $dynamic("get$dartObjectLocalStorage").DOMTokenList = function() { return this.d artObjectLocalStorage; };
696 $dynamic("set$dartObjectLocalStorage").DOMTokenList = function(value) { return t his.dartObjectLocalStorage = value; };
697 $dynamic("add$1").DOMTokenList = function($0) {
698 return this.add($0);
699 };
700 $dynamic("item$1").DOMTokenList = function($0) {
701 return this.item($0);
702 };
703 $dynamic("toString$0").DOMTokenList = function() {
704 return this.toString();
705 };
706 // ********** Code for dom_DOMURL **************
707 $dynamic("get$dartObjectLocalStorage").DOMURL = function() { return this.dartObj ectLocalStorage; };
708 $dynamic("set$dartObjectLocalStorage").DOMURL = function(value) { return this.da rtObjectLocalStorage = value; };
709 // ********** Code for dom_DOMWindow **************
710 $dynamic("get$length").DOMWindow = function() { return this.length; };
711 $dynamic("set$length").DOMWindow = function(value) { return this.length = value; };
712 $dynamic("get$dartObjectLocalStorage").DOMWindow = function() { return this.dart ObjectLocalStorage; };
713 $dynamic("set$dartObjectLocalStorage").DOMWindow = function(value) { return this .dartObjectLocalStorage = value; };
714 // ********** Code for dom_DataTransferItem **************
715 $dynamic("get$dartObjectLocalStorage").DataTransferItem = function() { return th is.dartObjectLocalStorage; };
716 $dynamic("set$dartObjectLocalStorage").DataTransferItem = function(value) { retu rn this.dartObjectLocalStorage = value; };
717 // ********** Code for dom_DataTransferItemList **************
718 $dynamic("get$length").DataTransferItemList = function() { return this.length; } ;
719 $dynamic("set$length").DataTransferItemList = function(value) { return this.leng th = value; };
720 $dynamic("get$clear").DataTransferItemList = function() {
721 return this.clear.bind(this);
722 }
723 $dynamic("get$dartObjectLocalStorage").DataTransferItemList = function() { retur n this.dartObjectLocalStorage; };
724 $dynamic("set$dartObjectLocalStorage").DataTransferItemList = function(value) { return this.dartObjectLocalStorage = value; };
725 $dynamic("clear$0").DataTransferItemList = function() {
726 return this.clear();
727 };
728 $dynamic("item$1").DataTransferItemList = function($0) {
729 return this.item($0);
730 };
731 // ********** Code for dom_DataView **************
732 // ********** Code for dom_Database **************
733 $dynamic("get$dartObjectLocalStorage").Database = function() { return this.dartO bjectLocalStorage; };
734 $dynamic("set$dartObjectLocalStorage").Database = function(value) { return this. dartObjectLocalStorage = value; };
735 // ********** Code for dom_DatabaseSync **************
736 $dynamic("get$dartObjectLocalStorage").DatabaseSync = function() { return this.d artObjectLocalStorage; };
737 $dynamic("set$dartObjectLocalStorage").DatabaseSync = function(value) { return t his.dartObjectLocalStorage = value; };
738 // ********** Code for dom_DedicatedWorkerContext **************
739 // ********** Code for dom_DelayNode **************
740 // ********** Code for dom_DeviceMotionEvent **************
741 // ********** Code for dom_DeviceOrientationEvent **************
742 // ********** Code for dom_DirectoryEntry **************
743 // ********** Code for dom_DirectoryEntrySync **************
744 // ********** Code for dom_DirectoryReader **************
745 $dynamic("get$dartObjectLocalStorage").DirectoryReader = function() { return thi s.dartObjectLocalStorage; };
746 $dynamic("set$dartObjectLocalStorage").DirectoryReader = function(value) { retur n this.dartObjectLocalStorage = value; };
747 // ********** Code for dom_DirectoryReaderSync **************
748 $dynamic("get$dartObjectLocalStorage").DirectoryReaderSync = function() { return this.dartObjectLocalStorage; };
749 $dynamic("set$dartObjectLocalStorage").DirectoryReaderSync = function(value) { r eturn this.dartObjectLocalStorage = value; };
750 // ********** Code for dom_Document **************
751 $dynamic("get$documentElement").Document = function() { return this.documentElem ent; };
752 $dynamic("set$documentElement").Document = function(value) { return this.documen tElement = value; };
753 $dynamic("querySelector$1").Document = function($0) {
754 return this.querySelector($0);
755 };
756 // ********** Code for dom_DocumentFragment **************
757 $dynamic("querySelector$1").DocumentFragment = function($0) {
758 return this.querySelector($0);
759 };
760 // ********** Code for dom_DocumentType **************
761 // ********** Code for dom_DynamicsCompressorNode **************
762 // ********** Code for dom_Element **************
763 $dynamic("get$firstElementChild").Element = function() { return this.firstElemen tChild; };
764 $dynamic("set$firstElementChild").Element = function(value) { return this.firstE lementChild = value; };
765 $dynamic("querySelector$1").Element = function($0) {
766 return this.querySelector($0);
767 };
768 // ********** Code for dom_ElementTimeControl **************
769 $dynamic("get$dartObjectLocalStorage").ElementTimeControl = function() { return this.dartObjectLocalStorage; };
770 $dynamic("set$dartObjectLocalStorage").ElementTimeControl = function(value) { re turn this.dartObjectLocalStorage = value; };
771 // ********** Code for dom_ElementTraversal **************
772 $dynamic("get$firstElementChild").ElementTraversal = function() { return this.fi rstElementChild; };
773 $dynamic("set$firstElementChild").ElementTraversal = function(value) { return th is.firstElementChild = value; };
774 $dynamic("get$dartObjectLocalStorage").ElementTraversal = function() { return th is.dartObjectLocalStorage; };
775 $dynamic("set$dartObjectLocalStorage").ElementTraversal = function(value) { retu rn this.dartObjectLocalStorage = value; };
776 // ********** Code for dom_Entity **************
777 // ********** Code for dom_EntityReference **************
778 // ********** Code for dom_Entry **************
779 $dynamic("get$dartObjectLocalStorage").Entry = function() { return this.dartObje ctLocalStorage; };
780 $dynamic("set$dartObjectLocalStorage").Entry = function(value) { return this.dar tObjectLocalStorage = value; };
781 // ********** Code for dom_EntryArray **************
782 $dynamic("get$length").EntryArray = function() { return this.length; };
783 $dynamic("set$length").EntryArray = function(value) { return this.length = value ; };
784 $dynamic("get$dartObjectLocalStorage").EntryArray = function() { return this.dar tObjectLocalStorage; };
785 $dynamic("set$dartObjectLocalStorage").EntryArray = function(value) { return thi s.dartObjectLocalStorage = value; };
786 $dynamic("item$1").EntryArray = function($0) {
787 return this.item($0);
788 };
789 // ********** Code for dom_EntryArraySync **************
790 $dynamic("get$length").EntryArraySync = function() { return this.length; };
791 $dynamic("set$length").EntryArraySync = function(value) { return this.length = v alue; };
792 $dynamic("get$dartObjectLocalStorage").EntryArraySync = function() { return this .dartObjectLocalStorage; };
793 $dynamic("set$dartObjectLocalStorage").EntryArraySync = function(value) { return this.dartObjectLocalStorage = value; };
794 $dynamic("item$1").EntryArraySync = function($0) {
795 return this.item($0);
796 };
797 // ********** Code for dom_EntrySync **************
798 $dynamic("get$dartObjectLocalStorage").EntrySync = function() { return this.dart ObjectLocalStorage; };
799 $dynamic("set$dartObjectLocalStorage").EntrySync = function(value) { return this .dartObjectLocalStorage = value; };
800 // ********** Code for dom_ErrorEvent **************
801 // ********** Code for dom_Event **************
802 $dynamic("get$dartObjectLocalStorage").Event = function() { return this.dartObje ctLocalStorage; };
803 $dynamic("set$dartObjectLocalStorage").Event = function(value) { return this.dar tObjectLocalStorage = value; };
804 // ********** Code for dom_EventException **************
805 $dynamic("get$dartObjectLocalStorage").EventException = function() { return this .dartObjectLocalStorage; };
806 $dynamic("set$dartObjectLocalStorage").EventException = function(value) { return this.dartObjectLocalStorage = value; };
807 $dynamic("toString$0").EventException = function() {
808 return this.toString();
809 };
810 // ********** Code for dom_EventSource **************
811 $dynamic("get$dartObjectLocalStorage").EventSource = function() { return this.da rtObjectLocalStorage; };
812 $dynamic("set$dartObjectLocalStorage").EventSource = function(value) { return th is.dartObjectLocalStorage = value; };
813 // ********** Code for dom_EventTarget **************
814 $dynamic("get$dartObjectLocalStorage").EventTarget = function() { return this.da rtObjectLocalStorage; };
815 $dynamic("set$dartObjectLocalStorage").EventTarget = function(value) { return th is.dartObjectLocalStorage = value; };
816 // ********** Code for dom_File **************
817 // ********** Code for dom_FileEntry **************
818 // ********** Code for dom_FileEntrySync **************
819 // ********** Code for dom_FileError **************
820 $dynamic("get$dartObjectLocalStorage").FileError = function() { return this.dart ObjectLocalStorage; };
821 $dynamic("set$dartObjectLocalStorage").FileError = function(value) { return this .dartObjectLocalStorage = value; };
822 // ********** Code for dom_FileException **************
823 $dynamic("get$dartObjectLocalStorage").FileException = function() { return this. dartObjectLocalStorage; };
824 $dynamic("set$dartObjectLocalStorage").FileException = function(value) { return this.dartObjectLocalStorage = value; };
825 $dynamic("toString$0").FileException = function() {
826 return this.toString();
827 };
828 // ********** Code for dom_FileList **************
829 $dynamic("get$length").FileList = function() { return this.length; };
830 $dynamic("set$length").FileList = function(value) { return this.length = value; };
831 $dynamic("get$dartObjectLocalStorage").FileList = function() { return this.dartO bjectLocalStorage; };
832 $dynamic("set$dartObjectLocalStorage").FileList = function(value) { return this. dartObjectLocalStorage = value; };
833 $dynamic("item$1").FileList = function($0) {
834 return this.item($0);
835 };
836 // ********** Code for dom_FileReader **************
837 $dynamic("get$dartObjectLocalStorage").FileReader = function() { return this.dar tObjectLocalStorage; };
838 $dynamic("set$dartObjectLocalStorage").FileReader = function(value) { return thi s.dartObjectLocalStorage = value; };
839 // ********** Code for dom_FileReaderSync **************
840 $dynamic("get$dartObjectLocalStorage").FileReaderSync = function() { return this .dartObjectLocalStorage; };
841 $dynamic("set$dartObjectLocalStorage").FileReaderSync = function(value) { return this.dartObjectLocalStorage = value; };
842 // ********** Code for dom_FileWriter **************
843 $dynamic("get$length").FileWriter = function() { return this.length; };
844 $dynamic("set$length").FileWriter = function(value) { return this.length = value ; };
845 $dynamic("get$dartObjectLocalStorage").FileWriter = function() { return this.dar tObjectLocalStorage; };
846 $dynamic("set$dartObjectLocalStorage").FileWriter = function(value) { return thi s.dartObjectLocalStorage = value; };
847 // ********** Code for dom_FileWriterSync **************
848 $dynamic("get$length").FileWriterSync = function() { return this.length; };
849 $dynamic("set$length").FileWriterSync = function(value) { return this.length = v alue; };
850 $dynamic("get$dartObjectLocalStorage").FileWriterSync = function() { return this .dartObjectLocalStorage; };
851 $dynamic("set$dartObjectLocalStorage").FileWriterSync = function(value) { return this.dartObjectLocalStorage = value; };
852 // ********** Code for dom_Float32Array **************
853 $dynamic("get$length").Float32Array = function() { return this.length; };
854 $dynamic("set$length").Float32Array = function(value) { return this.length = val ue; };
855 // ********** Code for dom_Float64Array **************
856 $dynamic("get$length").Float64Array = function() { return this.length; };
857 $dynamic("set$length").Float64Array = function(value) { return this.length = val ue; };
858 // ********** Code for dom_Geolocation **************
859 $dynamic("get$dartObjectLocalStorage").Geolocation = function() { return this.da rtObjectLocalStorage; };
860 $dynamic("set$dartObjectLocalStorage").Geolocation = function(value) { return th is.dartObjectLocalStorage = value; };
861 // ********** Code for dom_Geoposition **************
862 $dynamic("get$dartObjectLocalStorage").Geoposition = function() { return this.da rtObjectLocalStorage; };
863 $dynamic("set$dartObjectLocalStorage").Geoposition = function(value) { return th is.dartObjectLocalStorage = value; };
864 // ********** Code for dom_HTMLAllCollection **************
865 $dynamic("get$length").HTMLAllCollection = function() { return this.length; };
866 $dynamic("set$length").HTMLAllCollection = function(value) { return this.length = value; };
867 $dynamic("get$dartObjectLocalStorage").HTMLAllCollection = function() { return t his.dartObjectLocalStorage; };
868 $dynamic("set$dartObjectLocalStorage").HTMLAllCollection = function(value) { ret urn this.dartObjectLocalStorage = value; };
869 $dynamic("item$1").HTMLAllCollection = function($0) {
870 return this.item($0);
871 };
872 // ********** Code for dom_HTMLAnchorElement **************
873 $dynamic("toString$0").HTMLAnchorElement = function() {
874 return this.toString();
875 };
876 // ********** Code for dom_HTMLAppletElement **************
877 // ********** Code for dom_HTMLAreaElement **************
878 // ********** Code for dom_HTMLAudioElement **************
879 // ********** Code for dom_HTMLBRElement **************
880 $dynamic("get$clear").HTMLBRElement = function() { return this.clear; };
881 $dynamic("set$clear").HTMLBRElement = function(value) { return this.clear = valu e; };
882 $dynamic("clear$0").HTMLBRElement = function() {
883 return this.clear.call$0();
884 };
885 // ********** Code for dom_HTMLBaseElement **************
886 // ********** Code for dom_HTMLBaseFontElement **************
887 // ********** Code for dom_HTMLBodyElement **************
888 // ********** Code for dom_HTMLButtonElement **************
889 // ********** Code for dom_HTMLCanvasElement **************
890 // ********** Code for dom_HTMLCollection **************
891 $dynamic("get$length").HTMLCollection = function() { return this.length; };
892 $dynamic("set$length").HTMLCollection = function(value) { return this.length = v alue; };
893 $dynamic("$setindex").HTMLCollection = function(index, value) {
894 $throw(new UnsupportedOperationException("Cannot assign element of immutable L ist."));
895 }
896 $dynamic("get$dartObjectLocalStorage").HTMLCollection = function() { return this .dartObjectLocalStorage; };
897 $dynamic("set$dartObjectLocalStorage").HTMLCollection = function(value) { return this.dartObjectLocalStorage = value; };
898 $dynamic("item$1").HTMLCollection = function($0) {
899 if (Object.getPrototypeOf(this).hasOwnProperty("item$1")) {
900 return this.item($0);
901 }
902 return Object.prototype.item$1.call(this, $0);
903 };
904 // ********** Code for dom_HTMLDListElement **************
905 // ********** Code for dom_HTMLDataListElement **************
906 // ********** Code for dom_HTMLDetailsElement **************
907 // ********** Code for dom_HTMLDirectoryElement **************
908 // ********** Code for dom_HTMLDivElement **************
909 // ********** Code for dom_HTMLDocument **************
910 $dynamic("get$clear").HTMLDocument = function() {
911 return this.clear.bind(this);
912 }
913 $dynamic("clear$0").HTMLDocument = function() {
914 return this.clear();
915 };
916 // ********** Code for dom_HTMLElement **************
917 $dynamic("get$children").HTMLElement = function() { return this.children; };
918 $dynamic("set$children").HTMLElement = function(value) { return this.children = value; };
919 $dynamic("get$innerHTML").HTMLElement = function() { return this.innerHTML; };
920 $dynamic("set$innerHTML").HTMLElement = function(value) { return this.innerHTML = value; };
921 // ********** Code for dom_HTMLEmbedElement **************
922 // ********** Code for dom_HTMLFieldSetElement **************
923 // ********** Code for dom_HTMLFontElement **************
924 // ********** Code for dom_HTMLFormElement **************
925 $dynamic("get$elements").HTMLFormElement = function() { return this.elements; };
926 $dynamic("set$elements").HTMLFormElement = function(value) { return this.element s = value; };
927 $dynamic("get$length").HTMLFormElement = function() { return this.length; };
928 $dynamic("set$length").HTMLFormElement = function(value) { return this.length = value; };
929 // ********** Code for dom_HTMLFrameElement **************
930 // ********** Code for dom_HTMLFrameSetElement **************
931 // ********** Code for dom_HTMLHRElement **************
932 // ********** Code for dom_HTMLHeadElement **************
933 // ********** Code for dom_HTMLHeadingElement **************
934 // ********** Code for dom_HTMLHtmlElement **************
935 // ********** Code for dom_HTMLIFrameElement **************
936 // ********** Code for dom_HTMLImageElement **************
937 // ********** Code for dom_HTMLInputElement **************
938 // ********** Code for dom_HTMLIsIndexElement **************
939 // ********** Code for dom_HTMLKeygenElement **************
940 // ********** Code for dom_HTMLLIElement **************
941 // ********** Code for dom_HTMLLabelElement **************
942 // ********** Code for dom_HTMLLegendElement **************
943 // ********** Code for dom_HTMLLinkElement **************
944 // ********** Code for dom_HTMLMapElement **************
945 // ********** Code for dom_HTMLMarqueeElement **************
946 // ********** Code for dom_HTMLMediaElement **************
947 // ********** Code for dom_HTMLMenuElement **************
948 // ********** Code for dom_HTMLMetaElement **************
949 // ********** Code for dom_HTMLMeterElement **************
950 // ********** Code for dom_HTMLModElement **************
951 // ********** Code for dom_HTMLOListElement **************
952 // ********** Code for dom_HTMLObjectElement **************
953 // ********** Code for dom_HTMLOptGroupElement **************
954 // ********** Code for dom_HTMLOptionElement **************
955 // ********** Code for dom_HTMLOptionsCollection **************
956 $dynamic("get$length").HTMLOptionsCollection = function() { return this.length; };
957 $dynamic("set$length").HTMLOptionsCollection = function(value) { return this.len gth = value; };
958 // ********** Code for dom_HTMLOutputElement **************
959 // ********** Code for dom_HTMLParagraphElement **************
960 // ********** Code for dom_HTMLParamElement **************
961 // ********** Code for dom_HTMLPreElement **************
962 // ********** Code for dom_HTMLProgressElement **************
963 // ********** Code for dom_HTMLPropertiesCollection **************
964 $dynamic("get$length").HTMLPropertiesCollection = function() { return this.lengt h; };
965 $dynamic("set$length").HTMLPropertiesCollection = function(value) { return this. length = value; };
966 $dynamic("item$1").HTMLPropertiesCollection = function($0) {
967 return this.item($0);
968 };
969 // ********** Code for dom_HTMLQuoteElement **************
970 // ********** Code for dom_HTMLScriptElement **************
971 // ********** Code for dom_HTMLSelectElement **************
972 $dynamic("get$length").HTMLSelectElement = function() { return this.length; };
973 $dynamic("set$length").HTMLSelectElement = function(value) { return this.length = value; };
974 $dynamic("item$1").HTMLSelectElement = function($0) {
975 return this.item($0);
976 };
977 // ********** Code for dom_HTMLSourceElement **************
978 // ********** Code for dom_HTMLSpanElement **************
979 // ********** Code for dom_HTMLStyleElement **************
980 // ********** Code for dom_HTMLTableCaptionElement **************
981 // ********** Code for dom_HTMLTableCellElement **************
982 // ********** Code for dom_HTMLTableColElement **************
983 // ********** Code for dom_HTMLTableElement **************
984 // ********** Code for dom_HTMLTableRowElement **************
985 // ********** Code for dom_HTMLTableSectionElement **************
986 // ********** Code for dom_HTMLTextAreaElement **************
987 // ********** Code for dom_HTMLTitleElement **************
988 // ********** Code for dom_HTMLTrackElement **************
989 // ********** Code for dom_HTMLUListElement **************
990 // ********** Code for dom_HTMLUnknownElement **************
991 // ********** Code for dom_HTMLVideoElement **************
992 // ********** Code for dom_HashChangeEvent **************
993 // ********** Code for dom_HighPass2FilterNode **************
994 // ********** Code for dom_History **************
995 $dynamic("get$length").History = function() { return this.length; };
996 $dynamic("set$length").History = function(value) { return this.length = value; } ;
997 $dynamic("get$dartObjectLocalStorage").History = function() { return this.dartOb jectLocalStorage; };
998 $dynamic("set$dartObjectLocalStorage").History = function(value) { return this.d artObjectLocalStorage = value; };
999 // ********** Code for dom_IDBAny **************
1000 $dynamic("get$dartObjectLocalStorage").IDBAny = function() { return this.dartObj ectLocalStorage; };
1001 $dynamic("set$dartObjectLocalStorage").IDBAny = function(value) { return this.da rtObjectLocalStorage = value; };
1002 // ********** Code for dom_IDBCursor **************
1003 $dynamic("get$dartObjectLocalStorage").IDBCursor = function() { return this.dart ObjectLocalStorage; };
1004 $dynamic("set$dartObjectLocalStorage").IDBCursor = function(value) { return this .dartObjectLocalStorage = value; };
1005 // ********** Code for dom_IDBCursorWithValue **************
1006 // ********** Code for dom_IDBDatabase **************
1007 $dynamic("get$dartObjectLocalStorage").IDBDatabase = function() { return this.da rtObjectLocalStorage; };
1008 $dynamic("set$dartObjectLocalStorage").IDBDatabase = function(value) { return th is.dartObjectLocalStorage = value; };
1009 // ********** Code for dom_IDBDatabaseError **************
1010 $dynamic("get$dartObjectLocalStorage").IDBDatabaseError = function() { return th is.dartObjectLocalStorage; };
1011 $dynamic("set$dartObjectLocalStorage").IDBDatabaseError = function(value) { retu rn this.dartObjectLocalStorage = value; };
1012 // ********** Code for dom_IDBDatabaseException **************
1013 $dynamic("get$dartObjectLocalStorage").IDBDatabaseException = function() { retur n this.dartObjectLocalStorage; };
1014 $dynamic("set$dartObjectLocalStorage").IDBDatabaseException = function(value) { return this.dartObjectLocalStorage = value; };
1015 $dynamic("toString$0").IDBDatabaseException = function() {
1016 return this.toString();
1017 };
1018 // ********** Code for dom_IDBFactory **************
1019 $dynamic("get$dartObjectLocalStorage").IDBFactory = function() { return this.dar tObjectLocalStorage; };
1020 $dynamic("set$dartObjectLocalStorage").IDBFactory = function(value) { return thi s.dartObjectLocalStorage = value; };
1021 // ********** Code for dom_IDBIndex **************
1022 $dynamic("get$dartObjectLocalStorage").IDBIndex = function() { return this.dartO bjectLocalStorage; };
1023 $dynamic("set$dartObjectLocalStorage").IDBIndex = function(value) { return this. dartObjectLocalStorage = value; };
1024 // ********** Code for dom_IDBKey **************
1025 $dynamic("get$dartObjectLocalStorage").IDBKey = function() { return this.dartObj ectLocalStorage; };
1026 $dynamic("set$dartObjectLocalStorage").IDBKey = function(value) { return this.da rtObjectLocalStorage = value; };
1027 // ********** Code for dom_IDBKeyRange **************
1028 $dynamic("get$dartObjectLocalStorage").IDBKeyRange = function() { return this.da rtObjectLocalStorage; };
1029 $dynamic("set$dartObjectLocalStorage").IDBKeyRange = function(value) { return th is.dartObjectLocalStorage = value; };
1030 // ********** Code for dom_IDBObjectStore **************
1031 $dynamic("get$clear").IDBObjectStore = function() {
1032 return this.clear.bind(this);
1033 }
1034 $dynamic("get$dartObjectLocalStorage").IDBObjectStore = function() { return this .dartObjectLocalStorage; };
1035 $dynamic("set$dartObjectLocalStorage").IDBObjectStore = function(value) { return this.dartObjectLocalStorage = value; };
1036 $dynamic("add$1").IDBObjectStore = function($0) {
1037 return this.add($0);
1038 };
1039 $dynamic("clear$0").IDBObjectStore = function() {
1040 return this.clear();
1041 };
1042 // ********** Code for dom_IDBRequest **************
1043 $dynamic("get$dartObjectLocalStorage").IDBRequest = function() { return this.dar tObjectLocalStorage; };
1044 $dynamic("set$dartObjectLocalStorage").IDBRequest = function(value) { return thi s.dartObjectLocalStorage = value; };
1045 // ********** Code for dom_IDBTransaction **************
1046 $dynamic("get$dartObjectLocalStorage").IDBTransaction = function() { return this .dartObjectLocalStorage; };
1047 $dynamic("set$dartObjectLocalStorage").IDBTransaction = function(value) { return this.dartObjectLocalStorage = value; };
1048 // ********** Code for dom_IDBVersionChangeEvent **************
1049 // ********** Code for dom_IDBVersionChangeRequest **************
1050 // ********** Code for dom_ImageData **************
1051 $dynamic("get$dartObjectLocalStorage").ImageData = function() { return this.dart ObjectLocalStorage; };
1052 $dynamic("set$dartObjectLocalStorage").ImageData = function(value) { return this .dartObjectLocalStorage = value; };
1053 // ********** Code for dom_InjectedScriptHost **************
1054 $dynamic("get$dartObjectLocalStorage").InjectedScriptHost = function() { return this.dartObjectLocalStorage; };
1055 $dynamic("set$dartObjectLocalStorage").InjectedScriptHost = function(value) { re turn this.dartObjectLocalStorage = value; };
1056 // ********** Code for dom_InspectorFrontendHost **************
1057 $dynamic("get$dartObjectLocalStorage").InspectorFrontendHost = function() { retu rn this.dartObjectLocalStorage; };
1058 $dynamic("set$dartObjectLocalStorage").InspectorFrontendHost = function(value) { return this.dartObjectLocalStorage = value; };
1059 // ********** Code for dom_Int16Array **************
1060 $dynamic("get$length").Int16Array = function() { return this.length; };
1061 $dynamic("set$length").Int16Array = function(value) { return this.length = value ; };
1062 // ********** Code for dom_Int32Array **************
1063 $dynamic("get$length").Int32Array = function() { return this.length; };
1064 $dynamic("set$length").Int32Array = function(value) { return this.length = value ; };
1065 // ********** Code for dom_Int8Array **************
1066 $dynamic("get$length").Int8Array = function() { return this.length; };
1067 $dynamic("set$length").Int8Array = function(value) { return this.length = value; };
1068 // ********** Code for dom_JavaScriptAudioNode **************
1069 // ********** Code for dom_JavaScriptCallFrame **************
1070 $dynamic("get$dartObjectLocalStorage").JavaScriptCallFrame = function() { return this.dartObjectLocalStorage; };
1071 $dynamic("set$dartObjectLocalStorage").JavaScriptCallFrame = function(value) { r eturn this.dartObjectLocalStorage = value; };
1072 // ********** Code for dom_KeyboardEvent **************
1073 // ********** Code for dom_Location **************
1074 $dynamic("get$dartObjectLocalStorage").Location = function() { return this.dartO bjectLocalStorage; };
1075 $dynamic("set$dartObjectLocalStorage").Location = function(value) { return this. dartObjectLocalStorage = value; };
1076 $dynamic("toString$0").Location = function() {
1077 return this.toString();
1078 };
1079 // ********** Code for dom_LowPass2FilterNode **************
1080 // ********** Code for dom_MediaController **************
1081 $dynamic("get$dartObjectLocalStorage").MediaController = function() { return thi s.dartObjectLocalStorage; };
1082 $dynamic("set$dartObjectLocalStorage").MediaController = function(value) { retur n this.dartObjectLocalStorage = value; };
1083 // ********** Code for dom_MediaElementAudioSourceNode **************
1084 // ********** Code for dom_MediaError **************
1085 $dynamic("get$dartObjectLocalStorage").MediaError = function() { return this.dar tObjectLocalStorage; };
1086 $dynamic("set$dartObjectLocalStorage").MediaError = function(value) { return thi s.dartObjectLocalStorage = value; };
1087 // ********** Code for dom_MediaList **************
1088 $dynamic("get$length").MediaList = function() { return this.length; };
1089 $dynamic("set$length").MediaList = function(value) { return this.length = value; };
1090 $dynamic("$setindex").MediaList = function(index, value) {
1091 $throw(new UnsupportedOperationException("Cannot assign element of immutable L ist."));
1092 }
1093 $dynamic("get$dartObjectLocalStorage").MediaList = function() { return this.dart ObjectLocalStorage; };
1094 $dynamic("set$dartObjectLocalStorage").MediaList = function(value) { return this .dartObjectLocalStorage = value; };
1095 $dynamic("item$1").MediaList = function($0) {
1096 return this.item($0);
1097 };
1098 // ********** Code for dom_MediaQueryList **************
1099 $dynamic("get$dartObjectLocalStorage").MediaQueryList = function() { return this .dartObjectLocalStorage; };
1100 $dynamic("set$dartObjectLocalStorage").MediaQueryList = function(value) { return this.dartObjectLocalStorage = value; };
1101 // ********** Code for dom_MediaQueryListListener **************
1102 $dynamic("get$dartObjectLocalStorage").MediaQueryListListener = function() { ret urn this.dartObjectLocalStorage; };
1103 $dynamic("set$dartObjectLocalStorage").MediaQueryListListener = function(value) { return this.dartObjectLocalStorage = value; };
1104 // ********** Code for dom_MemoryInfo **************
1105 $dynamic("get$dartObjectLocalStorage").MemoryInfo = function() { return this.dar tObjectLocalStorage; };
1106 $dynamic("set$dartObjectLocalStorage").MemoryInfo = function(value) { return thi s.dartObjectLocalStorage = value; };
1107 // ********** Code for dom_MessageChannel **************
1108 $dynamic("get$dartObjectLocalStorage").MessageChannel = function() { return this .dartObjectLocalStorage; };
1109 $dynamic("set$dartObjectLocalStorage").MessageChannel = function(value) { return this.dartObjectLocalStorage = value; };
1110 // ********** Code for dom_MessageEvent **************
1111 // ********** Code for dom_MessagePort **************
1112 $dynamic("get$dartObjectLocalStorage").MessagePort = function() { return this.da rtObjectLocalStorage; };
1113 $dynamic("set$dartObjectLocalStorage").MessagePort = function(value) { return th is.dartObjectLocalStorage = value; };
1114 // ********** Code for dom_Metadata **************
1115 $dynamic("get$dartObjectLocalStorage").Metadata = function() { return this.dartO bjectLocalStorage; };
1116 $dynamic("set$dartObjectLocalStorage").Metadata = function(value) { return this. dartObjectLocalStorage = value; };
1117 // ********** Code for dom_MouseEvent **************
1118 // ********** Code for dom_MutationCallback **************
1119 $dynamic("get$dartObjectLocalStorage").MutationCallback = function() { return th is.dartObjectLocalStorage; };
1120 $dynamic("set$dartObjectLocalStorage").MutationCallback = function(value) { retu rn this.dartObjectLocalStorage = value; };
1121 // ********** Code for dom_MutationEvent **************
1122 // ********** Code for dom_MutationRecord **************
1123 $dynamic("get$dartObjectLocalStorage").MutationRecord = function() { return this .dartObjectLocalStorage; };
1124 $dynamic("set$dartObjectLocalStorage").MutationRecord = function(value) { return this.dartObjectLocalStorage = value; };
1125 // ********** Code for dom_NamedNodeMap **************
1126 $dynamic("get$length").NamedNodeMap = function() { return this.length; };
1127 $dynamic("set$length").NamedNodeMap = function(value) { return this.length = val ue; };
1128 $dynamic("$setindex").NamedNodeMap = function(index, value) {
1129 $throw(new UnsupportedOperationException("Cannot assign element of immutable L ist."));
1130 }
1131 $dynamic("get$dartObjectLocalStorage").NamedNodeMap = function() { return this.d artObjectLocalStorage; };
1132 $dynamic("set$dartObjectLocalStorage").NamedNodeMap = function(value) { return t his.dartObjectLocalStorage = value; };
1133 $dynamic("item$1").NamedNodeMap = function($0) {
1134 return this.item($0);
1135 };
1136 // ********** Code for dom_Navigator **************
1137 $dynamic("get$dartObjectLocalStorage").Navigator = function() { return this.dart ObjectLocalStorage; };
1138 $dynamic("set$dartObjectLocalStorage").Navigator = function(value) { return this .dartObjectLocalStorage = value; };
1139 // ********** Code for dom_Node **************
1140 $dynamic("get$childNodes").Node = function() { return this.childNodes; };
1141 $dynamic("set$childNodes").Node = function(value) { return this.childNodes = val ue; };
1142 $dynamic("get$firstChild").Node = function() { return this.firstChild; };
1143 $dynamic("set$firstChild").Node = function(value) { return this.firstChild = val ue; };
1144 $dynamic("get$parentNode").Node = function() { return this.parentNode; };
1145 $dynamic("set$parentNode").Node = function(value) { return this.parentNode = val ue; };
1146 $dynamic("get$textContent").Node = function() { return this.textContent; };
1147 $dynamic("set$textContent").Node = function(value) { return this.textContent = v alue; };
1148 $dynamic("get$dartObjectLocalStorage").Node = function() { return this.dartObjec tLocalStorage; };
1149 $dynamic("set$dartObjectLocalStorage").Node = function(value) { return this.dart ObjectLocalStorage = value; };
1150 $dynamic("appendChild$1").Node = function($0) {
1151 return this.appendChild($0);
1152 };
1153 $dynamic("replaceChild$2").Node = function($0, $1) {
1154 return this.replaceChild($0, $1);
1155 };
1156 // ********** Code for dom_NodeFilter **************
1157 $dynamic("get$dartObjectLocalStorage").NodeFilter = function() { return this.dar tObjectLocalStorage; };
1158 $dynamic("set$dartObjectLocalStorage").NodeFilter = function(value) { return thi s.dartObjectLocalStorage = value; };
1159 // ********** Code for dom_NodeIterator **************
1160 $dynamic("get$dartObjectLocalStorage").NodeIterator = function() { return this.d artObjectLocalStorage; };
1161 $dynamic("set$dartObjectLocalStorage").NodeIterator = function(value) { return t his.dartObjectLocalStorage = value; };
1162 $dynamic("filter$1").NodeIterator = function($0) {
1163 return this.filter.call$1($0);
1164 };
1165 // ********** Code for dom_NodeList **************
1166 $dynamic("get$length").NodeList = function() { return this.length; };
1167 $dynamic("set$length").NodeList = function(value) { return this.length = value; };
1168 $dynamic("$setindex").NodeList = function(index, value) {
1169 $throw(new UnsupportedOperationException("Cannot assign element of immutable L ist."));
1170 }
1171 $dynamic("get$dartObjectLocalStorage").NodeList = function() { return this.dartO bjectLocalStorage; };
1172 $dynamic("set$dartObjectLocalStorage").NodeList = function(value) { return this. dartObjectLocalStorage = value; };
1173 $dynamic("item$1").NodeList = function($0) {
1174 return this.item($0);
1175 };
1176 // ********** Code for dom_NodeSelector **************
1177 $dynamic("get$dartObjectLocalStorage").NodeSelector = function() { return this.d artObjectLocalStorage; };
1178 $dynamic("set$dartObjectLocalStorage").NodeSelector = function(value) { return t his.dartObjectLocalStorage = value; };
1179 $dynamic("querySelector$1").NodeSelector = function($0) {
1180 return this.querySelector($0);
1181 };
1182 // ********** Code for dom_Notation **************
1183 // ********** Code for dom_Notification **************
1184 $dynamic("get$dartObjectLocalStorage").Notification = function() { return this.d artObjectLocalStorage; };
1185 $dynamic("set$dartObjectLocalStorage").Notification = function(value) { return t his.dartObjectLocalStorage = value; };
1186 // ********** Code for dom_NotificationCenter **************
1187 $dynamic("get$dartObjectLocalStorage").NotificationCenter = function() { return this.dartObjectLocalStorage; };
1188 $dynamic("set$dartObjectLocalStorage").NotificationCenter = function(value) { re turn this.dartObjectLocalStorage = value; };
1189 // ********** Code for dom_OESStandardDerivatives **************
1190 $dynamic("get$dartObjectLocalStorage").OESStandardDerivatives = function() { ret urn this.dartObjectLocalStorage; };
1191 $dynamic("set$dartObjectLocalStorage").OESStandardDerivatives = function(value) { return this.dartObjectLocalStorage = value; };
1192 // ********** Code for dom_OESTextureFloat **************
1193 $dynamic("get$dartObjectLocalStorage").OESTextureFloat = function() { return thi s.dartObjectLocalStorage; };
1194 $dynamic("set$dartObjectLocalStorage").OESTextureFloat = function(value) { retur n this.dartObjectLocalStorage = value; };
1195 // ********** Code for dom_OESVertexArrayObject **************
1196 $dynamic("get$dartObjectLocalStorage").OESVertexArrayObject = function() { retur n this.dartObjectLocalStorage; };
1197 $dynamic("set$dartObjectLocalStorage").OESVertexArrayObject = function(value) { return this.dartObjectLocalStorage = value; };
1198 // ********** Code for dom_OfflineAudioCompletionEvent **************
1199 // ********** Code for dom_OperationNotAllowedException **************
1200 $dynamic("get$dartObjectLocalStorage").OperationNotAllowedException = function() { return this.dartObjectLocalStorage; };
1201 $dynamic("set$dartObjectLocalStorage").OperationNotAllowedException = function(v alue) { return this.dartObjectLocalStorage = value; };
1202 $dynamic("toString$0").OperationNotAllowedException = function() {
1203 return this.toString();
1204 };
1205 // ********** Code for dom_OverflowEvent **************
1206 // ********** Code for dom_PageTransitionEvent **************
1207 // ********** Code for dom_Performance **************
1208 $dynamic("get$dartObjectLocalStorage").Performance = function() { return this.da rtObjectLocalStorage; };
1209 $dynamic("set$dartObjectLocalStorage").Performance = function(value) { return th is.dartObjectLocalStorage = value; };
1210 // ********** Code for dom_PerformanceNavigation **************
1211 $dynamic("get$dartObjectLocalStorage").PerformanceNavigation = function() { retu rn this.dartObjectLocalStorage; };
1212 $dynamic("set$dartObjectLocalStorage").PerformanceNavigation = function(value) { return this.dartObjectLocalStorage = value; };
1213 // ********** Code for dom_PerformanceTiming **************
1214 $dynamic("get$dartObjectLocalStorage").PerformanceTiming = function() { return t his.dartObjectLocalStorage; };
1215 $dynamic("set$dartObjectLocalStorage").PerformanceTiming = function(value) { ret urn this.dartObjectLocalStorage = value; };
1216 // ********** Code for dom_PointerLock **************
1217 $dynamic("get$dartObjectLocalStorage").PointerLock = function() { return this.da rtObjectLocalStorage; };
1218 $dynamic("set$dartObjectLocalStorage").PointerLock = function(value) { return th is.dartObjectLocalStorage = value; };
1219 // ********** Code for dom_PopStateEvent **************
1220 // ********** Code for dom_PositionError **************
1221 $dynamic("get$dartObjectLocalStorage").PositionError = function() { return this. dartObjectLocalStorage; };
1222 $dynamic("set$dartObjectLocalStorage").PositionError = function(value) { return this.dartObjectLocalStorage = value; };
1223 // ********** Code for dom_ProcessingInstruction **************
1224 // ********** Code for dom_ProgressEvent **************
1225 // ********** Code for dom_RGBColor **************
1226 $dynamic("get$dartObjectLocalStorage").RGBColor = function() { return this.dartO bjectLocalStorage; };
1227 $dynamic("set$dartObjectLocalStorage").RGBColor = function(value) { return this. dartObjectLocalStorage = value; };
1228 // ********** Code for dom_Range **************
1229 $dynamic("get$dartObjectLocalStorage").Range = function() { return this.dartObje ctLocalStorage; };
1230 $dynamic("set$dartObjectLocalStorage").Range = function(value) { return this.dar tObjectLocalStorage = value; };
1231 $dynamic("toString$0").Range = function() {
1232 return this.toString();
1233 };
1234 // ********** Code for dom_RangeException **************
1235 $dynamic("get$dartObjectLocalStorage").RangeException = function() { return this .dartObjectLocalStorage; };
1236 $dynamic("set$dartObjectLocalStorage").RangeException = function(value) { return this.dartObjectLocalStorage = value; };
1237 $dynamic("toString$0").RangeException = function() {
1238 return this.toString();
1239 };
1240 // ********** Code for dom_RealtimeAnalyserNode **************
1241 // ********** Code for dom_Rect **************
1242 $dynamic("get$dartObjectLocalStorage").Rect = function() { return this.dartObjec tLocalStorage; };
1243 $dynamic("set$dartObjectLocalStorage").Rect = function(value) { return this.dart ObjectLocalStorage = value; };
1244 // ********** Code for dom_SQLError **************
1245 $dynamic("get$dartObjectLocalStorage").SQLError = function() { return this.dartO bjectLocalStorage; };
1246 $dynamic("set$dartObjectLocalStorage").SQLError = function(value) { return this. dartObjectLocalStorage = value; };
1247 // ********** Code for dom_SQLException **************
1248 $dynamic("get$dartObjectLocalStorage").SQLException = function() { return this.d artObjectLocalStorage; };
1249 $dynamic("set$dartObjectLocalStorage").SQLException = function(value) { return t his.dartObjectLocalStorage = value; };
1250 // ********** Code for dom_SQLResultSet **************
1251 $dynamic("get$dartObjectLocalStorage").SQLResultSet = function() { return this.d artObjectLocalStorage; };
1252 $dynamic("set$dartObjectLocalStorage").SQLResultSet = function(value) { return t his.dartObjectLocalStorage = value; };
1253 // ********** Code for dom_SQLResultSetRowList **************
1254 $dynamic("get$length").SQLResultSetRowList = function() { return this.length; };
1255 $dynamic("set$length").SQLResultSetRowList = function(value) { return this.lengt h = value; };
1256 $dynamic("get$dartObjectLocalStorage").SQLResultSetRowList = function() { return this.dartObjectLocalStorage; };
1257 $dynamic("set$dartObjectLocalStorage").SQLResultSetRowList = function(value) { r eturn this.dartObjectLocalStorage = value; };
1258 $dynamic("item$1").SQLResultSetRowList = function($0) {
1259 return this.item($0);
1260 };
1261 // ********** Code for dom_SQLTransaction **************
1262 $dynamic("get$dartObjectLocalStorage").SQLTransaction = function() { return this .dartObjectLocalStorage; };
1263 $dynamic("set$dartObjectLocalStorage").SQLTransaction = function(value) { return this.dartObjectLocalStorage = value; };
1264 // ********** Code for dom_SQLTransactionSync **************
1265 $dynamic("get$dartObjectLocalStorage").SQLTransactionSync = function() { return this.dartObjectLocalStorage; };
1266 $dynamic("set$dartObjectLocalStorage").SQLTransactionSync = function(value) { re turn this.dartObjectLocalStorage = value; };
1267 // ********** Code for dom_SVGAElement **************
1268 // ********** Code for dom_SVGAltGlyphDefElement **************
1269 // ********** Code for dom_SVGAltGlyphElement **************
1270 // ********** Code for dom_SVGAltGlyphItemElement **************
1271 // ********** Code for dom_SVGAngle **************
1272 $dynamic("get$dartObjectLocalStorage").SVGAngle = function() { return this.dartO bjectLocalStorage; };
1273 $dynamic("set$dartObjectLocalStorage").SVGAngle = function(value) { return this. dartObjectLocalStorage = value; };
1274 // ********** Code for dom_SVGAnimateColorElement **************
1275 // ********** Code for dom_SVGAnimateElement **************
1276 // ********** Code for dom_SVGAnimateMotionElement **************
1277 // ********** Code for dom_SVGAnimateTransformElement **************
1278 // ********** Code for dom_SVGAnimatedAngle **************
1279 $dynamic("get$dartObjectLocalStorage").SVGAnimatedAngle = function() { return th is.dartObjectLocalStorage; };
1280 $dynamic("set$dartObjectLocalStorage").SVGAnimatedAngle = function(value) { retu rn this.dartObjectLocalStorage = value; };
1281 // ********** Code for dom_SVGAnimatedBoolean **************
1282 $dynamic("get$dartObjectLocalStorage").SVGAnimatedBoolean = function() { return this.dartObjectLocalStorage; };
1283 $dynamic("set$dartObjectLocalStorage").SVGAnimatedBoolean = function(value) { re turn this.dartObjectLocalStorage = value; };
1284 // ********** Code for dom_SVGAnimatedEnumeration **************
1285 $dynamic("get$dartObjectLocalStorage").SVGAnimatedEnumeration = function() { ret urn this.dartObjectLocalStorage; };
1286 $dynamic("set$dartObjectLocalStorage").SVGAnimatedEnumeration = function(value) { return this.dartObjectLocalStorage = value; };
1287 // ********** Code for dom_SVGAnimatedInteger **************
1288 $dynamic("get$dartObjectLocalStorage").SVGAnimatedInteger = function() { return this.dartObjectLocalStorage; };
1289 $dynamic("set$dartObjectLocalStorage").SVGAnimatedInteger = function(value) { re turn this.dartObjectLocalStorage = value; };
1290 // ********** Code for dom_SVGAnimatedLength **************
1291 $dynamic("get$dartObjectLocalStorage").SVGAnimatedLength = function() { return t his.dartObjectLocalStorage; };
1292 $dynamic("set$dartObjectLocalStorage").SVGAnimatedLength = function(value) { ret urn this.dartObjectLocalStorage = value; };
1293 // ********** Code for dom_SVGAnimatedLengthList **************
1294 $dynamic("get$dartObjectLocalStorage").SVGAnimatedLengthList = function() { retu rn this.dartObjectLocalStorage; };
1295 $dynamic("set$dartObjectLocalStorage").SVGAnimatedLengthList = function(value) { return this.dartObjectLocalStorage = value; };
1296 // ********** Code for dom_SVGAnimatedNumber **************
1297 $dynamic("get$dartObjectLocalStorage").SVGAnimatedNumber = function() { return t his.dartObjectLocalStorage; };
1298 $dynamic("set$dartObjectLocalStorage").SVGAnimatedNumber = function(value) { ret urn this.dartObjectLocalStorage = value; };
1299 // ********** Code for dom_SVGAnimatedNumberList **************
1300 $dynamic("get$dartObjectLocalStorage").SVGAnimatedNumberList = function() { retu rn this.dartObjectLocalStorage; };
1301 $dynamic("set$dartObjectLocalStorage").SVGAnimatedNumberList = function(value) { return this.dartObjectLocalStorage = value; };
1302 // ********** Code for dom_SVGAnimatedPreserveAspectRatio **************
1303 $dynamic("get$dartObjectLocalStorage").SVGAnimatedPreserveAspectRatio = function () { return this.dartObjectLocalStorage; };
1304 $dynamic("set$dartObjectLocalStorage").SVGAnimatedPreserveAspectRatio = function (value) { return this.dartObjectLocalStorage = value; };
1305 // ********** Code for dom_SVGAnimatedRect **************
1306 $dynamic("get$dartObjectLocalStorage").SVGAnimatedRect = function() { return thi s.dartObjectLocalStorage; };
1307 $dynamic("set$dartObjectLocalStorage").SVGAnimatedRect = function(value) { retur n this.dartObjectLocalStorage = value; };
1308 // ********** Code for dom_SVGAnimatedString **************
1309 $dynamic("get$dartObjectLocalStorage").SVGAnimatedString = function() { return t his.dartObjectLocalStorage; };
1310 $dynamic("set$dartObjectLocalStorage").SVGAnimatedString = function(value) { ret urn this.dartObjectLocalStorage = value; };
1311 // ********** Code for dom_SVGAnimatedTransformList **************
1312 $dynamic("get$dartObjectLocalStorage").SVGAnimatedTransformList = function() { r eturn this.dartObjectLocalStorage; };
1313 $dynamic("set$dartObjectLocalStorage").SVGAnimatedTransformList = function(value ) { return this.dartObjectLocalStorage = value; };
1314 // ********** Code for dom_SVGAnimationElement **************
1315 // ********** Code for dom_SVGCircleElement **************
1316 // ********** Code for dom_SVGClipPathElement **************
1317 // ********** Code for dom_SVGColor **************
1318 // ********** Code for dom_SVGComponentTransferFunctionElement **************
1319 // ********** Code for dom_SVGCursorElement **************
1320 // ********** Code for dom_SVGDefsElement **************
1321 // ********** Code for dom_SVGDescElement **************
1322 // ********** Code for dom_SVGDocument **************
1323 // ********** Code for dom_SVGElement **************
1324 // ********** Code for dom_SVGElementInstance **************
1325 $dynamic("get$childNodes").SVGElementInstance = function() { return this.childNo des; };
1326 $dynamic("set$childNodes").SVGElementInstance = function(value) { return this.ch ildNodes = value; };
1327 $dynamic("get$firstChild").SVGElementInstance = function() { return this.firstCh ild; };
1328 $dynamic("set$firstChild").SVGElementInstance = function(value) { return this.fi rstChild = value; };
1329 $dynamic("get$parentNode").SVGElementInstance = function() { return this.parentN ode; };
1330 $dynamic("set$parentNode").SVGElementInstance = function(value) { return this.pa rentNode = value; };
1331 $dynamic("get$dartObjectLocalStorage").SVGElementInstance = function() { return this.dartObjectLocalStorage; };
1332 $dynamic("set$dartObjectLocalStorage").SVGElementInstance = function(value) { re turn this.dartObjectLocalStorage = value; };
1333 // ********** Code for dom_SVGElementInstanceList **************
1334 $dynamic("get$length").SVGElementInstanceList = function() { return this.length; };
1335 $dynamic("set$length").SVGElementInstanceList = function(value) { return this.le ngth = value; };
1336 $dynamic("get$dartObjectLocalStorage").SVGElementInstanceList = function() { ret urn this.dartObjectLocalStorage; };
1337 $dynamic("set$dartObjectLocalStorage").SVGElementInstanceList = function(value) { return this.dartObjectLocalStorage = value; };
1338 $dynamic("item$1").SVGElementInstanceList = function($0) {
1339 return this.item($0);
1340 };
1341 // ********** Code for dom_SVGEllipseElement **************
1342 // ********** Code for dom_SVGException **************
1343 $dynamic("get$dartObjectLocalStorage").SVGException = function() { return this.d artObjectLocalStorage; };
1344 $dynamic("set$dartObjectLocalStorage").SVGException = function(value) { return t his.dartObjectLocalStorage = value; };
1345 $dynamic("toString$0").SVGException = function() {
1346 return this.toString();
1347 };
1348 // ********** Code for dom_SVGExternalResourcesRequired **************
1349 $dynamic("get$dartObjectLocalStorage").SVGExternalResourcesRequired = function() { return this.dartObjectLocalStorage; };
1350 $dynamic("set$dartObjectLocalStorage").SVGExternalResourcesRequired = function(v alue) { return this.dartObjectLocalStorage = value; };
1351 // ********** Code for dom_SVGFEBlendElement **************
1352 // ********** Code for dom_SVGFEColorMatrixElement **************
1353 // ********** Code for dom_SVGFEComponentTransferElement **************
1354 // ********** Code for dom_SVGFECompositeElement **************
1355 // ********** Code for dom_SVGFEConvolveMatrixElement **************
1356 // ********** Code for dom_SVGFEDiffuseLightingElement **************
1357 // ********** Code for dom_SVGFEDisplacementMapElement **************
1358 // ********** Code for dom_SVGFEDistantLightElement **************
1359 // ********** Code for dom_SVGFEDropShadowElement **************
1360 // ********** Code for dom_SVGFEFloodElement **************
1361 // ********** Code for dom_SVGFEFuncAElement **************
1362 // ********** Code for dom_SVGFEFuncBElement **************
1363 // ********** Code for dom_SVGFEFuncGElement **************
1364 // ********** Code for dom_SVGFEFuncRElement **************
1365 // ********** Code for dom_SVGFEGaussianBlurElement **************
1366 // ********** Code for dom_SVGFEImageElement **************
1367 // ********** Code for dom_SVGFEMergeElement **************
1368 // ********** Code for dom_SVGFEMergeNodeElement **************
1369 // ********** Code for dom_SVGFEMorphologyElement **************
1370 // ********** Code for dom_SVGFEOffsetElement **************
1371 // ********** Code for dom_SVGFEPointLightElement **************
1372 // ********** Code for dom_SVGFESpecularLightingElement **************
1373 // ********** Code for dom_SVGFESpotLightElement **************
1374 // ********** Code for dom_SVGFETileElement **************
1375 // ********** Code for dom_SVGFETurbulenceElement **************
1376 // ********** Code for dom_SVGFilterElement **************
1377 // ********** Code for dom_SVGFilterPrimitiveStandardAttributes **************
1378 // ********** Code for dom_SVGFitToViewBox **************
1379 $dynamic("get$dartObjectLocalStorage").SVGFitToViewBox = function() { return thi s.dartObjectLocalStorage; };
1380 $dynamic("set$dartObjectLocalStorage").SVGFitToViewBox = function(value) { retur n this.dartObjectLocalStorage = value; };
1381 // ********** Code for dom_SVGFontElement **************
1382 // ********** Code for dom_SVGFontFaceElement **************
1383 // ********** Code for dom_SVGFontFaceFormatElement **************
1384 // ********** Code for dom_SVGFontFaceNameElement **************
1385 // ********** Code for dom_SVGFontFaceSrcElement **************
1386 // ********** Code for dom_SVGFontFaceUriElement **************
1387 // ********** Code for dom_SVGForeignObjectElement **************
1388 // ********** Code for dom_SVGGElement **************
1389 // ********** Code for dom_SVGGlyphElement **************
1390 // ********** Code for dom_SVGGlyphRefElement **************
1391 // ********** Code for dom_SVGGradientElement **************
1392 // ********** Code for dom_SVGHKernElement **************
1393 // ********** Code for dom_SVGImageElement **************
1394 // ********** Code for dom_SVGLangSpace **************
1395 $dynamic("get$dartObjectLocalStorage").SVGLangSpace = function() { return this.d artObjectLocalStorage; };
1396 $dynamic("set$dartObjectLocalStorage").SVGLangSpace = function(value) { return t his.dartObjectLocalStorage = value; };
1397 // ********** Code for dom_SVGLength **************
1398 $dynamic("get$dartObjectLocalStorage").SVGLength = function() { return this.dart ObjectLocalStorage; };
1399 $dynamic("set$dartObjectLocalStorage").SVGLength = function(value) { return this .dartObjectLocalStorage = value; };
1400 // ********** Code for dom_SVGLengthList **************
1401 $dynamic("get$clear").SVGLengthList = function() {
1402 return this.clear.bind(this);
1403 }
1404 $dynamic("get$dartObjectLocalStorage").SVGLengthList = function() { return this. dartObjectLocalStorage; };
1405 $dynamic("set$dartObjectLocalStorage").SVGLengthList = function(value) { return this.dartObjectLocalStorage = value; };
1406 $dynamic("clear$0").SVGLengthList = function() {
1407 return this.clear();
1408 };
1409 // ********** Code for dom_SVGLineElement **************
1410 // ********** Code for dom_SVGLinearGradientElement **************
1411 // ********** Code for dom_SVGLocatable **************
1412 $dynamic("get$dartObjectLocalStorage").SVGLocatable = function() { return this.d artObjectLocalStorage; };
1413 $dynamic("set$dartObjectLocalStorage").SVGLocatable = function(value) { return t his.dartObjectLocalStorage = value; };
1414 // ********** Code for dom_SVGMPathElement **************
1415 // ********** Code for dom_SVGMarkerElement **************
1416 // ********** Code for dom_SVGMaskElement **************
1417 // ********** Code for dom_SVGMatrix **************
1418 $dynamic("get$dartObjectLocalStorage").SVGMatrix = function() { return this.dart ObjectLocalStorage; };
1419 $dynamic("set$dartObjectLocalStorage").SVGMatrix = function(value) { return this .dartObjectLocalStorage = value; };
1420 // ********** Code for dom_SVGMetadataElement **************
1421 // ********** Code for dom_SVGMissingGlyphElement **************
1422 // ********** Code for dom_SVGNumber **************
1423 $dynamic("get$dartObjectLocalStorage").SVGNumber = function() { return this.dart ObjectLocalStorage; };
1424 $dynamic("set$dartObjectLocalStorage").SVGNumber = function(value) { return this .dartObjectLocalStorage = value; };
1425 // ********** Code for dom_SVGNumberList **************
1426 $dynamic("get$clear").SVGNumberList = function() {
1427 return this.clear.bind(this);
1428 }
1429 $dynamic("get$dartObjectLocalStorage").SVGNumberList = function() { return this. dartObjectLocalStorage; };
1430 $dynamic("set$dartObjectLocalStorage").SVGNumberList = function(value) { return this.dartObjectLocalStorage = value; };
1431 $dynamic("clear$0").SVGNumberList = function() {
1432 return this.clear();
1433 };
1434 // ********** Code for dom_SVGPaint **************
1435 // ********** Code for dom_SVGPathElement **************
1436 // ********** Code for dom_SVGPathSeg **************
1437 $dynamic("get$dartObjectLocalStorage").SVGPathSeg = function() { return this.dar tObjectLocalStorage; };
1438 $dynamic("set$dartObjectLocalStorage").SVGPathSeg = function(value) { return thi s.dartObjectLocalStorage = value; };
1439 // ********** Code for dom_SVGPathSegArcAbs **************
1440 // ********** Code for dom_SVGPathSegArcRel **************
1441 // ********** Code for dom_SVGPathSegClosePath **************
1442 // ********** Code for dom_SVGPathSegCurvetoCubicAbs **************
1443 // ********** Code for dom_SVGPathSegCurvetoCubicRel **************
1444 // ********** Code for dom_SVGPathSegCurvetoCubicSmoothAbs **************
1445 // ********** Code for dom_SVGPathSegCurvetoCubicSmoothRel **************
1446 // ********** Code for dom_SVGPathSegCurvetoQuadraticAbs **************
1447 // ********** Code for dom_SVGPathSegCurvetoQuadraticRel **************
1448 // ********** Code for dom_SVGPathSegCurvetoQuadraticSmoothAbs **************
1449 // ********** Code for dom_SVGPathSegCurvetoQuadraticSmoothRel **************
1450 // ********** Code for dom_SVGPathSegLinetoAbs **************
1451 // ********** Code for dom_SVGPathSegLinetoHorizontalAbs **************
1452 // ********** Code for dom_SVGPathSegLinetoHorizontalRel **************
1453 // ********** Code for dom_SVGPathSegLinetoRel **************
1454 // ********** Code for dom_SVGPathSegLinetoVerticalAbs **************
1455 // ********** Code for dom_SVGPathSegLinetoVerticalRel **************
1456 // ********** Code for dom_SVGPathSegList **************
1457 $dynamic("get$clear").SVGPathSegList = function() {
1458 return this.clear.bind(this);
1459 }
1460 $dynamic("get$dartObjectLocalStorage").SVGPathSegList = function() { return this .dartObjectLocalStorage; };
1461 $dynamic("set$dartObjectLocalStorage").SVGPathSegList = function(value) { return this.dartObjectLocalStorage = value; };
1462 $dynamic("clear$0").SVGPathSegList = function() {
1463 return this.clear();
1464 };
1465 // ********** Code for dom_SVGPathSegMovetoAbs **************
1466 // ********** Code for dom_SVGPathSegMovetoRel **************
1467 // ********** Code for dom_SVGPatternElement **************
1468 // ********** Code for dom_SVGPoint **************
1469 $dynamic("get$dartObjectLocalStorage").SVGPoint = function() { return this.dartO bjectLocalStorage; };
1470 $dynamic("set$dartObjectLocalStorage").SVGPoint = function(value) { return this. dartObjectLocalStorage = value; };
1471 // ********** Code for dom_SVGPointList **************
1472 $dynamic("get$clear").SVGPointList = function() {
1473 return this.clear.bind(this);
1474 }
1475 $dynamic("get$dartObjectLocalStorage").SVGPointList = function() { return this.d artObjectLocalStorage; };
1476 $dynamic("set$dartObjectLocalStorage").SVGPointList = function(value) { return t his.dartObjectLocalStorage = value; };
1477 $dynamic("clear$0").SVGPointList = function() {
1478 return this.clear();
1479 };
1480 // ********** Code for dom_SVGPolygonElement **************
1481 // ********** Code for dom_SVGPolylineElement **************
1482 // ********** Code for dom_SVGPreserveAspectRatio **************
1483 $dynamic("get$dartObjectLocalStorage").SVGPreserveAspectRatio = function() { ret urn this.dartObjectLocalStorage; };
1484 $dynamic("set$dartObjectLocalStorage").SVGPreserveAspectRatio = function(value) { return this.dartObjectLocalStorage = value; };
1485 // ********** Code for dom_SVGRadialGradientElement **************
1486 // ********** Code for dom_SVGRect **************
1487 $dynamic("get$dartObjectLocalStorage").SVGRect = function() { return this.dartOb jectLocalStorage; };
1488 $dynamic("set$dartObjectLocalStorage").SVGRect = function(value) { return this.d artObjectLocalStorage = value; };
1489 // ********** Code for dom_SVGRectElement **************
1490 // ********** Code for dom_SVGRenderingIntent **************
1491 $dynamic("get$dartObjectLocalStorage").SVGRenderingIntent = function() { return this.dartObjectLocalStorage; };
1492 $dynamic("set$dartObjectLocalStorage").SVGRenderingIntent = function(value) { re turn this.dartObjectLocalStorage = value; };
1493 // ********** Code for dom_SVGSVGElement **************
1494 // ********** Code for dom_SVGScriptElement **************
1495 // ********** Code for dom_SVGSetElement **************
1496 // ********** Code for dom_SVGStopElement **************
1497 // ********** Code for dom_SVGStringList **************
1498 $dynamic("get$clear").SVGStringList = function() {
1499 return this.clear.bind(this);
1500 }
1501 $dynamic("get$dartObjectLocalStorage").SVGStringList = function() { return this. dartObjectLocalStorage; };
1502 $dynamic("set$dartObjectLocalStorage").SVGStringList = function(value) { return this.dartObjectLocalStorage = value; };
1503 $dynamic("clear$0").SVGStringList = function() {
1504 return this.clear();
1505 };
1506 // ********** Code for dom_SVGStylable **************
1507 $dynamic("get$dartObjectLocalStorage").SVGStylable = function() { return this.da rtObjectLocalStorage; };
1508 $dynamic("set$dartObjectLocalStorage").SVGStylable = function(value) { return th is.dartObjectLocalStorage = value; };
1509 // ********** Code for dom_SVGStyleElement **************
1510 // ********** Code for dom_SVGSwitchElement **************
1511 // ********** Code for dom_SVGSymbolElement **************
1512 // ********** Code for dom_SVGTRefElement **************
1513 // ********** Code for dom_SVGTSpanElement **************
1514 // ********** Code for dom_SVGTests **************
1515 $dynamic("get$dartObjectLocalStorage").SVGTests = function() { return this.dartO bjectLocalStorage; };
1516 $dynamic("set$dartObjectLocalStorage").SVGTests = function(value) { return this. dartObjectLocalStorage = value; };
1517 // ********** Code for dom_SVGTextContentElement **************
1518 // ********** Code for dom_SVGTextElement **************
1519 // ********** Code for dom_SVGTextPathElement **************
1520 // ********** Code for dom_SVGTextPositioningElement **************
1521 // ********** Code for dom_SVGTitleElement **************
1522 // ********** Code for dom_SVGTransform **************
1523 $dynamic("get$dartObjectLocalStorage").SVGTransform = function() { return this.d artObjectLocalStorage; };
1524 $dynamic("set$dartObjectLocalStorage").SVGTransform = function(value) { return t his.dartObjectLocalStorage = value; };
1525 // ********** Code for dom_SVGTransformList **************
1526 $dynamic("get$clear").SVGTransformList = function() {
1527 return this.clear.bind(this);
1528 }
1529 $dynamic("get$dartObjectLocalStorage").SVGTransformList = function() { return th is.dartObjectLocalStorage; };
1530 $dynamic("set$dartObjectLocalStorage").SVGTransformList = function(value) { retu rn this.dartObjectLocalStorage = value; };
1531 $dynamic("clear$0").SVGTransformList = function() {
1532 return this.clear();
1533 };
1534 // ********** Code for dom_SVGTransformable **************
1535 // ********** Code for dom_SVGURIReference **************
1536 $dynamic("get$dartObjectLocalStorage").SVGURIReference = function() { return thi s.dartObjectLocalStorage; };
1537 $dynamic("set$dartObjectLocalStorage").SVGURIReference = function(value) { retur n this.dartObjectLocalStorage = value; };
1538 // ********** Code for dom_SVGUnitTypes **************
1539 $dynamic("get$dartObjectLocalStorage").SVGUnitTypes = function() { return this.d artObjectLocalStorage; };
1540 $dynamic("set$dartObjectLocalStorage").SVGUnitTypes = function(value) { return t his.dartObjectLocalStorage = value; };
1541 // ********** Code for dom_SVGUseElement **************
1542 // ********** Code for dom_SVGVKernElement **************
1543 // ********** Code for dom_SVGViewElement **************
1544 // ********** Code for dom_SVGViewSpec **************
1545 // ********** Code for dom_SVGZoomAndPan **************
1546 $dynamic("get$dartObjectLocalStorage").SVGZoomAndPan = function() { return this. dartObjectLocalStorage; };
1547 $dynamic("set$dartObjectLocalStorage").SVGZoomAndPan = function(value) { return this.dartObjectLocalStorage = value; };
1548 // ********** Code for dom_SVGZoomEvent **************
1549 // ********** Code for dom_Screen **************
1550 $dynamic("get$dartObjectLocalStorage").Screen = function() { return this.dartObj ectLocalStorage; };
1551 $dynamic("set$dartObjectLocalStorage").Screen = function(value) { return this.da rtObjectLocalStorage = value; };
1552 // ********** Code for dom_ScriptProfile **************
1553 $dynamic("get$dartObjectLocalStorage").ScriptProfile = function() { return this. dartObjectLocalStorage; };
1554 $dynamic("set$dartObjectLocalStorage").ScriptProfile = function(value) { return this.dartObjectLocalStorage = value; };
1555 // ********** Code for dom_ScriptProfileNode **************
1556 $dynamic("get$children").ScriptProfileNode = function() { return this.children; };
1557 $dynamic("set$children").ScriptProfileNode = function(value) { return this.child ren = value; };
1558 $dynamic("get$dartObjectLocalStorage").ScriptProfileNode = function() { return t his.dartObjectLocalStorage; };
1559 $dynamic("set$dartObjectLocalStorage").ScriptProfileNode = function(value) { ret urn this.dartObjectLocalStorage = value; };
1560 // ********** Code for dom_SharedWorker **************
1561 // ********** Code for dom_SharedWorkercontext **************
1562 // ********** Code for dom_SpeechInputEvent **************
1563 // ********** Code for dom_SpeechInputResult **************
1564 $dynamic("get$dartObjectLocalStorage").SpeechInputResult = function() { return t his.dartObjectLocalStorage; };
1565 $dynamic("set$dartObjectLocalStorage").SpeechInputResult = function(value) { ret urn this.dartObjectLocalStorage = value; };
1566 // ********** Code for dom_SpeechInputResultList **************
1567 $dynamic("get$length").SpeechInputResultList = function() { return this.length; };
1568 $dynamic("set$length").SpeechInputResultList = function(value) { return this.len gth = value; };
1569 $dynamic("get$dartObjectLocalStorage").SpeechInputResultList = function() { retu rn this.dartObjectLocalStorage; };
1570 $dynamic("set$dartObjectLocalStorage").SpeechInputResultList = function(value) { return this.dartObjectLocalStorage = value; };
1571 $dynamic("item$1").SpeechInputResultList = function($0) {
1572 return this.item($0);
1573 };
1574 // ********** Code for dom_Storage **************
1575 $dynamic("get$length").Storage = function() { return this.length; };
1576 $dynamic("set$length").Storage = function(value) { return this.length = value; } ;
1577 $dynamic("get$clear").Storage = function() {
1578 return this.clear.bind(this);
1579 }
1580 $dynamic("get$dartObjectLocalStorage").Storage = function() {
1581
1582 if (this === window.localStorage)
1583 return window._dartLocalStorageLocalStorage;
1584 else if (this === window.sessionStorage)
1585 return window._dartSessionStorageLocalStorage;
1586 else
1587 throw new UnsupportedOperationException('Cannot dartObjectLocalStorage f or unknown Storage object.');
1588
1589 }
1590 $dynamic("set$dartObjectLocalStorage").Storage = function(value) {
1591
1592 if (this === window.localStorage)
1593 window._dartLocalStorageLocalStorage = value;
1594 else if (this === window.sessionStorage)
1595 window._dartSessionStorageLocalStorage = value;
1596 else
1597 throw new UnsupportedOperationException('Cannot dartObjectLocalStorage f or unknown Storage object.');
1598
1599 }
1600 $dynamic("clear$0").Storage = function() {
1601 return this.clear();
1602 };
1603 // ********** Code for dom_StorageEvent **************
1604 // ********** Code for dom_StorageInfo **************
1605 $dynamic("get$dartObjectLocalStorage").StorageInfo = function() { return this.da rtObjectLocalStorage; };
1606 $dynamic("set$dartObjectLocalStorage").StorageInfo = function(value) { return th is.dartObjectLocalStorage = value; };
1607 // ********** Code for dom_StyleMedia **************
1608 $dynamic("get$dartObjectLocalStorage").StyleMedia = function() { return this.dar tObjectLocalStorage; };
1609 $dynamic("set$dartObjectLocalStorage").StyleMedia = function(value) { return thi s.dartObjectLocalStorage = value; };
1610 // ********** Code for dom_StyleSheet **************
1611 $dynamic("get$dartObjectLocalStorage").StyleSheet = function() { return this.dar tObjectLocalStorage; };
1612 $dynamic("set$dartObjectLocalStorage").StyleSheet = function(value) { return thi s.dartObjectLocalStorage = value; };
1613 // ********** Code for dom_StyleSheetList **************
1614 $dynamic("get$length").StyleSheetList = function() { return this.length; };
1615 $dynamic("set$length").StyleSheetList = function(value) { return this.length = v alue; };
1616 $dynamic("$setindex").StyleSheetList = function(index, value) {
1617 $throw(new UnsupportedOperationException("Cannot assign element of immutable L ist."));
1618 }
1619 $dynamic("get$dartObjectLocalStorage").StyleSheetList = function() { return this .dartObjectLocalStorage; };
1620 $dynamic("set$dartObjectLocalStorage").StyleSheetList = function(value) { return this.dartObjectLocalStorage = value; };
1621 $dynamic("item$1").StyleSheetList = function($0) {
1622 return this.item($0);
1623 };
1624 // ********** Code for dom_Text **************
1625 // ********** Code for dom_TextEvent **************
1626 // ********** Code for dom_TextMetrics **************
1627 $dynamic("get$dartObjectLocalStorage").TextMetrics = function() { return this.da rtObjectLocalStorage; };
1628 $dynamic("set$dartObjectLocalStorage").TextMetrics = function(value) { return th is.dartObjectLocalStorage = value; };
1629 // ********** Code for dom_TextTrack **************
1630 $dynamic("get$dartObjectLocalStorage").TextTrack = function() { return this.dart ObjectLocalStorage; };
1631 $dynamic("set$dartObjectLocalStorage").TextTrack = function(value) { return this .dartObjectLocalStorage = value; };
1632 // ********** Code for dom_TextTrackCue **************
1633 $dynamic("get$dartObjectLocalStorage").TextTrackCue = function() { return this.d artObjectLocalStorage; };
1634 $dynamic("set$dartObjectLocalStorage").TextTrackCue = function(value) { return t his.dartObjectLocalStorage = value; };
1635 // ********** Code for dom_TextTrackCueList **************
1636 $dynamic("get$length").TextTrackCueList = function() { return this.length; };
1637 $dynamic("set$length").TextTrackCueList = function(value) { return this.length = value; };
1638 $dynamic("get$dartObjectLocalStorage").TextTrackCueList = function() { return th is.dartObjectLocalStorage; };
1639 $dynamic("set$dartObjectLocalStorage").TextTrackCueList = function(value) { retu rn this.dartObjectLocalStorage = value; };
1640 $dynamic("item$1").TextTrackCueList = function($0) {
1641 return this.item($0);
1642 };
1643 // ********** Code for dom_TextTrackList **************
1644 $dynamic("get$length").TextTrackList = function() { return this.length; };
1645 $dynamic("set$length").TextTrackList = function(value) { return this.length = va lue; };
1646 $dynamic("get$dartObjectLocalStorage").TextTrackList = function() { return this. dartObjectLocalStorage; };
1647 $dynamic("set$dartObjectLocalStorage").TextTrackList = function(value) { return this.dartObjectLocalStorage = value; };
1648 $dynamic("item$1").TextTrackList = function($0) {
1649 return this.item($0);
1650 };
1651 // ********** Code for dom_TimeRanges **************
1652 $dynamic("get$length").TimeRanges = function() { return this.length; };
1653 $dynamic("set$length").TimeRanges = function(value) { return this.length = value ; };
1654 $dynamic("get$dartObjectLocalStorage").TimeRanges = function() { return this.dar tObjectLocalStorage; };
1655 $dynamic("set$dartObjectLocalStorage").TimeRanges = function(value) { return thi s.dartObjectLocalStorage = value; };
1656 // ********** Code for dom_Touch **************
1657 $dynamic("get$dartObjectLocalStorage").Touch = function() { return this.dartObje ctLocalStorage; };
1658 $dynamic("set$dartObjectLocalStorage").Touch = function(value) { return this.dar tObjectLocalStorage = value; };
1659 // ********** Code for dom_TouchEvent **************
1660 // ********** Code for dom_TouchList **************
1661 $dynamic("get$length").TouchList = function() { return this.length; };
1662 $dynamic("set$length").TouchList = function(value) { return this.length = value; };
1663 $dynamic("$setindex").TouchList = function(index, value) {
1664 $throw(new UnsupportedOperationException("Cannot assign element of immutable L ist."));
1665 }
1666 $dynamic("get$dartObjectLocalStorage").TouchList = function() { return this.dart ObjectLocalStorage; };
1667 $dynamic("set$dartObjectLocalStorage").TouchList = function(value) { return this .dartObjectLocalStorage = value; };
1668 $dynamic("item$1").TouchList = function($0) {
1669 return this.item($0);
1670 };
1671 // ********** Code for dom_TrackEvent **************
1672 // ********** Code for dom_TreeWalker **************
1673 $dynamic("get$firstChild").TreeWalker = function() {
1674 return this.firstChild.bind(this);
1675 }
1676 $dynamic("get$parentNode").TreeWalker = function() {
1677 return this.parentNode.bind(this);
1678 }
1679 $dynamic("get$dartObjectLocalStorage").TreeWalker = function() { return this.dar tObjectLocalStorage; };
1680 $dynamic("set$dartObjectLocalStorage").TreeWalker = function(value) { return thi s.dartObjectLocalStorage = value; };
1681 $dynamic("filter$1").TreeWalker = function($0) {
1682 return this.filter.call$1($0);
1683 };
1684 // ********** Code for dom_UIEvent **************
1685 // ********** Code for dom_Uint16Array **************
1686 $dynamic("get$length").Uint16Array = function() { return this.length; };
1687 $dynamic("set$length").Uint16Array = function(value) { return this.length = valu e; };
1688 // ********** Code for dom_Uint32Array **************
1689 $dynamic("get$length").Uint32Array = function() { return this.length; };
1690 $dynamic("set$length").Uint32Array = function(value) { return this.length = valu e; };
1691 // ********** Code for dom_Uint8Array **************
1692 $dynamic("get$length").Uint8Array = function() { return this.length; };
1693 $dynamic("set$length").Uint8Array = function(value) { return this.length = value ; };
1694 // ********** Code for dom_ValidityState **************
1695 $dynamic("get$dartObjectLocalStorage").ValidityState = function() { return this. dartObjectLocalStorage; };
1696 $dynamic("set$dartObjectLocalStorage").ValidityState = function(value) { return this.dartObjectLocalStorage = value; };
1697 // ********** Code for dom_WaveShaperNode **************
1698 // ********** Code for dom_WebGLActiveInfo **************
1699 $dynamic("get$dartObjectLocalStorage").WebGLActiveInfo = function() { return thi s.dartObjectLocalStorage; };
1700 $dynamic("set$dartObjectLocalStorage").WebGLActiveInfo = function(value) { retur n this.dartObjectLocalStorage = value; };
1701 // ********** Code for dom_WebGLBuffer **************
1702 $dynamic("get$dartObjectLocalStorage").WebGLBuffer = function() { return this.da rtObjectLocalStorage; };
1703 $dynamic("set$dartObjectLocalStorage").WebGLBuffer = function(value) { return th is.dartObjectLocalStorage = value; };
1704 // ********** Code for dom_WebGLCompressedTextures **************
1705 $dynamic("get$dartObjectLocalStorage").WebGLCompressedTextures = function() { re turn this.dartObjectLocalStorage; };
1706 $dynamic("set$dartObjectLocalStorage").WebGLCompressedTextures = function(value) { return this.dartObjectLocalStorage = value; };
1707 // ********** Code for dom_WebGLContextAttributes **************
1708 $dynamic("get$dartObjectLocalStorage").WebGLContextAttributes = function() { ret urn this.dartObjectLocalStorage; };
1709 $dynamic("set$dartObjectLocalStorage").WebGLContextAttributes = function(value) { return this.dartObjectLocalStorage = value; };
1710 // ********** Code for dom_WebGLContextEvent **************
1711 // ********** Code for dom_WebGLDebugRendererInfo **************
1712 $dynamic("get$dartObjectLocalStorage").WebGLDebugRendererInfo = function() { ret urn this.dartObjectLocalStorage; };
1713 $dynamic("set$dartObjectLocalStorage").WebGLDebugRendererInfo = function(value) { return this.dartObjectLocalStorage = value; };
1714 // ********** Code for dom_WebGLDebugShaders **************
1715 $dynamic("get$dartObjectLocalStorage").WebGLDebugShaders = function() { return t his.dartObjectLocalStorage; };
1716 $dynamic("set$dartObjectLocalStorage").WebGLDebugShaders = function(value) { ret urn this.dartObjectLocalStorage = value; };
1717 // ********** Code for dom_WebGLFramebuffer **************
1718 $dynamic("get$dartObjectLocalStorage").WebGLFramebuffer = function() { return th is.dartObjectLocalStorage; };
1719 $dynamic("set$dartObjectLocalStorage").WebGLFramebuffer = function(value) { retu rn this.dartObjectLocalStorage = value; };
1720 // ********** Code for dom_WebGLLoseContext **************
1721 $dynamic("get$dartObjectLocalStorage").WebGLLoseContext = function() { return th is.dartObjectLocalStorage; };
1722 $dynamic("set$dartObjectLocalStorage").WebGLLoseContext = function(value) { retu rn this.dartObjectLocalStorage = value; };
1723 // ********** Code for dom_WebGLProgram **************
1724 $dynamic("get$dartObjectLocalStorage").WebGLProgram = function() { return this.d artObjectLocalStorage; };
1725 $dynamic("set$dartObjectLocalStorage").WebGLProgram = function(value) { return t his.dartObjectLocalStorage = value; };
1726 // ********** Code for dom_WebGLRenderbuffer **************
1727 $dynamic("get$dartObjectLocalStorage").WebGLRenderbuffer = function() { return t his.dartObjectLocalStorage; };
1728 $dynamic("set$dartObjectLocalStorage").WebGLRenderbuffer = function(value) { ret urn this.dartObjectLocalStorage = value; };
1729 // ********** Code for dom_WebGLRenderingContext **************
1730 $dynamic("get$clear").WebGLRenderingContext = function() {
1731 return this.clear.bind(this);
1732 }
1733 // ********** Code for dom_WebGLShader **************
1734 $dynamic("get$dartObjectLocalStorage").WebGLShader = function() { return this.da rtObjectLocalStorage; };
1735 $dynamic("set$dartObjectLocalStorage").WebGLShader = function(value) { return th is.dartObjectLocalStorage = value; };
1736 // ********** Code for dom_WebGLTexture **************
1737 $dynamic("get$dartObjectLocalStorage").WebGLTexture = function() { return this.d artObjectLocalStorage; };
1738 $dynamic("set$dartObjectLocalStorage").WebGLTexture = function(value) { return t his.dartObjectLocalStorage = value; };
1739 // ********** Code for dom_WebGLUniformLocation **************
1740 $dynamic("get$dartObjectLocalStorage").WebGLUniformLocation = function() { retur n this.dartObjectLocalStorage; };
1741 $dynamic("set$dartObjectLocalStorage").WebGLUniformLocation = function(value) { return this.dartObjectLocalStorage = value; };
1742 // ********** Code for dom_WebGLVertexArrayObjectOES **************
1743 $dynamic("get$dartObjectLocalStorage").WebGLVertexArrayObjectOES = function() { return this.dartObjectLocalStorage; };
1744 $dynamic("set$dartObjectLocalStorage").WebGLVertexArrayObjectOES = function(valu e) { return this.dartObjectLocalStorage = value; };
1745 // ********** Code for dom_WebKitAnimation **************
1746 $dynamic("get$dartObjectLocalStorage").WebKitAnimation = function() { return thi s.dartObjectLocalStorage; };
1747 $dynamic("set$dartObjectLocalStorage").WebKitAnimation = function(value) { retur n this.dartObjectLocalStorage = value; };
1748 // ********** Code for dom_WebKitAnimationEvent **************
1749 // ********** Code for dom_WebKitAnimationList **************
1750 $dynamic("get$length").WebKitAnimationList = function() { return this.length; };
1751 $dynamic("set$length").WebKitAnimationList = function(value) { return this.lengt h = value; };
1752 $dynamic("get$dartObjectLocalStorage").WebKitAnimationList = function() { return this.dartObjectLocalStorage; };
1753 $dynamic("set$dartObjectLocalStorage").WebKitAnimationList = function(value) { r eturn this.dartObjectLocalStorage = value; };
1754 $dynamic("item$1").WebKitAnimationList = function($0) {
1755 return this.item($0);
1756 };
1757 // ********** Code for dom_WebKitBlobBuilder **************
1758 $dynamic("get$dartObjectLocalStorage").WebKitBlobBuilder = function() { return t his.dartObjectLocalStorage; };
1759 $dynamic("set$dartObjectLocalStorage").WebKitBlobBuilder = function(value) { ret urn this.dartObjectLocalStorage = value; };
1760 // ********** Code for dom_WebKitCSSFilterValue **************
1761 // ********** Code for dom_WebKitCSSKeyframeRule **************
1762 // ********** Code for dom_WebKitCSSKeyframesRule **************
1763 // ********** Code for dom_WebKitCSSMatrix **************
1764 $dynamic("get$dartObjectLocalStorage").WebKitCSSMatrix = function() { return thi s.dartObjectLocalStorage; };
1765 $dynamic("set$dartObjectLocalStorage").WebKitCSSMatrix = function(value) { retur n this.dartObjectLocalStorage = value; };
1766 $dynamic("toString$0").WebKitCSSMatrix = function() {
1767 return this.toString();
1768 };
1769 // ********** Code for dom_WebKitCSSTransformValue **************
1770 // ********** Code for dom_WebKitMutationObserver **************
1771 $dynamic("get$dartObjectLocalStorage").WebKitMutationObserver = function() { ret urn this.dartObjectLocalStorage; };
1772 $dynamic("set$dartObjectLocalStorage").WebKitMutationObserver = function(value) { return this.dartObjectLocalStorage = value; };
1773 // ********** Code for dom_WebKitNamedFlow **************
1774 $dynamic("get$dartObjectLocalStorage").WebKitNamedFlow = function() { return thi s.dartObjectLocalStorage; };
1775 $dynamic("set$dartObjectLocalStorage").WebKitNamedFlow = function(value) { retur n this.dartObjectLocalStorage = value; };
1776 // ********** Code for dom_WebKitPoint **************
1777 $dynamic("get$dartObjectLocalStorage").WebKitPoint = function() { return this.da rtObjectLocalStorage; };
1778 $dynamic("set$dartObjectLocalStorage").WebKitPoint = function(value) { return th is.dartObjectLocalStorage = value; };
1779 // ********** Code for dom_WebKitTransitionEvent **************
1780 // ********** Code for dom_WebSocket **************
1781 $dynamic("get$dartObjectLocalStorage").WebSocket = function() { return this.dart ObjectLocalStorage; };
1782 $dynamic("set$dartObjectLocalStorage").WebSocket = function(value) { return this .dartObjectLocalStorage = value; };
1783 // ********** Code for dom_WheelEvent **************
1784 // ********** Code for Worker **************
1785 // ********** Code for dom_WorkerContext **************
1786 $dynamic("get$dartObjectLocalStorage").WorkerContext = function() { return this. dartObjectLocalStorage; };
1787 $dynamic("set$dartObjectLocalStorage").WorkerContext = function(value) { return this.dartObjectLocalStorage = value; };
1788 // ********** Code for dom_WorkerLocation **************
1789 $dynamic("get$dartObjectLocalStorage").WorkerLocation = function() { return this .dartObjectLocalStorage; };
1790 $dynamic("set$dartObjectLocalStorage").WorkerLocation = function(value) { return this.dartObjectLocalStorage = value; };
1791 $dynamic("toString$0").WorkerLocation = function() {
1792 return this.toString();
1793 };
1794 // ********** Code for dom_WorkerNavigator **************
1795 $dynamic("get$dartObjectLocalStorage").WorkerNavigator = function() { return thi s.dartObjectLocalStorage; };
1796 $dynamic("set$dartObjectLocalStorage").WorkerNavigator = function(value) { retur n this.dartObjectLocalStorage = value; };
1797 // ********** Code for dom_XMLHttpRequest **************
1798 $dynamic("get$dartObjectLocalStorage").XMLHttpRequest = function() { return this .dartObjectLocalStorage; };
1799 $dynamic("set$dartObjectLocalStorage").XMLHttpRequest = function(value) { return this.dartObjectLocalStorage = value; };
1800 // ********** Code for dom_XMLHttpRequestException **************
1801 $dynamic("get$dartObjectLocalStorage").XMLHttpRequestException = function() { re turn this.dartObjectLocalStorage; };
1802 $dynamic("set$dartObjectLocalStorage").XMLHttpRequestException = function(value) { return this.dartObjectLocalStorage = value; };
1803 $dynamic("toString$0").XMLHttpRequestException = function() {
1804 return this.toString();
1805 };
1806 // ********** Code for dom_XMLHttpRequestProgressEvent **************
1807 // ********** Code for dom_XMLHttpRequestUpload **************
1808 $dynamic("get$dartObjectLocalStorage").XMLHttpRequestUpload = function() { retur n this.dartObjectLocalStorage; };
1809 $dynamic("set$dartObjectLocalStorage").XMLHttpRequestUpload = function(value) { return this.dartObjectLocalStorage = value; };
1810 // ********** Code for dom_XMLSerializer **************
1811 $dynamic("get$dartObjectLocalStorage").XMLSerializer = function() { return this. dartObjectLocalStorage; };
1812 $dynamic("set$dartObjectLocalStorage").XMLSerializer = function(value) { return this.dartObjectLocalStorage = value; };
1813 // ********** Code for dom_XPathEvaluator **************
1814 $dynamic("get$dartObjectLocalStorage").XPathEvaluator = function() { return this .dartObjectLocalStorage; };
1815 $dynamic("set$dartObjectLocalStorage").XPathEvaluator = function(value) { return this.dartObjectLocalStorage = value; };
1816 // ********** Code for dom_XPathException **************
1817 $dynamic("get$dartObjectLocalStorage").XPathException = function() { return this .dartObjectLocalStorage; };
1818 $dynamic("set$dartObjectLocalStorage").XPathException = function(value) { return this.dartObjectLocalStorage = value; };
1819 $dynamic("toString$0").XPathException = function() {
1820 return this.toString();
1821 };
1822 // ********** Code for dom_XPathExpression **************
1823 $dynamic("get$dartObjectLocalStorage").XPathExpression = function() { return thi s.dartObjectLocalStorage; };
1824 $dynamic("set$dartObjectLocalStorage").XPathExpression = function(value) { retur n this.dartObjectLocalStorage = value; };
1825 // ********** Code for dom_XPathNSResolver **************
1826 $dynamic("get$dartObjectLocalStorage").XPathNSResolver = function() { return thi s.dartObjectLocalStorage; };
1827 $dynamic("set$dartObjectLocalStorage").XPathNSResolver = function(value) { retur n this.dartObjectLocalStorage = value; };
1828 // ********** Code for dom_XPathResult **************
1829 $dynamic("get$dartObjectLocalStorage").XPathResult = function() { return this.da rtObjectLocalStorage; };
1830 $dynamic("set$dartObjectLocalStorage").XPathResult = function(value) { return th is.dartObjectLocalStorage = value; };
1831 // ********** Code for dom_XSLTProcessor **************
1832 $dynamic("get$dartObjectLocalStorage").XSLTProcessor = function() { return this. dartObjectLocalStorage; };
1833 $dynamic("set$dartObjectLocalStorage").XSLTProcessor = function(value) { return this.dartObjectLocalStorage = value; };
1834 // ********** Code for dom__Collections **************
1835 function dom__Collections() {}
1836 // ********** Code for _VariableSizeListIterator_T **************
1837 $inherits(_VariableSizeListIterator_T, dom__VariableSizeListIterator);
1838 function _VariableSizeListIterator_T() {}
1839 // ********** Code for dom__FixedSizeListIterator **************
1840 $inherits(dom__FixedSizeListIterator, _VariableSizeListIterator_T);
1841 function dom__FixedSizeListIterator() {}
1842 dom__FixedSizeListIterator.prototype.hasNext = function() {
1843 return this._dom_length > this._dom_pos;
1844 }
1845 dom__FixedSizeListIterator.prototype.hasNext$0 = dom__FixedSizeListIterator.prot otype.hasNext;
1846 // ********** Code for dom__VariableSizeListIterator **************
1847 function dom__VariableSizeListIterator() {}
1848 dom__VariableSizeListIterator.prototype.hasNext = function() {
1849 return this._dom_array.get$length() > this._dom_pos;
1850 }
1851 dom__VariableSizeListIterator.prototype.next = function() {
1852 if (!this.hasNext()) {
1853 $throw(const$0000);
1854 }
1855 return this._dom_array.$index(this._dom_pos++);
1856 }
1857 dom__VariableSizeListIterator.prototype.hasNext$0 = dom__VariableSizeListIterato r.prototype.hasNext;
1858 dom__VariableSizeListIterator.prototype.next$0 = dom__VariableSizeListIterator.p rototype.next;
1859 // ********** Code for _Lists **************
1860 function _Lists() {}
1861 // ********** Code for top level **************
1862 function get$window() {
1863 return window;
1864 }
1865 function get$document() {
1866 return window.document;
1867 }
1868 // ********** Library htmlimpl **************
1869 // ********** Code for DOMWrapperBase **************
1870 function DOMWrapperBase() {}
1871 DOMWrapperBase._wrap$ctor = function(_ptr) {
1872 this._ptr = _ptr;
1873 this._ptr.set$dartObjectLocalStorage(this);
1874 }
1875 DOMWrapperBase._wrap$ctor.prototype = DOMWrapperBase.prototype;
1876 DOMWrapperBase.prototype.get$_ptr = function() { return this._ptr; };
1877 // ********** Code for EventTargetWrappingImplementation **************
1878 $inherits(EventTargetWrappingImplementation, DOMWrapperBase);
1879 function EventTargetWrappingImplementation() {}
1880 EventTargetWrappingImplementation._wrap$ctor = function(ptr) {
1881 DOMWrapperBase._wrap$ctor.call(this, ptr);
1882 }
1883 EventTargetWrappingImplementation._wrap$ctor.prototype = EventTargetWrappingImpl ementation.prototype;
1884 // ********** Code for NodeWrappingImplementation **************
1885 $inherits(NodeWrappingImplementation, EventTargetWrappingImplementation);
1886 function NodeWrappingImplementation() {}
1887 NodeWrappingImplementation._wrap$ctor = function(ptr) {
1888 EventTargetWrappingImplementation._wrap$ctor.call(this, ptr);
1889 }
1890 NodeWrappingImplementation._wrap$ctor.prototype = NodeWrappingImplementation.pro totype;
1891 NodeWrappingImplementation.prototype.get$nodes = function() {
1892 if (this._nodes == null) {
1893 this._nodes = new _ChildrenNodeList._wrap$ctor(this._ptr);
1894 }
1895 return this._nodes;
1896 }
1897 NodeWrappingImplementation.prototype.replaceWith = function(otherNode) {
1898 try {
1899 this._ptr.get$parentNode().replaceChild$2(LevelDom.unwrap(otherNode), this._ ptr);
1900 } catch (e) {
1901 e = _toDartException(e);
1902 }
1903 return this;
1904 }
1905 // ********** Code for ElementWrappingImplementation **************
1906 $inherits(ElementWrappingImplementation, NodeWrappingImplementation);
1907 function ElementWrappingImplementation() {}
1908 ElementWrappingImplementation._wrap$ctor = function(ptr) {
1909 NodeWrappingImplementation._wrap$ctor.call(this, ptr);
1910 }
1911 ElementWrappingImplementation._wrap$ctor.prototype = ElementWrappingImplementati on.prototype;
1912 ElementWrappingImplementation.prototype.is$html_Element = function(){return true };
1913 ElementWrappingImplementation.ElementWrappingImplementation$tag$factory = functi on(tag) {
1914 return LevelDom.wrapElement(get$document().createElement(tag));
1915 }
1916 ElementWrappingImplementation.prototype.get$elements = function() {
1917 if (this._elements == null) {
1918 this._elements = new _ChildrenElementList._wrap$ctor(this._ptr);
1919 }
1920 return this._elements;
1921 }
1922 ElementWrappingImplementation.prototype.get$firstElementChild = function() {
1923 return LevelDom.wrapElement(this._ptr.get$firstElementChild());
1924 }
1925 ElementWrappingImplementation.prototype.set$innerHTML = function(value) {
1926 this._ptr.set$innerHTML(value);
1927 }
1928 ElementWrappingImplementation.prototype.query = function(selectors) {
1929 return LevelDom.wrapElement(this._ptr.querySelector$1(selectors));
1930 }
1931 // ********** Code for AnchorElementWrappingImplementation **************
1932 $inherits(AnchorElementWrappingImplementation, ElementWrappingImplementation);
1933 function AnchorElementWrappingImplementation() {}
1934 AnchorElementWrappingImplementation._wrap$ctor = function(ptr) {
1935 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
1936 }
1937 AnchorElementWrappingImplementation._wrap$ctor.prototype = AnchorElementWrapping Implementation.prototype;
1938 AnchorElementWrappingImplementation.prototype.is$html_Element = function(){retur n true};
1939 AnchorElementWrappingImplementation.prototype.toString = function() {
1940 return this._ptr.toString$0();
1941 }
1942 AnchorElementWrappingImplementation.prototype.toString$0 = AnchorElementWrapping Implementation.prototype.toString;
1943 // ********** Code for AreaElementWrappingImplementation **************
1944 $inherits(AreaElementWrappingImplementation, ElementWrappingImplementation);
1945 function AreaElementWrappingImplementation() {}
1946 AreaElementWrappingImplementation._wrap$ctor = function(ptr) {
1947 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
1948 }
1949 AreaElementWrappingImplementation._wrap$ctor.prototype = AreaElementWrappingImpl ementation.prototype;
1950 AreaElementWrappingImplementation.prototype.is$html_Element = function(){return true};
1951 // ********** Code for MediaElementWrappingImplementation **************
1952 $inherits(MediaElementWrappingImplementation, ElementWrappingImplementation);
1953 function MediaElementWrappingImplementation() {}
1954 MediaElementWrappingImplementation._wrap$ctor = function(ptr) {
1955 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
1956 }
1957 MediaElementWrappingImplementation._wrap$ctor.prototype = MediaElementWrappingIm plementation.prototype;
1958 MediaElementWrappingImplementation.prototype.is$html_Element = function(){return true};
1959 // ********** Code for AudioElementWrappingImplementation **************
1960 $inherits(AudioElementWrappingImplementation, MediaElementWrappingImplementation );
1961 function AudioElementWrappingImplementation() {}
1962 AudioElementWrappingImplementation._wrap$ctor = function(ptr) {
1963 MediaElementWrappingImplementation._wrap$ctor.call(this, ptr);
1964 }
1965 AudioElementWrappingImplementation._wrap$ctor.prototype = AudioElementWrappingIm plementation.prototype;
1966 AudioElementWrappingImplementation.prototype.is$html_Element = function(){return true};
1967 // ********** Code for BRElementWrappingImplementation **************
1968 $inherits(BRElementWrappingImplementation, ElementWrappingImplementation);
1969 function BRElementWrappingImplementation() {}
1970 BRElementWrappingImplementation._wrap$ctor = function(ptr) {
1971 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
1972 }
1973 BRElementWrappingImplementation._wrap$ctor.prototype = BRElementWrappingImplemen tation.prototype;
1974 BRElementWrappingImplementation.prototype.is$html_Element = function(){return tr ue};
1975 BRElementWrappingImplementation.prototype.get$clear = function() {
1976 return this._ptr.get$clear();
1977 }
1978 BRElementWrappingImplementation.prototype.clear$0 = function() {
1979 return this.get$clear().call$0();
1980 };
1981 // ********** Code for BaseElementWrappingImplementation **************
1982 $inherits(BaseElementWrappingImplementation, ElementWrappingImplementation);
1983 function BaseElementWrappingImplementation() {}
1984 BaseElementWrappingImplementation._wrap$ctor = function(ptr) {
1985 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
1986 }
1987 BaseElementWrappingImplementation._wrap$ctor.prototype = BaseElementWrappingImpl ementation.prototype;
1988 BaseElementWrappingImplementation.prototype.is$html_Element = function(){return true};
1989 // ********** Code for ButtonElementWrappingImplementation **************
1990 $inherits(ButtonElementWrappingImplementation, ElementWrappingImplementation);
1991 function ButtonElementWrappingImplementation() {}
1992 ButtonElementWrappingImplementation._wrap$ctor = function(ptr) {
1993 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
1994 }
1995 ButtonElementWrappingImplementation._wrap$ctor.prototype = ButtonElementWrapping Implementation.prototype;
1996 ButtonElementWrappingImplementation.prototype.is$html_Element = function(){retur n true};
1997 // ********** Code for CharacterDataWrappingImplementation **************
1998 $inherits(CharacterDataWrappingImplementation, NodeWrappingImplementation);
1999 function CharacterDataWrappingImplementation() {}
2000 CharacterDataWrappingImplementation._wrap$ctor = function(ptr) {
2001 NodeWrappingImplementation._wrap$ctor.call(this, ptr);
2002 }
2003 CharacterDataWrappingImplementation._wrap$ctor.prototype = CharacterDataWrapping Implementation.prototype;
2004 CharacterDataWrappingImplementation.prototype.get$length = function() {
2005 return this._ptr.get$length();
2006 }
2007 // ********** Code for TextWrappingImplementation **************
2008 $inherits(TextWrappingImplementation, CharacterDataWrappingImplementation);
2009 function TextWrappingImplementation() {}
2010 TextWrappingImplementation._wrap$ctor = function(ptr) {
2011 CharacterDataWrappingImplementation._wrap$ctor.call(this, ptr);
2012 }
2013 TextWrappingImplementation._wrap$ctor.prototype = TextWrappingImplementation.pro totype;
2014 // ********** Code for CDATASectionWrappingImplementation **************
2015 $inherits(CDATASectionWrappingImplementation, TextWrappingImplementation);
2016 function CDATASectionWrappingImplementation() {}
2017 CDATASectionWrappingImplementation._wrap$ctor = function(ptr) {
2018 TextWrappingImplementation._wrap$ctor.call(this, ptr);
2019 }
2020 CDATASectionWrappingImplementation._wrap$ctor.prototype = CDATASectionWrappingIm plementation.prototype;
2021 // ********** Code for CanvasElementWrappingImplementation **************
2022 $inherits(CanvasElementWrappingImplementation, ElementWrappingImplementation);
2023 function CanvasElementWrappingImplementation() {}
2024 CanvasElementWrappingImplementation._wrap$ctor = function(ptr) {
2025 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
2026 }
2027 CanvasElementWrappingImplementation._wrap$ctor.prototype = CanvasElementWrapping Implementation.prototype;
2028 CanvasElementWrappingImplementation.prototype.is$html_Element = function(){retur n true};
2029 // ********** Code for CommentWrappingImplementation **************
2030 $inherits(CommentWrappingImplementation, CharacterDataWrappingImplementation);
2031 function CommentWrappingImplementation() {}
2032 CommentWrappingImplementation._wrap$ctor = function(ptr) {
2033 CharacterDataWrappingImplementation._wrap$ctor.call(this, ptr);
2034 }
2035 CommentWrappingImplementation._wrap$ctor.prototype = CommentWrappingImplementati on.prototype;
2036 // ********** Code for DListElementWrappingImplementation **************
2037 $inherits(DListElementWrappingImplementation, ElementWrappingImplementation);
2038 function DListElementWrappingImplementation() {}
2039 DListElementWrappingImplementation._wrap$ctor = function(ptr) {
2040 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
2041 }
2042 DListElementWrappingImplementation._wrap$ctor.prototype = DListElementWrappingIm plementation.prototype;
2043 DListElementWrappingImplementation.prototype.is$html_Element = function(){return true};
2044 // ********** Code for DataListElementWrappingImplementation **************
2045 $inherits(DataListElementWrappingImplementation, ElementWrappingImplementation);
2046 function DataListElementWrappingImplementation() {}
2047 DataListElementWrappingImplementation._wrap$ctor = function(ptr) {
2048 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
2049 }
2050 DataListElementWrappingImplementation._wrap$ctor.prototype = DataListElementWrap pingImplementation.prototype;
2051 DataListElementWrappingImplementation.prototype.is$html_Element = function(){ret urn true};
2052 // ********** Code for DetailsElementWrappingImplementation **************
2053 $inherits(DetailsElementWrappingImplementation, ElementWrappingImplementation);
2054 function DetailsElementWrappingImplementation() {}
2055 DetailsElementWrappingImplementation._wrap$ctor = function(ptr) {
2056 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
2057 }
2058 DetailsElementWrappingImplementation._wrap$ctor.prototype = DetailsElementWrappi ngImplementation.prototype;
2059 DetailsElementWrappingImplementation.prototype.is$html_Element = function(){retu rn true};
2060 // ********** Code for DivElementWrappingImplementation **************
2061 $inherits(DivElementWrappingImplementation, ElementWrappingImplementation);
2062 function DivElementWrappingImplementation() {}
2063 DivElementWrappingImplementation._wrap$ctor = function(ptr) {
2064 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
2065 }
2066 DivElementWrappingImplementation._wrap$ctor.prototype = DivElementWrappingImplem entation.prototype;
2067 DivElementWrappingImplementation.prototype.is$html_Element = function(){return t rue};
2068 // ********** Code for EmbedElementWrappingImplementation **************
2069 $inherits(EmbedElementWrappingImplementation, ElementWrappingImplementation);
2070 function EmbedElementWrappingImplementation() {}
2071 EmbedElementWrappingImplementation._wrap$ctor = function(ptr) {
2072 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
2073 }
2074 EmbedElementWrappingImplementation._wrap$ctor.prototype = EmbedElementWrappingIm plementation.prototype;
2075 EmbedElementWrappingImplementation.prototype.is$html_Element = function(){return true};
2076 // ********** Code for EntityReferenceWrappingImplementation **************
2077 $inherits(EntityReferenceWrappingImplementation, NodeWrappingImplementation);
2078 function EntityReferenceWrappingImplementation() {}
2079 EntityReferenceWrappingImplementation._wrap$ctor = function(ptr) {
2080 NodeWrappingImplementation._wrap$ctor.call(this, ptr);
2081 }
2082 EntityReferenceWrappingImplementation._wrap$ctor.prototype = EntityReferenceWrap pingImplementation.prototype;
2083 // ********** Code for EntityWrappingImplementation **************
2084 $inherits(EntityWrappingImplementation, NodeWrappingImplementation);
2085 function EntityWrappingImplementation() {}
2086 EntityWrappingImplementation._wrap$ctor = function(ptr) {
2087 NodeWrappingImplementation._wrap$ctor.call(this, ptr);
2088 }
2089 EntityWrappingImplementation._wrap$ctor.prototype = EntityWrappingImplementation .prototype;
2090 // ********** Code for FieldSetElementWrappingImplementation **************
2091 $inherits(FieldSetElementWrappingImplementation, ElementWrappingImplementation);
2092 function FieldSetElementWrappingImplementation() {}
2093 FieldSetElementWrappingImplementation._wrap$ctor = function(ptr) {
2094 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
2095 }
2096 FieldSetElementWrappingImplementation._wrap$ctor.prototype = FieldSetElementWrap pingImplementation.prototype;
2097 FieldSetElementWrappingImplementation.prototype.is$html_Element = function(){ret urn true};
2098 // ********** Code for FontElementWrappingImplementation **************
2099 $inherits(FontElementWrappingImplementation, ElementWrappingImplementation);
2100 function FontElementWrappingImplementation() {}
2101 FontElementWrappingImplementation._wrap$ctor = function(ptr) {
2102 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
2103 }
2104 FontElementWrappingImplementation._wrap$ctor.prototype = FontElementWrappingImpl ementation.prototype;
2105 FontElementWrappingImplementation.prototype.is$html_Element = function(){return true};
2106 // ********** Code for FormElementWrappingImplementation **************
2107 $inherits(FormElementWrappingImplementation, ElementWrappingImplementation);
2108 function FormElementWrappingImplementation() {}
2109 FormElementWrappingImplementation._wrap$ctor = function(ptr) {
2110 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
2111 }
2112 FormElementWrappingImplementation._wrap$ctor.prototype = FormElementWrappingImpl ementation.prototype;
2113 FormElementWrappingImplementation.prototype.is$html_Element = function(){return true};
2114 FormElementWrappingImplementation.prototype.get$length = function() {
2115 return this._ptr.get$length();
2116 }
2117 // ********** Code for HRElementWrappingImplementation **************
2118 $inherits(HRElementWrappingImplementation, ElementWrappingImplementation);
2119 function HRElementWrappingImplementation() {}
2120 HRElementWrappingImplementation._wrap$ctor = function(ptr) {
2121 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
2122 }
2123 HRElementWrappingImplementation._wrap$ctor.prototype = HRElementWrappingImplemen tation.prototype;
2124 HRElementWrappingImplementation.prototype.is$html_Element = function(){return tr ue};
2125 // ********** Code for HeadElementWrappingImplementation **************
2126 $inherits(HeadElementWrappingImplementation, ElementWrappingImplementation);
2127 function HeadElementWrappingImplementation() {}
2128 HeadElementWrappingImplementation._wrap$ctor = function(ptr) {
2129 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
2130 }
2131 HeadElementWrappingImplementation._wrap$ctor.prototype = HeadElementWrappingImpl ementation.prototype;
2132 HeadElementWrappingImplementation.prototype.is$html_Element = function(){return true};
2133 // ********** Code for HeadingElementWrappingImplementation **************
2134 $inherits(HeadingElementWrappingImplementation, ElementWrappingImplementation);
2135 function HeadingElementWrappingImplementation() {}
2136 HeadingElementWrappingImplementation._wrap$ctor = function(ptr) {
2137 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
2138 }
2139 HeadingElementWrappingImplementation._wrap$ctor.prototype = HeadingElementWrappi ngImplementation.prototype;
2140 HeadingElementWrappingImplementation.prototype.is$html_Element = function(){retu rn true};
2141 // ********** Code for IFrameElementWrappingImplementation **************
2142 $inherits(IFrameElementWrappingImplementation, ElementWrappingImplementation);
2143 function IFrameElementWrappingImplementation() {}
2144 IFrameElementWrappingImplementation._wrap$ctor = function(ptr) {
2145 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
2146 }
2147 IFrameElementWrappingImplementation._wrap$ctor.prototype = IFrameElementWrapping Implementation.prototype;
2148 IFrameElementWrappingImplementation.prototype.is$html_Element = function(){retur n true};
2149 // ********** Code for ImageElementWrappingImplementation **************
2150 $inherits(ImageElementWrappingImplementation, ElementWrappingImplementation);
2151 function ImageElementWrappingImplementation() {}
2152 ImageElementWrappingImplementation._wrap$ctor = function(ptr) {
2153 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
2154 }
2155 ImageElementWrappingImplementation._wrap$ctor.prototype = ImageElementWrappingIm plementation.prototype;
2156 ImageElementWrappingImplementation.prototype.is$html_Element = function(){return true};
2157 // ********** Code for InputElementWrappingImplementation **************
2158 $inherits(InputElementWrappingImplementation, ElementWrappingImplementation);
2159 function InputElementWrappingImplementation() {}
2160 InputElementWrappingImplementation._wrap$ctor = function(ptr) {
2161 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
2162 }
2163 InputElementWrappingImplementation._wrap$ctor.prototype = InputElementWrappingIm plementation.prototype;
2164 InputElementWrappingImplementation.prototype.is$html_Element = function(){return true};
2165 // ********** Code for KeygenElementWrappingImplementation **************
2166 $inherits(KeygenElementWrappingImplementation, ElementWrappingImplementation);
2167 function KeygenElementWrappingImplementation() {}
2168 KeygenElementWrappingImplementation._wrap$ctor = function(ptr) {
2169 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
2170 }
2171 KeygenElementWrappingImplementation._wrap$ctor.prototype = KeygenElementWrapping Implementation.prototype;
2172 KeygenElementWrappingImplementation.prototype.is$html_Element = function(){retur n true};
2173 // ********** Code for LIElementWrappingImplementation **************
2174 $inherits(LIElementWrappingImplementation, ElementWrappingImplementation);
2175 function LIElementWrappingImplementation() {}
2176 LIElementWrappingImplementation._wrap$ctor = function(ptr) {
2177 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
2178 }
2179 LIElementWrappingImplementation._wrap$ctor.prototype = LIElementWrappingImplemen tation.prototype;
2180 LIElementWrappingImplementation.prototype.is$html_Element = function(){return tr ue};
2181 // ********** Code for LabelElementWrappingImplementation **************
2182 $inherits(LabelElementWrappingImplementation, ElementWrappingImplementation);
2183 function LabelElementWrappingImplementation() {}
2184 LabelElementWrappingImplementation._wrap$ctor = function(ptr) {
2185 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
2186 }
2187 LabelElementWrappingImplementation._wrap$ctor.prototype = LabelElementWrappingIm plementation.prototype;
2188 LabelElementWrappingImplementation.prototype.is$html_Element = function(){return true};
2189 // ********** Code for LegendElementWrappingImplementation **************
2190 $inherits(LegendElementWrappingImplementation, ElementWrappingImplementation);
2191 function LegendElementWrappingImplementation() {}
2192 LegendElementWrappingImplementation._wrap$ctor = function(ptr) {
2193 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
2194 }
2195 LegendElementWrappingImplementation._wrap$ctor.prototype = LegendElementWrapping Implementation.prototype;
2196 LegendElementWrappingImplementation.prototype.is$html_Element = function(){retur n true};
2197 // ********** Code for LinkElementWrappingImplementation **************
2198 $inherits(LinkElementWrappingImplementation, ElementWrappingImplementation);
2199 function LinkElementWrappingImplementation() {}
2200 LinkElementWrappingImplementation._wrap$ctor = function(ptr) {
2201 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
2202 }
2203 LinkElementWrappingImplementation._wrap$ctor.prototype = LinkElementWrappingImpl ementation.prototype;
2204 LinkElementWrappingImplementation.prototype.is$html_Element = function(){return true};
2205 // ********** Code for MapElementWrappingImplementation **************
2206 $inherits(MapElementWrappingImplementation, ElementWrappingImplementation);
2207 function MapElementWrappingImplementation() {}
2208 MapElementWrappingImplementation._wrap$ctor = function(ptr) {
2209 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
2210 }
2211 MapElementWrappingImplementation._wrap$ctor.prototype = MapElementWrappingImplem entation.prototype;
2212 MapElementWrappingImplementation.prototype.is$html_Element = function(){return t rue};
2213 // ********** Code for MarqueeElementWrappingImplementation **************
2214 $inherits(MarqueeElementWrappingImplementation, ElementWrappingImplementation);
2215 function MarqueeElementWrappingImplementation() {}
2216 MarqueeElementWrappingImplementation._wrap$ctor = function(ptr) {
2217 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
2218 }
2219 MarqueeElementWrappingImplementation._wrap$ctor.prototype = MarqueeElementWrappi ngImplementation.prototype;
2220 MarqueeElementWrappingImplementation.prototype.is$html_Element = function(){retu rn true};
2221 // ********** Code for MenuElementWrappingImplementation **************
2222 $inherits(MenuElementWrappingImplementation, ElementWrappingImplementation);
2223 function MenuElementWrappingImplementation() {}
2224 MenuElementWrappingImplementation._wrap$ctor = function(ptr) {
2225 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
2226 }
2227 MenuElementWrappingImplementation._wrap$ctor.prototype = MenuElementWrappingImpl ementation.prototype;
2228 MenuElementWrappingImplementation.prototype.is$html_Element = function(){return true};
2229 // ********** Code for MetaElementWrappingImplementation **************
2230 $inherits(MetaElementWrappingImplementation, ElementWrappingImplementation);
2231 function MetaElementWrappingImplementation() {}
2232 MetaElementWrappingImplementation._wrap$ctor = function(ptr) {
2233 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
2234 }
2235 MetaElementWrappingImplementation._wrap$ctor.prototype = MetaElementWrappingImpl ementation.prototype;
2236 MetaElementWrappingImplementation.prototype.is$html_Element = function(){return true};
2237 // ********** Code for MeterElementWrappingImplementation **************
2238 $inherits(MeterElementWrappingImplementation, ElementWrappingImplementation);
2239 function MeterElementWrappingImplementation() {}
2240 MeterElementWrappingImplementation._wrap$ctor = function(ptr) {
2241 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
2242 }
2243 MeterElementWrappingImplementation._wrap$ctor.prototype = MeterElementWrappingIm plementation.prototype;
2244 MeterElementWrappingImplementation.prototype.is$html_Element = function(){return true};
2245 // ********** Code for ModElementWrappingImplementation **************
2246 $inherits(ModElementWrappingImplementation, ElementWrappingImplementation);
2247 function ModElementWrappingImplementation() {}
2248 ModElementWrappingImplementation._wrap$ctor = function(ptr) {
2249 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
2250 }
2251 ModElementWrappingImplementation._wrap$ctor.prototype = ModElementWrappingImplem entation.prototype;
2252 ModElementWrappingImplementation.prototype.is$html_Element = function(){return t rue};
2253 // ********** Code for NotationWrappingImplementation **************
2254 $inherits(NotationWrappingImplementation, NodeWrappingImplementation);
2255 function NotationWrappingImplementation() {}
2256 NotationWrappingImplementation._wrap$ctor = function(ptr) {
2257 NodeWrappingImplementation._wrap$ctor.call(this, ptr);
2258 }
2259 NotationWrappingImplementation._wrap$ctor.prototype = NotationWrappingImplementa tion.prototype;
2260 // ********** Code for OListElementWrappingImplementation **************
2261 $inherits(OListElementWrappingImplementation, ElementWrappingImplementation);
2262 function OListElementWrappingImplementation() {}
2263 OListElementWrappingImplementation._wrap$ctor = function(ptr) {
2264 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
2265 }
2266 OListElementWrappingImplementation._wrap$ctor.prototype = OListElementWrappingIm plementation.prototype;
2267 OListElementWrappingImplementation.prototype.is$html_Element = function(){return true};
2268 // ********** Code for OptGroupElementWrappingImplementation **************
2269 $inherits(OptGroupElementWrappingImplementation, ElementWrappingImplementation);
2270 function OptGroupElementWrappingImplementation() {}
2271 OptGroupElementWrappingImplementation._wrap$ctor = function(ptr) {
2272 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
2273 }
2274 OptGroupElementWrappingImplementation._wrap$ctor.prototype = OptGroupElementWrap pingImplementation.prototype;
2275 OptGroupElementWrappingImplementation.prototype.is$html_Element = function(){ret urn true};
2276 // ********** Code for OptionElementWrappingImplementation **************
2277 $inherits(OptionElementWrappingImplementation, ElementWrappingImplementation);
2278 function OptionElementWrappingImplementation() {}
2279 OptionElementWrappingImplementation._wrap$ctor = function(ptr) {
2280 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
2281 }
2282 OptionElementWrappingImplementation._wrap$ctor.prototype = OptionElementWrapping Implementation.prototype;
2283 OptionElementWrappingImplementation.prototype.is$html_Element = function(){retur n true};
2284 // ********** Code for OutputElementWrappingImplementation **************
2285 $inherits(OutputElementWrappingImplementation, ElementWrappingImplementation);
2286 function OutputElementWrappingImplementation() {}
2287 OutputElementWrappingImplementation._wrap$ctor = function(ptr) {
2288 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
2289 }
2290 OutputElementWrappingImplementation._wrap$ctor.prototype = OutputElementWrapping Implementation.prototype;
2291 OutputElementWrappingImplementation.prototype.is$html_Element = function(){retur n true};
2292 // ********** Code for ParagraphElementWrappingImplementation **************
2293 $inherits(ParagraphElementWrappingImplementation, ElementWrappingImplementation) ;
2294 function ParagraphElementWrappingImplementation() {}
2295 ParagraphElementWrappingImplementation._wrap$ctor = function(ptr) {
2296 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
2297 }
2298 ParagraphElementWrappingImplementation._wrap$ctor.prototype = ParagraphElementWr appingImplementation.prototype;
2299 ParagraphElementWrappingImplementation.prototype.is$html_Element = function(){re turn true};
2300 // ********** Code for ParamElementWrappingImplementation **************
2301 $inherits(ParamElementWrappingImplementation, ElementWrappingImplementation);
2302 function ParamElementWrappingImplementation() {}
2303 ParamElementWrappingImplementation._wrap$ctor = function(ptr) {
2304 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
2305 }
2306 ParamElementWrappingImplementation._wrap$ctor.prototype = ParamElementWrappingIm plementation.prototype;
2307 ParamElementWrappingImplementation.prototype.is$html_Element = function(){return true};
2308 // ********** Code for PreElementWrappingImplementation **************
2309 $inherits(PreElementWrappingImplementation, ElementWrappingImplementation);
2310 function PreElementWrappingImplementation() {}
2311 PreElementWrappingImplementation._wrap$ctor = function(ptr) {
2312 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
2313 }
2314 PreElementWrappingImplementation._wrap$ctor.prototype = PreElementWrappingImplem entation.prototype;
2315 PreElementWrappingImplementation.prototype.is$html_Element = function(){return t rue};
2316 // ********** Code for ProcessingInstructionWrappingImplementation ************* *
2317 $inherits(ProcessingInstructionWrappingImplementation, NodeWrappingImplementatio n);
2318 function ProcessingInstructionWrappingImplementation() {}
2319 ProcessingInstructionWrappingImplementation._wrap$ctor = function(ptr) {
2320 NodeWrappingImplementation._wrap$ctor.call(this, ptr);
2321 }
2322 ProcessingInstructionWrappingImplementation._wrap$ctor.prototype = ProcessingIns tructionWrappingImplementation.prototype;
2323 // ********** Code for ProgressElementWrappingImplementation **************
2324 $inherits(ProgressElementWrappingImplementation, ElementWrappingImplementation);
2325 function ProgressElementWrappingImplementation() {}
2326 ProgressElementWrappingImplementation._wrap$ctor = function(ptr) {
2327 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
2328 }
2329 ProgressElementWrappingImplementation._wrap$ctor.prototype = ProgressElementWrap pingImplementation.prototype;
2330 ProgressElementWrappingImplementation.prototype.is$html_Element = function(){ret urn true};
2331 // ********** Code for QuoteElementWrappingImplementation **************
2332 $inherits(QuoteElementWrappingImplementation, ElementWrappingImplementation);
2333 function QuoteElementWrappingImplementation() {}
2334 QuoteElementWrappingImplementation._wrap$ctor = function(ptr) {
2335 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
2336 }
2337 QuoteElementWrappingImplementation._wrap$ctor.prototype = QuoteElementWrappingIm plementation.prototype;
2338 QuoteElementWrappingImplementation.prototype.is$html_Element = function(){return true};
2339 // ********** Code for SVGElementWrappingImplementation **************
2340 $inherits(SVGElementWrappingImplementation, ElementWrappingImplementation);
2341 function SVGElementWrappingImplementation() {}
2342 SVGElementWrappingImplementation._wrap$ctor = function(ptr) {
2343 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
2344 }
2345 SVGElementWrappingImplementation._wrap$ctor.prototype = SVGElementWrappingImplem entation.prototype;
2346 SVGElementWrappingImplementation.prototype.is$html_Element = function(){return t rue};
2347 SVGElementWrappingImplementation.prototype.get$elements = function() {
2348 if (this._elements == null) {
2349 this._elements = new FilteredElementList(this);
2350 }
2351 return this._elements;
2352 }
2353 SVGElementWrappingImplementation.prototype.set$elements = function(value) {
2354 var elements = this.get$elements();
2355 elements.clear$0();
2356 elements.addAll$1(value);
2357 }
2358 SVGElementWrappingImplementation.prototype.set$innerHTML = function(svg) {
2359 var container = ElementWrappingImplementation.ElementWrappingImplementation$ta g$factory("div");
2360 container.set$innerHTML(("<svg version=\"1.1\">" + svg + "</svg>"));
2361 this.set$elements(container.get$elements().get$first().get$elements());
2362 }
2363 // ********** Code for SVGAElementWrappingImplementation **************
2364 $inherits(SVGAElementWrappingImplementation, SVGElementWrappingImplementation);
2365 function SVGAElementWrappingImplementation() {}
2366 SVGAElementWrappingImplementation._wrap$ctor = function(ptr) {
2367 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2368 }
2369 SVGAElementWrappingImplementation._wrap$ctor.prototype = SVGAElementWrappingImpl ementation.prototype;
2370 SVGAElementWrappingImplementation.prototype.is$html_Element = function(){return true};
2371 // ********** Code for SVGAltGlyphDefElementWrappingImplementation ************* *
2372 $inherits(SVGAltGlyphDefElementWrappingImplementation, SVGElementWrappingImpleme ntation);
2373 function SVGAltGlyphDefElementWrappingImplementation() {}
2374 SVGAltGlyphDefElementWrappingImplementation._wrap$ctor = function(ptr) {
2375 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2376 }
2377 SVGAltGlyphDefElementWrappingImplementation._wrap$ctor.prototype = SVGAltGlyphDe fElementWrappingImplementation.prototype;
2378 SVGAltGlyphDefElementWrappingImplementation.prototype.is$html_Element = function (){return true};
2379 // ********** Code for SVGTextContentElementWrappingImplementation ************* *
2380 $inherits(SVGTextContentElementWrappingImplementation, SVGElementWrappingImpleme ntation);
2381 function SVGTextContentElementWrappingImplementation() {}
2382 SVGTextContentElementWrappingImplementation._wrap$ctor = function(ptr) {
2383 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2384 }
2385 SVGTextContentElementWrappingImplementation._wrap$ctor.prototype = SVGTextConten tElementWrappingImplementation.prototype;
2386 SVGTextContentElementWrappingImplementation.prototype.is$html_Element = function (){return true};
2387 // ********** Code for SVGTextPositioningElementWrappingImplementation ********* *****
2388 $inherits(SVGTextPositioningElementWrappingImplementation, SVGTextContentElement WrappingImplementation);
2389 function SVGTextPositioningElementWrappingImplementation() {}
2390 SVGTextPositioningElementWrappingImplementation._wrap$ctor = function(ptr) {
2391 SVGTextContentElementWrappingImplementation._wrap$ctor.call(this, ptr);
2392 }
2393 SVGTextPositioningElementWrappingImplementation._wrap$ctor.prototype = SVGTextPo sitioningElementWrappingImplementation.prototype;
2394 SVGTextPositioningElementWrappingImplementation.prototype.is$html_Element = func tion(){return true};
2395 // ********** Code for SVGAltGlyphElementWrappingImplementation **************
2396 $inherits(SVGAltGlyphElementWrappingImplementation, SVGTextPositioningElementWra ppingImplementation);
2397 function SVGAltGlyphElementWrappingImplementation() {}
2398 SVGAltGlyphElementWrappingImplementation._wrap$ctor = function(ptr) {
2399 SVGTextPositioningElementWrappingImplementation._wrap$ctor.call(this, ptr);
2400 }
2401 SVGAltGlyphElementWrappingImplementation._wrap$ctor.prototype = SVGAltGlyphEleme ntWrappingImplementation.prototype;
2402 SVGAltGlyphElementWrappingImplementation.prototype.is$html_Element = function(){ return true};
2403 // ********** Code for SVGAltGlyphItemElementWrappingImplementation ************ **
2404 $inherits(SVGAltGlyphItemElementWrappingImplementation, SVGElementWrappingImplem entation);
2405 function SVGAltGlyphItemElementWrappingImplementation() {}
2406 SVGAltGlyphItemElementWrappingImplementation._wrap$ctor = function(ptr) {
2407 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2408 }
2409 SVGAltGlyphItemElementWrappingImplementation._wrap$ctor.prototype = SVGAltGlyphI temElementWrappingImplementation.prototype;
2410 SVGAltGlyphItemElementWrappingImplementation.prototype.is$html_Element = functio n(){return true};
2411 // ********** Code for SVGAnimationElementWrappingImplementation **************
2412 $inherits(SVGAnimationElementWrappingImplementation, SVGElementWrappingImplement ation);
2413 function SVGAnimationElementWrappingImplementation() {}
2414 SVGAnimationElementWrappingImplementation._wrap$ctor = function(ptr) {
2415 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2416 }
2417 SVGAnimationElementWrappingImplementation._wrap$ctor.prototype = SVGAnimationEle mentWrappingImplementation.prototype;
2418 SVGAnimationElementWrappingImplementation.prototype.is$html_Element = function() {return true};
2419 // ********** Code for SVGAnimateColorElementWrappingImplementation ************ **
2420 $inherits(SVGAnimateColorElementWrappingImplementation, SVGAnimationElementWrapp ingImplementation);
2421 function SVGAnimateColorElementWrappingImplementation() {}
2422 SVGAnimateColorElementWrappingImplementation._wrap$ctor = function(ptr) {
2423 SVGAnimationElementWrappingImplementation._wrap$ctor.call(this, ptr);
2424 }
2425 SVGAnimateColorElementWrappingImplementation._wrap$ctor.prototype = SVGAnimateCo lorElementWrappingImplementation.prototype;
2426 SVGAnimateColorElementWrappingImplementation.prototype.is$html_Element = functio n(){return true};
2427 // ********** Code for SVGAnimateElementWrappingImplementation **************
2428 $inherits(SVGAnimateElementWrappingImplementation, SVGAnimationElementWrappingIm plementation);
2429 function SVGAnimateElementWrappingImplementation() {}
2430 SVGAnimateElementWrappingImplementation._wrap$ctor = function(ptr) {
2431 SVGAnimationElementWrappingImplementation._wrap$ctor.call(this, ptr);
2432 }
2433 SVGAnimateElementWrappingImplementation._wrap$ctor.prototype = SVGAnimateElement WrappingImplementation.prototype;
2434 SVGAnimateElementWrappingImplementation.prototype.is$html_Element = function(){r eturn true};
2435 // ********** Code for SVGAnimateMotionElementWrappingImplementation *********** ***
2436 $inherits(SVGAnimateMotionElementWrappingImplementation, SVGAnimationElementWrap pingImplementation);
2437 function SVGAnimateMotionElementWrappingImplementation() {}
2438 SVGAnimateMotionElementWrappingImplementation._wrap$ctor = function(ptr) {
2439 SVGAnimationElementWrappingImplementation._wrap$ctor.call(this, ptr);
2440 }
2441 SVGAnimateMotionElementWrappingImplementation._wrap$ctor.prototype = SVGAnimateM otionElementWrappingImplementation.prototype;
2442 SVGAnimateMotionElementWrappingImplementation.prototype.is$html_Element = functi on(){return true};
2443 // ********** Code for SVGAnimateTransformElementWrappingImplementation ******** ******
2444 $inherits(SVGAnimateTransformElementWrappingImplementation, SVGAnimationElementW rappingImplementation);
2445 function SVGAnimateTransformElementWrappingImplementation() {}
2446 SVGAnimateTransformElementWrappingImplementation._wrap$ctor = function(ptr) {
2447 SVGAnimationElementWrappingImplementation._wrap$ctor.call(this, ptr);
2448 }
2449 SVGAnimateTransformElementWrappingImplementation._wrap$ctor.prototype = SVGAnima teTransformElementWrappingImplementation.prototype;
2450 SVGAnimateTransformElementWrappingImplementation.prototype.is$html_Element = fun ction(){return true};
2451 // ********** Code for SVGCircleElementWrappingImplementation **************
2452 $inherits(SVGCircleElementWrappingImplementation, SVGElementWrappingImplementati on);
2453 function SVGCircleElementWrappingImplementation() {}
2454 SVGCircleElementWrappingImplementation._wrap$ctor = function(ptr) {
2455 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2456 }
2457 SVGCircleElementWrappingImplementation._wrap$ctor.prototype = SVGCircleElementWr appingImplementation.prototype;
2458 SVGCircleElementWrappingImplementation.prototype.is$html_Element = function(){re turn true};
2459 // ********** Code for SVGClipPathElementWrappingImplementation **************
2460 $inherits(SVGClipPathElementWrappingImplementation, SVGElementWrappingImplementa tion);
2461 function SVGClipPathElementWrappingImplementation() {}
2462 SVGClipPathElementWrappingImplementation._wrap$ctor = function(ptr) {
2463 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2464 }
2465 SVGClipPathElementWrappingImplementation._wrap$ctor.prototype = SVGClipPathEleme ntWrappingImplementation.prototype;
2466 SVGClipPathElementWrappingImplementation.prototype.is$html_Element = function(){ return true};
2467 // ********** Code for SVGComponentTransferFunctionElementWrappingImplementation **************
2468 $inherits(SVGComponentTransferFunctionElementWrappingImplementation, SVGElementW rappingImplementation);
2469 function SVGComponentTransferFunctionElementWrappingImplementation() {}
2470 SVGComponentTransferFunctionElementWrappingImplementation._wrap$ctor = function( ptr) {
2471 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2472 }
2473 SVGComponentTransferFunctionElementWrappingImplementation._wrap$ctor.prototype = SVGComponentTransferFunctionElementWrappingImplementation.prototype;
2474 SVGComponentTransferFunctionElementWrappingImplementation.prototype.is$html_Elem ent = function(){return true};
2475 // ********** Code for SVGCursorElementWrappingImplementation **************
2476 $inherits(SVGCursorElementWrappingImplementation, SVGElementWrappingImplementati on);
2477 function SVGCursorElementWrappingImplementation() {}
2478 SVGCursorElementWrappingImplementation._wrap$ctor = function(ptr) {
2479 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2480 }
2481 SVGCursorElementWrappingImplementation._wrap$ctor.prototype = SVGCursorElementWr appingImplementation.prototype;
2482 SVGCursorElementWrappingImplementation.prototype.is$html_Element = function(){re turn true};
2483 // ********** Code for SVGDefsElementWrappingImplementation **************
2484 $inherits(SVGDefsElementWrappingImplementation, SVGElementWrappingImplementation );
2485 function SVGDefsElementWrappingImplementation() {}
2486 SVGDefsElementWrappingImplementation._wrap$ctor = function(ptr) {
2487 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2488 }
2489 SVGDefsElementWrappingImplementation._wrap$ctor.prototype = SVGDefsElementWrappi ngImplementation.prototype;
2490 SVGDefsElementWrappingImplementation.prototype.is$html_Element = function(){retu rn true};
2491 // ********** Code for SVGDescElementWrappingImplementation **************
2492 $inherits(SVGDescElementWrappingImplementation, SVGElementWrappingImplementation );
2493 function SVGDescElementWrappingImplementation() {}
2494 SVGDescElementWrappingImplementation._wrap$ctor = function(ptr) {
2495 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2496 }
2497 SVGDescElementWrappingImplementation._wrap$ctor.prototype = SVGDescElementWrappi ngImplementation.prototype;
2498 SVGDescElementWrappingImplementation.prototype.is$html_Element = function(){retu rn true};
2499 // ********** Code for SVGEllipseElementWrappingImplementation **************
2500 $inherits(SVGEllipseElementWrappingImplementation, SVGElementWrappingImplementat ion);
2501 function SVGEllipseElementWrappingImplementation() {}
2502 SVGEllipseElementWrappingImplementation._wrap$ctor = function(ptr) {
2503 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2504 }
2505 SVGEllipseElementWrappingImplementation._wrap$ctor.prototype = SVGEllipseElement WrappingImplementation.prototype;
2506 SVGEllipseElementWrappingImplementation.prototype.is$html_Element = function(){r eturn true};
2507 // ********** Code for SVGFEBlendElementWrappingImplementation **************
2508 $inherits(SVGFEBlendElementWrappingImplementation, SVGElementWrappingImplementat ion);
2509 function SVGFEBlendElementWrappingImplementation() {}
2510 SVGFEBlendElementWrappingImplementation._wrap$ctor = function(ptr) {
2511 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2512 }
2513 SVGFEBlendElementWrappingImplementation._wrap$ctor.prototype = SVGFEBlendElement WrappingImplementation.prototype;
2514 SVGFEBlendElementWrappingImplementation.prototype.is$html_Element = function(){r eturn true};
2515 // ********** Code for SVGFEColorMatrixElementWrappingImplementation *********** ***
2516 $inherits(SVGFEColorMatrixElementWrappingImplementation, SVGElementWrappingImple mentation);
2517 function SVGFEColorMatrixElementWrappingImplementation() {}
2518 SVGFEColorMatrixElementWrappingImplementation._wrap$ctor = function(ptr) {
2519 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2520 }
2521 SVGFEColorMatrixElementWrappingImplementation._wrap$ctor.prototype = SVGFEColorM atrixElementWrappingImplementation.prototype;
2522 SVGFEColorMatrixElementWrappingImplementation.prototype.is$html_Element = functi on(){return true};
2523 // ********** Code for SVGFEComponentTransferElementWrappingImplementation ***** *********
2524 $inherits(SVGFEComponentTransferElementWrappingImplementation, SVGElementWrappin gImplementation);
2525 function SVGFEComponentTransferElementWrappingImplementation() {}
2526 SVGFEComponentTransferElementWrappingImplementation._wrap$ctor = function(ptr) {
2527 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2528 }
2529 SVGFEComponentTransferElementWrappingImplementation._wrap$ctor.prototype = SVGFE ComponentTransferElementWrappingImplementation.prototype;
2530 SVGFEComponentTransferElementWrappingImplementation.prototype.is$html_Element = function(){return true};
2531 // ********** Code for SVGFEConvolveMatrixElementWrappingImplementation ******** ******
2532 $inherits(SVGFEConvolveMatrixElementWrappingImplementation, SVGElementWrappingIm plementation);
2533 function SVGFEConvolveMatrixElementWrappingImplementation() {}
2534 SVGFEConvolveMatrixElementWrappingImplementation._wrap$ctor = function(ptr) {
2535 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2536 }
2537 SVGFEConvolveMatrixElementWrappingImplementation._wrap$ctor.prototype = SVGFECon volveMatrixElementWrappingImplementation.prototype;
2538 SVGFEConvolveMatrixElementWrappingImplementation.prototype.is$html_Element = fun ction(){return true};
2539 // ********** Code for SVGFEDiffuseLightingElementWrappingImplementation ******* *******
2540 $inherits(SVGFEDiffuseLightingElementWrappingImplementation, SVGElementWrappingI mplementation);
2541 function SVGFEDiffuseLightingElementWrappingImplementation() {}
2542 SVGFEDiffuseLightingElementWrappingImplementation._wrap$ctor = function(ptr) {
2543 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2544 }
2545 SVGFEDiffuseLightingElementWrappingImplementation._wrap$ctor.prototype = SVGFEDi ffuseLightingElementWrappingImplementation.prototype;
2546 SVGFEDiffuseLightingElementWrappingImplementation.prototype.is$html_Element = fu nction(){return true};
2547 // ********** Code for SVGFEDisplacementMapElementWrappingImplementation ******* *******
2548 $inherits(SVGFEDisplacementMapElementWrappingImplementation, SVGElementWrappingI mplementation);
2549 function SVGFEDisplacementMapElementWrappingImplementation() {}
2550 SVGFEDisplacementMapElementWrappingImplementation._wrap$ctor = function(ptr) {
2551 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2552 }
2553 SVGFEDisplacementMapElementWrappingImplementation._wrap$ctor.prototype = SVGFEDi splacementMapElementWrappingImplementation.prototype;
2554 SVGFEDisplacementMapElementWrappingImplementation.prototype.is$html_Element = fu nction(){return true};
2555 // ********** Code for SVGFEDistantLightElementWrappingImplementation ********** ****
2556 $inherits(SVGFEDistantLightElementWrappingImplementation, SVGElementWrappingImpl ementation);
2557 function SVGFEDistantLightElementWrappingImplementation() {}
2558 SVGFEDistantLightElementWrappingImplementation._wrap$ctor = function(ptr) {
2559 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2560 }
2561 SVGFEDistantLightElementWrappingImplementation._wrap$ctor.prototype = SVGFEDista ntLightElementWrappingImplementation.prototype;
2562 SVGFEDistantLightElementWrappingImplementation.prototype.is$html_Element = funct ion(){return true};
2563 // ********** Code for SVGFEDropShadowElementWrappingImplementation ************ **
2564 $inherits(SVGFEDropShadowElementWrappingImplementation, SVGElementWrappingImplem entation);
2565 function SVGFEDropShadowElementWrappingImplementation() {}
2566 SVGFEDropShadowElementWrappingImplementation._wrap$ctor = function(ptr) {
2567 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2568 }
2569 SVGFEDropShadowElementWrappingImplementation._wrap$ctor.prototype = SVGFEDropSha dowElementWrappingImplementation.prototype;
2570 SVGFEDropShadowElementWrappingImplementation.prototype.is$html_Element = functio n(){return true};
2571 // ********** Code for SVGFEFloodElementWrappingImplementation **************
2572 $inherits(SVGFEFloodElementWrappingImplementation, SVGElementWrappingImplementat ion);
2573 function SVGFEFloodElementWrappingImplementation() {}
2574 SVGFEFloodElementWrappingImplementation._wrap$ctor = function(ptr) {
2575 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2576 }
2577 SVGFEFloodElementWrappingImplementation._wrap$ctor.prototype = SVGFEFloodElement WrappingImplementation.prototype;
2578 SVGFEFloodElementWrappingImplementation.prototype.is$html_Element = function(){r eturn true};
2579 // ********** Code for SVGFEFuncAElementWrappingImplementation **************
2580 $inherits(SVGFEFuncAElementWrappingImplementation, SVGComponentTransferFunctionE lementWrappingImplementation);
2581 function SVGFEFuncAElementWrappingImplementation() {}
2582 SVGFEFuncAElementWrappingImplementation._wrap$ctor = function(ptr) {
2583 SVGComponentTransferFunctionElementWrappingImplementation._wrap$ctor.call(this , ptr);
2584 }
2585 SVGFEFuncAElementWrappingImplementation._wrap$ctor.prototype = SVGFEFuncAElement WrappingImplementation.prototype;
2586 SVGFEFuncAElementWrappingImplementation.prototype.is$html_Element = function(){r eturn true};
2587 // ********** Code for SVGFEFuncBElementWrappingImplementation **************
2588 $inherits(SVGFEFuncBElementWrappingImplementation, SVGComponentTransferFunctionE lementWrappingImplementation);
2589 function SVGFEFuncBElementWrappingImplementation() {}
2590 SVGFEFuncBElementWrappingImplementation._wrap$ctor = function(ptr) {
2591 SVGComponentTransferFunctionElementWrappingImplementation._wrap$ctor.call(this , ptr);
2592 }
2593 SVGFEFuncBElementWrappingImplementation._wrap$ctor.prototype = SVGFEFuncBElement WrappingImplementation.prototype;
2594 SVGFEFuncBElementWrappingImplementation.prototype.is$html_Element = function(){r eturn true};
2595 // ********** Code for SVGFEFuncGElementWrappingImplementation **************
2596 $inherits(SVGFEFuncGElementWrappingImplementation, SVGComponentTransferFunctionE lementWrappingImplementation);
2597 function SVGFEFuncGElementWrappingImplementation() {}
2598 SVGFEFuncGElementWrappingImplementation._wrap$ctor = function(ptr) {
2599 SVGComponentTransferFunctionElementWrappingImplementation._wrap$ctor.call(this , ptr);
2600 }
2601 SVGFEFuncGElementWrappingImplementation._wrap$ctor.prototype = SVGFEFuncGElement WrappingImplementation.prototype;
2602 SVGFEFuncGElementWrappingImplementation.prototype.is$html_Element = function(){r eturn true};
2603 // ********** Code for SVGFEFuncRElementWrappingImplementation **************
2604 $inherits(SVGFEFuncRElementWrappingImplementation, SVGComponentTransferFunctionE lementWrappingImplementation);
2605 function SVGFEFuncRElementWrappingImplementation() {}
2606 SVGFEFuncRElementWrappingImplementation._wrap$ctor = function(ptr) {
2607 SVGComponentTransferFunctionElementWrappingImplementation._wrap$ctor.call(this , ptr);
2608 }
2609 SVGFEFuncRElementWrappingImplementation._wrap$ctor.prototype = SVGFEFuncRElement WrappingImplementation.prototype;
2610 SVGFEFuncRElementWrappingImplementation.prototype.is$html_Element = function(){r eturn true};
2611 // ********** Code for SVGFEGaussianBlurElementWrappingImplementation ********** ****
2612 $inherits(SVGFEGaussianBlurElementWrappingImplementation, SVGElementWrappingImpl ementation);
2613 function SVGFEGaussianBlurElementWrappingImplementation() {}
2614 SVGFEGaussianBlurElementWrappingImplementation._wrap$ctor = function(ptr) {
2615 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2616 }
2617 SVGFEGaussianBlurElementWrappingImplementation._wrap$ctor.prototype = SVGFEGauss ianBlurElementWrappingImplementation.prototype;
2618 SVGFEGaussianBlurElementWrappingImplementation.prototype.is$html_Element = funct ion(){return true};
2619 // ********** Code for SVGFEImageElementWrappingImplementation **************
2620 $inherits(SVGFEImageElementWrappingImplementation, SVGElementWrappingImplementat ion);
2621 function SVGFEImageElementWrappingImplementation() {}
2622 SVGFEImageElementWrappingImplementation._wrap$ctor = function(ptr) {
2623 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2624 }
2625 SVGFEImageElementWrappingImplementation._wrap$ctor.prototype = SVGFEImageElement WrappingImplementation.prototype;
2626 SVGFEImageElementWrappingImplementation.prototype.is$html_Element = function(){r eturn true};
2627 // ********** Code for SVGFEMergeElementWrappingImplementation **************
2628 $inherits(SVGFEMergeElementWrappingImplementation, SVGElementWrappingImplementat ion);
2629 function SVGFEMergeElementWrappingImplementation() {}
2630 SVGFEMergeElementWrappingImplementation._wrap$ctor = function(ptr) {
2631 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2632 }
2633 SVGFEMergeElementWrappingImplementation._wrap$ctor.prototype = SVGFEMergeElement WrappingImplementation.prototype;
2634 SVGFEMergeElementWrappingImplementation.prototype.is$html_Element = function(){r eturn true};
2635 // ********** Code for SVGFEMergeNodeElementWrappingImplementation ************* *
2636 $inherits(SVGFEMergeNodeElementWrappingImplementation, SVGElementWrappingImpleme ntation);
2637 function SVGFEMergeNodeElementWrappingImplementation() {}
2638 SVGFEMergeNodeElementWrappingImplementation._wrap$ctor = function(ptr) {
2639 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2640 }
2641 SVGFEMergeNodeElementWrappingImplementation._wrap$ctor.prototype = SVGFEMergeNod eElementWrappingImplementation.prototype;
2642 SVGFEMergeNodeElementWrappingImplementation.prototype.is$html_Element = function (){return true};
2643 // ********** Code for SVGFEOffsetElementWrappingImplementation **************
2644 $inherits(SVGFEOffsetElementWrappingImplementation, SVGElementWrappingImplementa tion);
2645 function SVGFEOffsetElementWrappingImplementation() {}
2646 SVGFEOffsetElementWrappingImplementation._wrap$ctor = function(ptr) {
2647 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2648 }
2649 SVGFEOffsetElementWrappingImplementation._wrap$ctor.prototype = SVGFEOffsetEleme ntWrappingImplementation.prototype;
2650 SVGFEOffsetElementWrappingImplementation.prototype.is$html_Element = function(){ return true};
2651 // ********** Code for SVGFEPointLightElementWrappingImplementation ************ **
2652 $inherits(SVGFEPointLightElementWrappingImplementation, SVGElementWrappingImplem entation);
2653 function SVGFEPointLightElementWrappingImplementation() {}
2654 SVGFEPointLightElementWrappingImplementation._wrap$ctor = function(ptr) {
2655 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2656 }
2657 SVGFEPointLightElementWrappingImplementation._wrap$ctor.prototype = SVGFEPointLi ghtElementWrappingImplementation.prototype;
2658 SVGFEPointLightElementWrappingImplementation.prototype.is$html_Element = functio n(){return true};
2659 // ********** Code for SVGFESpecularLightingElementWrappingImplementation ****** ********
2660 $inherits(SVGFESpecularLightingElementWrappingImplementation, SVGElementWrapping Implementation);
2661 function SVGFESpecularLightingElementWrappingImplementation() {}
2662 SVGFESpecularLightingElementWrappingImplementation._wrap$ctor = function(ptr) {
2663 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2664 }
2665 SVGFESpecularLightingElementWrappingImplementation._wrap$ctor.prototype = SVGFES pecularLightingElementWrappingImplementation.prototype;
2666 SVGFESpecularLightingElementWrappingImplementation.prototype.is$html_Element = f unction(){return true};
2667 // ********** Code for SVGFESpotLightElementWrappingImplementation ************* *
2668 $inherits(SVGFESpotLightElementWrappingImplementation, SVGElementWrappingImpleme ntation);
2669 function SVGFESpotLightElementWrappingImplementation() {}
2670 SVGFESpotLightElementWrappingImplementation._wrap$ctor = function(ptr) {
2671 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2672 }
2673 SVGFESpotLightElementWrappingImplementation._wrap$ctor.prototype = SVGFESpotLigh tElementWrappingImplementation.prototype;
2674 SVGFESpotLightElementWrappingImplementation.prototype.is$html_Element = function (){return true};
2675 // ********** Code for SVGFETileElementWrappingImplementation **************
2676 $inherits(SVGFETileElementWrappingImplementation, SVGElementWrappingImplementati on);
2677 function SVGFETileElementWrappingImplementation() {}
2678 SVGFETileElementWrappingImplementation._wrap$ctor = function(ptr) {
2679 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2680 }
2681 SVGFETileElementWrappingImplementation._wrap$ctor.prototype = SVGFETileElementWr appingImplementation.prototype;
2682 SVGFETileElementWrappingImplementation.prototype.is$html_Element = function(){re turn true};
2683 // ********** Code for SVGFETurbulenceElementWrappingImplementation ************ **
2684 $inherits(SVGFETurbulenceElementWrappingImplementation, SVGElementWrappingImplem entation);
2685 function SVGFETurbulenceElementWrappingImplementation() {}
2686 SVGFETurbulenceElementWrappingImplementation._wrap$ctor = function(ptr) {
2687 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2688 }
2689 SVGFETurbulenceElementWrappingImplementation._wrap$ctor.prototype = SVGFETurbule nceElementWrappingImplementation.prototype;
2690 SVGFETurbulenceElementWrappingImplementation.prototype.is$html_Element = functio n(){return true};
2691 // ********** Code for SVGFilterElementWrappingImplementation **************
2692 $inherits(SVGFilterElementWrappingImplementation, SVGElementWrappingImplementati on);
2693 function SVGFilterElementWrappingImplementation() {}
2694 SVGFilterElementWrappingImplementation._wrap$ctor = function(ptr) {
2695 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2696 }
2697 SVGFilterElementWrappingImplementation._wrap$ctor.prototype = SVGFilterElementWr appingImplementation.prototype;
2698 SVGFilterElementWrappingImplementation.prototype.is$html_Element = function(){re turn true};
2699 // ********** Code for SVGFontElementWrappingImplementation **************
2700 $inherits(SVGFontElementWrappingImplementation, SVGElementWrappingImplementation );
2701 function SVGFontElementWrappingImplementation() {}
2702 SVGFontElementWrappingImplementation._wrap$ctor = function(ptr) {
2703 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2704 }
2705 SVGFontElementWrappingImplementation._wrap$ctor.prototype = SVGFontElementWrappi ngImplementation.prototype;
2706 SVGFontElementWrappingImplementation.prototype.is$html_Element = function(){retu rn true};
2707 // ********** Code for SVGFontFaceElementWrappingImplementation **************
2708 $inherits(SVGFontFaceElementWrappingImplementation, SVGElementWrappingImplementa tion);
2709 function SVGFontFaceElementWrappingImplementation() {}
2710 SVGFontFaceElementWrappingImplementation._wrap$ctor = function(ptr) {
2711 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2712 }
2713 SVGFontFaceElementWrappingImplementation._wrap$ctor.prototype = SVGFontFaceEleme ntWrappingImplementation.prototype;
2714 SVGFontFaceElementWrappingImplementation.prototype.is$html_Element = function(){ return true};
2715 // ********** Code for SVGFontFaceFormatElementWrappingImplementation ********** ****
2716 $inherits(SVGFontFaceFormatElementWrappingImplementation, SVGElementWrappingImpl ementation);
2717 function SVGFontFaceFormatElementWrappingImplementation() {}
2718 SVGFontFaceFormatElementWrappingImplementation._wrap$ctor = function(ptr) {
2719 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2720 }
2721 SVGFontFaceFormatElementWrappingImplementation._wrap$ctor.prototype = SVGFontFac eFormatElementWrappingImplementation.prototype;
2722 SVGFontFaceFormatElementWrappingImplementation.prototype.is$html_Element = funct ion(){return true};
2723 // ********** Code for SVGFontFaceNameElementWrappingImplementation ************ **
2724 $inherits(SVGFontFaceNameElementWrappingImplementation, SVGElementWrappingImplem entation);
2725 function SVGFontFaceNameElementWrappingImplementation() {}
2726 SVGFontFaceNameElementWrappingImplementation._wrap$ctor = function(ptr) {
2727 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2728 }
2729 SVGFontFaceNameElementWrappingImplementation._wrap$ctor.prototype = SVGFontFaceN ameElementWrappingImplementation.prototype;
2730 SVGFontFaceNameElementWrappingImplementation.prototype.is$html_Element = functio n(){return true};
2731 // ********** Code for SVGFontFaceSrcElementWrappingImplementation ************* *
2732 $inherits(SVGFontFaceSrcElementWrappingImplementation, SVGElementWrappingImpleme ntation);
2733 function SVGFontFaceSrcElementWrappingImplementation() {}
2734 SVGFontFaceSrcElementWrappingImplementation._wrap$ctor = function(ptr) {
2735 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2736 }
2737 SVGFontFaceSrcElementWrappingImplementation._wrap$ctor.prototype = SVGFontFaceSr cElementWrappingImplementation.prototype;
2738 SVGFontFaceSrcElementWrappingImplementation.prototype.is$html_Element = function (){return true};
2739 // ********** Code for SVGFontFaceUriElementWrappingImplementation ************* *
2740 $inherits(SVGFontFaceUriElementWrappingImplementation, SVGElementWrappingImpleme ntation);
2741 function SVGFontFaceUriElementWrappingImplementation() {}
2742 SVGFontFaceUriElementWrappingImplementation._wrap$ctor = function(ptr) {
2743 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2744 }
2745 SVGFontFaceUriElementWrappingImplementation._wrap$ctor.prototype = SVGFontFaceUr iElementWrappingImplementation.prototype;
2746 SVGFontFaceUriElementWrappingImplementation.prototype.is$html_Element = function (){return true};
2747 // ********** Code for SVGForeignObjectElementWrappingImplementation *********** ***
2748 $inherits(SVGForeignObjectElementWrappingImplementation, SVGElementWrappingImple mentation);
2749 function SVGForeignObjectElementWrappingImplementation() {}
2750 SVGForeignObjectElementWrappingImplementation._wrap$ctor = function(ptr) {
2751 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2752 }
2753 SVGForeignObjectElementWrappingImplementation._wrap$ctor.prototype = SVGForeignO bjectElementWrappingImplementation.prototype;
2754 SVGForeignObjectElementWrappingImplementation.prototype.is$html_Element = functi on(){return true};
2755 // ********** Code for SVGGElementWrappingImplementation **************
2756 $inherits(SVGGElementWrappingImplementation, SVGElementWrappingImplementation);
2757 function SVGGElementWrappingImplementation() {}
2758 SVGGElementWrappingImplementation._wrap$ctor = function(ptr) {
2759 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2760 }
2761 SVGGElementWrappingImplementation._wrap$ctor.prototype = SVGGElementWrappingImpl ementation.prototype;
2762 SVGGElementWrappingImplementation.prototype.is$html_Element = function(){return true};
2763 // ********** Code for SVGGlyphElementWrappingImplementation **************
2764 $inherits(SVGGlyphElementWrappingImplementation, SVGElementWrappingImplementatio n);
2765 function SVGGlyphElementWrappingImplementation() {}
2766 SVGGlyphElementWrappingImplementation._wrap$ctor = function(ptr) {
2767 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2768 }
2769 SVGGlyphElementWrappingImplementation._wrap$ctor.prototype = SVGGlyphElementWrap pingImplementation.prototype;
2770 SVGGlyphElementWrappingImplementation.prototype.is$html_Element = function(){ret urn true};
2771 // ********** Code for SVGGlyphRefElementWrappingImplementation **************
2772 $inherits(SVGGlyphRefElementWrappingImplementation, SVGElementWrappingImplementa tion);
2773 function SVGGlyphRefElementWrappingImplementation() {}
2774 SVGGlyphRefElementWrappingImplementation._wrap$ctor = function(ptr) {
2775 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2776 }
2777 SVGGlyphRefElementWrappingImplementation._wrap$ctor.prototype = SVGGlyphRefEleme ntWrappingImplementation.prototype;
2778 SVGGlyphRefElementWrappingImplementation.prototype.is$html_Element = function(){ return true};
2779 // ********** Code for SVGGradientElementWrappingImplementation **************
2780 $inherits(SVGGradientElementWrappingImplementation, SVGElementWrappingImplementa tion);
2781 function SVGGradientElementWrappingImplementation() {}
2782 SVGGradientElementWrappingImplementation._wrap$ctor = function(ptr) {
2783 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2784 }
2785 SVGGradientElementWrappingImplementation._wrap$ctor.prototype = SVGGradientEleme ntWrappingImplementation.prototype;
2786 SVGGradientElementWrappingImplementation.prototype.is$html_Element = function(){ return true};
2787 // ********** Code for SVGHKernElementWrappingImplementation **************
2788 $inherits(SVGHKernElementWrappingImplementation, SVGElementWrappingImplementatio n);
2789 function SVGHKernElementWrappingImplementation() {}
2790 SVGHKernElementWrappingImplementation._wrap$ctor = function(ptr) {
2791 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2792 }
2793 SVGHKernElementWrappingImplementation._wrap$ctor.prototype = SVGHKernElementWrap pingImplementation.prototype;
2794 SVGHKernElementWrappingImplementation.prototype.is$html_Element = function(){ret urn true};
2795 // ********** Code for SVGImageElementWrappingImplementation **************
2796 $inherits(SVGImageElementWrappingImplementation, SVGElementWrappingImplementatio n);
2797 function SVGImageElementWrappingImplementation() {}
2798 SVGImageElementWrappingImplementation._wrap$ctor = function(ptr) {
2799 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2800 }
2801 SVGImageElementWrappingImplementation._wrap$ctor.prototype = SVGImageElementWrap pingImplementation.prototype;
2802 SVGImageElementWrappingImplementation.prototype.is$html_Element = function(){ret urn true};
2803 // ********** Code for SVGLineElementWrappingImplementation **************
2804 $inherits(SVGLineElementWrappingImplementation, SVGElementWrappingImplementation );
2805 function SVGLineElementWrappingImplementation() {}
2806 SVGLineElementWrappingImplementation._wrap$ctor = function(ptr) {
2807 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2808 }
2809 SVGLineElementWrappingImplementation._wrap$ctor.prototype = SVGLineElementWrappi ngImplementation.prototype;
2810 SVGLineElementWrappingImplementation.prototype.is$html_Element = function(){retu rn true};
2811 // ********** Code for SVGLinearGradientElementWrappingImplementation ********** ****
2812 $inherits(SVGLinearGradientElementWrappingImplementation, SVGGradientElementWrap pingImplementation);
2813 function SVGLinearGradientElementWrappingImplementation() {}
2814 SVGLinearGradientElementWrappingImplementation._wrap$ctor = function(ptr) {
2815 SVGGradientElementWrappingImplementation._wrap$ctor.call(this, ptr);
2816 }
2817 SVGLinearGradientElementWrappingImplementation._wrap$ctor.prototype = SVGLinearG radientElementWrappingImplementation.prototype;
2818 SVGLinearGradientElementWrappingImplementation.prototype.is$html_Element = funct ion(){return true};
2819 // ********** Code for SVGMPathElementWrappingImplementation **************
2820 $inherits(SVGMPathElementWrappingImplementation, SVGElementWrappingImplementatio n);
2821 function SVGMPathElementWrappingImplementation() {}
2822 SVGMPathElementWrappingImplementation._wrap$ctor = function(ptr) {
2823 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2824 }
2825 SVGMPathElementWrappingImplementation._wrap$ctor.prototype = SVGMPathElementWrap pingImplementation.prototype;
2826 SVGMPathElementWrappingImplementation.prototype.is$html_Element = function(){ret urn true};
2827 // ********** Code for SVGMarkerElementWrappingImplementation **************
2828 $inherits(SVGMarkerElementWrappingImplementation, SVGElementWrappingImplementati on);
2829 function SVGMarkerElementWrappingImplementation() {}
2830 SVGMarkerElementWrappingImplementation._wrap$ctor = function(ptr) {
2831 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2832 }
2833 SVGMarkerElementWrappingImplementation._wrap$ctor.prototype = SVGMarkerElementWr appingImplementation.prototype;
2834 SVGMarkerElementWrappingImplementation.prototype.is$html_Element = function(){re turn true};
2835 // ********** Code for SVGMaskElementWrappingImplementation **************
2836 $inherits(SVGMaskElementWrappingImplementation, SVGElementWrappingImplementation );
2837 function SVGMaskElementWrappingImplementation() {}
2838 SVGMaskElementWrappingImplementation._wrap$ctor = function(ptr) {
2839 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2840 }
2841 SVGMaskElementWrappingImplementation._wrap$ctor.prototype = SVGMaskElementWrappi ngImplementation.prototype;
2842 SVGMaskElementWrappingImplementation.prototype.is$html_Element = function(){retu rn true};
2843 // ********** Code for SVGMetadataElementWrappingImplementation **************
2844 $inherits(SVGMetadataElementWrappingImplementation, SVGElementWrappingImplementa tion);
2845 function SVGMetadataElementWrappingImplementation() {}
2846 SVGMetadataElementWrappingImplementation._wrap$ctor = function(ptr) {
2847 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2848 }
2849 SVGMetadataElementWrappingImplementation._wrap$ctor.prototype = SVGMetadataEleme ntWrappingImplementation.prototype;
2850 SVGMetadataElementWrappingImplementation.prototype.is$html_Element = function(){ return true};
2851 // ********** Code for SVGMissingGlyphElementWrappingImplementation ************ **
2852 $inherits(SVGMissingGlyphElementWrappingImplementation, SVGElementWrappingImplem entation);
2853 function SVGMissingGlyphElementWrappingImplementation() {}
2854 SVGMissingGlyphElementWrappingImplementation._wrap$ctor = function(ptr) {
2855 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2856 }
2857 SVGMissingGlyphElementWrappingImplementation._wrap$ctor.prototype = SVGMissingGl yphElementWrappingImplementation.prototype;
2858 SVGMissingGlyphElementWrappingImplementation.prototype.is$html_Element = functio n(){return true};
2859 // ********** Code for SVGPathElementWrappingImplementation **************
2860 $inherits(SVGPathElementWrappingImplementation, SVGElementWrappingImplementation );
2861 function SVGPathElementWrappingImplementation() {}
2862 SVGPathElementWrappingImplementation._wrap$ctor = function(ptr) {
2863 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2864 }
2865 SVGPathElementWrappingImplementation._wrap$ctor.prototype = SVGPathElementWrappi ngImplementation.prototype;
2866 SVGPathElementWrappingImplementation.prototype.is$html_Element = function(){retu rn true};
2867 // ********** Code for SVGPatternElementWrappingImplementation **************
2868 $inherits(SVGPatternElementWrappingImplementation, SVGElementWrappingImplementat ion);
2869 function SVGPatternElementWrappingImplementation() {}
2870 SVGPatternElementWrappingImplementation._wrap$ctor = function(ptr) {
2871 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2872 }
2873 SVGPatternElementWrappingImplementation._wrap$ctor.prototype = SVGPatternElement WrappingImplementation.prototype;
2874 SVGPatternElementWrappingImplementation.prototype.is$html_Element = function(){r eturn true};
2875 // ********** Code for SVGPolygonElementWrappingImplementation **************
2876 $inherits(SVGPolygonElementWrappingImplementation, SVGElementWrappingImplementat ion);
2877 function SVGPolygonElementWrappingImplementation() {}
2878 SVGPolygonElementWrappingImplementation._wrap$ctor = function(ptr) {
2879 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2880 }
2881 SVGPolygonElementWrappingImplementation._wrap$ctor.prototype = SVGPolygonElement WrappingImplementation.prototype;
2882 SVGPolygonElementWrappingImplementation.prototype.is$html_Element = function(){r eturn true};
2883 // ********** Code for SVGPolylineElementWrappingImplementation **************
2884 $inherits(SVGPolylineElementWrappingImplementation, SVGElementWrappingImplementa tion);
2885 function SVGPolylineElementWrappingImplementation() {}
2886 SVGPolylineElementWrappingImplementation._wrap$ctor = function(ptr) {
2887 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2888 }
2889 SVGPolylineElementWrappingImplementation._wrap$ctor.prototype = SVGPolylineEleme ntWrappingImplementation.prototype;
2890 SVGPolylineElementWrappingImplementation.prototype.is$html_Element = function(){ return true};
2891 // ********** Code for SVGRadialGradientElementWrappingImplementation ********** ****
2892 $inherits(SVGRadialGradientElementWrappingImplementation, SVGGradientElementWrap pingImplementation);
2893 function SVGRadialGradientElementWrappingImplementation() {}
2894 SVGRadialGradientElementWrappingImplementation._wrap$ctor = function(ptr) {
2895 SVGGradientElementWrappingImplementation._wrap$ctor.call(this, ptr);
2896 }
2897 SVGRadialGradientElementWrappingImplementation._wrap$ctor.prototype = SVGRadialG radientElementWrappingImplementation.prototype;
2898 SVGRadialGradientElementWrappingImplementation.prototype.is$html_Element = funct ion(){return true};
2899 // ********** Code for SVGRectElementWrappingImplementation **************
2900 $inherits(SVGRectElementWrappingImplementation, SVGElementWrappingImplementation );
2901 function SVGRectElementWrappingImplementation() {}
2902 SVGRectElementWrappingImplementation._wrap$ctor = function(ptr) {
2903 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2904 }
2905 SVGRectElementWrappingImplementation._wrap$ctor.prototype = SVGRectElementWrappi ngImplementation.prototype;
2906 SVGRectElementWrappingImplementation.prototype.is$html_Element = function(){retu rn true};
2907 // ********** Code for SVGScriptElementWrappingImplementation **************
2908 $inherits(SVGScriptElementWrappingImplementation, SVGElementWrappingImplementati on);
2909 function SVGScriptElementWrappingImplementation() {}
2910 SVGScriptElementWrappingImplementation._wrap$ctor = function(ptr) {
2911 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2912 }
2913 SVGScriptElementWrappingImplementation._wrap$ctor.prototype = SVGScriptElementWr appingImplementation.prototype;
2914 SVGScriptElementWrappingImplementation.prototype.is$html_Element = function(){re turn true};
2915 // ********** Code for SVGSetElementWrappingImplementation **************
2916 $inherits(SVGSetElementWrappingImplementation, SVGAnimationElementWrappingImplem entation);
2917 function SVGSetElementWrappingImplementation() {}
2918 SVGSetElementWrappingImplementation._wrap$ctor = function(ptr) {
2919 SVGAnimationElementWrappingImplementation._wrap$ctor.call(this, ptr);
2920 }
2921 SVGSetElementWrappingImplementation._wrap$ctor.prototype = SVGSetElementWrapping Implementation.prototype;
2922 SVGSetElementWrappingImplementation.prototype.is$html_Element = function(){retur n true};
2923 // ********** Code for SVGStopElementWrappingImplementation **************
2924 $inherits(SVGStopElementWrappingImplementation, SVGElementWrappingImplementation );
2925 function SVGStopElementWrappingImplementation() {}
2926 SVGStopElementWrappingImplementation._wrap$ctor = function(ptr) {
2927 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2928 }
2929 SVGStopElementWrappingImplementation._wrap$ctor.prototype = SVGStopElementWrappi ngImplementation.prototype;
2930 SVGStopElementWrappingImplementation.prototype.is$html_Element = function(){retu rn true};
2931 // ********** Code for SVGStyleElementWrappingImplementation **************
2932 $inherits(SVGStyleElementWrappingImplementation, SVGElementWrappingImplementatio n);
2933 function SVGStyleElementWrappingImplementation() {}
2934 SVGStyleElementWrappingImplementation._wrap$ctor = function(ptr) {
2935 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2936 }
2937 SVGStyleElementWrappingImplementation._wrap$ctor.prototype = SVGStyleElementWrap pingImplementation.prototype;
2938 SVGStyleElementWrappingImplementation.prototype.is$html_Element = function(){ret urn true};
2939 // ********** Code for SVGSwitchElementWrappingImplementation **************
2940 $inherits(SVGSwitchElementWrappingImplementation, SVGElementWrappingImplementati on);
2941 function SVGSwitchElementWrappingImplementation() {}
2942 SVGSwitchElementWrappingImplementation._wrap$ctor = function(ptr) {
2943 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2944 }
2945 SVGSwitchElementWrappingImplementation._wrap$ctor.prototype = SVGSwitchElementWr appingImplementation.prototype;
2946 SVGSwitchElementWrappingImplementation.prototype.is$html_Element = function(){re turn true};
2947 // ********** Code for SVGSymbolElementWrappingImplementation **************
2948 $inherits(SVGSymbolElementWrappingImplementation, SVGElementWrappingImplementati on);
2949 function SVGSymbolElementWrappingImplementation() {}
2950 SVGSymbolElementWrappingImplementation._wrap$ctor = function(ptr) {
2951 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2952 }
2953 SVGSymbolElementWrappingImplementation._wrap$ctor.prototype = SVGSymbolElementWr appingImplementation.prototype;
2954 SVGSymbolElementWrappingImplementation.prototype.is$html_Element = function(){re turn true};
2955 // ********** Code for SVGTRefElementWrappingImplementation **************
2956 $inherits(SVGTRefElementWrappingImplementation, SVGTextPositioningElementWrappin gImplementation);
2957 function SVGTRefElementWrappingImplementation() {}
2958 SVGTRefElementWrappingImplementation._wrap$ctor = function(ptr) {
2959 SVGTextPositioningElementWrappingImplementation._wrap$ctor.call(this, ptr);
2960 }
2961 SVGTRefElementWrappingImplementation._wrap$ctor.prototype = SVGTRefElementWrappi ngImplementation.prototype;
2962 SVGTRefElementWrappingImplementation.prototype.is$html_Element = function(){retu rn true};
2963 // ********** Code for SVGTSpanElementWrappingImplementation **************
2964 $inherits(SVGTSpanElementWrappingImplementation, SVGTextPositioningElementWrappi ngImplementation);
2965 function SVGTSpanElementWrappingImplementation() {}
2966 SVGTSpanElementWrappingImplementation._wrap$ctor = function(ptr) {
2967 SVGTextPositioningElementWrappingImplementation._wrap$ctor.call(this, ptr);
2968 }
2969 SVGTSpanElementWrappingImplementation._wrap$ctor.prototype = SVGTSpanElementWrap pingImplementation.prototype;
2970 SVGTSpanElementWrappingImplementation.prototype.is$html_Element = function(){ret urn true};
2971 // ********** Code for SVGTextElementWrappingImplementation **************
2972 $inherits(SVGTextElementWrappingImplementation, SVGTextPositioningElementWrappin gImplementation);
2973 function SVGTextElementWrappingImplementation() {}
2974 SVGTextElementWrappingImplementation._wrap$ctor = function(ptr) {
2975 SVGTextPositioningElementWrappingImplementation._wrap$ctor.call(this, ptr);
2976 }
2977 SVGTextElementWrappingImplementation._wrap$ctor.prototype = SVGTextElementWrappi ngImplementation.prototype;
2978 SVGTextElementWrappingImplementation.prototype.is$html_Element = function(){retu rn true};
2979 // ********** Code for SVGTextPathElementWrappingImplementation **************
2980 $inherits(SVGTextPathElementWrappingImplementation, SVGTextContentElementWrappin gImplementation);
2981 function SVGTextPathElementWrappingImplementation() {}
2982 SVGTextPathElementWrappingImplementation._wrap$ctor = function(ptr) {
2983 SVGTextContentElementWrappingImplementation._wrap$ctor.call(this, ptr);
2984 }
2985 SVGTextPathElementWrappingImplementation._wrap$ctor.prototype = SVGTextPathEleme ntWrappingImplementation.prototype;
2986 SVGTextPathElementWrappingImplementation.prototype.is$html_Element = function(){ return true};
2987 // ********** Code for SVGTitleElementWrappingImplementation **************
2988 $inherits(SVGTitleElementWrappingImplementation, SVGElementWrappingImplementatio n);
2989 function SVGTitleElementWrappingImplementation() {}
2990 SVGTitleElementWrappingImplementation._wrap$ctor = function(ptr) {
2991 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
2992 }
2993 SVGTitleElementWrappingImplementation._wrap$ctor.prototype = SVGTitleElementWrap pingImplementation.prototype;
2994 SVGTitleElementWrappingImplementation.prototype.is$html_Element = function(){ret urn true};
2995 // ********** Code for SVGUseElementWrappingImplementation **************
2996 $inherits(SVGUseElementWrappingImplementation, SVGElementWrappingImplementation) ;
2997 function SVGUseElementWrappingImplementation() {}
2998 SVGUseElementWrappingImplementation._wrap$ctor = function(ptr) {
2999 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
3000 }
3001 SVGUseElementWrappingImplementation._wrap$ctor.prototype = SVGUseElementWrapping Implementation.prototype;
3002 SVGUseElementWrappingImplementation.prototype.is$html_Element = function(){retur n true};
3003 // ********** Code for SVGVKernElementWrappingImplementation **************
3004 $inherits(SVGVKernElementWrappingImplementation, SVGElementWrappingImplementatio n);
3005 function SVGVKernElementWrappingImplementation() {}
3006 SVGVKernElementWrappingImplementation._wrap$ctor = function(ptr) {
3007 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
3008 }
3009 SVGVKernElementWrappingImplementation._wrap$ctor.prototype = SVGVKernElementWrap pingImplementation.prototype;
3010 SVGVKernElementWrappingImplementation.prototype.is$html_Element = function(){ret urn true};
3011 // ********** Code for SVGViewElementWrappingImplementation **************
3012 $inherits(SVGViewElementWrappingImplementation, SVGElementWrappingImplementation );
3013 function SVGViewElementWrappingImplementation() {}
3014 SVGViewElementWrappingImplementation._wrap$ctor = function(ptr) {
3015 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
3016 }
3017 SVGViewElementWrappingImplementation._wrap$ctor.prototype = SVGViewElementWrappi ngImplementation.prototype;
3018 SVGViewElementWrappingImplementation.prototype.is$html_Element = function(){retu rn true};
3019 // ********** Code for ScriptElementWrappingImplementation **************
3020 $inherits(ScriptElementWrappingImplementation, ElementWrappingImplementation);
3021 function ScriptElementWrappingImplementation() {}
3022 ScriptElementWrappingImplementation._wrap$ctor = function(ptr) {
3023 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
3024 }
3025 ScriptElementWrappingImplementation._wrap$ctor.prototype = ScriptElementWrapping Implementation.prototype;
3026 ScriptElementWrappingImplementation.prototype.is$html_Element = function(){retur n true};
3027 // ********** Code for SelectElementWrappingImplementation **************
3028 $inherits(SelectElementWrappingImplementation, ElementWrappingImplementation);
3029 function SelectElementWrappingImplementation() {}
3030 SelectElementWrappingImplementation._wrap$ctor = function(ptr) {
3031 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
3032 }
3033 SelectElementWrappingImplementation._wrap$ctor.prototype = SelectElementWrapping Implementation.prototype;
3034 SelectElementWrappingImplementation.prototype.is$html_Element = function(){retur n true};
3035 SelectElementWrappingImplementation.prototype.get$length = function() {
3036 return this._ptr.get$length();
3037 }
3038 SelectElementWrappingImplementation.prototype.item = function(index) {
3039 return LevelDom.wrapNode(this._ptr.item$1(index));
3040 }
3041 SelectElementWrappingImplementation.prototype.item$1 = SelectElementWrappingImpl ementation.prototype.item;
3042 // ********** Code for SourceElementWrappingImplementation **************
3043 $inherits(SourceElementWrappingImplementation, ElementWrappingImplementation);
3044 function SourceElementWrappingImplementation() {}
3045 SourceElementWrappingImplementation._wrap$ctor = function(ptr) {
3046 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
3047 }
3048 SourceElementWrappingImplementation._wrap$ctor.prototype = SourceElementWrapping Implementation.prototype;
3049 SourceElementWrappingImplementation.prototype.is$html_Element = function(){retur n true};
3050 // ********** Code for SpanElementWrappingImplementation **************
3051 $inherits(SpanElementWrappingImplementation, ElementWrappingImplementation);
3052 function SpanElementWrappingImplementation() {}
3053 SpanElementWrappingImplementation._wrap$ctor = function(ptr) {
3054 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
3055 }
3056 SpanElementWrappingImplementation._wrap$ctor.prototype = SpanElementWrappingImpl ementation.prototype;
3057 SpanElementWrappingImplementation.prototype.is$html_Element = function(){return true};
3058 // ********** Code for StyleElementWrappingImplementation **************
3059 $inherits(StyleElementWrappingImplementation, ElementWrappingImplementation);
3060 function StyleElementWrappingImplementation() {}
3061 StyleElementWrappingImplementation._wrap$ctor = function(ptr) {
3062 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
3063 }
3064 StyleElementWrappingImplementation._wrap$ctor.prototype = StyleElementWrappingIm plementation.prototype;
3065 StyleElementWrappingImplementation.prototype.is$html_Element = function(){return true};
3066 // ********** Code for TableCaptionElementWrappingImplementation **************
3067 $inherits(TableCaptionElementWrappingImplementation, ElementWrappingImplementati on);
3068 function TableCaptionElementWrappingImplementation() {}
3069 TableCaptionElementWrappingImplementation._wrap$ctor = function(ptr) {
3070 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
3071 }
3072 TableCaptionElementWrappingImplementation._wrap$ctor.prototype = TableCaptionEle mentWrappingImplementation.prototype;
3073 TableCaptionElementWrappingImplementation.prototype.is$html_Element = function() {return true};
3074 // ********** Code for TableCellElementWrappingImplementation **************
3075 $inherits(TableCellElementWrappingImplementation, ElementWrappingImplementation) ;
3076 function TableCellElementWrappingImplementation() {}
3077 TableCellElementWrappingImplementation._wrap$ctor = function(ptr) {
3078 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
3079 }
3080 TableCellElementWrappingImplementation._wrap$ctor.prototype = TableCellElementWr appingImplementation.prototype;
3081 TableCellElementWrappingImplementation.prototype.is$html_Element = function(){re turn true};
3082 // ********** Code for TableColElementWrappingImplementation **************
3083 $inherits(TableColElementWrappingImplementation, ElementWrappingImplementation);
3084 function TableColElementWrappingImplementation() {}
3085 TableColElementWrappingImplementation._wrap$ctor = function(ptr) {
3086 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
3087 }
3088 TableColElementWrappingImplementation._wrap$ctor.prototype = TableColElementWrap pingImplementation.prototype;
3089 TableColElementWrappingImplementation.prototype.is$html_Element = function(){ret urn true};
3090 // ********** Code for TableElementWrappingImplementation **************
3091 $inherits(TableElementWrappingImplementation, ElementWrappingImplementation);
3092 function TableElementWrappingImplementation() {}
3093 TableElementWrappingImplementation._wrap$ctor = function(ptr) {
3094 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
3095 }
3096 TableElementWrappingImplementation._wrap$ctor.prototype = TableElementWrappingIm plementation.prototype;
3097 TableElementWrappingImplementation.prototype.is$html_Element = function(){return true};
3098 // ********** Code for TableRowElementWrappingImplementation **************
3099 $inherits(TableRowElementWrappingImplementation, ElementWrappingImplementation);
3100 function TableRowElementWrappingImplementation() {}
3101 TableRowElementWrappingImplementation._wrap$ctor = function(ptr) {
3102 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
3103 }
3104 TableRowElementWrappingImplementation._wrap$ctor.prototype = TableRowElementWrap pingImplementation.prototype;
3105 TableRowElementWrappingImplementation.prototype.is$html_Element = function(){ret urn true};
3106 // ********** Code for TableSectionElementWrappingImplementation **************
3107 $inherits(TableSectionElementWrappingImplementation, ElementWrappingImplementati on);
3108 function TableSectionElementWrappingImplementation() {}
3109 TableSectionElementWrappingImplementation._wrap$ctor = function(ptr) {
3110 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
3111 }
3112 TableSectionElementWrappingImplementation._wrap$ctor.prototype = TableSectionEle mentWrappingImplementation.prototype;
3113 TableSectionElementWrappingImplementation.prototype.is$html_Element = function() {return true};
3114 // ********** Code for TextAreaElementWrappingImplementation **************
3115 $inherits(TextAreaElementWrappingImplementation, ElementWrappingImplementation);
3116 function TextAreaElementWrappingImplementation() {}
3117 TextAreaElementWrappingImplementation._wrap$ctor = function(ptr) {
3118 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
3119 }
3120 TextAreaElementWrappingImplementation._wrap$ctor.prototype = TextAreaElementWrap pingImplementation.prototype;
3121 TextAreaElementWrappingImplementation.prototype.is$html_Element = function(){ret urn true};
3122 // ********** Code for TitleElementWrappingImplementation **************
3123 $inherits(TitleElementWrappingImplementation, ElementWrappingImplementation);
3124 function TitleElementWrappingImplementation() {}
3125 TitleElementWrappingImplementation._wrap$ctor = function(ptr) {
3126 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
3127 }
3128 TitleElementWrappingImplementation._wrap$ctor.prototype = TitleElementWrappingIm plementation.prototype;
3129 TitleElementWrappingImplementation.prototype.is$html_Element = function(){return true};
3130 // ********** Code for TrackElementWrappingImplementation **************
3131 $inherits(TrackElementWrappingImplementation, ElementWrappingImplementation);
3132 function TrackElementWrappingImplementation() {}
3133 TrackElementWrappingImplementation._wrap$ctor = function(ptr) {
3134 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
3135 }
3136 TrackElementWrappingImplementation._wrap$ctor.prototype = TrackElementWrappingIm plementation.prototype;
3137 TrackElementWrappingImplementation.prototype.is$html_Element = function(){return true};
3138 // ********** Code for UListElementWrappingImplementation **************
3139 $inherits(UListElementWrappingImplementation, ElementWrappingImplementation);
3140 function UListElementWrappingImplementation() {}
3141 UListElementWrappingImplementation._wrap$ctor = function(ptr) {
3142 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
3143 }
3144 UListElementWrappingImplementation._wrap$ctor.prototype = UListElementWrappingIm plementation.prototype;
3145 UListElementWrappingImplementation.prototype.is$html_Element = function(){return true};
3146 // ********** Code for UnknownElementWrappingImplementation **************
3147 $inherits(UnknownElementWrappingImplementation, ElementWrappingImplementation);
3148 function UnknownElementWrappingImplementation() {}
3149 UnknownElementWrappingImplementation._wrap$ctor = function(ptr) {
3150 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
3151 }
3152 UnknownElementWrappingImplementation._wrap$ctor.prototype = UnknownElementWrappi ngImplementation.prototype;
3153 UnknownElementWrappingImplementation.prototype.is$html_Element = function(){retu rn true};
3154 // ********** Code for VideoElementWrappingImplementation **************
3155 $inherits(VideoElementWrappingImplementation, MediaElementWrappingImplementation );
3156 function VideoElementWrappingImplementation() {}
3157 VideoElementWrappingImplementation._wrap$ctor = function(ptr) {
3158 MediaElementWrappingImplementation._wrap$ctor.call(this, ptr);
3159 }
3160 VideoElementWrappingImplementation._wrap$ctor.prototype = VideoElementWrappingIm plementation.prototype;
3161 VideoElementWrappingImplementation.prototype.is$html_Element = function(){return true};
3162 // ********** Code for LevelDom **************
3163 function LevelDom() {}
3164 LevelDom.wrapDocument = function(raw) {
3165 if (raw == null) {
3166 return null;
3167 }
3168 if (raw.get$dartObjectLocalStorage() != null) {
3169 return raw.get$dartObjectLocalStorage();
3170 }
3171 switch (raw.get$typeName()) {
3172 case "HTMLDocument":
3173
3174 return new DocumentWrappingImplementation._wrap$ctor(raw, raw.get$document Element());
3175
3176 case "SVGDocument":
3177
3178 return new SVGDocumentWrappingImplementation._wrap$ctor(raw);
3179
3180 default:
3181
3182 $throw(new UnsupportedOperationException("Unknown type:" + raw.toString$0( )));
3183
3184 }
3185 }
3186 LevelDom.wrapElement = function(raw) {
3187 if (raw == null) {
3188 return null;
3189 }
3190 if (raw.get$dartObjectLocalStorage() != null) {
3191 return raw.get$dartObjectLocalStorage();
3192 }
3193 switch (raw.get$typeName()) {
3194 case "HTMLAnchorElement":
3195
3196 return new AnchorElementWrappingImplementation._wrap$ctor(raw);
3197
3198 case "HTMLAreaElement":
3199
3200 return new AreaElementWrappingImplementation._wrap$ctor(raw);
3201
3202 case "HTMLAudioElement":
3203
3204 return new AudioElementWrappingImplementation._wrap$ctor(raw);
3205
3206 case "HTMLBRElement":
3207
3208 return new BRElementWrappingImplementation._wrap$ctor(raw);
3209
3210 case "HTMLBaseElement":
3211
3212 return new BaseElementWrappingImplementation._wrap$ctor(raw);
3213
3214 case "HTMLBodyElement":
3215
3216 return new BodyElementWrappingImplementation._wrap$ctor(raw);
3217
3218 case "HTMLButtonElement":
3219
3220 return new ButtonElementWrappingImplementation._wrap$ctor(raw);
3221
3222 case "HTMLCanvasElement":
3223
3224 return new CanvasElementWrappingImplementation._wrap$ctor(raw);
3225
3226 case "HTMLDListElement":
3227
3228 return new DListElementWrappingImplementation._wrap$ctor(raw);
3229
3230 case "HTMLDataListElement":
3231
3232 return new DataListElementWrappingImplementation._wrap$ctor(raw);
3233
3234 case "HTMLDetailsElement":
3235
3236 return new DetailsElementWrappingImplementation._wrap$ctor(raw);
3237
3238 case "HTMLDivElement":
3239
3240 return new DivElementWrappingImplementation._wrap$ctor(raw);
3241
3242 case "HTMLElement":
3243
3244 return new ElementWrappingImplementation._wrap$ctor(raw);
3245
3246 case "HTMLEmbedElement":
3247
3248 return new EmbedElementWrappingImplementation._wrap$ctor(raw);
3249
3250 case "HTMLFieldSetElement":
3251
3252 return new FieldSetElementWrappingImplementation._wrap$ctor(raw);
3253
3254 case "HTMLFontElement":
3255
3256 return new FontElementWrappingImplementation._wrap$ctor(raw);
3257
3258 case "HTMLFormElement":
3259
3260 return new FormElementWrappingImplementation._wrap$ctor(raw);
3261
3262 case "HTMLHRElement":
3263
3264 return new HRElementWrappingImplementation._wrap$ctor(raw);
3265
3266 case "HTMLHeadElement":
3267
3268 return new HeadElementWrappingImplementation._wrap$ctor(raw);
3269
3270 case "HTMLHeadingElement":
3271
3272 return new HeadingElementWrappingImplementation._wrap$ctor(raw);
3273
3274 case "HTMLHtmlElement":
3275
3276 return new DocumentWrappingImplementation._wrap$ctor(raw.get$parentNode(), raw);
3277
3278 case "HTMLIFrameElement":
3279
3280 return new IFrameElementWrappingImplementation._wrap$ctor(raw);
3281
3282 case "HTMLImageElement":
3283
3284 return new ImageElementWrappingImplementation._wrap$ctor(raw);
3285
3286 case "HTMLInputElement":
3287
3288 return new InputElementWrappingImplementation._wrap$ctor(raw);
3289
3290 case "HTMLKeygenElement":
3291
3292 return new KeygenElementWrappingImplementation._wrap$ctor(raw);
3293
3294 case "HTMLLIElement":
3295
3296 return new LIElementWrappingImplementation._wrap$ctor(raw);
3297
3298 case "HTMLLabelElement":
3299
3300 return new LabelElementWrappingImplementation._wrap$ctor(raw);
3301
3302 case "HTMLLegendElement":
3303
3304 return new LegendElementWrappingImplementation._wrap$ctor(raw);
3305
3306 case "HTMLLinkElement":
3307
3308 return new LinkElementWrappingImplementation._wrap$ctor(raw);
3309
3310 case "HTMLMapElement":
3311
3312 return new MapElementWrappingImplementation._wrap$ctor(raw);
3313
3314 case "HTMLMarqueeElement":
3315
3316 return new MarqueeElementWrappingImplementation._wrap$ctor(raw);
3317
3318 case "HTMLMediaElement":
3319
3320 return new MediaElementWrappingImplementation._wrap$ctor(raw);
3321
3322 case "HTMLMenuElement":
3323
3324 return new MenuElementWrappingImplementation._wrap$ctor(raw);
3325
3326 case "HTMLMetaElement":
3327
3328 return new MetaElementWrappingImplementation._wrap$ctor(raw);
3329
3330 case "HTMLMeterElement":
3331
3332 return new MeterElementWrappingImplementation._wrap$ctor(raw);
3333
3334 case "HTMLModElement":
3335
3336 return new ModElementWrappingImplementation._wrap$ctor(raw);
3337
3338 case "HTMLOListElement":
3339
3340 return new OListElementWrappingImplementation._wrap$ctor(raw);
3341
3342 case "HTMLObjectElement":
3343
3344 return new ObjectElementWrappingImplementation._wrap$ctor(raw);
3345
3346 case "HTMLOptGroupElement":
3347
3348 return new OptGroupElementWrappingImplementation._wrap$ctor(raw);
3349
3350 case "HTMLOptionElement":
3351
3352 return new OptionElementWrappingImplementation._wrap$ctor(raw);
3353
3354 case "HTMLOutputElement":
3355
3356 return new OutputElementWrappingImplementation._wrap$ctor(raw);
3357
3358 case "HTMLParagraphElement":
3359
3360 return new ParagraphElementWrappingImplementation._wrap$ctor(raw);
3361
3362 case "HTMLParamElement":
3363
3364 return new ParamElementWrappingImplementation._wrap$ctor(raw);
3365
3366 case "HTMLPreElement":
3367
3368 return new PreElementWrappingImplementation._wrap$ctor(raw);
3369
3370 case "HTMLProgressElement":
3371
3372 return new ProgressElementWrappingImplementation._wrap$ctor(raw);
3373
3374 case "HTMLQuoteElement":
3375
3376 return new QuoteElementWrappingImplementation._wrap$ctor(raw);
3377
3378 case "SVGAElement":
3379
3380 return new SVGAElementWrappingImplementation._wrap$ctor(raw);
3381
3382 case "SVGAltGlyphDefElement":
3383
3384 return new SVGAltGlyphDefElementWrappingImplementation._wrap$ctor(raw);
3385
3386 case "SVGAltGlyphElement":
3387
3388 return new SVGAltGlyphElementWrappingImplementation._wrap$ctor(raw);
3389
3390 case "SVGAltGlyphItemElement":
3391
3392 return new SVGAltGlyphItemElementWrappingImplementation._wrap$ctor(raw);
3393
3394 case "SVGAnimateColorElement":
3395
3396 return new SVGAnimateColorElementWrappingImplementation._wrap$ctor(raw);
3397
3398 case "SVGAnimateElement":
3399
3400 return new SVGAnimateElementWrappingImplementation._wrap$ctor(raw);
3401
3402 case "SVGAnimateMotionElement":
3403
3404 return new SVGAnimateMotionElementWrappingImplementation._wrap$ctor(raw);
3405
3406 case "SVGAnimateTransformElement":
3407
3408 return new SVGAnimateTransformElementWrappingImplementation._wrap$ctor(raw );
3409
3410 case "SVGAnimationElement":
3411
3412 return new SVGAnimationElementWrappingImplementation._wrap$ctor(raw);
3413
3414 case "SVGCircleElement":
3415
3416 return new SVGCircleElementWrappingImplementation._wrap$ctor(raw);
3417
3418 case "SVGClipPathElement":
3419
3420 return new SVGClipPathElementWrappingImplementation._wrap$ctor(raw);
3421
3422 case "SVGComponentTransferFunctionElement":
3423
3424 return new SVGComponentTransferFunctionElementWrappingImplementation._wrap $ctor(raw);
3425
3426 case "SVGCursorElement":
3427
3428 return new SVGCursorElementWrappingImplementation._wrap$ctor(raw);
3429
3430 case "SVGDefsElement":
3431
3432 return new SVGDefsElementWrappingImplementation._wrap$ctor(raw);
3433
3434 case "SVGDescElement":
3435
3436 return new SVGDescElementWrappingImplementation._wrap$ctor(raw);
3437
3438 case "SVGElement":
3439
3440 return new SVGElementWrappingImplementation._wrap$ctor(raw);
3441
3442 case "SVGEllipseElement":
3443
3444 return new SVGEllipseElementWrappingImplementation._wrap$ctor(raw);
3445
3446 case "SVGFEBlendElement":
3447
3448 return new SVGFEBlendElementWrappingImplementation._wrap$ctor(raw);
3449
3450 case "SVGFEColorMatrixElement":
3451
3452 return new SVGFEColorMatrixElementWrappingImplementation._wrap$ctor(raw);
3453
3454 case "SVGFEComponentTransferElement":
3455
3456 return new SVGFEComponentTransferElementWrappingImplementation._wrap$ctor( raw);
3457
3458 case "SVGFEConvolveMatrixElement":
3459
3460 return new SVGFEConvolveMatrixElementWrappingImplementation._wrap$ctor(raw );
3461
3462 case "SVGFEDiffuseLightingElement":
3463
3464 return new SVGFEDiffuseLightingElementWrappingImplementation._wrap$ctor(ra w);
3465
3466 case "SVGFEDisplacementMapElement":
3467
3468 return new SVGFEDisplacementMapElementWrappingImplementation._wrap$ctor(ra w);
3469
3470 case "SVGFEDistantLightElement":
3471
3472 return new SVGFEDistantLightElementWrappingImplementation._wrap$ctor(raw);
3473
3474 case "SVGFEDropShadowElement":
3475
3476 return new SVGFEDropShadowElementWrappingImplementation._wrap$ctor(raw);
3477
3478 case "SVGFEFloodElement":
3479
3480 return new SVGFEFloodElementWrappingImplementation._wrap$ctor(raw);
3481
3482 case "SVGFEFuncAElement":
3483
3484 return new SVGFEFuncAElementWrappingImplementation._wrap$ctor(raw);
3485
3486 case "SVGFEFuncBElement":
3487
3488 return new SVGFEFuncBElementWrappingImplementation._wrap$ctor(raw);
3489
3490 case "SVGFEFuncGElement":
3491
3492 return new SVGFEFuncGElementWrappingImplementation._wrap$ctor(raw);
3493
3494 case "SVGFEFuncRElement":
3495
3496 return new SVGFEFuncRElementWrappingImplementation._wrap$ctor(raw);
3497
3498 case "SVGFEGaussianBlurElement":
3499
3500 return new SVGFEGaussianBlurElementWrappingImplementation._wrap$ctor(raw);
3501
3502 case "SVGFEImageElement":
3503
3504 return new SVGFEImageElementWrappingImplementation._wrap$ctor(raw);
3505
3506 case "SVGFEMergeElement":
3507
3508 return new SVGFEMergeElementWrappingImplementation._wrap$ctor(raw);
3509
3510 case "SVGFEMergeNodeElement":
3511
3512 return new SVGFEMergeNodeElementWrappingImplementation._wrap$ctor(raw);
3513
3514 case "SVGFEOffsetElement":
3515
3516 return new SVGFEOffsetElementWrappingImplementation._wrap$ctor(raw);
3517
3518 case "SVGFEPointLightElement":
3519
3520 return new SVGFEPointLightElementWrappingImplementation._wrap$ctor(raw);
3521
3522 case "SVGFESpecularLightingElement":
3523
3524 return new SVGFESpecularLightingElementWrappingImplementation._wrap$ctor(r aw);
3525
3526 case "SVGFESpotLightElement":
3527
3528 return new SVGFESpotLightElementWrappingImplementation._wrap$ctor(raw);
3529
3530 case "SVGFETileElement":
3531
3532 return new SVGFETileElementWrappingImplementation._wrap$ctor(raw);
3533
3534 case "SVGFETurbulenceElement":
3535
3536 return new SVGFETurbulenceElementWrappingImplementation._wrap$ctor(raw);
3537
3538 case "SVGFilterElement":
3539
3540 return new SVGFilterElementWrappingImplementation._wrap$ctor(raw);
3541
3542 case "SVGFontElement":
3543
3544 return new SVGFontElementWrappingImplementation._wrap$ctor(raw);
3545
3546 case "SVGFontFaceElement":
3547
3548 return new SVGFontFaceElementWrappingImplementation._wrap$ctor(raw);
3549
3550 case "SVGFontFaceFormatElement":
3551
3552 return new SVGFontFaceFormatElementWrappingImplementation._wrap$ctor(raw);
3553
3554 case "SVGFontFaceNameElement":
3555
3556 return new SVGFontFaceNameElementWrappingImplementation._wrap$ctor(raw);
3557
3558 case "SVGFontFaceSrcElement":
3559
3560 return new SVGFontFaceSrcElementWrappingImplementation._wrap$ctor(raw);
3561
3562 case "SVGFontFaceUriElement":
3563
3564 return new SVGFontFaceUriElementWrappingImplementation._wrap$ctor(raw);
3565
3566 case "SVGForeignObjectElement":
3567
3568 return new SVGForeignObjectElementWrappingImplementation._wrap$ctor(raw);
3569
3570 case "SVGGElement":
3571
3572 return new SVGGElementWrappingImplementation._wrap$ctor(raw);
3573
3574 case "SVGGlyphElement":
3575
3576 return new SVGGlyphElementWrappingImplementation._wrap$ctor(raw);
3577
3578 case "SVGGlyphRefElement":
3579
3580 return new SVGGlyphRefElementWrappingImplementation._wrap$ctor(raw);
3581
3582 case "SVGGradientElement":
3583
3584 return new SVGGradientElementWrappingImplementation._wrap$ctor(raw);
3585
3586 case "SVGHKernElement":
3587
3588 return new SVGHKernElementWrappingImplementation._wrap$ctor(raw);
3589
3590 case "SVGImageElement":
3591
3592 return new SVGImageElementWrappingImplementation._wrap$ctor(raw);
3593
3594 case "SVGLineElement":
3595
3596 return new SVGLineElementWrappingImplementation._wrap$ctor(raw);
3597
3598 case "SVGLinearGradientElement":
3599
3600 return new SVGLinearGradientElementWrappingImplementation._wrap$ctor(raw);
3601
3602 case "SVGMPathElement":
3603
3604 return new SVGMPathElementWrappingImplementation._wrap$ctor(raw);
3605
3606 case "SVGMarkerElement":
3607
3608 return new SVGMarkerElementWrappingImplementation._wrap$ctor(raw);
3609
3610 case "SVGMaskElement":
3611
3612 return new SVGMaskElementWrappingImplementation._wrap$ctor(raw);
3613
3614 case "SVGMetadataElement":
3615
3616 return new SVGMetadataElementWrappingImplementation._wrap$ctor(raw);
3617
3618 case "SVGMissingGlyphElement":
3619
3620 return new SVGMissingGlyphElementWrappingImplementation._wrap$ctor(raw);
3621
3622 case "SVGPathElement":
3623
3624 return new SVGPathElementWrappingImplementation._wrap$ctor(raw);
3625
3626 case "SVGPatternElement":
3627
3628 return new SVGPatternElementWrappingImplementation._wrap$ctor(raw);
3629
3630 case "SVGPolygonElement":
3631
3632 return new SVGPolygonElementWrappingImplementation._wrap$ctor(raw);
3633
3634 case "SVGPolylineElement":
3635
3636 return new SVGPolylineElementWrappingImplementation._wrap$ctor(raw);
3637
3638 case "SVGRadialGradientElement":
3639
3640 return new SVGRadialGradientElementWrappingImplementation._wrap$ctor(raw);
3641
3642 case "SVGRectElement":
3643
3644 return new SVGRectElementWrappingImplementation._wrap$ctor(raw);
3645
3646 case "SVGSVGElement":
3647
3648 return new SVGSVGElementWrappingImplementation._wrap$ctor(raw);
3649
3650 case "SVGScriptElement":
3651
3652 return new SVGScriptElementWrappingImplementation._wrap$ctor(raw);
3653
3654 case "SVGSetElement":
3655
3656 return new SVGSetElementWrappingImplementation._wrap$ctor(raw);
3657
3658 case "SVGStopElement":
3659
3660 return new SVGStopElementWrappingImplementation._wrap$ctor(raw);
3661
3662 case "SVGStyleElement":
3663
3664 return new SVGStyleElementWrappingImplementation._wrap$ctor(raw);
3665
3666 case "SVGSwitchElement":
3667
3668 return new SVGSwitchElementWrappingImplementation._wrap$ctor(raw);
3669
3670 case "SVGSymbolElement":
3671
3672 return new SVGSymbolElementWrappingImplementation._wrap$ctor(raw);
3673
3674 case "SVGTRefElement":
3675
3676 return new SVGTRefElementWrappingImplementation._wrap$ctor(raw);
3677
3678 case "SVGTSpanElement":
3679
3680 return new SVGTSpanElementWrappingImplementation._wrap$ctor(raw);
3681
3682 case "SVGTextContentElement":
3683
3684 return new SVGTextContentElementWrappingImplementation._wrap$ctor(raw);
3685
3686 case "SVGTextElement":
3687
3688 return new SVGTextElementWrappingImplementation._wrap$ctor(raw);
3689
3690 case "SVGTextPathElement":
3691
3692 return new SVGTextPathElementWrappingImplementation._wrap$ctor(raw);
3693
3694 case "SVGTextPositioningElement":
3695
3696 return new SVGTextPositioningElementWrappingImplementation._wrap$ctor(raw) ;
3697
3698 case "SVGTitleElement":
3699
3700 return new SVGTitleElementWrappingImplementation._wrap$ctor(raw);
3701
3702 case "SVGUseElement":
3703
3704 return new SVGUseElementWrappingImplementation._wrap$ctor(raw);
3705
3706 case "SVGVKernElement":
3707
3708 return new SVGVKernElementWrappingImplementation._wrap$ctor(raw);
3709
3710 case "SVGViewElement":
3711
3712 return new SVGViewElementWrappingImplementation._wrap$ctor(raw);
3713
3714 case "HTMLScriptElement":
3715
3716 return new ScriptElementWrappingImplementation._wrap$ctor(raw);
3717
3718 case "HTMLSelectElement":
3719
3720 return new SelectElementWrappingImplementation._wrap$ctor(raw);
3721
3722 case "HTMLSourceElement":
3723
3724 return new SourceElementWrappingImplementation._wrap$ctor(raw);
3725
3726 case "HTMLSpanElement":
3727
3728 return new SpanElementWrappingImplementation._wrap$ctor(raw);
3729
3730 case "HTMLStyleElement":
3731
3732 return new StyleElementWrappingImplementation._wrap$ctor(raw);
3733
3734 case "HTMLTableCaptionElement":
3735
3736 return new TableCaptionElementWrappingImplementation._wrap$ctor(raw);
3737
3738 case "HTMLTableCellElement":
3739
3740 return new TableCellElementWrappingImplementation._wrap$ctor(raw);
3741
3742 case "HTMLTableColElement":
3743
3744 return new TableColElementWrappingImplementation._wrap$ctor(raw);
3745
3746 case "HTMLTableElement":
3747
3748 return new TableElementWrappingImplementation._wrap$ctor(raw);
3749
3750 case "HTMLTableRowElement":
3751
3752 return new TableRowElementWrappingImplementation._wrap$ctor(raw);
3753
3754 case "HTMLTableSectionElement":
3755
3756 return new TableSectionElementWrappingImplementation._wrap$ctor(raw);
3757
3758 case "HTMLTextAreaElement":
3759
3760 return new TextAreaElementWrappingImplementation._wrap$ctor(raw);
3761
3762 case "HTMLTitleElement":
3763
3764 return new TitleElementWrappingImplementation._wrap$ctor(raw);
3765
3766 case "HTMLTrackElement":
3767
3768 return new TrackElementWrappingImplementation._wrap$ctor(raw);
3769
3770 case "HTMLUListElement":
3771
3772 return new UListElementWrappingImplementation._wrap$ctor(raw);
3773
3774 case "HTMLUnknownElement":
3775
3776 return new UnknownElementWrappingImplementation._wrap$ctor(raw);
3777
3778 case "HTMLVideoElement":
3779
3780 return new VideoElementWrappingImplementation._wrap$ctor(raw);
3781
3782 default:
3783
3784 $throw(new UnsupportedOperationException("Unknown type:" + raw.toString$0( )));
3785
3786 }
3787 }
3788 LevelDom.wrapNode = function(raw) {
3789 if (raw == null) {
3790 return null;
3791 }
3792 if (raw.get$dartObjectLocalStorage() != null) {
3793 return raw.get$dartObjectLocalStorage();
3794 }
3795 switch (raw.get$typeName()) {
3796 case "HTMLAnchorElement":
3797
3798 return new AnchorElementWrappingImplementation._wrap$ctor(raw);
3799
3800 case "HTMLAreaElement":
3801
3802 return new AreaElementWrappingImplementation._wrap$ctor(raw);
3803
3804 case "HTMLAudioElement":
3805
3806 return new AudioElementWrappingImplementation._wrap$ctor(raw);
3807
3808 case "HTMLBRElement":
3809
3810 return new BRElementWrappingImplementation._wrap$ctor(raw);
3811
3812 case "HTMLBaseElement":
3813
3814 return new BaseElementWrappingImplementation._wrap$ctor(raw);
3815
3816 case "HTMLBodyElement":
3817
3818 return new BodyElementWrappingImplementation._wrap$ctor(raw);
3819
3820 case "HTMLButtonElement":
3821
3822 return new ButtonElementWrappingImplementation._wrap$ctor(raw);
3823
3824 case "CDATASection":
3825
3826 return new CDATASectionWrappingImplementation._wrap$ctor(raw);
3827
3828 case "HTMLCanvasElement":
3829
3830 return new CanvasElementWrappingImplementation._wrap$ctor(raw);
3831
3832 case "CharacterData":
3833
3834 return new CharacterDataWrappingImplementation._wrap$ctor(raw);
3835
3836 case "Comment":
3837
3838 return new CommentWrappingImplementation._wrap$ctor(raw);
3839
3840 case "HTMLDListElement":
3841
3842 return new DListElementWrappingImplementation._wrap$ctor(raw);
3843
3844 case "HTMLDataListElement":
3845
3846 return new DataListElementWrappingImplementation._wrap$ctor(raw);
3847
3848 case "HTMLDetailsElement":
3849
3850 return new DetailsElementWrappingImplementation._wrap$ctor(raw);
3851
3852 case "HTMLDivElement":
3853
3854 return new DivElementWrappingImplementation._wrap$ctor(raw);
3855
3856 case "HTMLDocument":
3857
3858 return new DocumentWrappingImplementation._wrap$ctor(raw, raw.get$document Element());
3859
3860 case "DocumentFragment":
3861
3862 return new DocumentFragmentWrappingImplementation._wrap$ctor(raw);
3863
3864 case "HTMLElement":
3865
3866 return new ElementWrappingImplementation._wrap$ctor(raw);
3867
3868 case "HTMLEmbedElement":
3869
3870 return new EmbedElementWrappingImplementation._wrap$ctor(raw);
3871
3872 case "Entity":
3873
3874 return new EntityWrappingImplementation._wrap$ctor(raw);
3875
3876 case "EntityReference":
3877
3878 return new EntityReferenceWrappingImplementation._wrap$ctor(raw);
3879
3880 case "HTMLFieldSetElement":
3881
3882 return new FieldSetElementWrappingImplementation._wrap$ctor(raw);
3883
3884 case "HTMLFontElement":
3885
3886 return new FontElementWrappingImplementation._wrap$ctor(raw);
3887
3888 case "HTMLFormElement":
3889
3890 return new FormElementWrappingImplementation._wrap$ctor(raw);
3891
3892 case "HTMLHRElement":
3893
3894 return new HRElementWrappingImplementation._wrap$ctor(raw);
3895
3896 case "HTMLHeadElement":
3897
3898 return new HeadElementWrappingImplementation._wrap$ctor(raw);
3899
3900 case "HTMLHeadingElement":
3901
3902 return new HeadingElementWrappingImplementation._wrap$ctor(raw);
3903
3904 case "HTMLHtmlElement":
3905
3906 return new DocumentWrappingImplementation._wrap$ctor(raw.get$parentNode(), raw);
3907
3908 case "HTMLIFrameElement":
3909
3910 return new IFrameElementWrappingImplementation._wrap$ctor(raw);
3911
3912 case "HTMLImageElement":
3913
3914 return new ImageElementWrappingImplementation._wrap$ctor(raw);
3915
3916 case "HTMLInputElement":
3917
3918 return new InputElementWrappingImplementation._wrap$ctor(raw);
3919
3920 case "HTMLKeygenElement":
3921
3922 return new KeygenElementWrappingImplementation._wrap$ctor(raw);
3923
3924 case "HTMLLIElement":
3925
3926 return new LIElementWrappingImplementation._wrap$ctor(raw);
3927
3928 case "HTMLLabelElement":
3929
3930 return new LabelElementWrappingImplementation._wrap$ctor(raw);
3931
3932 case "HTMLLegendElement":
3933
3934 return new LegendElementWrappingImplementation._wrap$ctor(raw);
3935
3936 case "HTMLLinkElement":
3937
3938 return new LinkElementWrappingImplementation._wrap$ctor(raw);
3939
3940 case "HTMLMapElement":
3941
3942 return new MapElementWrappingImplementation._wrap$ctor(raw);
3943
3944 case "HTMLMarqueeElement":
3945
3946 return new MarqueeElementWrappingImplementation._wrap$ctor(raw);
3947
3948 case "HTMLMediaElement":
3949
3950 return new MediaElementWrappingImplementation._wrap$ctor(raw);
3951
3952 case "HTMLMenuElement":
3953
3954 return new MenuElementWrappingImplementation._wrap$ctor(raw);
3955
3956 case "HTMLMetaElement":
3957
3958 return new MetaElementWrappingImplementation._wrap$ctor(raw);
3959
3960 case "HTMLMeterElement":
3961
3962 return new MeterElementWrappingImplementation._wrap$ctor(raw);
3963
3964 case "HTMLModElement":
3965
3966 return new ModElementWrappingImplementation._wrap$ctor(raw);
3967
3968 case "Node":
3969
3970 return new NodeWrappingImplementation._wrap$ctor(raw);
3971
3972 case "Notation":
3973
3974 return new NotationWrappingImplementation._wrap$ctor(raw);
3975
3976 case "HTMLOListElement":
3977
3978 return new OListElementWrappingImplementation._wrap$ctor(raw);
3979
3980 case "HTMLObjectElement":
3981
3982 return new ObjectElementWrappingImplementation._wrap$ctor(raw);
3983
3984 case "HTMLOptGroupElement":
3985
3986 return new OptGroupElementWrappingImplementation._wrap$ctor(raw);
3987
3988 case "HTMLOptionElement":
3989
3990 return new OptionElementWrappingImplementation._wrap$ctor(raw);
3991
3992 case "HTMLOutputElement":
3993
3994 return new OutputElementWrappingImplementation._wrap$ctor(raw);
3995
3996 case "HTMLParagraphElement":
3997
3998 return new ParagraphElementWrappingImplementation._wrap$ctor(raw);
3999
4000 case "HTMLParamElement":
4001
4002 return new ParamElementWrappingImplementation._wrap$ctor(raw);
4003
4004 case "HTMLPreElement":
4005
4006 return new PreElementWrappingImplementation._wrap$ctor(raw);
4007
4008 case "ProcessingInstruction":
4009
4010 return new ProcessingInstructionWrappingImplementation._wrap$ctor(raw);
4011
4012 case "HTMLProgressElement":
4013
4014 return new ProgressElementWrappingImplementation._wrap$ctor(raw);
4015
4016 case "HTMLQuoteElement":
4017
4018 return new QuoteElementWrappingImplementation._wrap$ctor(raw);
4019
4020 case "SVGAElement":
4021
4022 return new SVGAElementWrappingImplementation._wrap$ctor(raw);
4023
4024 case "SVGAltGlyphDefElement":
4025
4026 return new SVGAltGlyphDefElementWrappingImplementation._wrap$ctor(raw);
4027
4028 case "SVGAltGlyphElement":
4029
4030 return new SVGAltGlyphElementWrappingImplementation._wrap$ctor(raw);
4031
4032 case "SVGAltGlyphItemElement":
4033
4034 return new SVGAltGlyphItemElementWrappingImplementation._wrap$ctor(raw);
4035
4036 case "SVGAnimateColorElement":
4037
4038 return new SVGAnimateColorElementWrappingImplementation._wrap$ctor(raw);
4039
4040 case "SVGAnimateElement":
4041
4042 return new SVGAnimateElementWrappingImplementation._wrap$ctor(raw);
4043
4044 case "SVGAnimateMotionElement":
4045
4046 return new SVGAnimateMotionElementWrappingImplementation._wrap$ctor(raw);
4047
4048 case "SVGAnimateTransformElement":
4049
4050 return new SVGAnimateTransformElementWrappingImplementation._wrap$ctor(raw );
4051
4052 case "SVGAnimationElement":
4053
4054 return new SVGAnimationElementWrappingImplementation._wrap$ctor(raw);
4055
4056 case "SVGCircleElement":
4057
4058 return new SVGCircleElementWrappingImplementation._wrap$ctor(raw);
4059
4060 case "SVGClipPathElement":
4061
4062 return new SVGClipPathElementWrappingImplementation._wrap$ctor(raw);
4063
4064 case "SVGComponentTransferFunctionElement":
4065
4066 return new SVGComponentTransferFunctionElementWrappingImplementation._wrap $ctor(raw);
4067
4068 case "SVGCursorElement":
4069
4070 return new SVGCursorElementWrappingImplementation._wrap$ctor(raw);
4071
4072 case "SVGDefsElement":
4073
4074 return new SVGDefsElementWrappingImplementation._wrap$ctor(raw);
4075
4076 case "SVGDescElement":
4077
4078 return new SVGDescElementWrappingImplementation._wrap$ctor(raw);
4079
4080 case "SVGDocument":
4081
4082 return new SVGDocumentWrappingImplementation._wrap$ctor(raw);
4083
4084 case "SVGElement":
4085
4086 return new SVGElementWrappingImplementation._wrap$ctor(raw);
4087
4088 case "SVGEllipseElement":
4089
4090 return new SVGEllipseElementWrappingImplementation._wrap$ctor(raw);
4091
4092 case "SVGFEBlendElement":
4093
4094 return new SVGFEBlendElementWrappingImplementation._wrap$ctor(raw);
4095
4096 case "SVGFEColorMatrixElement":
4097
4098 return new SVGFEColorMatrixElementWrappingImplementation._wrap$ctor(raw);
4099
4100 case "SVGFEComponentTransferElement":
4101
4102 return new SVGFEComponentTransferElementWrappingImplementation._wrap$ctor( raw);
4103
4104 case "SVGFEConvolveMatrixElement":
4105
4106 return new SVGFEConvolveMatrixElementWrappingImplementation._wrap$ctor(raw );
4107
4108 case "SVGFEDiffuseLightingElement":
4109
4110 return new SVGFEDiffuseLightingElementWrappingImplementation._wrap$ctor(ra w);
4111
4112 case "SVGFEDisplacementMapElement":
4113
4114 return new SVGFEDisplacementMapElementWrappingImplementation._wrap$ctor(ra w);
4115
4116 case "SVGFEDistantLightElement":
4117
4118 return new SVGFEDistantLightElementWrappingImplementation._wrap$ctor(raw);
4119
4120 case "SVGFEDropShadowElement":
4121
4122 return new SVGFEDropShadowElementWrappingImplementation._wrap$ctor(raw);
4123
4124 case "SVGFEFloodElement":
4125
4126 return new SVGFEFloodElementWrappingImplementation._wrap$ctor(raw);
4127
4128 case "SVGFEFuncAElement":
4129
4130 return new SVGFEFuncAElementWrappingImplementation._wrap$ctor(raw);
4131
4132 case "SVGFEFuncBElement":
4133
4134 return new SVGFEFuncBElementWrappingImplementation._wrap$ctor(raw);
4135
4136 case "SVGFEFuncGElement":
4137
4138 return new SVGFEFuncGElementWrappingImplementation._wrap$ctor(raw);
4139
4140 case "SVGFEFuncRElement":
4141
4142 return new SVGFEFuncRElementWrappingImplementation._wrap$ctor(raw);
4143
4144 case "SVGFEGaussianBlurElement":
4145
4146 return new SVGFEGaussianBlurElementWrappingImplementation._wrap$ctor(raw);
4147
4148 case "SVGFEImageElement":
4149
4150 return new SVGFEImageElementWrappingImplementation._wrap$ctor(raw);
4151
4152 case "SVGFEMergeElement":
4153
4154 return new SVGFEMergeElementWrappingImplementation._wrap$ctor(raw);
4155
4156 case "SVGFEMergeNodeElement":
4157
4158 return new SVGFEMergeNodeElementWrappingImplementation._wrap$ctor(raw);
4159
4160 case "SVGFEOffsetElement":
4161
4162 return new SVGFEOffsetElementWrappingImplementation._wrap$ctor(raw);
4163
4164 case "SVGFEPointLightElement":
4165
4166 return new SVGFEPointLightElementWrappingImplementation._wrap$ctor(raw);
4167
4168 case "SVGFESpecularLightingElement":
4169
4170 return new SVGFESpecularLightingElementWrappingImplementation._wrap$ctor(r aw);
4171
4172 case "SVGFESpotLightElement":
4173
4174 return new SVGFESpotLightElementWrappingImplementation._wrap$ctor(raw);
4175
4176 case "SVGFETileElement":
4177
4178 return new SVGFETileElementWrappingImplementation._wrap$ctor(raw);
4179
4180 case "SVGFETurbulenceElement":
4181
4182 return new SVGFETurbulenceElementWrappingImplementation._wrap$ctor(raw);
4183
4184 case "SVGFilterElement":
4185
4186 return new SVGFilterElementWrappingImplementation._wrap$ctor(raw);
4187
4188 case "SVGFontElement":
4189
4190 return new SVGFontElementWrappingImplementation._wrap$ctor(raw);
4191
4192 case "SVGFontFaceElement":
4193
4194 return new SVGFontFaceElementWrappingImplementation._wrap$ctor(raw);
4195
4196 case "SVGFontFaceFormatElement":
4197
4198 return new SVGFontFaceFormatElementWrappingImplementation._wrap$ctor(raw);
4199
4200 case "SVGFontFaceNameElement":
4201
4202 return new SVGFontFaceNameElementWrappingImplementation._wrap$ctor(raw);
4203
4204 case "SVGFontFaceSrcElement":
4205
4206 return new SVGFontFaceSrcElementWrappingImplementation._wrap$ctor(raw);
4207
4208 case "SVGFontFaceUriElement":
4209
4210 return new SVGFontFaceUriElementWrappingImplementation._wrap$ctor(raw);
4211
4212 case "SVGForeignObjectElement":
4213
4214 return new SVGForeignObjectElementWrappingImplementation._wrap$ctor(raw);
4215
4216 case "SVGGElement":
4217
4218 return new SVGGElementWrappingImplementation._wrap$ctor(raw);
4219
4220 case "SVGGlyphElement":
4221
4222 return new SVGGlyphElementWrappingImplementation._wrap$ctor(raw);
4223
4224 case "SVGGlyphRefElement":
4225
4226 return new SVGGlyphRefElementWrappingImplementation._wrap$ctor(raw);
4227
4228 case "SVGGradientElement":
4229
4230 return new SVGGradientElementWrappingImplementation._wrap$ctor(raw);
4231
4232 case "SVGHKernElement":
4233
4234 return new SVGHKernElementWrappingImplementation._wrap$ctor(raw);
4235
4236 case "SVGImageElement":
4237
4238 return new SVGImageElementWrappingImplementation._wrap$ctor(raw);
4239
4240 case "SVGLineElement":
4241
4242 return new SVGLineElementWrappingImplementation._wrap$ctor(raw);
4243
4244 case "SVGLinearGradientElement":
4245
4246 return new SVGLinearGradientElementWrappingImplementation._wrap$ctor(raw);
4247
4248 case "SVGMPathElement":
4249
4250 return new SVGMPathElementWrappingImplementation._wrap$ctor(raw);
4251
4252 case "SVGMarkerElement":
4253
4254 return new SVGMarkerElementWrappingImplementation._wrap$ctor(raw);
4255
4256 case "SVGMaskElement":
4257
4258 return new SVGMaskElementWrappingImplementation._wrap$ctor(raw);
4259
4260 case "SVGMetadataElement":
4261
4262 return new SVGMetadataElementWrappingImplementation._wrap$ctor(raw);
4263
4264 case "SVGMissingGlyphElement":
4265
4266 return new SVGMissingGlyphElementWrappingImplementation._wrap$ctor(raw);
4267
4268 case "SVGPathElement":
4269
4270 return new SVGPathElementWrappingImplementation._wrap$ctor(raw);
4271
4272 case "SVGPatternElement":
4273
4274 return new SVGPatternElementWrappingImplementation._wrap$ctor(raw);
4275
4276 case "SVGPolygonElement":
4277
4278 return new SVGPolygonElementWrappingImplementation._wrap$ctor(raw);
4279
4280 case "SVGPolylineElement":
4281
4282 return new SVGPolylineElementWrappingImplementation._wrap$ctor(raw);
4283
4284 case "SVGRadialGradientElement":
4285
4286 return new SVGRadialGradientElementWrappingImplementation._wrap$ctor(raw);
4287
4288 case "SVGRectElement":
4289
4290 return new SVGRectElementWrappingImplementation._wrap$ctor(raw);
4291
4292 case "SVGSVGElement":
4293
4294 return new SVGSVGElementWrappingImplementation._wrap$ctor(raw);
4295
4296 case "SVGScriptElement":
4297
4298 return new SVGScriptElementWrappingImplementation._wrap$ctor(raw);
4299
4300 case "SVGSetElement":
4301
4302 return new SVGSetElementWrappingImplementation._wrap$ctor(raw);
4303
4304 case "SVGStopElement":
4305
4306 return new SVGStopElementWrappingImplementation._wrap$ctor(raw);
4307
4308 case "SVGStyleElement":
4309
4310 return new SVGStyleElementWrappingImplementation._wrap$ctor(raw);
4311
4312 case "SVGSwitchElement":
4313
4314 return new SVGSwitchElementWrappingImplementation._wrap$ctor(raw);
4315
4316 case "SVGSymbolElement":
4317
4318 return new SVGSymbolElementWrappingImplementation._wrap$ctor(raw);
4319
4320 case "SVGTRefElement":
4321
4322 return new SVGTRefElementWrappingImplementation._wrap$ctor(raw);
4323
4324 case "SVGTSpanElement":
4325
4326 return new SVGTSpanElementWrappingImplementation._wrap$ctor(raw);
4327
4328 case "SVGTextContentElement":
4329
4330 return new SVGTextContentElementWrappingImplementation._wrap$ctor(raw);
4331
4332 case "SVGTextElement":
4333
4334 return new SVGTextElementWrappingImplementation._wrap$ctor(raw);
4335
4336 case "SVGTextPathElement":
4337
4338 return new SVGTextPathElementWrappingImplementation._wrap$ctor(raw);
4339
4340 case "SVGTextPositioningElement":
4341
4342 return new SVGTextPositioningElementWrappingImplementation._wrap$ctor(raw) ;
4343
4344 case "SVGTitleElement":
4345
4346 return new SVGTitleElementWrappingImplementation._wrap$ctor(raw);
4347
4348 case "SVGUseElement":
4349
4350 return new SVGUseElementWrappingImplementation._wrap$ctor(raw);
4351
4352 case "SVGVKernElement":
4353
4354 return new SVGVKernElementWrappingImplementation._wrap$ctor(raw);
4355
4356 case "SVGViewElement":
4357
4358 return new SVGViewElementWrappingImplementation._wrap$ctor(raw);
4359
4360 case "HTMLScriptElement":
4361
4362 return new ScriptElementWrappingImplementation._wrap$ctor(raw);
4363
4364 case "HTMLSelectElement":
4365
4366 return new SelectElementWrappingImplementation._wrap$ctor(raw);
4367
4368 case "HTMLSourceElement":
4369
4370 return new SourceElementWrappingImplementation._wrap$ctor(raw);
4371
4372 case "HTMLSpanElement":
4373
4374 return new SpanElementWrappingImplementation._wrap$ctor(raw);
4375
4376 case "HTMLStyleElement":
4377
4378 return new StyleElementWrappingImplementation._wrap$ctor(raw);
4379
4380 case "HTMLTableCaptionElement":
4381
4382 return new TableCaptionElementWrappingImplementation._wrap$ctor(raw);
4383
4384 case "HTMLTableCellElement":
4385
4386 return new TableCellElementWrappingImplementation._wrap$ctor(raw);
4387
4388 case "HTMLTableColElement":
4389
4390 return new TableColElementWrappingImplementation._wrap$ctor(raw);
4391
4392 case "HTMLTableElement":
4393
4394 return new TableElementWrappingImplementation._wrap$ctor(raw);
4395
4396 case "HTMLTableRowElement":
4397
4398 return new TableRowElementWrappingImplementation._wrap$ctor(raw);
4399
4400 case "HTMLTableSectionElement":
4401
4402 return new TableSectionElementWrappingImplementation._wrap$ctor(raw);
4403
4404 case "Text":
4405
4406 return new TextWrappingImplementation._wrap$ctor(raw);
4407
4408 case "HTMLTextAreaElement":
4409
4410 return new TextAreaElementWrappingImplementation._wrap$ctor(raw);
4411
4412 case "HTMLTitleElement":
4413
4414 return new TitleElementWrappingImplementation._wrap$ctor(raw);
4415
4416 case "HTMLTrackElement":
4417
4418 return new TrackElementWrappingImplementation._wrap$ctor(raw);
4419
4420 case "HTMLUListElement":
4421
4422 return new UListElementWrappingImplementation._wrap$ctor(raw);
4423
4424 case "HTMLUnknownElement":
4425
4426 return new UnknownElementWrappingImplementation._wrap$ctor(raw);
4427
4428 case "HTMLVideoElement":
4429
4430 return new VideoElementWrappingImplementation._wrap$ctor(raw);
4431
4432 default:
4433
4434 $throw(new UnsupportedOperationException("Unknown type:" + raw.toString$0( )));
4435
4436 }
4437 }
4438 LevelDom.wrapWindow = function(raw) {
4439 return raw == null ? null : raw.get$dartObjectLocalStorage() != null ? raw.get $dartObjectLocalStorage() : new WindowWrappingImplementation._wrap$ctor(raw);
4440 }
4441 LevelDom.unwrap = function(raw) {
4442 return raw == null ? null : raw.get$_ptr();
4443 }
4444 LevelDom.initialize = function() {
4445 $globals.secretWindow = LevelDom.wrapWindow(get$window());
4446 $globals.secretDocument = LevelDom.wrapDocument(get$document());
4447 }
4448 // ********** Code for BodyElementWrappingImplementation **************
4449 $inherits(BodyElementWrappingImplementation, ElementWrappingImplementation);
4450 function BodyElementWrappingImplementation() {}
4451 BodyElementWrappingImplementation._wrap$ctor = function(ptr) {
4452 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
4453 }
4454 BodyElementWrappingImplementation._wrap$ctor.prototype = BodyElementWrappingImpl ementation.prototype;
4455 BodyElementWrappingImplementation.prototype.is$html_Element = function(){return true};
4456 // ********** Code for FilteredElementList **************
4457 function FilteredElementList(node) {
4458 this._node = node;
4459 this._childNodes = node.get$nodes();
4460 }
4461 FilteredElementList.prototype.get$_filtered = function() {
4462 return ListFactory.ListFactory$from$factory(this._childNodes.filter$1((functio n (n) {
4463 return !!(n && n.is$html_Element());
4464 })
4465 ));
4466 }
4467 FilteredElementList.prototype.get$first = function() {
4468 var $$list = this._childNodes;
4469 for (var $$i = $$list.iterator$0(); $$i.hasNext$0(); ) {
4470 var node = $$i.next$0();
4471 if (!!(node && node.is$html_Element())) {
4472 return node;
4473 }
4474 }
4475 return null;
4476 }
4477 FilteredElementList.prototype.forEach = function(f) {
4478 this.get$_filtered().forEach(f);
4479 }
4480 FilteredElementList.prototype.$setindex = function(index, value) {
4481 this.$index(index).replaceWith(value);
4482 }
4483 FilteredElementList.prototype.add = function(value) {
4484 this._childNodes.add$1(value);
4485 }
4486 FilteredElementList.prototype.get$add = function() {
4487 return this.add.bind(this);
4488 }
4489 FilteredElementList.prototype.addAll = function(collection) {
4490 collection.forEach(this.get$add());
4491 }
4492 FilteredElementList.prototype.clear = function() {
4493 this._childNodes.clear$0();
4494 }
4495 FilteredElementList.prototype.get$clear = function() {
4496 return this.clear.bind(this);
4497 }
4498 FilteredElementList.prototype.filter = function(f) {
4499 return this.get$_filtered().filter$1(f);
4500 }
4501 FilteredElementList.prototype.get$length = function() {
4502 return this.get$_filtered().get$length();
4503 }
4504 FilteredElementList.prototype.$index = function(index) {
4505 return this.get$_filtered().$index(index);
4506 }
4507 FilteredElementList.prototype.iterator = function() {
4508 return this.get$_filtered().iterator$0();
4509 }
4510 FilteredElementList.prototype.add$1 = FilteredElementList.prototype.add;
4511 FilteredElementList.prototype.addAll$1 = FilteredElementList.prototype.addAll;
4512 FilteredElementList.prototype.clear$0 = FilteredElementList.prototype.clear;
4513 FilteredElementList.prototype.filter$1 = function($0) {
4514 return this.filter(to$call$1($0));
4515 };
4516 FilteredElementList.prototype.iterator$0 = FilteredElementList.prototype.iterato r;
4517 // ********** Code for DocumentFragmentWrappingImplementation **************
4518 $inherits(DocumentFragmentWrappingImplementation, NodeWrappingImplementation);
4519 function DocumentFragmentWrappingImplementation() {}
4520 DocumentFragmentWrappingImplementation._wrap$ctor = function(ptr) {
4521 NodeWrappingImplementation._wrap$ctor.call(this, ptr);
4522 }
4523 DocumentFragmentWrappingImplementation._wrap$ctor.prototype = DocumentFragmentWr appingImplementation.prototype;
4524 DocumentFragmentWrappingImplementation.prototype.is$html_Element = function(){re turn true};
4525 DocumentFragmentWrappingImplementation.prototype.get$elements = function() {
4526 if (this._elements == null) {
4527 this._elements = new FilteredElementList(this);
4528 }
4529 return this._elements;
4530 }
4531 DocumentFragmentWrappingImplementation.prototype.set$innerHTML = function(value) {
4532 this.get$nodes().clear$0();
4533 var e = ElementWrappingImplementation.ElementWrappingImplementation$tag$factor y("div");
4534 e.set$innerHTML(value);
4535 var nodes = ListFactory.ListFactory$from$factory(e.get$nodes());
4536 this.get$nodes().addAll(nodes);
4537 }
4538 DocumentFragmentWrappingImplementation.prototype.query = function(selectors) {
4539 return LevelDom.wrapElement(this._ptr.querySelector$1(selectors));
4540 }
4541 DocumentFragmentWrappingImplementation.prototype.get$firstElementChild = functio n() {
4542 return this.get$elements().get$first().call$0();
4543 }
4544 // ********** Code for DocumentWrappingImplementation **************
4545 $inherits(DocumentWrappingImplementation, ElementWrappingImplementation);
4546 function DocumentWrappingImplementation() {}
4547 DocumentWrappingImplementation._wrap$ctor = function(_documentPtr, ptr) {
4548 this._documentPtr = _documentPtr;
4549 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
4550 this._documentPtr.get$dynamic().set$dartObjectLocalStorage(this);
4551 }
4552 DocumentWrappingImplementation._wrap$ctor.prototype = DocumentWrappingImplementa tion.prototype;
4553 DocumentWrappingImplementation.prototype.is$html_Element = function(){return tru e};
4554 // ********** Code for _ChildrenElementList **************
4555 function _ChildrenElementList() {}
4556 _ChildrenElementList._wrap$ctor = function(element) {
4557 this._childElements = element.get$children();
4558 this._element = element;
4559 }
4560 _ChildrenElementList._wrap$ctor.prototype = _ChildrenElementList.prototype;
4561 _ChildrenElementList.prototype._toList = function() {
4562 var output = new Array(this._childElements.get$length());
4563 for (var i = (0), len = this._childElements.get$length();
4564 i < len; i++) {
4565 output.$setindex(i, LevelDom.wrapElement(this._childElements.$index(i)));
4566 }
4567 return output;
4568 }
4569 _ChildrenElementList.prototype.get$first = function() {
4570 return LevelDom.wrapElement(this._element.get$firstElementChild());
4571 }
4572 _ChildrenElementList.prototype.forEach = function(f) {
4573 return this._toList().forEach(f);
4574 }
4575 _ChildrenElementList.prototype.filter = function(f) {
4576 return this._toList().filter$1(f);
4577 }
4578 _ChildrenElementList.prototype.get$length = function() {
4579 return this._childElements.get$length();
4580 }
4581 _ChildrenElementList.prototype.$index = function(index) {
4582 return LevelDom.wrapElement(this._childElements.$index(index));
4583 }
4584 _ChildrenElementList.prototype.$setindex = function(index, value) {
4585 this._element.replaceChild$2(LevelDom.unwrap(value), this._childElements.item$ 1(index));
4586 }
4587 _ChildrenElementList.prototype.add = function(value) {
4588 this._element.appendChild$1(LevelDom.unwrap(value));
4589 return value;
4590 }
4591 _ChildrenElementList.prototype.iterator = function() {
4592 return this._toList().iterator$0();
4593 }
4594 _ChildrenElementList.prototype.addAll = function(collection) {
4595 for (var $$i = collection.iterator$0(); $$i.hasNext$0(); ) {
4596 var element = $$i.next$0();
4597 this._element.appendChild$1(LevelDom.unwrap(element));
4598 }
4599 }
4600 _ChildrenElementList.prototype.clear = function() {
4601 this._element.set$textContent("");
4602 }
4603 _ChildrenElementList.prototype.get$clear = function() {
4604 return this.clear.bind(this);
4605 }
4606 _ChildrenElementList.prototype.add$1 = _ChildrenElementList.prototype.add;
4607 _ChildrenElementList.prototype.addAll$1 = _ChildrenElementList.prototype.addAll;
4608 _ChildrenElementList.prototype.clear$0 = _ChildrenElementList.prototype.clear;
4609 _ChildrenElementList.prototype.filter$1 = function($0) {
4610 return this.filter(to$call$1($0));
4611 };
4612 _ChildrenElementList.prototype.iterator$0 = _ChildrenElementList.prototype.itera tor;
4613 // ********** Code for _ChildrenNodeList **************
4614 function _ChildrenNodeList() {}
4615 _ChildrenNodeList._wrap$ctor = function(node) {
4616 this._node = node;
4617 this._childNodes = node.get$childNodes();
4618 }
4619 _ChildrenNodeList._wrap$ctor.prototype = _ChildrenNodeList.prototype;
4620 _ChildrenNodeList.prototype._toList = function() {
4621 var output = new Array(this._childNodes.get$length());
4622 for (var i = (0), len = this._childNodes.get$length();
4623 i < len; i++) {
4624 output.$setindex(i, LevelDom.wrapNode(this._childNodes.$index(i)));
4625 }
4626 return output;
4627 }
4628 _ChildrenNodeList.prototype.get$first = function() {
4629 return LevelDom.wrapNode(this._node.get$firstChild());
4630 }
4631 _ChildrenNodeList.prototype.forEach = function(f) {
4632 return this._toList().forEach(f);
4633 }
4634 _ChildrenNodeList.prototype.filter = function(f) {
4635 return this._toList().filter$1(f);
4636 }
4637 _ChildrenNodeList.prototype.get$length = function() {
4638 return this._childNodes.get$length();
4639 }
4640 _ChildrenNodeList.prototype.$index = function(index) {
4641 return LevelDom.wrapNode(this._childNodes.$index(index));
4642 }
4643 _ChildrenNodeList.prototype.$setindex = function(index, value) {
4644 this._node.replaceChild$2(LevelDom.unwrap(value), this._childNodes.$index(inde x));
4645 }
4646 _ChildrenNodeList.prototype.add = function(value) {
4647 this._node.appendChild$1(LevelDom.unwrap(value));
4648 return value;
4649 }
4650 _ChildrenNodeList.prototype.iterator = function() {
4651 return this._toList().iterator$0();
4652 }
4653 _ChildrenNodeList.prototype.addAll = function(collection) {
4654 for (var $$i = collection.iterator$0(); $$i.hasNext$0(); ) {
4655 var node = $$i.next$0();
4656 this._node.appendChild$1(LevelDom.unwrap(node));
4657 }
4658 }
4659 _ChildrenNodeList.prototype.clear = function() {
4660 this._node.set$textContent("");
4661 }
4662 _ChildrenNodeList.prototype.get$clear = function() {
4663 return this.clear.bind(this);
4664 }
4665 _ChildrenNodeList.prototype.add$1 = _ChildrenNodeList.prototype.add;
4666 _ChildrenNodeList.prototype.addAll$1 = _ChildrenNodeList.prototype.addAll;
4667 _ChildrenNodeList.prototype.clear$0 = _ChildrenNodeList.prototype.clear;
4668 _ChildrenNodeList.prototype.filter$1 = function($0) {
4669 return this.filter(to$call$1($0));
4670 };
4671 _ChildrenNodeList.prototype.iterator$0 = _ChildrenNodeList.prototype.iterator;
4672 // ********** Code for ObjectElementWrappingImplementation **************
4673 $inherits(ObjectElementWrappingImplementation, ElementWrappingImplementation);
4674 function ObjectElementWrappingImplementation() {}
4675 ObjectElementWrappingImplementation._wrap$ctor = function(ptr) {
4676 ElementWrappingImplementation._wrap$ctor.call(this, ptr);
4677 }
4678 ObjectElementWrappingImplementation._wrap$ctor.prototype = ObjectElementWrapping Implementation.prototype;
4679 ObjectElementWrappingImplementation.prototype.is$html_Element = function(){retur n true};
4680 // ********** Code for SVGDocumentWrappingImplementation **************
4681 $inherits(SVGDocumentWrappingImplementation, DocumentWrappingImplementation);
4682 function SVGDocumentWrappingImplementation() {}
4683 SVGDocumentWrappingImplementation._wrap$ctor = function(ptr) {
4684 DocumentWrappingImplementation._wrap$ctor.call(this, ptr, ptr.rootElement);
4685 }
4686 SVGDocumentWrappingImplementation._wrap$ctor.prototype = SVGDocumentWrappingImpl ementation.prototype;
4687 SVGDocumentWrappingImplementation.prototype.is$html_Element = function(){return true};
4688 // ********** Code for SVGSVGElementWrappingImplementation **************
4689 $inherits(SVGSVGElementWrappingImplementation, SVGElementWrappingImplementation) ;
4690 function SVGSVGElementWrappingImplementation() {}
4691 SVGSVGElementWrappingImplementation._wrap$ctor = function(ptr) {
4692 SVGElementWrappingImplementation._wrap$ctor.call(this, ptr);
4693 }
4694 SVGSVGElementWrappingImplementation._wrap$ctor.prototype = SVGSVGElementWrapping Implementation.prototype;
4695 SVGSVGElementWrappingImplementation.prototype.is$html_Element = function(){retur n true};
4696 // ********** Code for WindowWrappingImplementation **************
4697 $inherits(WindowWrappingImplementation, EventTargetWrappingImplementation);
4698 function WindowWrappingImplementation() {}
4699 WindowWrappingImplementation._wrap$ctor = function(ptr) {
4700 EventTargetWrappingImplementation._wrap$ctor.call(this, ptr);
4701 }
4702 WindowWrappingImplementation._wrap$ctor.prototype = WindowWrappingImplementation .prototype;
4703 WindowWrappingImplementation.prototype.get$length = function() {
4704 return this._ptr.get$length();
4705 }
4706 // ********** Code for top level **************
4707 var _pendingRequests;
4708 var _pendingMeasurementFrameCallbacks;
4709 // ********** Library html **************
4710 // ********** Code for top level **************
4711 var secretWindow;
4712 var secretDocument;
4713 function html_get$document() {
4714 if ($globals.secretWindow == null) {
4715 LevelDom.initialize();
4716 }
4717 return $globals.secretDocument;
4718 }
4719 // ********** Library hi **************
4720 // ********** Code for top level **************
4721 function main() {
4722 html_get$document().query("#status").set$innerHTML("Hi, Dart");
4723 }
4724 // 240 dynamic types.
4725 // 501 types
4726 // 41 !leaf
4727 (function(){
4728 var v0/*CSSValueList*/ = 'CSSValueList|WebKitCSSFilterValue|WebKitCSSTransform Value';
4729 var v1/*HTMLElement*/ = 'HTMLElement|HTMLAnchorElement|HTMLAppletElement|HTMLA reaElement|HTMLBRElement|HTMLBaseElement|HTMLBaseFontElement|HTMLBodyElement|HTM LButtonElement|HTMLCanvasElement|HTMLDListElement|HTMLDataListElement|HTMLDetail sElement|HTMLDirectoryElement|HTMLDivElement|HTMLEmbedElement|HTMLFieldSetElemen t|HTMLFontElement|HTMLFormElement|HTMLFrameElement|HTMLFrameSetElement|HTMLHREle ment|HTMLHeadElement|HTMLHeadingElement|HTMLHtmlElement|HTMLIFrameElement|HTMLIm ageElement|HTMLInputElement|HTMLIsIndexElement|HTMLKeygenElement|HTMLLIElement|H TMLLabelElement|HTMLLegendElement|HTMLLinkElement|HTMLMapElement|HTMLMarqueeElem ent|HTMLMediaElement|HTMLAudioElement|HTMLVideoElement|HTMLMenuElement|HTMLMetaE lement|HTMLMeterElement|HTMLModElement|HTMLOListElement|HTMLObjectElement|HTMLOp tGroupElement|HTMLOptionElement|HTMLOutputElement|HTMLParagraphElement|HTMLParam Element|HTMLPreElement|HTMLProgressElement|HTMLQuoteElement|HTMLScriptElement|HT MLSelectElement|HTMLSourceElement|HTMLSpanElement|HTMLStyleElement|HTMLTableCapt ionElement|HTMLTableCellElement|HTMLTableColElement|HTMLTableElement|HTMLTableRo wElement|HTMLTableSectionElement|HTMLTextAreaElement|HTMLTitleElement|HTMLTrackE lement|HTMLUListElement|HTMLUnknownElement';
4730 var v2/*CharacterData*/ = 'CharacterData|Comment|Text|CDATASection';
4731 var v3/*Document*/ = 'Document|HTMLDocument|SVGDocument';
4732 var v4/*Element*/ = [v1/*HTMLElement*/,'Element|SVGElement|SVGAElement|SVGAltG lyphDefElement|SVGAltGlyphItemElement|SVGAnimationElement|SVGAnimateColorElement |SVGAnimateElement|SVGAnimateMotionElement|SVGAnimateTransformElement|SVGSetElem ent|SVGCircleElement|SVGClipPathElement|SVGComponentTransferFunctionElement|SVGF EFuncAElement|SVGFEFuncBElement|SVGFEFuncGElement|SVGFEFuncRElement|SVGCursorEle ment|SVGDefsElement|SVGDescElement|SVGEllipseElement|SVGFEBlendElement|SVGFEColo rMatrixElement|SVGFEComponentTransferElement|SVGFECompositeElement|SVGFEConvolve MatrixElement|SVGFEDiffuseLightingElement|SVGFEDisplacementMapElement|SVGFEDista ntLightElement|SVGFEDropShadowElement|SVGFEFloodElement|SVGFEGaussianBlurElement |SVGFEImageElement|SVGFEMergeElement|SVGFEMergeNodeElement|SVGFEMorphologyElemen t|SVGFEOffsetElement|SVGFEPointLightElement|SVGFESpecularLightingElement|SVGFESp otLightElement|SVGFETileElement|SVGFETurbulenceElement|SVGFilterElement|SVGFontE lement|SVGFontFaceElement|SVGFontFaceFormatElement|SVGFontFaceNameElement|SVGFon tFaceSrcElement|SVGFontFaceUriElement|SVGForeignObjectElement|SVGGElement|SVGGly phElement|SVGGlyphRefElement|SVGGradientElement|SVGLinearGradientElement|SVGRadi alGradientElement|SVGHKernElement|SVGImageElement|SVGLineElement|SVGMPathElement |SVGMarkerElement|SVGMaskElement|SVGMetadataElement|SVGMissingGlyphElement|SVGPa thElement|SVGPatternElement|SVGPolygonElement|SVGPolylineElement|SVGRectElement| SVGSVGElement|SVGScriptElement|SVGStopElement|SVGStyleElement|SVGSwitchElement|S VGSymbolElement|SVGTextContentElement|SVGTextPathElement|SVGTextPositioningEleme nt|SVGAltGlyphElement|SVGTRefElement|SVGTSpanElement|SVGTextElement|SVGTitleElem ent|SVGUseElement|SVGVKernElement|SVGViewElement'].join('|');
4733 var table = [
4734 // [dynamic-dispatch-tag, tags of classes implementing dynamic-dispatch-tag]
4735 ['AbstractWorker', 'AbstractWorker|SharedWorker|Worker'],
4736 ['ArrayBufferView', 'ArrayBufferView|DataView|Float32Array|Float64Array|Int1 6Array|Int32Array|Int8Array|Uint16Array|Uint32Array|Uint8Array'],
4737 ['AudioNode', 'AudioNode|AudioChannelMerger|AudioChannelSplitter|AudioDestin ationNode|AudioGainNode|AudioPannerNode|AudioSourceNode|AudioBufferSourceNode|Me diaElementAudioSourceNode|BiquadFilterNode|ConvolverNode|DelayNode|DynamicsCompr essorNode|HighPass2FilterNode|JavaScriptAudioNode|LowPass2FilterNode|RealtimeAna lyserNode|WaveShaperNode'],
4738 ['AudioParam', 'AudioParam|AudioGain'],
4739 ['Blob', 'Blob|File'],
4740 ['CSSRule', 'CSSRule|CSSCharsetRule|CSSFontFaceRule|CSSImportRule|CSSMediaRu le|CSSPageRule|CSSStyleRule|CSSUnknownRule|WebKitCSSKeyframeRule|WebKitCSSKeyfra mesRule'],
4741 ['CSSValueList', v0/*CSSValueList*/],
4742 ['CSSValue', [v0/*CSSValueList*/,'CSSValue|CSSPrimitiveValue|SVGColor|SVGPai nt'].join('|')],
4743 ['CanvasRenderingContext', 'CanvasRenderingContext|CanvasRenderingContext2D| WebGLRenderingContext'],
4744 ['CharacterData', v2/*CharacterData*/],
4745 ['DOMTokenList', 'DOMTokenList|DOMSettableTokenList'],
4746 ['DOMWindow', 'DOMWindow|Window'],
4747 ['Document', v3/*Document*/],
4748 ['HTMLElement', v1/*HTMLElement*/],
4749 ['Element', v4/*Element*/],
4750 ['Entry', 'Entry|DirectoryEntry|FileEntry'],
4751 ['EntrySync', 'EntrySync|DirectoryEntrySync|FileEntrySync'],
4752 ['Event', 'Event|AudioProcessingEvent|BeforeLoadEvent|CloseEvent|CustomEvent |DeviceMotionEvent|DeviceOrientationEvent|ErrorEvent|HashChangeEvent|IDBVersionC hangeEvent|MessageEvent|MutationEvent|OfflineAudioCompletionEvent|OverflowEvent| PageTransitionEvent|PopStateEvent|ProgressEvent|XMLHttpRequestProgressEvent|Spee chInputEvent|StorageEvent|TrackEvent|UIEvent|CompositionEvent|KeyboardEvent|Mous eEvent|SVGZoomEvent|TextEvent|TouchEvent|WheelEvent|WebGLContextEvent|WebKitAnim ationEvent|WebKitTransitionEvent'],
4753 ['HTMLCollection', 'HTMLCollection|HTMLOptionsCollection|HTMLPropertiesColle ction'],
4754 ['IDBCursor', 'IDBCursor|IDBCursorWithValue'],
4755 ['IDBRequest', 'IDBRequest|IDBVersionChangeRequest'],
4756 ['Node', [v2/*CharacterData*/,v3/*Document*/,v4/*Element*/,'Node|Attr|Docume ntFragment|DocumentType|Entity|EntityReference|Notation|ProcessingInstruction']. join('|')],
4757 ['SVGLocatable', 'SVGLocatable|SVGTransformable'],
4758 ['SVGPathSeg', 'SVGPathSeg|SVGPathSegArcAbs|SVGPathSegArcRel|SVGPathSegClose Path|SVGPathSegCurvetoCubicAbs|SVGPathSegCurvetoCubicRel|SVGPathSegCurvetoCubicS moothAbs|SVGPathSegCurvetoCubicSmoothRel|SVGPathSegCurvetoQuadraticAbs|SVGPathSe gCurvetoQuadraticRel|SVGPathSegCurvetoQuadraticSmoothAbs|SVGPathSegCurvetoQuadra ticSmoothRel|SVGPathSegLinetoAbs|SVGPathSegLinetoHorizontalAbs|SVGPathSegLinetoH orizontalRel|SVGPathSegLinetoRel|SVGPathSegLinetoVerticalAbs|SVGPathSegLinetoVer ticalRel|SVGPathSegMovetoAbs|SVGPathSegMovetoRel'],
4759 ['SVGStylable', 'SVGStylable|SVGFilterPrimitiveStandardAttributes'],
4760 ['SVGZoomAndPan', 'SVGZoomAndPan|SVGViewSpec'],
4761 ['StyleSheet', 'StyleSheet|CSSStyleSheet'],
4762 ['WorkerContext', 'WorkerContext|DedicatedWorkerContext|SharedWorkercontext' ],
4763 ];
4764 $dynamicSetMetadata(table);
4765 })();
4766 // ********** Globals **************
4767 function $static_init(){
4768 }
4769 var const$0000 = Object.create(NoMoreElementsException.prototype, {});
4770 var $globals = {};
4771 $static_init();
4772 main();
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698