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

Side by Side Diff: client/dom/generated/wrapping_dom.js

Issue 8548010: Wrapper dom changes in preparation for SVG (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: tweak Created 9 years, 1 month 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
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // DO NOT EDIT 5 // DO NOT EDIT
6 // Auto-generated Dart DOM implementation. 6 // Auto-generated Dart DOM implementation.
7 7
8 8
9 function native__AbstractWorkerWrappingImplementation__get__AbstractWorker_onerr or(_this) { 9 function native__AbstractWorkerWrappingImplementation__get_onerror(_this) {
10 try { 10 try {
11 return __dom_wrap(_this.$dom.onerror); 11 return __dom_wrap(_this.$dom.onerror);
12 } catch (e) { 12 } catch (e) {
13 throw __dom_wrap_exception(e); 13 throw __dom_wrap_exception(e);
14 } 14 }
15 } 15 }
16 16
17 function native__AbstractWorkerWrappingImplementation__set__AbstractWorker_onerr or(_this, value) { 17 function native__AbstractWorkerWrappingImplementation__set_onerror(_this, value) {
18 try { 18 try {
19 _this.$dom.onerror = __dom_unwrap(value); 19 _this.$dom.onerror = __dom_unwrap(value);
20 } catch (e) { 20 } catch (e) {
21 throw __dom_wrap_exception(e); 21 throw __dom_wrap_exception(e);
22 } 22 }
23 } 23 }
24 24
25 function native__AbstractWorkerWrappingImplementation__addEventListener(_this, t ype, listener) { 25 function native__AbstractWorkerWrappingImplementation__addEventListener_Abstract Worker(_this, type, listener) {
26 try { 26 try {
27 return __dom_wrap(_this.$dom.addEventListener(__dom_unwrap(type), __dom_unwr ap(listener))); 27 return __dom_wrap(_this.$dom.addEventListener(__dom_unwrap(type), __dom_unwr ap(listener)));
28 } catch (e) { 28 } catch (e) {
29 throw __dom_wrap_exception(e); 29 throw __dom_wrap_exception(e);
30 } 30 }
31 } 31 }
32 32
33 function native__AbstractWorkerWrappingImplementation__addEventListener_2(_this, type, listener, useCapture) { 33 function native__AbstractWorkerWrappingImplementation__addEventListener_Abstract Worker_2(_this, type, listener, useCapture) {
34 try { 34 try {
35 return __dom_wrap(_this.$dom.addEventListener(__dom_unwrap(type), __dom_unwr ap(listener), __dom_unwrap(useCapture))); 35 return __dom_wrap(_this.$dom.addEventListener(__dom_unwrap(type), __dom_unwr ap(listener), __dom_unwrap(useCapture)));
36 } catch (e) { 36 } catch (e) {
37 throw __dom_wrap_exception(e); 37 throw __dom_wrap_exception(e);
38 } 38 }
39 } 39 }
40 40
41 function native__AbstractWorkerWrappingImplementation__dispatchEvent(_this, evt) { 41 function native__AbstractWorkerWrappingImplementation__dispatchEvent_AbstractWor ker(_this, evt) {
42 try { 42 try {
43 return __dom_wrap(_this.$dom.dispatchEvent(__dom_unwrap(evt))); 43 return __dom_wrap(_this.$dom.dispatchEvent(__dom_unwrap(evt)));
44 } catch (e) { 44 } catch (e) {
45 throw __dom_wrap_exception(e); 45 throw __dom_wrap_exception(e);
46 } 46 }
47 } 47 }
48 48
49 function native__AbstractWorkerWrappingImplementation__removeEventListener(_this , type, listener) { 49 function native__AbstractWorkerWrappingImplementation__removeEventListener_Abstr actWorker(_this, type, listener) {
50 try { 50 try {
51 return __dom_wrap(_this.$dom.removeEventListener(__dom_unwrap(type), __dom_u nwrap(listener))); 51 return __dom_wrap(_this.$dom.removeEventListener(__dom_unwrap(type), __dom_u nwrap(listener)));
52 } catch (e) { 52 } catch (e) {
53 throw __dom_wrap_exception(e); 53 throw __dom_wrap_exception(e);
54 } 54 }
55 } 55 }
56 56
57 function native__AbstractWorkerWrappingImplementation__removeEventListener_2(_th is, type, listener, useCapture) { 57 function native__AbstractWorkerWrappingImplementation__removeEventListener_Abstr actWorker_2(_this, type, listener, useCapture) {
58 try { 58 try {
59 return __dom_wrap(_this.$dom.removeEventListener(__dom_unwrap(type), __dom_u nwrap(listener), __dom_unwrap(useCapture))); 59 return __dom_wrap(_this.$dom.removeEventListener(__dom_unwrap(type), __dom_u nwrap(listener), __dom_unwrap(useCapture)));
60 } catch (e) { 60 } catch (e) {
61 throw __dom_wrap_exception(e); 61 throw __dom_wrap_exception(e);
62 } 62 }
63 } 63 }
64 64
65 function native__ArrayBufferWrappingImplementation__get__ArrayBuffer_byteLength( _this) { 65 function native__ArrayBufferWrappingImplementation__get_byteLength(_this) {
66 try { 66 try {
67 return __dom_wrap(_this.$dom.byteLength); 67 return __dom_wrap(_this.$dom.byteLength);
68 } catch (e) { 68 } catch (e) {
69 throw __dom_wrap_exception(e); 69 throw __dom_wrap_exception(e);
70 } 70 }
71 } 71 }
72 72
73 function native__ArrayBufferWrappingImplementation__slice(_this, begin) { 73 function native__ArrayBufferWrappingImplementation__slice(_this, begin) {
74 try { 74 try {
75 return __dom_wrap(_this.$dom.slice(__dom_unwrap(begin))); 75 return __dom_wrap(_this.$dom.slice(__dom_unwrap(begin)));
76 } catch (e) { 76 } catch (e) {
77 throw __dom_wrap_exception(e); 77 throw __dom_wrap_exception(e);
78 } 78 }
79 } 79 }
80 80
81 function native__ArrayBufferWrappingImplementation__slice_2(_this, begin, end) { 81 function native__ArrayBufferWrappingImplementation__slice_2(_this, begin, end) {
82 try { 82 try {
83 return __dom_wrap(_this.$dom.slice(__dom_unwrap(begin), __dom_unwrap(end))); 83 return __dom_wrap(_this.$dom.slice(__dom_unwrap(begin), __dom_unwrap(end)));
84 } catch (e) { 84 } catch (e) {
85 throw __dom_wrap_exception(e); 85 throw __dom_wrap_exception(e);
86 } 86 }
87 } 87 }
88 88
89 function native__ArrayBufferViewWrappingImplementation__get__ArrayBufferView_buf fer(_this) { 89 function native__ArrayBufferViewWrappingImplementation__get_buffer(_this) {
90 try { 90 try {
91 return __dom_wrap(_this.$dom.buffer); 91 return __dom_wrap(_this.$dom.buffer);
92 } catch (e) { 92 } catch (e) {
93 throw __dom_wrap_exception(e); 93 throw __dom_wrap_exception(e);
94 } 94 }
95 } 95 }
96 96
97 function native__ArrayBufferViewWrappingImplementation__get__ArrayBufferView_byt eLength(_this) { 97 function native__ArrayBufferViewWrappingImplementation__get_byteLength(_this) {
98 try { 98 try {
99 return __dom_wrap(_this.$dom.byteLength); 99 return __dom_wrap(_this.$dom.byteLength);
100 } catch (e) { 100 } catch (e) {
101 throw __dom_wrap_exception(e); 101 throw __dom_wrap_exception(e);
102 } 102 }
103 } 103 }
104 104
105 function native__ArrayBufferViewWrappingImplementation__get__ArrayBufferView_byt eOffset(_this) { 105 function native__ArrayBufferViewWrappingImplementation__get_byteOffset(_this) {
106 try { 106 try {
107 return __dom_wrap(_this.$dom.byteOffset); 107 return __dom_wrap(_this.$dom.byteOffset);
108 } catch (e) { 108 } catch (e) {
109 throw __dom_wrap_exception(e); 109 throw __dom_wrap_exception(e);
110 } 110 }
111 } 111 }
112 112
113 function native__AttrWrappingImplementation__get__Attr_isId(_this) { 113 function native__AttrWrappingImplementation__get_isId(_this) {
114 try { 114 try {
115 return __dom_wrap(_this.$dom.isId); 115 return __dom_wrap(_this.$dom.isId);
116 } catch (e) { 116 } catch (e) {
117 throw __dom_wrap_exception(e); 117 throw __dom_wrap_exception(e);
118 } 118 }
119 } 119 }
120 120
121 function native__AttrWrappingImplementation__get__Attr_name(_this) { 121 function native__AttrWrappingImplementation__get_name(_this) {
122 try { 122 try {
123 return __dom_wrap(_this.$dom.name); 123 return __dom_wrap(_this.$dom.name);
124 } catch (e) { 124 } catch (e) {
125 throw __dom_wrap_exception(e); 125 throw __dom_wrap_exception(e);
126 } 126 }
127 } 127 }
128 128
129 function native__AttrWrappingImplementation__get__Attr_ownerElement(_this) { 129 function native__AttrWrappingImplementation__get_ownerElement(_this) {
130 try { 130 try {
131 return __dom_wrap(_this.$dom.ownerElement); 131 return __dom_wrap(_this.$dom.ownerElement);
132 } catch (e) { 132 } catch (e) {
133 throw __dom_wrap_exception(e); 133 throw __dom_wrap_exception(e);
134 } 134 }
135 } 135 }
136 136
137 function native__AttrWrappingImplementation__get__Attr_specified(_this) { 137 function native__AttrWrappingImplementation__get_specified(_this) {
138 try { 138 try {
139 return __dom_wrap(_this.$dom.specified); 139 return __dom_wrap(_this.$dom.specified);
140 } catch (e) { 140 } catch (e) {
141 throw __dom_wrap_exception(e); 141 throw __dom_wrap_exception(e);
142 } 142 }
143 } 143 }
144 144
145 function native__AttrWrappingImplementation__get__Attr_value(_this) { 145 function native__AttrWrappingImplementation__get_value(_this) {
146 try { 146 try {
147 return __dom_wrap(_this.$dom.value); 147 return __dom_wrap(_this.$dom.value);
148 } catch (e) { 148 } catch (e) {
149 throw __dom_wrap_exception(e); 149 throw __dom_wrap_exception(e);
150 } 150 }
151 } 151 }
152 152
153 function native__AttrWrappingImplementation__set__Attr_value(_this, value) { 153 function native__AttrWrappingImplementation__set_value(_this, value) {
154 try { 154 try {
155 _this.$dom.value = __dom_unwrap(value); 155 _this.$dom.value = __dom_unwrap(value);
156 } catch (e) { 156 } catch (e) {
157 throw __dom_wrap_exception(e); 157 throw __dom_wrap_exception(e);
158 } 158 }
159 } 159 }
160 160
161 function native__BarInfoWrappingImplementation__get__BarInfo_visible(_this) { 161 function native__BarInfoWrappingImplementation__get_visible(_this) {
162 try { 162 try {
163 return __dom_wrap(_this.$dom.visible); 163 return __dom_wrap(_this.$dom.visible);
164 } catch (e) { 164 } catch (e) {
165 throw __dom_wrap_exception(e); 165 throw __dom_wrap_exception(e);
166 } 166 }
167 } 167 }
168 168
169 function native__BeforeLoadEventWrappingImplementation__get__BeforeLoadEvent_url (_this) { 169 function native__BeforeLoadEventWrappingImplementation__get_url(_this) {
170 try { 170 try {
171 return __dom_wrap(_this.$dom.url); 171 return __dom_wrap(_this.$dom.url);
172 } catch (e) { 172 } catch (e) {
173 throw __dom_wrap_exception(e); 173 throw __dom_wrap_exception(e);
174 } 174 }
175 } 175 }
176 176
177 function native__BeforeLoadEventWrappingImplementation__initBeforeLoadEvent(_thi s, type, canBubble, cancelable, url) { 177 function native__BeforeLoadEventWrappingImplementation__initBeforeLoadEvent(_thi s, type, canBubble, cancelable, url) {
178 try { 178 try {
179 return __dom_wrap(_this.$dom.initBeforeLoadEvent(__dom_unwrap(type), __dom_u nwrap(canBubble), __dom_unwrap(cancelable), __dom_unwrap(url))); 179 return __dom_wrap(_this.$dom.initBeforeLoadEvent(__dom_unwrap(type), __dom_u nwrap(canBubble), __dom_unwrap(cancelable), __dom_unwrap(url)));
180 } catch (e) { 180 } catch (e) {
181 throw __dom_wrap_exception(e); 181 throw __dom_wrap_exception(e);
182 } 182 }
183 } 183 }
184 184
185 function native__BlobWrappingImplementation__get__Blob_size(_this) { 185 function native__BlobWrappingImplementation__get_size(_this) {
186 try { 186 try {
187 return __dom_wrap(_this.$dom.size); 187 return __dom_wrap(_this.$dom.size);
188 } catch (e) { 188 } catch (e) {
189 throw __dom_wrap_exception(e); 189 throw __dom_wrap_exception(e);
190 } 190 }
191 } 191 }
192 192
193 function native__BlobWrappingImplementation__get__Blob_type(_this) { 193 function native__BlobWrappingImplementation__get_type(_this) {
194 try { 194 try {
195 return __dom_wrap(_this.$dom.type); 195 return __dom_wrap(_this.$dom.type);
196 } catch (e) { 196 } catch (e) {
197 throw __dom_wrap_exception(e); 197 throw __dom_wrap_exception(e);
198 } 198 }
199 } 199 }
200 200
201 function native__CSSCharsetRuleWrappingImplementation__get__CSSCharsetRule_encod ing(_this) { 201 function native__CSSCharsetRuleWrappingImplementation__get_encoding(_this) {
202 try { 202 try {
203 return __dom_wrap(_this.$dom.encoding); 203 return __dom_wrap(_this.$dom.encoding);
204 } catch (e) { 204 } catch (e) {
205 throw __dom_wrap_exception(e); 205 throw __dom_wrap_exception(e);
206 } 206 }
207 } 207 }
208 208
209 function native__CSSCharsetRuleWrappingImplementation__set__CSSCharsetRule_encod ing(_this, value) { 209 function native__CSSCharsetRuleWrappingImplementation__set_encoding(_this, value ) {
210 try { 210 try {
211 _this.$dom.encoding = __dom_unwrap(value); 211 _this.$dom.encoding = __dom_unwrap(value);
212 } catch (e) { 212 } catch (e) {
213 throw __dom_wrap_exception(e); 213 throw __dom_wrap_exception(e);
214 } 214 }
215 } 215 }
216 216
217 function native__CSSFontFaceRuleWrappingImplementation__get__CSSFontFaceRule_sty le(_this) { 217 function native__CSSFontFaceRuleWrappingImplementation__get_style(_this) {
218 try { 218 try {
219 return __dom_wrap(_this.$dom.style); 219 return __dom_wrap(_this.$dom.style);
220 } catch (e) { 220 } catch (e) {
221 throw __dom_wrap_exception(e); 221 throw __dom_wrap_exception(e);
222 } 222 }
223 } 223 }
224 224
225 function native__CSSImportRuleWrappingImplementation__get__CSSImportRule_href(_t his) { 225 function native__CSSImportRuleWrappingImplementation__get_href(_this) {
226 try { 226 try {
227 return __dom_wrap(_this.$dom.href); 227 return __dom_wrap(_this.$dom.href);
228 } catch (e) { 228 } catch (e) {
229 throw __dom_wrap_exception(e); 229 throw __dom_wrap_exception(e);
230 } 230 }
231 } 231 }
232 232
233 function native__CSSImportRuleWrappingImplementation__get__CSSImportRule_media(_ this) { 233 function native__CSSImportRuleWrappingImplementation__get_media(_this) {
234 try { 234 try {
235 return __dom_wrap(_this.$dom.media); 235 return __dom_wrap(_this.$dom.media);
236 } catch (e) { 236 } catch (e) {
237 throw __dom_wrap_exception(e); 237 throw __dom_wrap_exception(e);
238 } 238 }
239 } 239 }
240 240
241 function native__CSSImportRuleWrappingImplementation__get__CSSImportRule_styleSh eet(_this) { 241 function native__CSSImportRuleWrappingImplementation__get_styleSheet(_this) {
242 try { 242 try {
243 return __dom_wrap(_this.$dom.styleSheet); 243 return __dom_wrap(_this.$dom.styleSheet);
244 } catch (e) { 244 } catch (e) {
245 throw __dom_wrap_exception(e); 245 throw __dom_wrap_exception(e);
246 } 246 }
247 } 247 }
248 248
249 function native__CSSMediaRuleWrappingImplementation__get__CSSMediaRule_cssRules( _this) { 249 function native__CSSMediaRuleWrappingImplementation__get_cssRules(_this) {
250 try { 250 try {
251 return __dom_wrap(_this.$dom.cssRules); 251 return __dom_wrap(_this.$dom.cssRules);
252 } catch (e) { 252 } catch (e) {
253 throw __dom_wrap_exception(e); 253 throw __dom_wrap_exception(e);
254 } 254 }
255 } 255 }
256 256
257 function native__CSSMediaRuleWrappingImplementation__get__CSSMediaRule_media(_th is) { 257 function native__CSSMediaRuleWrappingImplementation__get_media(_this) {
258 try { 258 try {
259 return __dom_wrap(_this.$dom.media); 259 return __dom_wrap(_this.$dom.media);
260 } catch (e) { 260 } catch (e) {
261 throw __dom_wrap_exception(e); 261 throw __dom_wrap_exception(e);
262 } 262 }
263 } 263 }
264 264
265 function native__CSSMediaRuleWrappingImplementation__deleteRule(_this, index) { 265 function native__CSSMediaRuleWrappingImplementation__deleteRule(_this, index) {
266 try { 266 try {
267 return __dom_wrap(_this.$dom.deleteRule(__dom_unwrap(index))); 267 return __dom_wrap(_this.$dom.deleteRule(__dom_unwrap(index)));
268 } catch (e) { 268 } catch (e) {
269 throw __dom_wrap_exception(e); 269 throw __dom_wrap_exception(e);
270 } 270 }
271 } 271 }
272 272
273 function native__CSSMediaRuleWrappingImplementation__insertRule(_this, rule, ind ex) { 273 function native__CSSMediaRuleWrappingImplementation__insertRule(_this, rule, ind ex) {
274 try { 274 try {
275 return __dom_wrap(_this.$dom.insertRule(__dom_unwrap(rule), __dom_unwrap(ind ex))); 275 return __dom_wrap(_this.$dom.insertRule(__dom_unwrap(rule), __dom_unwrap(ind ex)));
276 } catch (e) { 276 } catch (e) {
277 throw __dom_wrap_exception(e); 277 throw __dom_wrap_exception(e);
278 } 278 }
279 } 279 }
280 280
281 function native__CSSPageRuleWrappingImplementation__get__CSSPageRule_selectorTex t(_this) { 281 function native__CSSPageRuleWrappingImplementation__get_selectorText(_this) {
282 try { 282 try {
283 return __dom_wrap(_this.$dom.selectorText); 283 return __dom_wrap(_this.$dom.selectorText);
284 } catch (e) { 284 } catch (e) {
285 throw __dom_wrap_exception(e); 285 throw __dom_wrap_exception(e);
286 } 286 }
287 } 287 }
288 288
289 function native__CSSPageRuleWrappingImplementation__set__CSSPageRule_selectorTex t(_this, value) { 289 function native__CSSPageRuleWrappingImplementation__set_selectorText(_this, valu e) {
290 try { 290 try {
291 _this.$dom.selectorText = __dom_unwrap(value); 291 _this.$dom.selectorText = __dom_unwrap(value);
292 } catch (e) { 292 } catch (e) {
293 throw __dom_wrap_exception(e); 293 throw __dom_wrap_exception(e);
294 } 294 }
295 } 295 }
296 296
297 function native__CSSPageRuleWrappingImplementation__get__CSSPageRule_style(_this ) { 297 function native__CSSPageRuleWrappingImplementation__get_style(_this) {
298 try { 298 try {
299 return __dom_wrap(_this.$dom.style); 299 return __dom_wrap(_this.$dom.style);
300 } catch (e) { 300 } catch (e) {
301 throw __dom_wrap_exception(e); 301 throw __dom_wrap_exception(e);
302 } 302 }
303 } 303 }
304 304
305 function native__CSSPrimitiveValueWrappingImplementation__get__CSSPrimitiveValue _primitiveType(_this) { 305 function native__CSSPrimitiveValueWrappingImplementation__get_primitiveType(_thi s) {
306 try { 306 try {
307 return __dom_wrap(_this.$dom.primitiveType); 307 return __dom_wrap(_this.$dom.primitiveType);
308 } catch (e) { 308 } catch (e) {
309 throw __dom_wrap_exception(e); 309 throw __dom_wrap_exception(e);
310 } 310 }
311 } 311 }
312 312
313 function native__CSSPrimitiveValueWrappingImplementation__getCounterValue(_this) { 313 function native__CSSPrimitiveValueWrappingImplementation__getCounterValue(_this) {
314 try { 314 try {
315 return __dom_wrap(_this.$dom.getCounterValue()); 315 return __dom_wrap(_this.$dom.getCounterValue());
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
359 } 359 }
360 360
361 function native__CSSPrimitiveValueWrappingImplementation__setStringValue(_this, stringType, stringValue) { 361 function native__CSSPrimitiveValueWrappingImplementation__setStringValue(_this, stringType, stringValue) {
362 try { 362 try {
363 return __dom_wrap(_this.$dom.setStringValue(__dom_unwrap(stringType), __dom_ unwrap(stringValue))); 363 return __dom_wrap(_this.$dom.setStringValue(__dom_unwrap(stringType), __dom_ unwrap(stringValue)));
364 } catch (e) { 364 } catch (e) {
365 throw __dom_wrap_exception(e); 365 throw __dom_wrap_exception(e);
366 } 366 }
367 } 367 }
368 368
369 function native__CSSRuleWrappingImplementation__get__CSSRule_cssText(_this) { 369 function native__CSSRuleWrappingImplementation__get_cssText(_this) {
370 try { 370 try {
371 return __dom_wrap(_this.$dom.cssText); 371 return __dom_wrap(_this.$dom.cssText);
372 } catch (e) { 372 } catch (e) {
373 throw __dom_wrap_exception(e); 373 throw __dom_wrap_exception(e);
374 } 374 }
375 } 375 }
376 376
377 function native__CSSRuleWrappingImplementation__set__CSSRule_cssText(_this, valu e) { 377 function native__CSSRuleWrappingImplementation__set_cssText(_this, value) {
378 try { 378 try {
379 _this.$dom.cssText = __dom_unwrap(value); 379 _this.$dom.cssText = __dom_unwrap(value);
380 } catch (e) { 380 } catch (e) {
381 throw __dom_wrap_exception(e); 381 throw __dom_wrap_exception(e);
382 } 382 }
383 } 383 }
384 384
385 function native__CSSRuleWrappingImplementation__get__CSSRule_parentRule(_this) { 385 function native__CSSRuleWrappingImplementation__get_parentRule(_this) {
386 try { 386 try {
387 return __dom_wrap(_this.$dom.parentRule); 387 return __dom_wrap(_this.$dom.parentRule);
388 } catch (e) { 388 } catch (e) {
389 throw __dom_wrap_exception(e); 389 throw __dom_wrap_exception(e);
390 } 390 }
391 } 391 }
392 392
393 function native__CSSRuleWrappingImplementation__get__CSSRule_parentStyleSheet(_t his) { 393 function native__CSSRuleWrappingImplementation__get_parentStyleSheet(_this) {
394 try { 394 try {
395 return __dom_wrap(_this.$dom.parentStyleSheet); 395 return __dom_wrap(_this.$dom.parentStyleSheet);
396 } catch (e) { 396 } catch (e) {
397 throw __dom_wrap_exception(e); 397 throw __dom_wrap_exception(e);
398 } 398 }
399 } 399 }
400 400
401 function native__CSSRuleWrappingImplementation__get__CSSRule_type(_this) { 401 function native__CSSRuleWrappingImplementation__get_type(_this) {
402 try { 402 try {
403 return __dom_wrap(_this.$dom.type); 403 return __dom_wrap(_this.$dom.type);
404 } catch (e) { 404 } catch (e) {
405 throw __dom_wrap_exception(e); 405 throw __dom_wrap_exception(e);
406 } 406 }
407 } 407 }
408 408
409 function native__CSSRuleListWrappingImplementation__get__CSSRuleList_length(_thi s) { 409 function native__CSSRuleListWrappingImplementation__get_length(_this) {
410 try { 410 try {
411 return __dom_wrap(_this.$dom.length); 411 return __dom_wrap(_this.$dom.length);
412 } catch (e) { 412 } catch (e) {
413 throw __dom_wrap_exception(e); 413 throw __dom_wrap_exception(e);
414 } 414 }
415 } 415 }
416 416
417 function native__CSSRuleListWrappingImplementation__item(_this, index) { 417 function native__CSSRuleListWrappingImplementation__item(_this, index) {
418 try { 418 try {
419 return __dom_wrap(_this.$dom.item(__dom_unwrap(index))); 419 return __dom_wrap(_this.$dom.item(__dom_unwrap(index)));
420 } catch (e) { 420 } catch (e) {
421 throw __dom_wrap_exception(e); 421 throw __dom_wrap_exception(e);
422 } 422 }
423 } 423 }
424 424
425 function native__CSSStyleDeclarationWrappingImplementation__get__CSSStyleDeclara tion_cssText(_this) { 425 function native__CSSStyleDeclarationWrappingImplementation__get_cssText(_this) {
426 try { 426 try {
427 return __dom_wrap(_this.$dom.cssText); 427 return __dom_wrap(_this.$dom.cssText);
428 } catch (e) { 428 } catch (e) {
429 throw __dom_wrap_exception(e); 429 throw __dom_wrap_exception(e);
430 } 430 }
431 } 431 }
432 432
433 function native__CSSStyleDeclarationWrappingImplementation__set__CSSStyleDeclara tion_cssText(_this, value) { 433 function native__CSSStyleDeclarationWrappingImplementation__set_cssText(_this, v alue) {
434 try { 434 try {
435 _this.$dom.cssText = __dom_unwrap(value); 435 _this.$dom.cssText = __dom_unwrap(value);
436 } catch (e) { 436 } catch (e) {
437 throw __dom_wrap_exception(e); 437 throw __dom_wrap_exception(e);
438 } 438 }
439 } 439 }
440 440
441 function native__CSSStyleDeclarationWrappingImplementation__get__CSSStyleDeclara tion_length(_this) { 441 function native__CSSStyleDeclarationWrappingImplementation__get_length(_this) {
442 try { 442 try {
443 return __dom_wrap(_this.$dom.length); 443 return __dom_wrap(_this.$dom.length);
444 } catch (e) { 444 } catch (e) {
445 throw __dom_wrap_exception(e); 445 throw __dom_wrap_exception(e);
446 } 446 }
447 } 447 }
448 448
449 function native__CSSStyleDeclarationWrappingImplementation__get__CSSStyleDeclara tion_parentRule(_this) { 449 function native__CSSStyleDeclarationWrappingImplementation__get_parentRule(_this ) {
450 try { 450 try {
451 return __dom_wrap(_this.$dom.parentRule); 451 return __dom_wrap(_this.$dom.parentRule);
452 } catch (e) { 452 } catch (e) {
453 throw __dom_wrap_exception(e); 453 throw __dom_wrap_exception(e);
454 } 454 }
455 } 455 }
456 456
457 function native__CSSStyleDeclarationWrappingImplementation__getPropertyCSSValue( _this, propertyName) { 457 function native__CSSStyleDeclarationWrappingImplementation__getPropertyCSSValue( _this, propertyName) {
458 try { 458 try {
459 return __dom_wrap(_this.$dom.getPropertyCSSValue(__dom_unwrap(propertyName)) ); 459 return __dom_wrap(_this.$dom.getPropertyCSSValue(__dom_unwrap(propertyName)) );
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
519 } 519 }
520 520
521 function native__CSSStyleDeclarationWrappingImplementation__setProperty_2(_this, propertyName, value, priority) { 521 function native__CSSStyleDeclarationWrappingImplementation__setProperty_2(_this, propertyName, value, priority) {
522 try { 522 try {
523 return __dom_wrap(_this.$dom.setProperty(__dom_unwrap(propertyName), __dom_u nwrap(value), __dom_unwrap(priority))); 523 return __dom_wrap(_this.$dom.setProperty(__dom_unwrap(propertyName), __dom_u nwrap(value), __dom_unwrap(priority)));
524 } catch (e) { 524 } catch (e) {
525 throw __dom_wrap_exception(e); 525 throw __dom_wrap_exception(e);
526 } 526 }
527 } 527 }
528 528
529 function native__CSSStyleRuleWrappingImplementation__get__CSSStyleRule_selectorT ext(_this) { 529 function native__CSSStyleRuleWrappingImplementation__get_selectorText(_this) {
530 try { 530 try {
531 return __dom_wrap(_this.$dom.selectorText); 531 return __dom_wrap(_this.$dom.selectorText);
532 } catch (e) { 532 } catch (e) {
533 throw __dom_wrap_exception(e); 533 throw __dom_wrap_exception(e);
534 } 534 }
535 } 535 }
536 536
537 function native__CSSStyleRuleWrappingImplementation__set__CSSStyleRule_selectorT ext(_this, value) { 537 function native__CSSStyleRuleWrappingImplementation__set_selectorText(_this, val ue) {
538 try { 538 try {
539 _this.$dom.selectorText = __dom_unwrap(value); 539 _this.$dom.selectorText = __dom_unwrap(value);
540 } catch (e) { 540 } catch (e) {
541 throw __dom_wrap_exception(e); 541 throw __dom_wrap_exception(e);
542 } 542 }
543 } 543 }
544 544
545 function native__CSSStyleRuleWrappingImplementation__get__CSSStyleRule_style(_th is) { 545 function native__CSSStyleRuleWrappingImplementation__get_style(_this) {
546 try { 546 try {
547 return __dom_wrap(_this.$dom.style); 547 return __dom_wrap(_this.$dom.style);
548 } catch (e) { 548 } catch (e) {
549 throw __dom_wrap_exception(e); 549 throw __dom_wrap_exception(e);
550 } 550 }
551 } 551 }
552 552
553 function native__CSSStyleSheetWrappingImplementation__get__CSSStyleSheet_cssRule s(_this) { 553 function native__CSSStyleSheetWrappingImplementation__get_cssRules(_this) {
554 try { 554 try {
555 return __dom_wrap(_this.$dom.cssRules); 555 return __dom_wrap(_this.$dom.cssRules);
556 } catch (e) { 556 } catch (e) {
557 throw __dom_wrap_exception(e); 557 throw __dom_wrap_exception(e);
558 } 558 }
559 } 559 }
560 560
561 function native__CSSStyleSheetWrappingImplementation__get__CSSStyleSheet_ownerRu le(_this) { 561 function native__CSSStyleSheetWrappingImplementation__get_ownerRule(_this) {
562 try { 562 try {
563 return __dom_wrap(_this.$dom.ownerRule); 563 return __dom_wrap(_this.$dom.ownerRule);
564 } catch (e) { 564 } catch (e) {
565 throw __dom_wrap_exception(e); 565 throw __dom_wrap_exception(e);
566 } 566 }
567 } 567 }
568 568
569 function native__CSSStyleSheetWrappingImplementation__get__CSSStyleSheet_rules(_ this) { 569 function native__CSSStyleSheetWrappingImplementation__get_rules(_this) {
570 try { 570 try {
571 return __dom_wrap(_this.$dom.rules); 571 return __dom_wrap(_this.$dom.rules);
572 } catch (e) { 572 } catch (e) {
573 throw __dom_wrap_exception(e); 573 throw __dom_wrap_exception(e);
574 } 574 }
575 } 575 }
576 576
577 function native__CSSStyleSheetWrappingImplementation__addRule(_this, selector, s tyle) { 577 function native__CSSStyleSheetWrappingImplementation__addRule(_this, selector, s tyle) {
578 try { 578 try {
579 return __dom_wrap(_this.$dom.addRule(__dom_unwrap(selector), __dom_unwrap(st yle))); 579 return __dom_wrap(_this.$dom.addRule(__dom_unwrap(selector), __dom_unwrap(st yle)));
(...skipping 27 matching lines...) Expand all
607 } 607 }
608 608
609 function native__CSSStyleSheetWrappingImplementation__removeRule(_this, index) { 609 function native__CSSStyleSheetWrappingImplementation__removeRule(_this, index) {
610 try { 610 try {
611 return __dom_wrap(_this.$dom.removeRule(__dom_unwrap(index))); 611 return __dom_wrap(_this.$dom.removeRule(__dom_unwrap(index)));
612 } catch (e) { 612 } catch (e) {
613 throw __dom_wrap_exception(e); 613 throw __dom_wrap_exception(e);
614 } 614 }
615 } 615 }
616 616
617 function native__CSSValueWrappingImplementation__get__CSSValue_cssText(_this) { 617 function native__CSSValueWrappingImplementation__get_cssText(_this) {
618 try { 618 try {
619 return __dom_wrap(_this.$dom.cssText); 619 return __dom_wrap(_this.$dom.cssText);
620 } catch (e) { 620 } catch (e) {
621 throw __dom_wrap_exception(e); 621 throw __dom_wrap_exception(e);
622 } 622 }
623 } 623 }
624 624
625 function native__CSSValueWrappingImplementation__set__CSSValue_cssText(_this, va lue) { 625 function native__CSSValueWrappingImplementation__set_cssText(_this, value) {
626 try { 626 try {
627 _this.$dom.cssText = __dom_unwrap(value); 627 _this.$dom.cssText = __dom_unwrap(value);
628 } catch (e) { 628 } catch (e) {
629 throw __dom_wrap_exception(e); 629 throw __dom_wrap_exception(e);
630 } 630 }
631 } 631 }
632 632
633 function native__CSSValueWrappingImplementation__get__CSSValue_cssValueType(_thi s) { 633 function native__CSSValueWrappingImplementation__get_cssValueType(_this) {
634 try { 634 try {
635 return __dom_wrap(_this.$dom.cssValueType); 635 return __dom_wrap(_this.$dom.cssValueType);
636 } catch (e) { 636 } catch (e) {
637 throw __dom_wrap_exception(e); 637 throw __dom_wrap_exception(e);
638 } 638 }
639 } 639 }
640 640
641 function native__CSSValueListWrappingImplementation__get__CSSValueList_length(_t his) { 641 function native__CSSValueListWrappingImplementation__get_length(_this) {
642 try { 642 try {
643 return __dom_wrap(_this.$dom.length); 643 return __dom_wrap(_this.$dom.length);
644 } catch (e) { 644 } catch (e) {
645 throw __dom_wrap_exception(e); 645 throw __dom_wrap_exception(e);
646 } 646 }
647 } 647 }
648 648
649 function native__CSSValueListWrappingImplementation__item(_this, index) { 649 function native__CSSValueListWrappingImplementation__item(_this, index) {
650 try { 650 try {
651 return __dom_wrap(_this.$dom.item(__dom_unwrap(index))); 651 return __dom_wrap(_this.$dom.item(__dom_unwrap(index)));
652 } catch (e) { 652 } catch (e) {
653 throw __dom_wrap_exception(e); 653 throw __dom_wrap_exception(e);
654 } 654 }
655 } 655 }
656 656
657 function native__CanvasGradientWrappingImplementation__addColorStop(_this, offse t, color) { 657 function native__CanvasGradientWrappingImplementation__addColorStop(_this, offse t, color) {
658 try { 658 try {
659 return __dom_wrap(_this.$dom.addColorStop(__dom_unwrap(offset), __dom_unwrap (color))); 659 return __dom_wrap(_this.$dom.addColorStop(__dom_unwrap(offset), __dom_unwrap (color)));
660 } catch (e) { 660 } catch (e) {
661 throw __dom_wrap_exception(e); 661 throw __dom_wrap_exception(e);
662 } 662 }
663 } 663 }
664 664
665 function native__CanvasPixelArrayWrappingImplementation__get__CanvasPixelArray_l ength(_this) { 665 function native__CanvasPixelArrayWrappingImplementation__get_length(_this) {
666 try { 666 try {
667 return __dom_wrap(_this.$dom.length); 667 return __dom_wrap(_this.$dom.length);
668 } catch (e) { 668 } catch (e) {
669 throw __dom_wrap_exception(e); 669 throw __dom_wrap_exception(e);
670 } 670 }
671 } 671 }
672 672
673 function native__CanvasPixelArrayWrappingImplementation__item(_this, index) { 673 function native__CanvasPixelArrayWrappingImplementation__item(_this, index) {
674 try { 674 try {
675 return __dom_wrap(_this.$dom.item(__dom_unwrap(index))); 675 return __dom_wrap(_this.$dom.item(__dom_unwrap(index)));
676 } catch (e) { 676 } catch (e) {
677 throw __dom_wrap_exception(e); 677 throw __dom_wrap_exception(e);
678 } 678 }
679 } 679 }
680 680
681 function native__CanvasRenderingContextWrappingImplementation__get__CanvasRender ingContext_canvas(_this) { 681 function native__CanvasRenderingContextWrappingImplementation__get_canvas(_this) {
682 try { 682 try {
683 return __dom_wrap(_this.$dom.canvas); 683 return __dom_wrap(_this.$dom.canvas);
684 } catch (e) { 684 } catch (e) {
685 throw __dom_wrap_exception(e); 685 throw __dom_wrap_exception(e);
686 } 686 }
687 } 687 }
688 688
689 function native__CanvasRenderingContext2DWrappingImplementation__get__CanvasRend eringContext2D_fillStyle(_this) { 689 function native__CanvasRenderingContext2DWrappingImplementation__get_fillStyle(_ this) {
690 try { 690 try {
691 return __dom_wrap(_this.$dom.fillStyle); 691 return __dom_wrap(_this.$dom.fillStyle);
692 } catch (e) { 692 } catch (e) {
693 throw __dom_wrap_exception(e); 693 throw __dom_wrap_exception(e);
694 } 694 }
695 } 695 }
696 696
697 function native__CanvasRenderingContext2DWrappingImplementation__set__CanvasRend eringContext2D_fillStyle(_this, value) { 697 function native__CanvasRenderingContext2DWrappingImplementation__set_fillStyle(_ this, value) {
698 try { 698 try {
699 _this.$dom.fillStyle = __dom_unwrap(value); 699 _this.$dom.fillStyle = __dom_unwrap(value);
700 } catch (e) { 700 } catch (e) {
701 throw __dom_wrap_exception(e); 701 throw __dom_wrap_exception(e);
702 } 702 }
703 } 703 }
704 704
705 function native__CanvasRenderingContext2DWrappingImplementation__get__CanvasRend eringContext2D_font(_this) { 705 function native__CanvasRenderingContext2DWrappingImplementation__get_font(_this) {
706 try { 706 try {
707 return __dom_wrap(_this.$dom.font); 707 return __dom_wrap(_this.$dom.font);
708 } catch (e) { 708 } catch (e) {
709 throw __dom_wrap_exception(e); 709 throw __dom_wrap_exception(e);
710 } 710 }
711 } 711 }
712 712
713 function native__CanvasRenderingContext2DWrappingImplementation__set__CanvasRend eringContext2D_font(_this, value) { 713 function native__CanvasRenderingContext2DWrappingImplementation__set_font(_this, value) {
714 try { 714 try {
715 _this.$dom.font = __dom_unwrap(value); 715 _this.$dom.font = __dom_unwrap(value);
716 } catch (e) { 716 } catch (e) {
717 throw __dom_wrap_exception(e); 717 throw __dom_wrap_exception(e);
718 } 718 }
719 } 719 }
720 720
721 function native__CanvasRenderingContext2DWrappingImplementation__get__CanvasRend eringContext2D_globalAlpha(_this) { 721 function native__CanvasRenderingContext2DWrappingImplementation__get_globalAlpha (_this) {
722 try { 722 try {
723 return __dom_wrap(_this.$dom.globalAlpha); 723 return __dom_wrap(_this.$dom.globalAlpha);
724 } catch (e) { 724 } catch (e) {
725 throw __dom_wrap_exception(e); 725 throw __dom_wrap_exception(e);
726 } 726 }
727 } 727 }
728 728
729 function native__CanvasRenderingContext2DWrappingImplementation__set__CanvasRend eringContext2D_globalAlpha(_this, value) { 729 function native__CanvasRenderingContext2DWrappingImplementation__set_globalAlpha (_this, value) {
730 try { 730 try {
731 _this.$dom.globalAlpha = __dom_unwrap(value); 731 _this.$dom.globalAlpha = __dom_unwrap(value);
732 } catch (e) { 732 } catch (e) {
733 throw __dom_wrap_exception(e); 733 throw __dom_wrap_exception(e);
734 } 734 }
735 } 735 }
736 736
737 function native__CanvasRenderingContext2DWrappingImplementation__get__CanvasRend eringContext2D_globalCompositeOperation(_this) { 737 function native__CanvasRenderingContext2DWrappingImplementation__get_globalCompo siteOperation(_this) {
738 try { 738 try {
739 return __dom_wrap(_this.$dom.globalCompositeOperation); 739 return __dom_wrap(_this.$dom.globalCompositeOperation);
740 } catch (e) { 740 } catch (e) {
741 throw __dom_wrap_exception(e); 741 throw __dom_wrap_exception(e);
742 } 742 }
743 } 743 }
744 744
745 function native__CanvasRenderingContext2DWrappingImplementation__set__CanvasRend eringContext2D_globalCompositeOperation(_this, value) { 745 function native__CanvasRenderingContext2DWrappingImplementation__set_globalCompo siteOperation(_this, value) {
746 try { 746 try {
747 _this.$dom.globalCompositeOperation = __dom_unwrap(value); 747 _this.$dom.globalCompositeOperation = __dom_unwrap(value);
748 } catch (e) { 748 } catch (e) {
749 throw __dom_wrap_exception(e); 749 throw __dom_wrap_exception(e);
750 } 750 }
751 } 751 }
752 752
753 function native__CanvasRenderingContext2DWrappingImplementation__get__CanvasRend eringContext2D_lineCap(_this) { 753 function native__CanvasRenderingContext2DWrappingImplementation__get_lineCap(_th is) {
754 try { 754 try {
755 return __dom_wrap(_this.$dom.lineCap); 755 return __dom_wrap(_this.$dom.lineCap);
756 } catch (e) { 756 } catch (e) {
757 throw __dom_wrap_exception(e); 757 throw __dom_wrap_exception(e);
758 } 758 }
759 } 759 }
760 760
761 function native__CanvasRenderingContext2DWrappingImplementation__set__CanvasRend eringContext2D_lineCap(_this, value) { 761 function native__CanvasRenderingContext2DWrappingImplementation__set_lineCap(_th is, value) {
762 try { 762 try {
763 _this.$dom.lineCap = __dom_unwrap(value); 763 _this.$dom.lineCap = __dom_unwrap(value);
764 } catch (e) { 764 } catch (e) {
765 throw __dom_wrap_exception(e); 765 throw __dom_wrap_exception(e);
766 } 766 }
767 } 767 }
768 768
769 function native__CanvasRenderingContext2DWrappingImplementation__get__CanvasRend eringContext2D_lineJoin(_this) { 769 function native__CanvasRenderingContext2DWrappingImplementation__get_lineJoin(_t his) {
770 try { 770 try {
771 return __dom_wrap(_this.$dom.lineJoin); 771 return __dom_wrap(_this.$dom.lineJoin);
772 } catch (e) { 772 } catch (e) {
773 throw __dom_wrap_exception(e); 773 throw __dom_wrap_exception(e);
774 } 774 }
775 } 775 }
776 776
777 function native__CanvasRenderingContext2DWrappingImplementation__set__CanvasRend eringContext2D_lineJoin(_this, value) { 777 function native__CanvasRenderingContext2DWrappingImplementation__set_lineJoin(_t his, value) {
778 try { 778 try {
779 _this.$dom.lineJoin = __dom_unwrap(value); 779 _this.$dom.lineJoin = __dom_unwrap(value);
780 } catch (e) { 780 } catch (e) {
781 throw __dom_wrap_exception(e); 781 throw __dom_wrap_exception(e);
782 } 782 }
783 } 783 }
784 784
785 function native__CanvasRenderingContext2DWrappingImplementation__get__CanvasRend eringContext2D_lineWidth(_this) { 785 function native__CanvasRenderingContext2DWrappingImplementation__get_lineWidth(_ this) {
786 try { 786 try {
787 return __dom_wrap(_this.$dom.lineWidth); 787 return __dom_wrap(_this.$dom.lineWidth);
788 } catch (e) { 788 } catch (e) {
789 throw __dom_wrap_exception(e); 789 throw __dom_wrap_exception(e);
790 } 790 }
791 } 791 }
792 792
793 function native__CanvasRenderingContext2DWrappingImplementation__set__CanvasRend eringContext2D_lineWidth(_this, value) { 793 function native__CanvasRenderingContext2DWrappingImplementation__set_lineWidth(_ this, value) {
794 try { 794 try {
795 _this.$dom.lineWidth = __dom_unwrap(value); 795 _this.$dom.lineWidth = __dom_unwrap(value);
796 } catch (e) { 796 } catch (e) {
797 throw __dom_wrap_exception(e); 797 throw __dom_wrap_exception(e);
798 } 798 }
799 } 799 }
800 800
801 function native__CanvasRenderingContext2DWrappingImplementation__get__CanvasRend eringContext2D_miterLimit(_this) { 801 function native__CanvasRenderingContext2DWrappingImplementation__get_miterLimit( _this) {
802 try { 802 try {
803 return __dom_wrap(_this.$dom.miterLimit); 803 return __dom_wrap(_this.$dom.miterLimit);
804 } catch (e) { 804 } catch (e) {
805 throw __dom_wrap_exception(e); 805 throw __dom_wrap_exception(e);
806 } 806 }
807 } 807 }
808 808
809 function native__CanvasRenderingContext2DWrappingImplementation__set__CanvasRend eringContext2D_miterLimit(_this, value) { 809 function native__CanvasRenderingContext2DWrappingImplementation__set_miterLimit( _this, value) {
810 try { 810 try {
811 _this.$dom.miterLimit = __dom_unwrap(value); 811 _this.$dom.miterLimit = __dom_unwrap(value);
812 } catch (e) { 812 } catch (e) {
813 throw __dom_wrap_exception(e); 813 throw __dom_wrap_exception(e);
814 } 814 }
815 } 815 }
816 816
817 function native__CanvasRenderingContext2DWrappingImplementation__get__CanvasRend eringContext2D_shadowBlur(_this) { 817 function native__CanvasRenderingContext2DWrappingImplementation__get_shadowBlur( _this) {
818 try { 818 try {
819 return __dom_wrap(_this.$dom.shadowBlur); 819 return __dom_wrap(_this.$dom.shadowBlur);
820 } catch (e) { 820 } catch (e) {
821 throw __dom_wrap_exception(e); 821 throw __dom_wrap_exception(e);
822 } 822 }
823 } 823 }
824 824
825 function native__CanvasRenderingContext2DWrappingImplementation__set__CanvasRend eringContext2D_shadowBlur(_this, value) { 825 function native__CanvasRenderingContext2DWrappingImplementation__set_shadowBlur( _this, value) {
826 try { 826 try {
827 _this.$dom.shadowBlur = __dom_unwrap(value); 827 _this.$dom.shadowBlur = __dom_unwrap(value);
828 } catch (e) { 828 } catch (e) {
829 throw __dom_wrap_exception(e); 829 throw __dom_wrap_exception(e);
830 } 830 }
831 } 831 }
832 832
833 function native__CanvasRenderingContext2DWrappingImplementation__get__CanvasRend eringContext2D_shadowColor(_this) { 833 function native__CanvasRenderingContext2DWrappingImplementation__get_shadowColor (_this) {
834 try { 834 try {
835 return __dom_wrap(_this.$dom.shadowColor); 835 return __dom_wrap(_this.$dom.shadowColor);
836 } catch (e) { 836 } catch (e) {
837 throw __dom_wrap_exception(e); 837 throw __dom_wrap_exception(e);
838 } 838 }
839 } 839 }
840 840
841 function native__CanvasRenderingContext2DWrappingImplementation__set__CanvasRend eringContext2D_shadowColor(_this, value) { 841 function native__CanvasRenderingContext2DWrappingImplementation__set_shadowColor (_this, value) {
842 try { 842 try {
843 _this.$dom.shadowColor = __dom_unwrap(value); 843 _this.$dom.shadowColor = __dom_unwrap(value);
844 } catch (e) { 844 } catch (e) {
845 throw __dom_wrap_exception(e); 845 throw __dom_wrap_exception(e);
846 } 846 }
847 } 847 }
848 848
849 function native__CanvasRenderingContext2DWrappingImplementation__get__CanvasRend eringContext2D_shadowOffsetX(_this) { 849 function native__CanvasRenderingContext2DWrappingImplementation__get_shadowOffse tX(_this) {
850 try { 850 try {
851 return __dom_wrap(_this.$dom.shadowOffsetX); 851 return __dom_wrap(_this.$dom.shadowOffsetX);
852 } catch (e) { 852 } catch (e) {
853 throw __dom_wrap_exception(e); 853 throw __dom_wrap_exception(e);
854 } 854 }
855 } 855 }
856 856
857 function native__CanvasRenderingContext2DWrappingImplementation__set__CanvasRend eringContext2D_shadowOffsetX(_this, value) { 857 function native__CanvasRenderingContext2DWrappingImplementation__set_shadowOffse tX(_this, value) {
858 try { 858 try {
859 _this.$dom.shadowOffsetX = __dom_unwrap(value); 859 _this.$dom.shadowOffsetX = __dom_unwrap(value);
860 } catch (e) { 860 } catch (e) {
861 throw __dom_wrap_exception(e); 861 throw __dom_wrap_exception(e);
862 } 862 }
863 } 863 }
864 864
865 function native__CanvasRenderingContext2DWrappingImplementation__get__CanvasRend eringContext2D_shadowOffsetY(_this) { 865 function native__CanvasRenderingContext2DWrappingImplementation__get_shadowOffse tY(_this) {
866 try { 866 try {
867 return __dom_wrap(_this.$dom.shadowOffsetY); 867 return __dom_wrap(_this.$dom.shadowOffsetY);
868 } catch (e) { 868 } catch (e) {
869 throw __dom_wrap_exception(e); 869 throw __dom_wrap_exception(e);
870 } 870 }
871 } 871 }
872 872
873 function native__CanvasRenderingContext2DWrappingImplementation__set__CanvasRend eringContext2D_shadowOffsetY(_this, value) { 873 function native__CanvasRenderingContext2DWrappingImplementation__set_shadowOffse tY(_this, value) {
874 try { 874 try {
875 _this.$dom.shadowOffsetY = __dom_unwrap(value); 875 _this.$dom.shadowOffsetY = __dom_unwrap(value);
876 } catch (e) { 876 } catch (e) {
877 throw __dom_wrap_exception(e); 877 throw __dom_wrap_exception(e);
878 } 878 }
879 } 879 }
880 880
881 function native__CanvasRenderingContext2DWrappingImplementation__get__CanvasRend eringContext2D_strokeStyle(_this) { 881 function native__CanvasRenderingContext2DWrappingImplementation__get_strokeStyle (_this) {
882 try { 882 try {
883 return __dom_wrap(_this.$dom.strokeStyle); 883 return __dom_wrap(_this.$dom.strokeStyle);
884 } catch (e) { 884 } catch (e) {
885 throw __dom_wrap_exception(e); 885 throw __dom_wrap_exception(e);
886 } 886 }
887 } 887 }
888 888
889 function native__CanvasRenderingContext2DWrappingImplementation__set__CanvasRend eringContext2D_strokeStyle(_this, value) { 889 function native__CanvasRenderingContext2DWrappingImplementation__set_strokeStyle (_this, value) {
890 try { 890 try {
891 _this.$dom.strokeStyle = __dom_unwrap(value); 891 _this.$dom.strokeStyle = __dom_unwrap(value);
892 } catch (e) { 892 } catch (e) {
893 throw __dom_wrap_exception(e); 893 throw __dom_wrap_exception(e);
894 } 894 }
895 } 895 }
896 896
897 function native__CanvasRenderingContext2DWrappingImplementation__get__CanvasRend eringContext2D_textAlign(_this) { 897 function native__CanvasRenderingContext2DWrappingImplementation__get_textAlign(_ this) {
898 try { 898 try {
899 return __dom_wrap(_this.$dom.textAlign); 899 return __dom_wrap(_this.$dom.textAlign);
900 } catch (e) { 900 } catch (e) {
901 throw __dom_wrap_exception(e); 901 throw __dom_wrap_exception(e);
902 } 902 }
903 } 903 }
904 904
905 function native__CanvasRenderingContext2DWrappingImplementation__set__CanvasRend eringContext2D_textAlign(_this, value) { 905 function native__CanvasRenderingContext2DWrappingImplementation__set_textAlign(_ this, value) {
906 try { 906 try {
907 _this.$dom.textAlign = __dom_unwrap(value); 907 _this.$dom.textAlign = __dom_unwrap(value);
908 } catch (e) { 908 } catch (e) {
909 throw __dom_wrap_exception(e); 909 throw __dom_wrap_exception(e);
910 } 910 }
911 } 911 }
912 912
913 function native__CanvasRenderingContext2DWrappingImplementation__get__CanvasRend eringContext2D_textBaseline(_this) { 913 function native__CanvasRenderingContext2DWrappingImplementation__get_textBaselin e(_this) {
914 try { 914 try {
915 return __dom_wrap(_this.$dom.textBaseline); 915 return __dom_wrap(_this.$dom.textBaseline);
916 } catch (e) { 916 } catch (e) {
917 throw __dom_wrap_exception(e); 917 throw __dom_wrap_exception(e);
918 } 918 }
919 } 919 }
920 920
921 function native__CanvasRenderingContext2DWrappingImplementation__set__CanvasRend eringContext2D_textBaseline(_this, value) { 921 function native__CanvasRenderingContext2DWrappingImplementation__set_textBaselin e(_this, value) {
922 try { 922 try {
923 _this.$dom.textBaseline = __dom_unwrap(value); 923 _this.$dom.textBaseline = __dom_unwrap(value);
924 } catch (e) { 924 } catch (e) {
925 throw __dom_wrap_exception(e); 925 throw __dom_wrap_exception(e);
926 } 926 }
927 } 927 }
928 928
929 function native__CanvasRenderingContext2DWrappingImplementation__get__CanvasRend eringContext2D_webkitLineDash(_this) { 929 function native__CanvasRenderingContext2DWrappingImplementation__get_webkitLineD ash(_this) {
930 try { 930 try {
931 return __dom_wrap(_this.$dom.webkitLineDash); 931 return __dom_wrap(_this.$dom.webkitLineDash);
932 } catch (e) { 932 } catch (e) {
933 throw __dom_wrap_exception(e); 933 throw __dom_wrap_exception(e);
934 } 934 }
935 } 935 }
936 936
937 function native__CanvasRenderingContext2DWrappingImplementation__set__CanvasRend eringContext2D_webkitLineDash(_this, value) { 937 function native__CanvasRenderingContext2DWrappingImplementation__set_webkitLineD ash(_this, value) {
938 try { 938 try {
939 _this.$dom.webkitLineDash = __dom_unwrap(value); 939 _this.$dom.webkitLineDash = __dom_unwrap(value);
940 } catch (e) { 940 } catch (e) {
941 throw __dom_wrap_exception(e); 941 throw __dom_wrap_exception(e);
942 } 942 }
943 } 943 }
944 944
945 function native__CanvasRenderingContext2DWrappingImplementation__get__CanvasRend eringContext2D_webkitLineDashOffset(_this) { 945 function native__CanvasRenderingContext2DWrappingImplementation__get_webkitLineD ashOffset(_this) {
946 try { 946 try {
947 return __dom_wrap(_this.$dom.webkitLineDashOffset); 947 return __dom_wrap(_this.$dom.webkitLineDashOffset);
948 } catch (e) { 948 } catch (e) {
949 throw __dom_wrap_exception(e); 949 throw __dom_wrap_exception(e);
950 } 950 }
951 } 951 }
952 952
953 function native__CanvasRenderingContext2DWrappingImplementation__set__CanvasRend eringContext2D_webkitLineDashOffset(_this, value) { 953 function native__CanvasRenderingContext2DWrappingImplementation__set_webkitLineD ashOffset(_this, value) {
954 try { 954 try {
955 _this.$dom.webkitLineDashOffset = __dom_unwrap(value); 955 _this.$dom.webkitLineDashOffset = __dom_unwrap(value);
956 } catch (e) { 956 } catch (e) {
957 throw __dom_wrap_exception(e); 957 throw __dom_wrap_exception(e);
958 } 958 }
959 } 959 }
960 960
961 function native__CanvasRenderingContext2DWrappingImplementation__arc(_this, x, y , radius, startAngle, endAngle, anticlockwise) { 961 function native__CanvasRenderingContext2DWrappingImplementation__arc(_this, x, y , radius, startAngle, endAngle, anticlockwise) {
962 try { 962 try {
963 return __dom_wrap(_this.$dom.arc(__dom_unwrap(x), __dom_unwrap(y), __dom_unw rap(radius), __dom_unwrap(startAngle), __dom_unwrap(endAngle), __dom_unwrap(anti clockwise))); 963 return __dom_wrap(_this.$dom.arc(__dom_unwrap(x), __dom_unwrap(y), __dom_unw rap(radius), __dom_unwrap(startAngle), __dom_unwrap(endAngle), __dom_unwrap(anti clockwise)));
(...skipping 627 matching lines...) Expand 10 before | Expand all | Expand 10 after
1591 } 1591 }
1592 1592
1593 function native__CanvasRenderingContext2DWrappingImplementation__translate(_this , tx, ty) { 1593 function native__CanvasRenderingContext2DWrappingImplementation__translate(_this , tx, ty) {
1594 try { 1594 try {
1595 return __dom_wrap(_this.$dom.translate(__dom_unwrap(tx), __dom_unwrap(ty))); 1595 return __dom_wrap(_this.$dom.translate(__dom_unwrap(tx), __dom_unwrap(ty)));
1596 } catch (e) { 1596 } catch (e) {
1597 throw __dom_wrap_exception(e); 1597 throw __dom_wrap_exception(e);
1598 } 1598 }
1599 } 1599 }
1600 1600
1601 function native__CharacterDataWrappingImplementation__get__CharacterData_data(_t his) { 1601 function native__CharacterDataWrappingImplementation__get_data(_this) {
1602 try { 1602 try {
1603 return __dom_wrap(_this.$dom.data); 1603 return __dom_wrap(_this.$dom.data);
1604 } catch (e) { 1604 } catch (e) {
1605 throw __dom_wrap_exception(e); 1605 throw __dom_wrap_exception(e);
1606 } 1606 }
1607 } 1607 }
1608 1608
1609 function native__CharacterDataWrappingImplementation__set__CharacterData_data(_t his, value) { 1609 function native__CharacterDataWrappingImplementation__set_data(_this, value) {
1610 try { 1610 try {
1611 _this.$dom.data = __dom_unwrap(value); 1611 _this.$dom.data = __dom_unwrap(value);
1612 } catch (e) { 1612 } catch (e) {
1613 throw __dom_wrap_exception(e); 1613 throw __dom_wrap_exception(e);
1614 } 1614 }
1615 } 1615 }
1616 1616
1617 function native__CharacterDataWrappingImplementation__get__CharacterData_length( _this) { 1617 function native__CharacterDataWrappingImplementation__get_length(_this) {
1618 try { 1618 try {
1619 return __dom_wrap(_this.$dom.length); 1619 return __dom_wrap(_this.$dom.length);
1620 } catch (e) { 1620 } catch (e) {
1621 throw __dom_wrap_exception(e); 1621 throw __dom_wrap_exception(e);
1622 } 1622 }
1623 } 1623 }
1624 1624
1625 function native__CharacterDataWrappingImplementation__appendData(_this, data) { 1625 function native__CharacterDataWrappingImplementation__appendData(_this, data) {
1626 try { 1626 try {
1627 return __dom_wrap(_this.$dom.appendData(__dom_unwrap(data))); 1627 return __dom_wrap(_this.$dom.appendData(__dom_unwrap(data)));
(...skipping 27 matching lines...) Expand all
1655 } 1655 }
1656 1656
1657 function native__CharacterDataWrappingImplementation__substringData(_this, offse t, length) { 1657 function native__CharacterDataWrappingImplementation__substringData(_this, offse t, length) {
1658 try { 1658 try {
1659 return __dom_wrap(_this.$dom.substringData(__dom_unwrap(offset), __dom_unwra p(length))); 1659 return __dom_wrap(_this.$dom.substringData(__dom_unwrap(offset), __dom_unwra p(length)));
1660 } catch (e) { 1660 } catch (e) {
1661 throw __dom_wrap_exception(e); 1661 throw __dom_wrap_exception(e);
1662 } 1662 }
1663 } 1663 }
1664 1664
1665 function native__ClientRectWrappingImplementation__get__ClientRect_bottom(_this) { 1665 function native__ClientRectWrappingImplementation__get_bottom(_this) {
1666 try { 1666 try {
1667 return __dom_wrap(_this.$dom.bottom); 1667 return __dom_wrap(_this.$dom.bottom);
1668 } catch (e) { 1668 } catch (e) {
1669 throw __dom_wrap_exception(e); 1669 throw __dom_wrap_exception(e);
1670 } 1670 }
1671 } 1671 }
1672 1672
1673 function native__ClientRectWrappingImplementation__get__ClientRect_height(_this) { 1673 function native__ClientRectWrappingImplementation__get_height(_this) {
1674 try { 1674 try {
1675 return __dom_wrap(_this.$dom.height); 1675 return __dom_wrap(_this.$dom.height);
1676 } catch (e) { 1676 } catch (e) {
1677 throw __dom_wrap_exception(e); 1677 throw __dom_wrap_exception(e);
1678 } 1678 }
1679 } 1679 }
1680 1680
1681 function native__ClientRectWrappingImplementation__get__ClientRect_left(_this) { 1681 function native__ClientRectWrappingImplementation__get_left(_this) {
1682 try { 1682 try {
1683 return __dom_wrap(_this.$dom.left); 1683 return __dom_wrap(_this.$dom.left);
1684 } catch (e) { 1684 } catch (e) {
1685 throw __dom_wrap_exception(e); 1685 throw __dom_wrap_exception(e);
1686 } 1686 }
1687 } 1687 }
1688 1688
1689 function native__ClientRectWrappingImplementation__get__ClientRect_right(_this) { 1689 function native__ClientRectWrappingImplementation__get_right(_this) {
1690 try { 1690 try {
1691 return __dom_wrap(_this.$dom.right); 1691 return __dom_wrap(_this.$dom.right);
1692 } catch (e) { 1692 } catch (e) {
1693 throw __dom_wrap_exception(e); 1693 throw __dom_wrap_exception(e);
1694 } 1694 }
1695 } 1695 }
1696 1696
1697 function native__ClientRectWrappingImplementation__get__ClientRect_top(_this) { 1697 function native__ClientRectWrappingImplementation__get_top(_this) {
1698 try { 1698 try {
1699 return __dom_wrap(_this.$dom.top); 1699 return __dom_wrap(_this.$dom.top);
1700 } catch (e) { 1700 } catch (e) {
1701 throw __dom_wrap_exception(e); 1701 throw __dom_wrap_exception(e);
1702 } 1702 }
1703 } 1703 }
1704 1704
1705 function native__ClientRectWrappingImplementation__get__ClientRect_width(_this) { 1705 function native__ClientRectWrappingImplementation__get_width(_this) {
1706 try { 1706 try {
1707 return __dom_wrap(_this.$dom.width); 1707 return __dom_wrap(_this.$dom.width);
1708 } catch (e) { 1708 } catch (e) {
1709 throw __dom_wrap_exception(e); 1709 throw __dom_wrap_exception(e);
1710 } 1710 }
1711 } 1711 }
1712 1712
1713 function native__ClientRectListWrappingImplementation__get__ClientRectList_lengt h(_this) { 1713 function native__ClientRectListWrappingImplementation__get_length(_this) {
1714 try { 1714 try {
1715 return __dom_wrap(_this.$dom.length); 1715 return __dom_wrap(_this.$dom.length);
1716 } catch (e) { 1716 } catch (e) {
1717 throw __dom_wrap_exception(e); 1717 throw __dom_wrap_exception(e);
1718 } 1718 }
1719 } 1719 }
1720 1720
1721 function native__ClientRectListWrappingImplementation__item(_this, index) { 1721 function native__ClientRectListWrappingImplementation__item(_this, index) {
1722 try { 1722 try {
1723 return __dom_wrap(_this.$dom.item(__dom_unwrap(index))); 1723 return __dom_wrap(_this.$dom.item(__dom_unwrap(index)));
1724 } catch (e) { 1724 } catch (e) {
1725 throw __dom_wrap_exception(e); 1725 throw __dom_wrap_exception(e);
1726 } 1726 }
1727 } 1727 }
1728 1728
1729 function native__ClipboardWrappingImplementation__get__Clipboard_dropEffect(_thi s) { 1729 function native__ClipboardWrappingImplementation__get_dropEffect(_this) {
1730 try { 1730 try {
1731 return __dom_wrap(_this.$dom.dropEffect); 1731 return __dom_wrap(_this.$dom.dropEffect);
1732 } catch (e) { 1732 } catch (e) {
1733 throw __dom_wrap_exception(e); 1733 throw __dom_wrap_exception(e);
1734 } 1734 }
1735 } 1735 }
1736 1736
1737 function native__ClipboardWrappingImplementation__set__Clipboard_dropEffect(_thi s, value) { 1737 function native__ClipboardWrappingImplementation__set_dropEffect(_this, value) {
1738 try { 1738 try {
1739 _this.$dom.dropEffect = __dom_unwrap(value); 1739 _this.$dom.dropEffect = __dom_unwrap(value);
1740 } catch (e) { 1740 } catch (e) {
1741 throw __dom_wrap_exception(e); 1741 throw __dom_wrap_exception(e);
1742 } 1742 }
1743 } 1743 }
1744 1744
1745 function native__ClipboardWrappingImplementation__get__Clipboard_effectAllowed(_ this) { 1745 function native__ClipboardWrappingImplementation__get_effectAllowed(_this) {
1746 try { 1746 try {
1747 return __dom_wrap(_this.$dom.effectAllowed); 1747 return __dom_wrap(_this.$dom.effectAllowed);
1748 } catch (e) { 1748 } catch (e) {
1749 throw __dom_wrap_exception(e); 1749 throw __dom_wrap_exception(e);
1750 } 1750 }
1751 } 1751 }
1752 1752
1753 function native__ClipboardWrappingImplementation__set__Clipboard_effectAllowed(_ this, value) { 1753 function native__ClipboardWrappingImplementation__set_effectAllowed(_this, value ) {
1754 try { 1754 try {
1755 _this.$dom.effectAllowed = __dom_unwrap(value); 1755 _this.$dom.effectAllowed = __dom_unwrap(value);
1756 } catch (e) { 1756 } catch (e) {
1757 throw __dom_wrap_exception(e); 1757 throw __dom_wrap_exception(e);
1758 } 1758 }
1759 } 1759 }
1760 1760
1761 function native__ClipboardWrappingImplementation__get__Clipboard_files(_this) { 1761 function native__ClipboardWrappingImplementation__get_files(_this) {
1762 try { 1762 try {
1763 return __dom_wrap(_this.$dom.files); 1763 return __dom_wrap(_this.$dom.files);
1764 } catch (e) { 1764 } catch (e) {
1765 throw __dom_wrap_exception(e); 1765 throw __dom_wrap_exception(e);
1766 } 1766 }
1767 } 1767 }
1768 1768
1769 function native__ClipboardWrappingImplementation__get__Clipboard_items(_this) { 1769 function native__ClipboardWrappingImplementation__get_items(_this) {
1770 try { 1770 try {
1771 return __dom_wrap(_this.$dom.items); 1771 return __dom_wrap(_this.$dom.items);
1772 } catch (e) { 1772 } catch (e) {
1773 throw __dom_wrap_exception(e); 1773 throw __dom_wrap_exception(e);
1774 } 1774 }
1775 } 1775 }
1776 1776
1777 function native__ClipboardWrappingImplementation__get__Clipboard_types(_this) { 1777 function native__ClipboardWrappingImplementation__get_types(_this) {
1778 try { 1778 try {
1779 return __dom_wrap(_this.$dom.types); 1779 return __dom_wrap(_this.$dom.types);
1780 } catch (e) { 1780 } catch (e) {
1781 throw __dom_wrap_exception(e); 1781 throw __dom_wrap_exception(e);
1782 } 1782 }
1783 } 1783 }
1784 1784
1785 function native__ClipboardWrappingImplementation__clearData(_this) { 1785 function native__ClipboardWrappingImplementation__clearData(_this) {
1786 try { 1786 try {
1787 return __dom_wrap(_this.$dom.clearData()); 1787 return __dom_wrap(_this.$dom.clearData());
(...skipping 27 matching lines...) Expand all
1815 } 1815 }
1816 1816
1817 function native__ClipboardWrappingImplementation__setDragImage(_this, image, x, y) { 1817 function native__ClipboardWrappingImplementation__setDragImage(_this, image, x, y) {
1818 try { 1818 try {
1819 return __dom_wrap(_this.$dom.setDragImage(__dom_unwrap(image), __dom_unwrap( x), __dom_unwrap(y))); 1819 return __dom_wrap(_this.$dom.setDragImage(__dom_unwrap(image), __dom_unwrap( x), __dom_unwrap(y)));
1820 } catch (e) { 1820 } catch (e) {
1821 throw __dom_wrap_exception(e); 1821 throw __dom_wrap_exception(e);
1822 } 1822 }
1823 } 1823 }
1824 1824
1825 function native__CloseEventWrappingImplementation__get__CloseEvent_code(_this) { 1825 function native__CloseEventWrappingImplementation__get_code(_this) {
1826 try { 1826 try {
1827 return __dom_wrap(_this.$dom.code); 1827 return __dom_wrap(_this.$dom.code);
1828 } catch (e) { 1828 } catch (e) {
1829 throw __dom_wrap_exception(e); 1829 throw __dom_wrap_exception(e);
1830 } 1830 }
1831 } 1831 }
1832 1832
1833 function native__CloseEventWrappingImplementation__get__CloseEvent_reason(_this) { 1833 function native__CloseEventWrappingImplementation__get_reason(_this) {
1834 try { 1834 try {
1835 return __dom_wrap(_this.$dom.reason); 1835 return __dom_wrap(_this.$dom.reason);
1836 } catch (e) { 1836 } catch (e) {
1837 throw __dom_wrap_exception(e); 1837 throw __dom_wrap_exception(e);
1838 } 1838 }
1839 } 1839 }
1840 1840
1841 function native__CloseEventWrappingImplementation__get__CloseEvent_wasClean(_thi s) { 1841 function native__CloseEventWrappingImplementation__get_wasClean(_this) {
1842 try { 1842 try {
1843 return __dom_wrap(_this.$dom.wasClean); 1843 return __dom_wrap(_this.$dom.wasClean);
1844 } catch (e) { 1844 } catch (e) {
1845 throw __dom_wrap_exception(e); 1845 throw __dom_wrap_exception(e);
1846 } 1846 }
1847 } 1847 }
1848 1848
1849 function native__CloseEventWrappingImplementation__initCloseEvent(_this, typeArg , canBubbleArg, cancelableArg, wasCleanArg, codeArg, reasonArg) { 1849 function native__CloseEventWrappingImplementation__initCloseEvent(_this, typeArg , canBubbleArg, cancelableArg, wasCleanArg, codeArg, reasonArg) {
1850 try { 1850 try {
1851 return __dom_wrap(_this.$dom.initCloseEvent(__dom_unwrap(typeArg), __dom_unw rap(canBubbleArg), __dom_unwrap(cancelableArg), __dom_unwrap(wasCleanArg), __dom _unwrap(codeArg), __dom_unwrap(reasonArg))); 1851 return __dom_wrap(_this.$dom.initCloseEvent(__dom_unwrap(typeArg), __dom_unw rap(canBubbleArg), __dom_unwrap(cancelableArg), __dom_unwrap(wasCleanArg), __dom _unwrap(codeArg), __dom_unwrap(reasonArg)));
1852 } catch (e) { 1852 } catch (e) {
1853 throw __dom_wrap_exception(e); 1853 throw __dom_wrap_exception(e);
1854 } 1854 }
1855 } 1855 }
1856 1856
1857 function native__CompositionEventWrappingImplementation__get__CompositionEvent_d ata(_this) { 1857 function native__CompositionEventWrappingImplementation__get_data(_this) {
1858 try { 1858 try {
1859 return __dom_wrap(_this.$dom.data); 1859 return __dom_wrap(_this.$dom.data);
1860 } catch (e) { 1860 } catch (e) {
1861 throw __dom_wrap_exception(e); 1861 throw __dom_wrap_exception(e);
1862 } 1862 }
1863 } 1863 }
1864 1864
1865 function native__CompositionEventWrappingImplementation__initCompositionEvent(_t his, typeArg, canBubbleArg, cancelableArg, viewArg, dataArg) { 1865 function native__CompositionEventWrappingImplementation__initCompositionEvent(_t his, typeArg, canBubbleArg, cancelableArg, viewArg, dataArg) {
1866 try { 1866 try {
1867 return __dom_wrap(_this.$dom.initCompositionEvent(__dom_unwrap(typeArg), __d om_unwrap(canBubbleArg), __dom_unwrap(cancelableArg), __dom_unwrap(viewArg), __d om_unwrap(dataArg))); 1867 return __dom_wrap(_this.$dom.initCompositionEvent(__dom_unwrap(typeArg), __d om_unwrap(canBubbleArg), __dom_unwrap(cancelableArg), __dom_unwrap(viewArg), __d om_unwrap(dataArg)));
1868 } catch (e) { 1868 } catch (e) {
1869 throw __dom_wrap_exception(e); 1869 throw __dom_wrap_exception(e);
1870 } 1870 }
1871 } 1871 }
1872 1872
1873 function native__ConsoleWrappingImplementation__get__Console_memory(_this) { 1873 function native__ConsoleWrappingImplementation__get_memory(_this) {
1874 try { 1874 try {
1875 return __dom_wrap(_this.$dom.memory); 1875 return __dom_wrap(_this.$dom.memory);
1876 } catch (e) { 1876 } catch (e) {
1877 throw __dom_wrap_exception(e); 1877 throw __dom_wrap_exception(e);
1878 } 1878 }
1879 } 1879 }
1880 1880
1881 function native__ConsoleWrappingImplementation__assert(_this, condition) { 1881 function native__ConsoleWrappingImplementation__assert(_this, condition) {
1882 try { 1882 try {
1883 return __dom_wrap(_this.$dom.assertCondition(__dom_unwrap(condition))); 1883 return __dom_wrap(_this.$dom.assertCondition(__dom_unwrap(condition)));
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
2007 } 2007 }
2008 2008
2009 function native__ConsoleWrappingImplementation__warn(_this, arg) { 2009 function native__ConsoleWrappingImplementation__warn(_this, arg) {
2010 try { 2010 try {
2011 return __dom_wrap(_this.$dom.warn(__dom_unwrap(arg))); 2011 return __dom_wrap(_this.$dom.warn(__dom_unwrap(arg)));
2012 } catch (e) { 2012 } catch (e) {
2013 throw __dom_wrap_exception(e); 2013 throw __dom_wrap_exception(e);
2014 } 2014 }
2015 } 2015 }
2016 2016
2017 function native__CoordinatesWrappingImplementation__get__Coordinates_accuracy(_t his) { 2017 function native__CoordinatesWrappingImplementation__get_accuracy(_this) {
2018 try { 2018 try {
2019 return __dom_wrap(_this.$dom.accuracy); 2019 return __dom_wrap(_this.$dom.accuracy);
2020 } catch (e) { 2020 } catch (e) {
2021 throw __dom_wrap_exception(e); 2021 throw __dom_wrap_exception(e);
2022 } 2022 }
2023 } 2023 }
2024 2024
2025 function native__CoordinatesWrappingImplementation__get__Coordinates_altitude(_t his) { 2025 function native__CoordinatesWrappingImplementation__get_altitude(_this) {
2026 try { 2026 try {
2027 return __dom_wrap(_this.$dom.altitude); 2027 return __dom_wrap(_this.$dom.altitude);
2028 } catch (e) { 2028 } catch (e) {
2029 throw __dom_wrap_exception(e); 2029 throw __dom_wrap_exception(e);
2030 } 2030 }
2031 } 2031 }
2032 2032
2033 function native__CoordinatesWrappingImplementation__get__Coordinates_altitudeAcc uracy(_this) { 2033 function native__CoordinatesWrappingImplementation__get_altitudeAccuracy(_this) {
2034 try { 2034 try {
2035 return __dom_wrap(_this.$dom.altitudeAccuracy); 2035 return __dom_wrap(_this.$dom.altitudeAccuracy);
2036 } catch (e) { 2036 } catch (e) {
2037 throw __dom_wrap_exception(e); 2037 throw __dom_wrap_exception(e);
2038 } 2038 }
2039 } 2039 }
2040 2040
2041 function native__CoordinatesWrappingImplementation__get__Coordinates_heading(_th is) { 2041 function native__CoordinatesWrappingImplementation__get_heading(_this) {
2042 try { 2042 try {
2043 return __dom_wrap(_this.$dom.heading); 2043 return __dom_wrap(_this.$dom.heading);
2044 } catch (e) { 2044 } catch (e) {
2045 throw __dom_wrap_exception(e); 2045 throw __dom_wrap_exception(e);
2046 } 2046 }
2047 } 2047 }
2048 2048
2049 function native__CoordinatesWrappingImplementation__get__Coordinates_latitude(_t his) { 2049 function native__CoordinatesWrappingImplementation__get_latitude(_this) {
2050 try { 2050 try {
2051 return __dom_wrap(_this.$dom.latitude); 2051 return __dom_wrap(_this.$dom.latitude);
2052 } catch (e) { 2052 } catch (e) {
2053 throw __dom_wrap_exception(e); 2053 throw __dom_wrap_exception(e);
2054 } 2054 }
2055 } 2055 }
2056 2056
2057 function native__CoordinatesWrappingImplementation__get__Coordinates_longitude(_ this) { 2057 function native__CoordinatesWrappingImplementation__get_longitude(_this) {
2058 try { 2058 try {
2059 return __dom_wrap(_this.$dom.longitude); 2059 return __dom_wrap(_this.$dom.longitude);
2060 } catch (e) { 2060 } catch (e) {
2061 throw __dom_wrap_exception(e); 2061 throw __dom_wrap_exception(e);
2062 } 2062 }
2063 } 2063 }
2064 2064
2065 function native__CoordinatesWrappingImplementation__get__Coordinates_speed(_this ) { 2065 function native__CoordinatesWrappingImplementation__get_speed(_this) {
2066 try { 2066 try {
2067 return __dom_wrap(_this.$dom.speed); 2067 return __dom_wrap(_this.$dom.speed);
2068 } catch (e) { 2068 } catch (e) {
2069 throw __dom_wrap_exception(e); 2069 throw __dom_wrap_exception(e);
2070 } 2070 }
2071 } 2071 }
2072 2072
2073 function native__CounterWrappingImplementation__get__Counter_identifier(_this) { 2073 function native__CounterWrappingImplementation__get_identifier(_this) {
2074 try { 2074 try {
2075 return __dom_wrap(_this.$dom.identifier); 2075 return __dom_wrap(_this.$dom.identifier);
2076 } catch (e) { 2076 } catch (e) {
2077 throw __dom_wrap_exception(e); 2077 throw __dom_wrap_exception(e);
2078 } 2078 }
2079 } 2079 }
2080 2080
2081 function native__CounterWrappingImplementation__get__Counter_listStyle(_this) { 2081 function native__CounterWrappingImplementation__get_listStyle(_this) {
2082 try { 2082 try {
2083 return __dom_wrap(_this.$dom.listStyle); 2083 return __dom_wrap(_this.$dom.listStyle);
2084 } catch (e) { 2084 } catch (e) {
2085 throw __dom_wrap_exception(e); 2085 throw __dom_wrap_exception(e);
2086 } 2086 }
2087 } 2087 }
2088 2088
2089 function native__CounterWrappingImplementation__get__Counter_separator(_this) { 2089 function native__CounterWrappingImplementation__get_separator(_this) {
2090 try { 2090 try {
2091 return __dom_wrap(_this.$dom.separator); 2091 return __dom_wrap(_this.$dom.separator);
2092 } catch (e) { 2092 } catch (e) {
2093 throw __dom_wrap_exception(e); 2093 throw __dom_wrap_exception(e);
2094 } 2094 }
2095 } 2095 }
2096 2096
2097 function native__CryptoWrappingImplementation__getRandomValues(_this, array) { 2097 function native__CryptoWrappingImplementation__getRandomValues(_this, array) {
2098 try { 2098 try {
2099 return __dom_wrap(_this.$dom.getRandomValues(__dom_unwrap(array))); 2099 return __dom_wrap(_this.$dom.getRandomValues(__dom_unwrap(array)));
2100 } catch (e) { 2100 } catch (e) {
2101 throw __dom_wrap_exception(e); 2101 throw __dom_wrap_exception(e);
2102 } 2102 }
2103 } 2103 }
2104 2104
2105 function native__CustomEventWrappingImplementation__get__CustomEvent_detail(_thi s) { 2105 function native__CustomEventWrappingImplementation__get_detail(_this) {
2106 try { 2106 try {
2107 return __dom_wrap(_this.$dom.detail); 2107 return __dom_wrap(_this.$dom.detail);
2108 } catch (e) { 2108 } catch (e) {
2109 throw __dom_wrap_exception(e); 2109 throw __dom_wrap_exception(e);
2110 } 2110 }
2111 } 2111 }
2112 2112
2113 function native__CustomEventWrappingImplementation__initCustomEvent(_this, typeA rg, canBubbleArg, cancelableArg, detailArg) { 2113 function native__CustomEventWrappingImplementation__initCustomEvent(_this, typeA rg, canBubbleArg, cancelableArg, detailArg) {
2114 try { 2114 try {
2115 return __dom_wrap(_this.$dom.initCustomEvent(__dom_unwrap(typeArg), __dom_un wrap(canBubbleArg), __dom_unwrap(cancelableArg), __dom_unwrap(detailArg))); 2115 return __dom_wrap(_this.$dom.initCustomEvent(__dom_unwrap(typeArg), __dom_un wrap(canBubbleArg), __dom_unwrap(cancelableArg), __dom_unwrap(detailArg)));
2116 } catch (e) { 2116 } catch (e) {
2117 throw __dom_wrap_exception(e); 2117 throw __dom_wrap_exception(e);
2118 } 2118 }
2119 } 2119 }
2120 2120
2121 function native__DOMApplicationCacheWrappingImplementation__get__DOMApplicationC ache_oncached(_this) { 2121 function native__DOMApplicationCacheWrappingImplementation__get_oncached(_this) {
2122 try { 2122 try {
2123 return __dom_wrap(_this.$dom.oncached); 2123 return __dom_wrap(_this.$dom.oncached);
2124 } catch (e) { 2124 } catch (e) {
2125 throw __dom_wrap_exception(e); 2125 throw __dom_wrap_exception(e);
2126 } 2126 }
2127 } 2127 }
2128 2128
2129 function native__DOMApplicationCacheWrappingImplementation__set__DOMApplicationC ache_oncached(_this, value) { 2129 function native__DOMApplicationCacheWrappingImplementation__set_oncached(_this, value) {
2130 try { 2130 try {
2131 _this.$dom.oncached = __dom_unwrap(value); 2131 _this.$dom.oncached = __dom_unwrap(value);
2132 } catch (e) { 2132 } catch (e) {
2133 throw __dom_wrap_exception(e); 2133 throw __dom_wrap_exception(e);
2134 } 2134 }
2135 } 2135 }
2136 2136
2137 function native__DOMApplicationCacheWrappingImplementation__get__DOMApplicationC ache_onchecking(_this) { 2137 function native__DOMApplicationCacheWrappingImplementation__get_onchecking(_this ) {
2138 try { 2138 try {
2139 return __dom_wrap(_this.$dom.onchecking); 2139 return __dom_wrap(_this.$dom.onchecking);
2140 } catch (e) { 2140 } catch (e) {
2141 throw __dom_wrap_exception(e); 2141 throw __dom_wrap_exception(e);
2142 } 2142 }
2143 } 2143 }
2144 2144
2145 function native__DOMApplicationCacheWrappingImplementation__set__DOMApplicationC ache_onchecking(_this, value) { 2145 function native__DOMApplicationCacheWrappingImplementation__set_onchecking(_this , value) {
2146 try { 2146 try {
2147 _this.$dom.onchecking = __dom_unwrap(value); 2147 _this.$dom.onchecking = __dom_unwrap(value);
2148 } catch (e) { 2148 } catch (e) {
2149 throw __dom_wrap_exception(e); 2149 throw __dom_wrap_exception(e);
2150 } 2150 }
2151 } 2151 }
2152 2152
2153 function native__DOMApplicationCacheWrappingImplementation__get__DOMApplicationC ache_ondownloading(_this) { 2153 function native__DOMApplicationCacheWrappingImplementation__get_ondownloading(_t his) {
2154 try { 2154 try {
2155 return __dom_wrap(_this.$dom.ondownloading); 2155 return __dom_wrap(_this.$dom.ondownloading);
2156 } catch (e) { 2156 } catch (e) {
2157 throw __dom_wrap_exception(e); 2157 throw __dom_wrap_exception(e);
2158 } 2158 }
2159 } 2159 }
2160 2160
2161 function native__DOMApplicationCacheWrappingImplementation__set__DOMApplicationC ache_ondownloading(_this, value) { 2161 function native__DOMApplicationCacheWrappingImplementation__set_ondownloading(_t his, value) {
2162 try { 2162 try {
2163 _this.$dom.ondownloading = __dom_unwrap(value); 2163 _this.$dom.ondownloading = __dom_unwrap(value);
2164 } catch (e) { 2164 } catch (e) {
2165 throw __dom_wrap_exception(e); 2165 throw __dom_wrap_exception(e);
2166 } 2166 }
2167 } 2167 }
2168 2168
2169 function native__DOMApplicationCacheWrappingImplementation__get__DOMApplicationC ache_onerror(_this) { 2169 function native__DOMApplicationCacheWrappingImplementation__get_onerror(_this) {
2170 try { 2170 try {
2171 return __dom_wrap(_this.$dom.onerror); 2171 return __dom_wrap(_this.$dom.onerror);
2172 } catch (e) { 2172 } catch (e) {
2173 throw __dom_wrap_exception(e); 2173 throw __dom_wrap_exception(e);
2174 } 2174 }
2175 } 2175 }
2176 2176
2177 function native__DOMApplicationCacheWrappingImplementation__set__DOMApplicationC ache_onerror(_this, value) { 2177 function native__DOMApplicationCacheWrappingImplementation__set_onerror(_this, v alue) {
2178 try { 2178 try {
2179 _this.$dom.onerror = __dom_unwrap(value); 2179 _this.$dom.onerror = __dom_unwrap(value);
2180 } catch (e) { 2180 } catch (e) {
2181 throw __dom_wrap_exception(e); 2181 throw __dom_wrap_exception(e);
2182 } 2182 }
2183 } 2183 }
2184 2184
2185 function native__DOMApplicationCacheWrappingImplementation__get__DOMApplicationC ache_onnoupdate(_this) { 2185 function native__DOMApplicationCacheWrappingImplementation__get_onnoupdate(_this ) {
2186 try { 2186 try {
2187 return __dom_wrap(_this.$dom.onnoupdate); 2187 return __dom_wrap(_this.$dom.onnoupdate);
2188 } catch (e) { 2188 } catch (e) {
2189 throw __dom_wrap_exception(e); 2189 throw __dom_wrap_exception(e);
2190 } 2190 }
2191 } 2191 }
2192 2192
2193 function native__DOMApplicationCacheWrappingImplementation__set__DOMApplicationC ache_onnoupdate(_this, value) { 2193 function native__DOMApplicationCacheWrappingImplementation__set_onnoupdate(_this , value) {
2194 try { 2194 try {
2195 _this.$dom.onnoupdate = __dom_unwrap(value); 2195 _this.$dom.onnoupdate = __dom_unwrap(value);
2196 } catch (e) { 2196 } catch (e) {
2197 throw __dom_wrap_exception(e); 2197 throw __dom_wrap_exception(e);
2198 } 2198 }
2199 } 2199 }
2200 2200
2201 function native__DOMApplicationCacheWrappingImplementation__get__DOMApplicationC ache_onobsolete(_this) { 2201 function native__DOMApplicationCacheWrappingImplementation__get_onobsolete(_this ) {
2202 try { 2202 try {
2203 return __dom_wrap(_this.$dom.onobsolete); 2203 return __dom_wrap(_this.$dom.onobsolete);
2204 } catch (e) { 2204 } catch (e) {
2205 throw __dom_wrap_exception(e); 2205 throw __dom_wrap_exception(e);
2206 } 2206 }
2207 } 2207 }
2208 2208
2209 function native__DOMApplicationCacheWrappingImplementation__set__DOMApplicationC ache_onobsolete(_this, value) { 2209 function native__DOMApplicationCacheWrappingImplementation__set_onobsolete(_this , value) {
2210 try { 2210 try {
2211 _this.$dom.onobsolete = __dom_unwrap(value); 2211 _this.$dom.onobsolete = __dom_unwrap(value);
2212 } catch (e) { 2212 } catch (e) {
2213 throw __dom_wrap_exception(e); 2213 throw __dom_wrap_exception(e);
2214 } 2214 }
2215 } 2215 }
2216 2216
2217 function native__DOMApplicationCacheWrappingImplementation__get__DOMApplicationC ache_onprogress(_this) { 2217 function native__DOMApplicationCacheWrappingImplementation__get_onprogress(_this ) {
2218 try { 2218 try {
2219 return __dom_wrap(_this.$dom.onprogress); 2219 return __dom_wrap(_this.$dom.onprogress);
2220 } catch (e) { 2220 } catch (e) {
2221 throw __dom_wrap_exception(e); 2221 throw __dom_wrap_exception(e);
2222 } 2222 }
2223 } 2223 }
2224 2224
2225 function native__DOMApplicationCacheWrappingImplementation__set__DOMApplicationC ache_onprogress(_this, value) { 2225 function native__DOMApplicationCacheWrappingImplementation__set_onprogress(_this , value) {
2226 try { 2226 try {
2227 _this.$dom.onprogress = __dom_unwrap(value); 2227 _this.$dom.onprogress = __dom_unwrap(value);
2228 } catch (e) { 2228 } catch (e) {
2229 throw __dom_wrap_exception(e); 2229 throw __dom_wrap_exception(e);
2230 } 2230 }
2231 } 2231 }
2232 2232
2233 function native__DOMApplicationCacheWrappingImplementation__get__DOMApplicationC ache_onupdateready(_this) { 2233 function native__DOMApplicationCacheWrappingImplementation__get_onupdateready(_t his) {
2234 try { 2234 try {
2235 return __dom_wrap(_this.$dom.onupdateready); 2235 return __dom_wrap(_this.$dom.onupdateready);
2236 } catch (e) { 2236 } catch (e) {
2237 throw __dom_wrap_exception(e); 2237 throw __dom_wrap_exception(e);
2238 } 2238 }
2239 } 2239 }
2240 2240
2241 function native__DOMApplicationCacheWrappingImplementation__set__DOMApplicationC ache_onupdateready(_this, value) { 2241 function native__DOMApplicationCacheWrappingImplementation__set_onupdateready(_t his, value) {
2242 try { 2242 try {
2243 _this.$dom.onupdateready = __dom_unwrap(value); 2243 _this.$dom.onupdateready = __dom_unwrap(value);
2244 } catch (e) { 2244 } catch (e) {
2245 throw __dom_wrap_exception(e); 2245 throw __dom_wrap_exception(e);
2246 } 2246 }
2247 } 2247 }
2248 2248
2249 function native__DOMApplicationCacheWrappingImplementation__get__DOMApplicationC ache_status(_this) { 2249 function native__DOMApplicationCacheWrappingImplementation__get_status(_this) {
2250 try { 2250 try {
2251 return __dom_wrap(_this.$dom.status); 2251 return __dom_wrap(_this.$dom.status);
2252 } catch (e) { 2252 } catch (e) {
2253 throw __dom_wrap_exception(e); 2253 throw __dom_wrap_exception(e);
2254 } 2254 }
2255 } 2255 }
2256 2256
2257 function native__DOMApplicationCacheWrappingImplementation__addEventListener(_th is, type, listener) { 2257 function native__DOMApplicationCacheWrappingImplementation__addEventListener_DOM ApplicationCache(_this, type, listener) {
2258 try { 2258 try {
2259 return __dom_wrap(_this.$dom.addEventListener(__dom_unwrap(type), __dom_unwr ap(listener))); 2259 return __dom_wrap(_this.$dom.addEventListener(__dom_unwrap(type), __dom_unwr ap(listener)));
2260 } catch (e) { 2260 } catch (e) {
2261 throw __dom_wrap_exception(e); 2261 throw __dom_wrap_exception(e);
2262 } 2262 }
2263 } 2263 }
2264 2264
2265 function native__DOMApplicationCacheWrappingImplementation__addEventListener_2(_ this, type, listener, useCapture) { 2265 function native__DOMApplicationCacheWrappingImplementation__addEventListener_DOM ApplicationCache_2(_this, type, listener, useCapture) {
2266 try { 2266 try {
2267 return __dom_wrap(_this.$dom.addEventListener(__dom_unwrap(type), __dom_unwr ap(listener), __dom_unwrap(useCapture))); 2267 return __dom_wrap(_this.$dom.addEventListener(__dom_unwrap(type), __dom_unwr ap(listener), __dom_unwrap(useCapture)));
2268 } catch (e) { 2268 } catch (e) {
2269 throw __dom_wrap_exception(e); 2269 throw __dom_wrap_exception(e);
2270 } 2270 }
2271 } 2271 }
2272 2272
2273 function native__DOMApplicationCacheWrappingImplementation__dispatchEvent(_this, evt) { 2273 function native__DOMApplicationCacheWrappingImplementation__dispatchEvent_DOMApp licationCache(_this, evt) {
2274 try { 2274 try {
2275 return __dom_wrap(_this.$dom.dispatchEvent(__dom_unwrap(evt))); 2275 return __dom_wrap(_this.$dom.dispatchEvent(__dom_unwrap(evt)));
2276 } catch (e) { 2276 } catch (e) {
2277 throw __dom_wrap_exception(e); 2277 throw __dom_wrap_exception(e);
2278 } 2278 }
2279 } 2279 }
2280 2280
2281 function native__DOMApplicationCacheWrappingImplementation__removeEventListener( _this, type, listener) { 2281 function native__DOMApplicationCacheWrappingImplementation__removeEventListener_ DOMApplicationCache(_this, type, listener) {
2282 try { 2282 try {
2283 return __dom_wrap(_this.$dom.removeEventListener(__dom_unwrap(type), __dom_u nwrap(listener))); 2283 return __dom_wrap(_this.$dom.removeEventListener(__dom_unwrap(type), __dom_u nwrap(listener)));
2284 } catch (e) { 2284 } catch (e) {
2285 throw __dom_wrap_exception(e); 2285 throw __dom_wrap_exception(e);
2286 } 2286 }
2287 } 2287 }
2288 2288
2289 function native__DOMApplicationCacheWrappingImplementation__removeEventListener_ 2(_this, type, listener, useCapture) { 2289 function native__DOMApplicationCacheWrappingImplementation__removeEventListener_ DOMApplicationCache_2(_this, type, listener, useCapture) {
2290 try { 2290 try {
2291 return __dom_wrap(_this.$dom.removeEventListener(__dom_unwrap(type), __dom_u nwrap(listener), __dom_unwrap(useCapture))); 2291 return __dom_wrap(_this.$dom.removeEventListener(__dom_unwrap(type), __dom_u nwrap(listener), __dom_unwrap(useCapture)));
2292 } catch (e) { 2292 } catch (e) {
2293 throw __dom_wrap_exception(e); 2293 throw __dom_wrap_exception(e);
2294 } 2294 }
2295 } 2295 }
2296 2296
2297 function native__DOMApplicationCacheWrappingImplementation__swapCache(_this) { 2297 function native__DOMApplicationCacheWrappingImplementation__swapCache(_this) {
2298 try { 2298 try {
2299 return __dom_wrap(_this.$dom.swapCache()); 2299 return __dom_wrap(_this.$dom.swapCache());
2300 } catch (e) { 2300 } catch (e) {
2301 throw __dom_wrap_exception(e); 2301 throw __dom_wrap_exception(e);
2302 } 2302 }
2303 } 2303 }
2304 2304
2305 function native__DOMApplicationCacheWrappingImplementation__update(_this) { 2305 function native__DOMApplicationCacheWrappingImplementation__update(_this) {
2306 try { 2306 try {
2307 return __dom_wrap(_this.$dom.update()); 2307 return __dom_wrap(_this.$dom.update());
2308 } catch (e) { 2308 } catch (e) {
2309 throw __dom_wrap_exception(e); 2309 throw __dom_wrap_exception(e);
2310 } 2310 }
2311 } 2311 }
2312 2312
2313 function native__DOMExceptionWrappingImplementation__get__DOMException_code(_thi s) { 2313 function native__DOMExceptionWrappingImplementation__get_code(_this) {
2314 try { 2314 try {
2315 return __dom_wrap(_this.$dom.code); 2315 return __dom_wrap(_this.$dom.code);
2316 } catch (e) { 2316 } catch (e) {
2317 throw __dom_wrap_exception(e); 2317 throw __dom_wrap_exception(e);
2318 } 2318 }
2319 } 2319 }
2320 2320
2321 function native__DOMExceptionWrappingImplementation__get__DOMException_message(_ this) { 2321 function native__DOMExceptionWrappingImplementation__get_message(_this) {
2322 try { 2322 try {
2323 return __dom_wrap(_this.$dom.message); 2323 return __dom_wrap(_this.$dom.message);
2324 } catch (e) { 2324 } catch (e) {
2325 throw __dom_wrap_exception(e); 2325 throw __dom_wrap_exception(e);
2326 } 2326 }
2327 } 2327 }
2328 2328
2329 function native__DOMExceptionWrappingImplementation__get__DOMException_name(_thi s) { 2329 function native__DOMExceptionWrappingImplementation__get_name(_this) {
2330 try { 2330 try {
2331 return __dom_wrap(_this.$dom.name); 2331 return __dom_wrap(_this.$dom.name);
2332 } catch (e) { 2332 } catch (e) {
2333 throw __dom_wrap_exception(e); 2333 throw __dom_wrap_exception(e);
2334 } 2334 }
2335 } 2335 }
2336 2336
2337 function native__DOMExceptionWrappingImplementation__toString(_this) { 2337 function native__DOMExceptionWrappingImplementation__toString(_this) {
2338 try { 2338 try {
2339 return __dom_wrap(_this.$dom.toString()); 2339 return __dom_wrap(_this.$dom.toString());
2340 } catch (e) { 2340 } catch (e) {
2341 throw __dom_wrap_exception(e); 2341 throw __dom_wrap_exception(e);
2342 } 2342 }
2343 } 2343 }
2344 2344
2345 function native__DOMFileSystemWrappingImplementation__get__DOMFileSystem_name(_t his) { 2345 function native__DOMFileSystemWrappingImplementation__get_name(_this) {
2346 try { 2346 try {
2347 return __dom_wrap(_this.$dom.name); 2347 return __dom_wrap(_this.$dom.name);
2348 } catch (e) { 2348 } catch (e) {
2349 throw __dom_wrap_exception(e); 2349 throw __dom_wrap_exception(e);
2350 } 2350 }
2351 } 2351 }
2352 2352
2353 function native__DOMFileSystemWrappingImplementation__get__DOMFileSystem_root(_t his) { 2353 function native__DOMFileSystemWrappingImplementation__get_root(_this) {
2354 try { 2354 try {
2355 return __dom_wrap(_this.$dom.root); 2355 return __dom_wrap(_this.$dom.root);
2356 } catch (e) { 2356 } catch (e) {
2357 throw __dom_wrap_exception(e); 2357 throw __dom_wrap_exception(e);
2358 } 2358 }
2359 } 2359 }
2360 2360
2361 function native__DOMFileSystemSyncWrappingImplementation__get__DOMFileSystemSync _name(_this) { 2361 function native__DOMFileSystemSyncWrappingImplementation__get_name(_this) {
2362 try { 2362 try {
2363 return __dom_wrap(_this.$dom.name); 2363 return __dom_wrap(_this.$dom.name);
2364 } catch (e) { 2364 } catch (e) {
2365 throw __dom_wrap_exception(e); 2365 throw __dom_wrap_exception(e);
2366 } 2366 }
2367 } 2367 }
2368 2368
2369 function native__DOMFileSystemSyncWrappingImplementation__get__DOMFileSystemSync _root(_this) { 2369 function native__DOMFileSystemSyncWrappingImplementation__get_root(_this) {
2370 try { 2370 try {
2371 return __dom_wrap(_this.$dom.root); 2371 return __dom_wrap(_this.$dom.root);
2372 } catch (e) { 2372 } catch (e) {
2373 throw __dom_wrap_exception(e); 2373 throw __dom_wrap_exception(e);
2374 } 2374 }
2375 } 2375 }
2376 2376
2377 function native__DOMFormDataWrappingImplementation__append(_this, name, value, f ilename) { 2377 function native__DOMFormDataWrappingImplementation__append(_this, name, value, f ilename) {
2378 try { 2378 try {
2379 return __dom_wrap(_this.$dom.append(__dom_unwrap(name), __dom_unwrap(value), __dom_unwrap(filename))); 2379 return __dom_wrap(_this.$dom.append(__dom_unwrap(name), __dom_unwrap(value), __dom_unwrap(filename)));
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
2415 } 2415 }
2416 2416
2417 function native__DOMImplementationWrappingImplementation__hasFeature(_this, feat ure, version) { 2417 function native__DOMImplementationWrappingImplementation__hasFeature(_this, feat ure, version) {
2418 try { 2418 try {
2419 return __dom_wrap(_this.$dom.hasFeature(__dom_unwrap(feature), __dom_unwrap( version))); 2419 return __dom_wrap(_this.$dom.hasFeature(__dom_unwrap(feature), __dom_unwrap( version)));
2420 } catch (e) { 2420 } catch (e) {
2421 throw __dom_wrap_exception(e); 2421 throw __dom_wrap_exception(e);
2422 } 2422 }
2423 } 2423 }
2424 2424
2425 function native__DOMMimeTypeWrappingImplementation__get__DOMMimeType_description (_this) { 2425 function native__DOMMimeTypeWrappingImplementation__get_description(_this) {
2426 try { 2426 try {
2427 return __dom_wrap(_this.$dom.description); 2427 return __dom_wrap(_this.$dom.description);
2428 } catch (e) { 2428 } catch (e) {
2429 throw __dom_wrap_exception(e); 2429 throw __dom_wrap_exception(e);
2430 } 2430 }
2431 } 2431 }
2432 2432
2433 function native__DOMMimeTypeWrappingImplementation__get__DOMMimeType_enabledPlug in(_this) { 2433 function native__DOMMimeTypeWrappingImplementation__get_enabledPlugin(_this) {
2434 try { 2434 try {
2435 return __dom_wrap(_this.$dom.enabledPlugin); 2435 return __dom_wrap(_this.$dom.enabledPlugin);
2436 } catch (e) { 2436 } catch (e) {
2437 throw __dom_wrap_exception(e); 2437 throw __dom_wrap_exception(e);
2438 } 2438 }
2439 } 2439 }
2440 2440
2441 function native__DOMMimeTypeWrappingImplementation__get__DOMMimeType_suffixes(_t his) { 2441 function native__DOMMimeTypeWrappingImplementation__get_suffixes(_this) {
2442 try { 2442 try {
2443 return __dom_wrap(_this.$dom.suffixes); 2443 return __dom_wrap(_this.$dom.suffixes);
2444 } catch (e) { 2444 } catch (e) {
2445 throw __dom_wrap_exception(e); 2445 throw __dom_wrap_exception(e);
2446 } 2446 }
2447 } 2447 }
2448 2448
2449 function native__DOMMimeTypeWrappingImplementation__get__DOMMimeType_type(_this) { 2449 function native__DOMMimeTypeWrappingImplementation__get_type(_this) {
2450 try { 2450 try {
2451 return __dom_wrap(_this.$dom.type); 2451 return __dom_wrap(_this.$dom.type);
2452 } catch (e) { 2452 } catch (e) {
2453 throw __dom_wrap_exception(e); 2453 throw __dom_wrap_exception(e);
2454 } 2454 }
2455 } 2455 }
2456 2456
2457 function native__DOMMimeTypeArrayWrappingImplementation__get__DOMMimeTypeArray_l ength(_this) { 2457 function native__DOMMimeTypeArrayWrappingImplementation__get_length(_this) {
2458 try { 2458 try {
2459 return __dom_wrap(_this.$dom.length); 2459 return __dom_wrap(_this.$dom.length);
2460 } catch (e) { 2460 } catch (e) {
2461 throw __dom_wrap_exception(e); 2461 throw __dom_wrap_exception(e);
2462 } 2462 }
2463 } 2463 }
2464 2464
2465 function native__DOMMimeTypeArrayWrappingImplementation__item(_this, index) { 2465 function native__DOMMimeTypeArrayWrappingImplementation__item(_this, index) {
2466 try { 2466 try {
2467 return __dom_wrap(_this.$dom.item(__dom_unwrap(index))); 2467 return __dom_wrap(_this.$dom.item(__dom_unwrap(index)));
(...skipping 11 matching lines...) Expand all
2479 } 2479 }
2480 2480
2481 function native__DOMParserWrappingImplementation__parseFromString(_this, str, co ntentType) { 2481 function native__DOMParserWrappingImplementation__parseFromString(_this, str, co ntentType) {
2482 try { 2482 try {
2483 return __dom_wrap(_this.$dom.parseFromString(__dom_unwrap(str), __dom_unwrap (contentType))); 2483 return __dom_wrap(_this.$dom.parseFromString(__dom_unwrap(str), __dom_unwrap (contentType)));
2484 } catch (e) { 2484 } catch (e) {
2485 throw __dom_wrap_exception(e); 2485 throw __dom_wrap_exception(e);
2486 } 2486 }
2487 } 2487 }
2488 2488
2489 function native__DOMPluginWrappingImplementation__get__DOMPlugin_description(_th is) { 2489 function native__DOMPluginWrappingImplementation__get_description(_this) {
2490 try { 2490 try {
2491 return __dom_wrap(_this.$dom.description); 2491 return __dom_wrap(_this.$dom.description);
2492 } catch (e) { 2492 } catch (e) {
2493 throw __dom_wrap_exception(e); 2493 throw __dom_wrap_exception(e);
2494 } 2494 }
2495 } 2495 }
2496 2496
2497 function native__DOMPluginWrappingImplementation__get__DOMPlugin_filename(_this) { 2497 function native__DOMPluginWrappingImplementation__get_filename(_this) {
2498 try { 2498 try {
2499 return __dom_wrap(_this.$dom.filename); 2499 return __dom_wrap(_this.$dom.filename);
2500 } catch (e) { 2500 } catch (e) {
2501 throw __dom_wrap_exception(e); 2501 throw __dom_wrap_exception(e);
2502 } 2502 }
2503 } 2503 }
2504 2504
2505 function native__DOMPluginWrappingImplementation__get__DOMPlugin_length(_this) { 2505 function native__DOMPluginWrappingImplementation__get_length(_this) {
2506 try { 2506 try {
2507 return __dom_wrap(_this.$dom.length); 2507 return __dom_wrap(_this.$dom.length);
2508 } catch (e) { 2508 } catch (e) {
2509 throw __dom_wrap_exception(e); 2509 throw __dom_wrap_exception(e);
2510 } 2510 }
2511 } 2511 }
2512 2512
2513 function native__DOMPluginWrappingImplementation__get__DOMPlugin_name(_this) { 2513 function native__DOMPluginWrappingImplementation__get_name(_this) {
2514 try { 2514 try {
2515 return __dom_wrap(_this.$dom.name); 2515 return __dom_wrap(_this.$dom.name);
2516 } catch (e) { 2516 } catch (e) {
2517 throw __dom_wrap_exception(e); 2517 throw __dom_wrap_exception(e);
2518 } 2518 }
2519 } 2519 }
2520 2520
2521 function native__DOMPluginWrappingImplementation__item(_this, index) { 2521 function native__DOMPluginWrappingImplementation__item(_this, index) {
2522 try { 2522 try {
2523 return __dom_wrap(_this.$dom.item(__dom_unwrap(index))); 2523 return __dom_wrap(_this.$dom.item(__dom_unwrap(index)));
2524 } catch (e) { 2524 } catch (e) {
2525 throw __dom_wrap_exception(e); 2525 throw __dom_wrap_exception(e);
2526 } 2526 }
2527 } 2527 }
2528 2528
2529 function native__DOMPluginWrappingImplementation__namedItem(_this, name) { 2529 function native__DOMPluginWrappingImplementation__namedItem(_this, name) {
2530 try { 2530 try {
2531 return __dom_wrap(_this.$dom.namedItem(__dom_unwrap(name))); 2531 return __dom_wrap(_this.$dom.namedItem(__dom_unwrap(name)));
2532 } catch (e) { 2532 } catch (e) {
2533 throw __dom_wrap_exception(e); 2533 throw __dom_wrap_exception(e);
2534 } 2534 }
2535 } 2535 }
2536 2536
2537 function native__DOMPluginArrayWrappingImplementation__get__DOMPluginArray_lengt h(_this) { 2537 function native__DOMPluginArrayWrappingImplementation__get_length(_this) {
2538 try { 2538 try {
2539 return __dom_wrap(_this.$dom.length); 2539 return __dom_wrap(_this.$dom.length);
2540 } catch (e) { 2540 } catch (e) {
2541 throw __dom_wrap_exception(e); 2541 throw __dom_wrap_exception(e);
2542 } 2542 }
2543 } 2543 }
2544 2544
2545 function native__DOMPluginArrayWrappingImplementation__item(_this, index) { 2545 function native__DOMPluginArrayWrappingImplementation__item(_this, index) {
2546 try { 2546 try {
2547 return __dom_wrap(_this.$dom.item(__dom_unwrap(index))); 2547 return __dom_wrap(_this.$dom.item(__dom_unwrap(index)));
(...skipping 11 matching lines...) Expand all
2559 } 2559 }
2560 2560
2561 function native__DOMPluginArrayWrappingImplementation__refresh(_this, reload) { 2561 function native__DOMPluginArrayWrappingImplementation__refresh(_this, reload) {
2562 try { 2562 try {
2563 return __dom_wrap(_this.$dom.refresh(__dom_unwrap(reload))); 2563 return __dom_wrap(_this.$dom.refresh(__dom_unwrap(reload)));
2564 } catch (e) { 2564 } catch (e) {
2565 throw __dom_wrap_exception(e); 2565 throw __dom_wrap_exception(e);
2566 } 2566 }
2567 } 2567 }
2568 2568
2569 function native__DOMSelectionWrappingImplementation__get__DOMSelection_anchorNod e(_this) { 2569 function native__DOMSelectionWrappingImplementation__get_anchorNode(_this) {
2570 try { 2570 try {
2571 return __dom_wrap(_this.$dom.anchorNode); 2571 return __dom_wrap(_this.$dom.anchorNode);
2572 } catch (e) { 2572 } catch (e) {
2573 throw __dom_wrap_exception(e); 2573 throw __dom_wrap_exception(e);
2574 } 2574 }
2575 } 2575 }
2576 2576
2577 function native__DOMSelectionWrappingImplementation__get__DOMSelection_anchorOff set(_this) { 2577 function native__DOMSelectionWrappingImplementation__get_anchorOffset(_this) {
2578 try { 2578 try {
2579 return __dom_wrap(_this.$dom.anchorOffset); 2579 return __dom_wrap(_this.$dom.anchorOffset);
2580 } catch (e) { 2580 } catch (e) {
2581 throw __dom_wrap_exception(e); 2581 throw __dom_wrap_exception(e);
2582 } 2582 }
2583 } 2583 }
2584 2584
2585 function native__DOMSelectionWrappingImplementation__get__DOMSelection_baseNode( _this) { 2585 function native__DOMSelectionWrappingImplementation__get_baseNode(_this) {
2586 try { 2586 try {
2587 return __dom_wrap(_this.$dom.baseNode); 2587 return __dom_wrap(_this.$dom.baseNode);
2588 } catch (e) { 2588 } catch (e) {
2589 throw __dom_wrap_exception(e); 2589 throw __dom_wrap_exception(e);
2590 } 2590 }
2591 } 2591 }
2592 2592
2593 function native__DOMSelectionWrappingImplementation__get__DOMSelection_baseOffse t(_this) { 2593 function native__DOMSelectionWrappingImplementation__get_baseOffset(_this) {
2594 try { 2594 try {
2595 return __dom_wrap(_this.$dom.baseOffset); 2595 return __dom_wrap(_this.$dom.baseOffset);
2596 } catch (e) { 2596 } catch (e) {
2597 throw __dom_wrap_exception(e); 2597 throw __dom_wrap_exception(e);
2598 } 2598 }
2599 } 2599 }
2600 2600
2601 function native__DOMSelectionWrappingImplementation__get__DOMSelection_extentNod e(_this) { 2601 function native__DOMSelectionWrappingImplementation__get_extentNode(_this) {
2602 try { 2602 try {
2603 return __dom_wrap(_this.$dom.extentNode); 2603 return __dom_wrap(_this.$dom.extentNode);
2604 } catch (e) { 2604 } catch (e) {
2605 throw __dom_wrap_exception(e); 2605 throw __dom_wrap_exception(e);
2606 } 2606 }
2607 } 2607 }
2608 2608
2609 function native__DOMSelectionWrappingImplementation__get__DOMSelection_extentOff set(_this) { 2609 function native__DOMSelectionWrappingImplementation__get_extentOffset(_this) {
2610 try { 2610 try {
2611 return __dom_wrap(_this.$dom.extentOffset); 2611 return __dom_wrap(_this.$dom.extentOffset);
2612 } catch (e) { 2612 } catch (e) {
2613 throw __dom_wrap_exception(e); 2613 throw __dom_wrap_exception(e);
2614 } 2614 }
2615 } 2615 }
2616 2616
2617 function native__DOMSelectionWrappingImplementation__get__DOMSelection_focusNode (_this) { 2617 function native__DOMSelectionWrappingImplementation__get_focusNode(_this) {
2618 try { 2618 try {
2619 return __dom_wrap(_this.$dom.focusNode); 2619 return __dom_wrap(_this.$dom.focusNode);
2620 } catch (e) { 2620 } catch (e) {
2621 throw __dom_wrap_exception(e); 2621 throw __dom_wrap_exception(e);
2622 } 2622 }
2623 } 2623 }
2624 2624
2625 function native__DOMSelectionWrappingImplementation__get__DOMSelection_focusOffs et(_this) { 2625 function native__DOMSelectionWrappingImplementation__get_focusOffset(_this) {
2626 try { 2626 try {
2627 return __dom_wrap(_this.$dom.focusOffset); 2627 return __dom_wrap(_this.$dom.focusOffset);
2628 } catch (e) { 2628 } catch (e) {
2629 throw __dom_wrap_exception(e); 2629 throw __dom_wrap_exception(e);
2630 } 2630 }
2631 } 2631 }
2632 2632
2633 function native__DOMSelectionWrappingImplementation__get__DOMSelection_isCollaps ed(_this) { 2633 function native__DOMSelectionWrappingImplementation__get_isCollapsed(_this) {
2634 try { 2634 try {
2635 return __dom_wrap(_this.$dom.isCollapsed); 2635 return __dom_wrap(_this.$dom.isCollapsed);
2636 } catch (e) { 2636 } catch (e) {
2637 throw __dom_wrap_exception(e); 2637 throw __dom_wrap_exception(e);
2638 } 2638 }
2639 } 2639 }
2640 2640
2641 function native__DOMSelectionWrappingImplementation__get__DOMSelection_rangeCoun t(_this) { 2641 function native__DOMSelectionWrappingImplementation__get_rangeCount(_this) {
2642 try { 2642 try {
2643 return __dom_wrap(_this.$dom.rangeCount); 2643 return __dom_wrap(_this.$dom.rangeCount);
2644 } catch (e) { 2644 } catch (e) {
2645 throw __dom_wrap_exception(e); 2645 throw __dom_wrap_exception(e);
2646 } 2646 }
2647 } 2647 }
2648 2648
2649 function native__DOMSelectionWrappingImplementation__get__DOMSelection_type(_thi s) { 2649 function native__DOMSelectionWrappingImplementation__get_type(_this) {
2650 try { 2650 try {
2651 return __dom_wrap(_this.$dom.type); 2651 return __dom_wrap(_this.$dom.type);
2652 } catch (e) { 2652 } catch (e) {
2653 throw __dom_wrap_exception(e); 2653 throw __dom_wrap_exception(e);
2654 } 2654 }
2655 } 2655 }
2656 2656
2657 function native__DOMSelectionWrappingImplementation__addRange(_this, range) { 2657 function native__DOMSelectionWrappingImplementation__addRange(_this, range) {
2658 try { 2658 try {
2659 return __dom_wrap(_this.$dom.addRange(__dom_unwrap(range))); 2659 return __dom_wrap(_this.$dom.addRange(__dom_unwrap(range)));
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
2767 } 2767 }
2768 2768
2769 function native__DOMSelectionWrappingImplementation__toString(_this) { 2769 function native__DOMSelectionWrappingImplementation__toString(_this) {
2770 try { 2770 try {
2771 return __dom_wrap(_this.$dom.toString()); 2771 return __dom_wrap(_this.$dom.toString());
2772 } catch (e) { 2772 } catch (e) {
2773 throw __dom_wrap_exception(e); 2773 throw __dom_wrap_exception(e);
2774 } 2774 }
2775 } 2775 }
2776 2776
2777 function native__DOMSettableTokenListWrappingImplementation__get__DOMSettableTok enList_value(_this) { 2777 function native__DOMSettableTokenListWrappingImplementation__get_value(_this) {
2778 try { 2778 try {
2779 return __dom_wrap(_this.$dom.value); 2779 return __dom_wrap(_this.$dom.value);
2780 } catch (e) { 2780 } catch (e) {
2781 throw __dom_wrap_exception(e); 2781 throw __dom_wrap_exception(e);
2782 } 2782 }
2783 } 2783 }
2784 2784
2785 function native__DOMSettableTokenListWrappingImplementation__set__DOMSettableTok enList_value(_this, value) { 2785 function native__DOMSettableTokenListWrappingImplementation__set_value(_this, va lue) {
2786 try { 2786 try {
2787 _this.$dom.value = __dom_unwrap(value); 2787 _this.$dom.value = __dom_unwrap(value);
2788 } catch (e) { 2788 } catch (e) {
2789 throw __dom_wrap_exception(e); 2789 throw __dom_wrap_exception(e);
2790 } 2790 }
2791 } 2791 }
2792 2792
2793 function native__DOMTokenListWrappingImplementation__get__DOMTokenList_length(_t his) { 2793 function native__DOMTokenListWrappingImplementation__get_length(_this) {
2794 try { 2794 try {
2795 return __dom_wrap(_this.$dom.length); 2795 return __dom_wrap(_this.$dom.length);
2796 } catch (e) { 2796 } catch (e) {
2797 throw __dom_wrap_exception(e); 2797 throw __dom_wrap_exception(e);
2798 } 2798 }
2799 } 2799 }
2800 2800
2801 function native__DOMTokenListWrappingImplementation__add(_this, token) { 2801 function native__DOMTokenListWrappingImplementation__add(_this, token) {
2802 try { 2802 try {
2803 return __dom_wrap(_this.$dom.add(__dom_unwrap(token))); 2803 return __dom_wrap(_this.$dom.add(__dom_unwrap(token)));
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
2855 } 2855 }
2856 2856
2857 function native__DOMURLWrappingImplementation__revokeObjectURL(_this, url) { 2857 function native__DOMURLWrappingImplementation__revokeObjectURL(_this, url) {
2858 try { 2858 try {
2859 return __dom_wrap(_this.$dom.revokeObjectURL(__dom_unwrap(url))); 2859 return __dom_wrap(_this.$dom.revokeObjectURL(__dom_unwrap(url)));
2860 } catch (e) { 2860 } catch (e) {
2861 throw __dom_wrap_exception(e); 2861 throw __dom_wrap_exception(e);
2862 } 2862 }
2863 } 2863 }
2864 2864
2865 function native__DOMWindowWrappingImplementation__get__DOMWindow_applicationCach e(_this) { 2865 function native__DOMWindowWrappingImplementation__get_applicationCache(_this) {
2866 try { 2866 try {
2867 return __dom_wrap(_this.$dom.applicationCache); 2867 return __dom_wrap(_this.$dom.applicationCache);
2868 } catch (e) { 2868 } catch (e) {
2869 throw __dom_wrap_exception(e); 2869 throw __dom_wrap_exception(e);
2870 } 2870 }
2871 } 2871 }
2872 2872
2873 function native__DOMWindowWrappingImplementation__get__DOMWindow_clientInformati on(_this) { 2873 function native__DOMWindowWrappingImplementation__get_clientInformation(_this) {
2874 try { 2874 try {
2875 return __dom_wrap(_this.$dom.clientInformation); 2875 return __dom_wrap(_this.$dom.clientInformation);
2876 } catch (e) { 2876 } catch (e) {
2877 throw __dom_wrap_exception(e); 2877 throw __dom_wrap_exception(e);
2878 } 2878 }
2879 } 2879 }
2880 2880
2881 function native__DOMWindowWrappingImplementation__set__DOMWindow_clientInformati on(_this, value) { 2881 function native__DOMWindowWrappingImplementation__set_clientInformation(_this, v alue) {
2882 try { 2882 try {
2883 _this.$dom.clientInformation = __dom_unwrap(value); 2883 _this.$dom.clientInformation = __dom_unwrap(value);
2884 } catch (e) { 2884 } catch (e) {
2885 throw __dom_wrap_exception(e); 2885 throw __dom_wrap_exception(e);
2886 } 2886 }
2887 } 2887 }
2888 2888
2889 function native__DOMWindowWrappingImplementation__get__DOMWindow_closed(_this) { 2889 function native__DOMWindowWrappingImplementation__get_closed(_this) {
2890 try { 2890 try {
2891 return __dom_wrap(_this.$dom.closed); 2891 return __dom_wrap(_this.$dom.closed);
2892 } catch (e) { 2892 } catch (e) {
2893 throw __dom_wrap_exception(e); 2893 throw __dom_wrap_exception(e);
2894 } 2894 }
2895 } 2895 }
2896 2896
2897 function native__DOMWindowWrappingImplementation__get__DOMWindow_console(_this) { 2897 function native__DOMWindowWrappingImplementation__get_console(_this) {
2898 try { 2898 try {
2899 return __dom_wrap(_this.$dom.console); 2899 return __dom_wrap(_this.$dom.console);
2900 } catch (e) { 2900 } catch (e) {
2901 throw __dom_wrap_exception(e); 2901 throw __dom_wrap_exception(e);
2902 } 2902 }
2903 } 2903 }
2904 2904
2905 function native__DOMWindowWrappingImplementation__set__DOMWindow_console(_this, value) { 2905 function native__DOMWindowWrappingImplementation__set_console(_this, value) {
2906 try { 2906 try {
2907 _this.$dom.console = __dom_unwrap(value); 2907 _this.$dom.console = __dom_unwrap(value);
2908 } catch (e) { 2908 } catch (e) {
2909 throw __dom_wrap_exception(e); 2909 throw __dom_wrap_exception(e);
2910 } 2910 }
2911 } 2911 }
2912 2912
2913 function native__DOMWindowWrappingImplementation__get__DOMWindow_crypto(_this) { 2913 function native__DOMWindowWrappingImplementation__get_crypto(_this) {
2914 try { 2914 try {
2915 return __dom_wrap(_this.$dom.crypto); 2915 return __dom_wrap(_this.$dom.crypto);
2916 } catch (e) { 2916 } catch (e) {
2917 throw __dom_wrap_exception(e); 2917 throw __dom_wrap_exception(e);
2918 } 2918 }
2919 } 2919 }
2920 2920
2921 function native__DOMWindowWrappingImplementation__get__DOMWindow_defaultStatus(_ this) { 2921 function native__DOMWindowWrappingImplementation__get_defaultStatus(_this) {
2922 try { 2922 try {
2923 return __dom_wrap(_this.$dom.defaultStatus); 2923 return __dom_wrap(_this.$dom.defaultStatus);
2924 } catch (e) { 2924 } catch (e) {
2925 throw __dom_wrap_exception(e); 2925 throw __dom_wrap_exception(e);
2926 } 2926 }
2927 } 2927 }
2928 2928
2929 function native__DOMWindowWrappingImplementation__set__DOMWindow_defaultStatus(_ this, value) { 2929 function native__DOMWindowWrappingImplementation__set_defaultStatus(_this, value ) {
2930 try { 2930 try {
2931 _this.$dom.defaultStatus = __dom_unwrap(value); 2931 _this.$dom.defaultStatus = __dom_unwrap(value);
2932 } catch (e) { 2932 } catch (e) {
2933 throw __dom_wrap_exception(e); 2933 throw __dom_wrap_exception(e);
2934 } 2934 }
2935 } 2935 }
2936 2936
2937 function native__DOMWindowWrappingImplementation__get__DOMWindow_defaultstatus(_ this) { 2937 function native__DOMWindowWrappingImplementation__get_defaultstatus(_this) {
2938 try { 2938 try {
2939 return __dom_wrap(_this.$dom.defaultstatus); 2939 return __dom_wrap(_this.$dom.defaultstatus);
2940 } catch (e) { 2940 } catch (e) {
2941 throw __dom_wrap_exception(e); 2941 throw __dom_wrap_exception(e);
2942 } 2942 }
2943 } 2943 }
2944 2944
2945 function native__DOMWindowWrappingImplementation__set__DOMWindow_defaultstatus(_ this, value) { 2945 function native__DOMWindowWrappingImplementation__set_defaultstatus(_this, value ) {
2946 try { 2946 try {
2947 _this.$dom.defaultstatus = __dom_unwrap(value); 2947 _this.$dom.defaultstatus = __dom_unwrap(value);
2948 } catch (e) { 2948 } catch (e) {
2949 throw __dom_wrap_exception(e); 2949 throw __dom_wrap_exception(e);
2950 } 2950 }
2951 } 2951 }
2952 2952
2953 function native__DOMWindowWrappingImplementation__get__DOMWindow_devicePixelRati o(_this) { 2953 function native__DOMWindowWrappingImplementation__get_devicePixelRatio(_this) {
2954 try { 2954 try {
2955 return __dom_wrap(_this.$dom.devicePixelRatio); 2955 return __dom_wrap(_this.$dom.devicePixelRatio);
2956 } catch (e) { 2956 } catch (e) {
2957 throw __dom_wrap_exception(e); 2957 throw __dom_wrap_exception(e);
2958 } 2958 }
2959 } 2959 }
2960 2960
2961 function native__DOMWindowWrappingImplementation__set__DOMWindow_devicePixelRati o(_this, value) { 2961 function native__DOMWindowWrappingImplementation__set_devicePixelRatio(_this, va lue) {
2962 try { 2962 try {
2963 _this.$dom.devicePixelRatio = __dom_unwrap(value); 2963 _this.$dom.devicePixelRatio = __dom_unwrap(value);
2964 } catch (e) { 2964 } catch (e) {
2965 throw __dom_wrap_exception(e); 2965 throw __dom_wrap_exception(e);
2966 } 2966 }
2967 } 2967 }
2968 2968
2969 function native__DOMWindowWrappingImplementation__get__DOMWindow_document(_this) { 2969 function native__DOMWindowWrappingImplementation__get_document(_this) {
2970 try { 2970 try {
2971 return __dom_wrap(_this.$dom.document); 2971 return __dom_wrap(_this.$dom.document);
2972 } catch (e) { 2972 } catch (e) {
2973 throw __dom_wrap_exception(e); 2973 throw __dom_wrap_exception(e);
2974 } 2974 }
2975 } 2975 }
2976 2976
2977 function native__DOMWindowWrappingImplementation__get__DOMWindow_event(_this) { 2977 function native__DOMWindowWrappingImplementation__get_event(_this) {
2978 try { 2978 try {
2979 return __dom_wrap(_this.$dom.event); 2979 return __dom_wrap(_this.$dom.event);
2980 } catch (e) { 2980 } catch (e) {
2981 throw __dom_wrap_exception(e); 2981 throw __dom_wrap_exception(e);
2982 } 2982 }
2983 } 2983 }
2984 2984
2985 function native__DOMWindowWrappingImplementation__set__DOMWindow_event(_this, va lue) { 2985 function native__DOMWindowWrappingImplementation__set_event(_this, value) {
2986 try { 2986 try {
2987 _this.$dom.event = __dom_unwrap(value); 2987 _this.$dom.event = __dom_unwrap(value);
2988 } catch (e) { 2988 } catch (e) {
2989 throw __dom_wrap_exception(e); 2989 throw __dom_wrap_exception(e);
2990 } 2990 }
2991 } 2991 }
2992 2992
2993 function native__DOMWindowWrappingImplementation__get__DOMWindow_frameElement(_t his) { 2993 function native__DOMWindowWrappingImplementation__get_frameElement(_this) {
2994 try { 2994 try {
2995 return __dom_wrap(_this.$dom.frameElement); 2995 return __dom_wrap(_this.$dom.frameElement);
2996 } catch (e) { 2996 } catch (e) {
2997 throw __dom_wrap_exception(e); 2997 throw __dom_wrap_exception(e);
2998 } 2998 }
2999 } 2999 }
3000 3000
3001 function native__DOMWindowWrappingImplementation__get__DOMWindow_frames(_this) { 3001 function native__DOMWindowWrappingImplementation__get_frames(_this) {
3002 try { 3002 try {
3003 return __dom_wrap(_this.$dom.frames); 3003 return __dom_wrap(_this.$dom.frames);
3004 } catch (e) { 3004 } catch (e) {
3005 throw __dom_wrap_exception(e); 3005 throw __dom_wrap_exception(e);
3006 } 3006 }
3007 } 3007 }
3008 3008
3009 function native__DOMWindowWrappingImplementation__set__DOMWindow_frames(_this, v alue) { 3009 function native__DOMWindowWrappingImplementation__set_frames(_this, value) {
3010 try { 3010 try {
3011 _this.$dom.frames = __dom_unwrap(value); 3011 _this.$dom.frames = __dom_unwrap(value);
3012 } catch (e) { 3012 } catch (e) {
3013 throw __dom_wrap_exception(e); 3013 throw __dom_wrap_exception(e);
3014 } 3014 }
3015 } 3015 }
3016 3016
3017 function native__DOMWindowWrappingImplementation__get__DOMWindow_history(_this) { 3017 function native__DOMWindowWrappingImplementation__get_history(_this) {
3018 try { 3018 try {
3019 return __dom_wrap(_this.$dom.history); 3019 return __dom_wrap(_this.$dom.history);
3020 } catch (e) { 3020 } catch (e) {
3021 throw __dom_wrap_exception(e); 3021 throw __dom_wrap_exception(e);
3022 } 3022 }
3023 } 3023 }
3024 3024
3025 function native__DOMWindowWrappingImplementation__set__DOMWindow_history(_this, value) { 3025 function native__DOMWindowWrappingImplementation__set_history(_this, value) {
3026 try { 3026 try {
3027 _this.$dom.history = __dom_unwrap(value); 3027 _this.$dom.history = __dom_unwrap(value);
3028 } catch (e) { 3028 } catch (e) {
3029 throw __dom_wrap_exception(e); 3029 throw __dom_wrap_exception(e);
3030 } 3030 }
3031 } 3031 }
3032 3032
3033 function native__DOMWindowWrappingImplementation__get__DOMWindow_innerHeight(_th is) { 3033 function native__DOMWindowWrappingImplementation__get_innerHeight(_this) {
3034 try { 3034 try {
3035 return __dom_wrap(_this.$dom.innerHeight); 3035 return __dom_wrap(_this.$dom.innerHeight);
3036 } catch (e) { 3036 } catch (e) {
3037 throw __dom_wrap_exception(e); 3037 throw __dom_wrap_exception(e);
3038 } 3038 }
3039 } 3039 }
3040 3040
3041 function native__DOMWindowWrappingImplementation__set__DOMWindow_innerHeight(_th is, value) { 3041 function native__DOMWindowWrappingImplementation__set_innerHeight(_this, value) {
3042 try { 3042 try {
3043 _this.$dom.innerHeight = __dom_unwrap(value); 3043 _this.$dom.innerHeight = __dom_unwrap(value);
3044 } catch (e) { 3044 } catch (e) {
3045 throw __dom_wrap_exception(e); 3045 throw __dom_wrap_exception(e);
3046 } 3046 }
3047 } 3047 }
3048 3048
3049 function native__DOMWindowWrappingImplementation__get__DOMWindow_innerWidth(_thi s) { 3049 function native__DOMWindowWrappingImplementation__get_innerWidth(_this) {
3050 try { 3050 try {
3051 return __dom_wrap(_this.$dom.innerWidth); 3051 return __dom_wrap(_this.$dom.innerWidth);
3052 } catch (e) { 3052 } catch (e) {
3053 throw __dom_wrap_exception(e); 3053 throw __dom_wrap_exception(e);
3054 } 3054 }
3055 } 3055 }
3056 3056
3057 function native__DOMWindowWrappingImplementation__set__DOMWindow_innerWidth(_thi s, value) { 3057 function native__DOMWindowWrappingImplementation__set_innerWidth(_this, value) {
3058 try { 3058 try {
3059 _this.$dom.innerWidth = __dom_unwrap(value); 3059 _this.$dom.innerWidth = __dom_unwrap(value);
3060 } catch (e) { 3060 } catch (e) {
3061 throw __dom_wrap_exception(e); 3061 throw __dom_wrap_exception(e);
3062 } 3062 }
3063 } 3063 }
3064 3064
3065 function native__DOMWindowWrappingImplementation__get__DOMWindow_length(_this) { 3065 function native__DOMWindowWrappingImplementation__get_length(_this) {
3066 try { 3066 try {
3067 return __dom_wrap(_this.$dom.length); 3067 return __dom_wrap(_this.$dom.length);
3068 } catch (e) { 3068 } catch (e) {
3069 throw __dom_wrap_exception(e); 3069 throw __dom_wrap_exception(e);
3070 } 3070 }
3071 } 3071 }
3072 3072
3073 function native__DOMWindowWrappingImplementation__set__DOMWindow_length(_this, v alue) { 3073 function native__DOMWindowWrappingImplementation__set_length(_this, value) {
3074 try { 3074 try {
3075 _this.$dom.length = __dom_unwrap(value); 3075 _this.$dom.length = __dom_unwrap(value);
3076 } catch (e) { 3076 } catch (e) {
3077 throw __dom_wrap_exception(e); 3077 throw __dom_wrap_exception(e);
3078 } 3078 }
3079 } 3079 }
3080 3080
3081 function native__DOMWindowWrappingImplementation__get__DOMWindow_location(_this) { 3081 function native__DOMWindowWrappingImplementation__get_location(_this) {
3082 try { 3082 try {
3083 return __dom_wrap(_this.$dom.location); 3083 return __dom_wrap(_this.$dom.location);
3084 } catch (e) { 3084 } catch (e) {
3085 throw __dom_wrap_exception(e); 3085 throw __dom_wrap_exception(e);
3086 } 3086 }
3087 } 3087 }
3088 3088
3089 function native__DOMWindowWrappingImplementation__set__DOMWindow_location(_this, value) { 3089 function native__DOMWindowWrappingImplementation__set_location(_this, value) {
3090 try { 3090 try {
3091 _this.$dom.location = __dom_unwrap(value); 3091 _this.$dom.location = __dom_unwrap(value);
3092 } catch (e) { 3092 } catch (e) {
3093 throw __dom_wrap_exception(e); 3093 throw __dom_wrap_exception(e);
3094 } 3094 }
3095 } 3095 }
3096 3096
3097 function native__DOMWindowWrappingImplementation__get__DOMWindow_locationbar(_th is) { 3097 function native__DOMWindowWrappingImplementation__get_locationbar(_this) {
3098 try { 3098 try {
3099 return __dom_wrap(_this.$dom.locationbar); 3099 return __dom_wrap(_this.$dom.locationbar);
3100 } catch (e) { 3100 } catch (e) {
3101 throw __dom_wrap_exception(e); 3101 throw __dom_wrap_exception(e);
3102 } 3102 }
3103 } 3103 }
3104 3104
3105 function native__DOMWindowWrappingImplementation__set__DOMWindow_locationbar(_th is, value) { 3105 function native__DOMWindowWrappingImplementation__set_locationbar(_this, value) {
3106 try { 3106 try {
3107 _this.$dom.locationbar = __dom_unwrap(value); 3107 _this.$dom.locationbar = __dom_unwrap(value);
3108 } catch (e) { 3108 } catch (e) {
3109 throw __dom_wrap_exception(e); 3109 throw __dom_wrap_exception(e);
3110 } 3110 }
3111 } 3111 }
3112 3112
3113 function native__DOMWindowWrappingImplementation__get__DOMWindow_menubar(_this) { 3113 function native__DOMWindowWrappingImplementation__get_menubar(_this) {
3114 try { 3114 try {
3115 return __dom_wrap(_this.$dom.menubar); 3115 return __dom_wrap(_this.$dom.menubar);
3116 } catch (e) { 3116 } catch (e) {
3117 throw __dom_wrap_exception(e); 3117 throw __dom_wrap_exception(e);
3118 } 3118 }
3119 } 3119 }
3120 3120
3121 function native__DOMWindowWrappingImplementation__set__DOMWindow_menubar(_this, value) { 3121 function native__DOMWindowWrappingImplementation__set_menubar(_this, value) {
3122 try { 3122 try {
3123 _this.$dom.menubar = __dom_unwrap(value); 3123 _this.$dom.menubar = __dom_unwrap(value);
3124 } catch (e) { 3124 } catch (e) {
3125 throw __dom_wrap_exception(e); 3125 throw __dom_wrap_exception(e);
3126 } 3126 }
3127 } 3127 }
3128 3128
3129 function native__DOMWindowWrappingImplementation__get__DOMWindow_name(_this) { 3129 function native__DOMWindowWrappingImplementation__get_name(_this) {
3130 try { 3130 try {
3131 return __dom_wrap(_this.$dom.name); 3131 return __dom_wrap(_this.$dom.name);
3132 } catch (e) { 3132 } catch (e) {
3133 throw __dom_wrap_exception(e); 3133 throw __dom_wrap_exception(e);
3134 } 3134 }
3135 } 3135 }
3136 3136
3137 function native__DOMWindowWrappingImplementation__set__DOMWindow_name(_this, val ue) { 3137 function native__DOMWindowWrappingImplementation__set_name(_this, value) {
3138 try { 3138 try {
3139 _this.$dom.name = __dom_unwrap(value); 3139 _this.$dom.name = __dom_unwrap(value);
3140 } catch (e) { 3140 } catch (e) {
3141 throw __dom_wrap_exception(e); 3141 throw __dom_wrap_exception(e);
3142 } 3142 }
3143 } 3143 }
3144 3144
3145 function native__DOMWindowWrappingImplementation__get__DOMWindow_navigator(_this ) { 3145 function native__DOMWindowWrappingImplementation__get_navigator(_this) {
3146 try { 3146 try {
3147 return __dom_wrap(_this.$dom.navigator); 3147 return __dom_wrap(_this.$dom.navigator);
3148 } catch (e) { 3148 } catch (e) {
3149 throw __dom_wrap_exception(e); 3149 throw __dom_wrap_exception(e);
3150 } 3150 }
3151 } 3151 }
3152 3152
3153 function native__DOMWindowWrappingImplementation__set__DOMWindow_navigator(_this , value) { 3153 function native__DOMWindowWrappingImplementation__set_navigator(_this, value) {
3154 try { 3154 try {
3155 _this.$dom.navigator = __dom_unwrap(value); 3155 _this.$dom.navigator = __dom_unwrap(value);
3156 } catch (e) { 3156 } catch (e) {
3157 throw __dom_wrap_exception(e); 3157 throw __dom_wrap_exception(e);
3158 } 3158 }
3159 } 3159 }
3160 3160
3161 function native__DOMWindowWrappingImplementation__get__DOMWindow_offscreenBuffer ing(_this) { 3161 function native__DOMWindowWrappingImplementation__get_offscreenBuffering(_this) {
3162 try { 3162 try {
3163 return __dom_wrap(_this.$dom.offscreenBuffering); 3163 return __dom_wrap(_this.$dom.offscreenBuffering);
3164 } catch (e) { 3164 } catch (e) {
3165 throw __dom_wrap_exception(e); 3165 throw __dom_wrap_exception(e);
3166 } 3166 }
3167 } 3167 }
3168 3168
3169 function native__DOMWindowWrappingImplementation__set__DOMWindow_offscreenBuffer ing(_this, value) { 3169 function native__DOMWindowWrappingImplementation__set_offscreenBuffering(_this, value) {
3170 try { 3170 try {
3171 _this.$dom.offscreenBuffering = __dom_unwrap(value); 3171 _this.$dom.offscreenBuffering = __dom_unwrap(value);
3172 } catch (e) { 3172 } catch (e) {
3173 throw __dom_wrap_exception(e); 3173 throw __dom_wrap_exception(e);
3174 } 3174 }
3175 } 3175 }
3176 3176
3177 function native__DOMWindowWrappingImplementation__get__DOMWindow_onabort(_this) { 3177 function native__DOMWindowWrappingImplementation__get_onabort(_this) {
3178 try { 3178 try {
3179 return __dom_wrap(_this.$dom.onabort); 3179 return __dom_wrap(_this.$dom.onabort);
3180 } catch (e) { 3180 } catch (e) {
3181 throw __dom_wrap_exception(e); 3181 throw __dom_wrap_exception(e);
3182 } 3182 }
3183 } 3183 }
3184 3184
3185 function native__DOMWindowWrappingImplementation__set__DOMWindow_onabort(_this, value) { 3185 function native__DOMWindowWrappingImplementation__set_onabort(_this, value) {
3186 try { 3186 try {
3187 _this.$dom.onabort = __dom_unwrap(value); 3187 _this.$dom.onabort = __dom_unwrap(value);
3188 } catch (e) { 3188 } catch (e) {
3189 throw __dom_wrap_exception(e); 3189 throw __dom_wrap_exception(e);
3190 } 3190 }
3191 } 3191 }
3192 3192
3193 function native__DOMWindowWrappingImplementation__get__DOMWindow_onbeforeunload( _this) { 3193 function native__DOMWindowWrappingImplementation__get_onbeforeunload(_this) {
3194 try { 3194 try {
3195 return __dom_wrap(_this.$dom.onbeforeunload); 3195 return __dom_wrap(_this.$dom.onbeforeunload);
3196 } catch (e) { 3196 } catch (e) {
3197 throw __dom_wrap_exception(e); 3197 throw __dom_wrap_exception(e);
3198 } 3198 }
3199 } 3199 }
3200 3200
3201 function native__DOMWindowWrappingImplementation__set__DOMWindow_onbeforeunload( _this, value) { 3201 function native__DOMWindowWrappingImplementation__set_onbeforeunload(_this, valu e) {
3202 try { 3202 try {
3203 _this.$dom.onbeforeunload = __dom_unwrap(value); 3203 _this.$dom.onbeforeunload = __dom_unwrap(value);
3204 } catch (e) { 3204 } catch (e) {
3205 throw __dom_wrap_exception(e); 3205 throw __dom_wrap_exception(e);
3206 } 3206 }
3207 } 3207 }
3208 3208
3209 function native__DOMWindowWrappingImplementation__get__DOMWindow_onblur(_this) { 3209 function native__DOMWindowWrappingImplementation__get_onblur(_this) {
3210 try { 3210 try {
3211 return __dom_wrap(_this.$dom.onblur); 3211 return __dom_wrap(_this.$dom.onblur);
3212 } catch (e) { 3212 } catch (e) {
3213 throw __dom_wrap_exception(e); 3213 throw __dom_wrap_exception(e);
3214 } 3214 }
3215 } 3215 }
3216 3216
3217 function native__DOMWindowWrappingImplementation__set__DOMWindow_onblur(_this, v alue) { 3217 function native__DOMWindowWrappingImplementation__set_onblur(_this, value) {
3218 try { 3218 try {
3219 _this.$dom.onblur = __dom_unwrap(value); 3219 _this.$dom.onblur = __dom_unwrap(value);
3220 } catch (e) { 3220 } catch (e) {
3221 throw __dom_wrap_exception(e); 3221 throw __dom_wrap_exception(e);
3222 } 3222 }
3223 } 3223 }
3224 3224
3225 function native__DOMWindowWrappingImplementation__get__DOMWindow_oncanplay(_this ) { 3225 function native__DOMWindowWrappingImplementation__get_oncanplay(_this) {
3226 try { 3226 try {
3227 return __dom_wrap(_this.$dom.oncanplay); 3227 return __dom_wrap(_this.$dom.oncanplay);
3228 } catch (e) { 3228 } catch (e) {
3229 throw __dom_wrap_exception(e); 3229 throw __dom_wrap_exception(e);
3230 } 3230 }
3231 } 3231 }
3232 3232
3233 function native__DOMWindowWrappingImplementation__set__DOMWindow_oncanplay(_this , value) { 3233 function native__DOMWindowWrappingImplementation__set_oncanplay(_this, value) {
3234 try { 3234 try {
3235 _this.$dom.oncanplay = __dom_unwrap(value); 3235 _this.$dom.oncanplay = __dom_unwrap(value);
3236 } catch (e) { 3236 } catch (e) {
3237 throw __dom_wrap_exception(e); 3237 throw __dom_wrap_exception(e);
3238 } 3238 }
3239 } 3239 }
3240 3240
3241 function native__DOMWindowWrappingImplementation__get__DOMWindow_oncanplaythroug h(_this) { 3241 function native__DOMWindowWrappingImplementation__get_oncanplaythrough(_this) {
3242 try { 3242 try {
3243 return __dom_wrap(_this.$dom.oncanplaythrough); 3243 return __dom_wrap(_this.$dom.oncanplaythrough);
3244 } catch (e) { 3244 } catch (e) {
3245 throw __dom_wrap_exception(e); 3245 throw __dom_wrap_exception(e);
3246 } 3246 }
3247 } 3247 }
3248 3248
3249 function native__DOMWindowWrappingImplementation__set__DOMWindow_oncanplaythroug h(_this, value) { 3249 function native__DOMWindowWrappingImplementation__set_oncanplaythrough(_this, va lue) {
3250 try { 3250 try {
3251 _this.$dom.oncanplaythrough = __dom_unwrap(value); 3251 _this.$dom.oncanplaythrough = __dom_unwrap(value);
3252 } catch (e) { 3252 } catch (e) {
3253 throw __dom_wrap_exception(e); 3253 throw __dom_wrap_exception(e);
3254 } 3254 }
3255 } 3255 }
3256 3256
3257 function native__DOMWindowWrappingImplementation__get__DOMWindow_onchange(_this) { 3257 function native__DOMWindowWrappingImplementation__get_onchange(_this) {
3258 try { 3258 try {
3259 return __dom_wrap(_this.$dom.onchange); 3259 return __dom_wrap(_this.$dom.onchange);
3260 } catch (e) { 3260 } catch (e) {
3261 throw __dom_wrap_exception(e); 3261 throw __dom_wrap_exception(e);
3262 } 3262 }
3263 } 3263 }
3264 3264
3265 function native__DOMWindowWrappingImplementation__set__DOMWindow_onchange(_this, value) { 3265 function native__DOMWindowWrappingImplementation__set_onchange(_this, value) {
3266 try { 3266 try {
3267 _this.$dom.onchange = __dom_unwrap(value); 3267 _this.$dom.onchange = __dom_unwrap(value);
3268 } catch (e) { 3268 } catch (e) {
3269 throw __dom_wrap_exception(e); 3269 throw __dom_wrap_exception(e);
3270 } 3270 }
3271 } 3271 }
3272 3272
3273 function native__DOMWindowWrappingImplementation__get__DOMWindow_onclick(_this) { 3273 function native__DOMWindowWrappingImplementation__get_onclick(_this) {
3274 try { 3274 try {
3275 return __dom_wrap(_this.$dom.onclick); 3275 return __dom_wrap(_this.$dom.onclick);
3276 } catch (e) { 3276 } catch (e) {
3277 throw __dom_wrap_exception(e); 3277 throw __dom_wrap_exception(e);
3278 } 3278 }
3279 } 3279 }
3280 3280
3281 function native__DOMWindowWrappingImplementation__set__DOMWindow_onclick(_this, value) { 3281 function native__DOMWindowWrappingImplementation__set_onclick(_this, value) {
3282 try { 3282 try {
3283 _this.$dom.onclick = __dom_unwrap(value); 3283 _this.$dom.onclick = __dom_unwrap(value);
3284 } catch (e) { 3284 } catch (e) {
3285 throw __dom_wrap_exception(e); 3285 throw __dom_wrap_exception(e);
3286 } 3286 }
3287 } 3287 }
3288 3288
3289 function native__DOMWindowWrappingImplementation__get__DOMWindow_oncontextmenu(_ this) { 3289 function native__DOMWindowWrappingImplementation__get_oncontextmenu(_this) {
3290 try { 3290 try {
3291 return __dom_wrap(_this.$dom.oncontextmenu); 3291 return __dom_wrap(_this.$dom.oncontextmenu);
3292 } catch (e) { 3292 } catch (e) {
3293 throw __dom_wrap_exception(e); 3293 throw __dom_wrap_exception(e);
3294 } 3294 }
3295 } 3295 }
3296 3296
3297 function native__DOMWindowWrappingImplementation__set__DOMWindow_oncontextmenu(_ this, value) { 3297 function native__DOMWindowWrappingImplementation__set_oncontextmenu(_this, value ) {
3298 try { 3298 try {
3299 _this.$dom.oncontextmenu = __dom_unwrap(value); 3299 _this.$dom.oncontextmenu = __dom_unwrap(value);
3300 } catch (e) { 3300 } catch (e) {
3301 throw __dom_wrap_exception(e); 3301 throw __dom_wrap_exception(e);
3302 } 3302 }
3303 } 3303 }
3304 3304
3305 function native__DOMWindowWrappingImplementation__get__DOMWindow_ondblclick(_thi s) { 3305 function native__DOMWindowWrappingImplementation__get_ondblclick(_this) {
3306 try { 3306 try {
3307 return __dom_wrap(_this.$dom.ondblclick); 3307 return __dom_wrap(_this.$dom.ondblclick);
3308 } catch (e) { 3308 } catch (e) {
3309 throw __dom_wrap_exception(e); 3309 throw __dom_wrap_exception(e);
3310 } 3310 }
3311 } 3311 }
3312 3312
3313 function native__DOMWindowWrappingImplementation__set__DOMWindow_ondblclick(_thi s, value) { 3313 function native__DOMWindowWrappingImplementation__set_ondblclick(_this, value) {
3314 try { 3314 try {
3315 _this.$dom.ondblclick = __dom_unwrap(value); 3315 _this.$dom.ondblclick = __dom_unwrap(value);
3316 } catch (e) { 3316 } catch (e) {
3317 throw __dom_wrap_exception(e); 3317 throw __dom_wrap_exception(e);
3318 } 3318 }
3319 } 3319 }
3320 3320
3321 function native__DOMWindowWrappingImplementation__get__DOMWindow_ondevicemotion( _this) { 3321 function native__DOMWindowWrappingImplementation__get_ondevicemotion(_this) {
3322 try { 3322 try {
3323 return __dom_wrap(_this.$dom.ondevicemotion); 3323 return __dom_wrap(_this.$dom.ondevicemotion);
3324 } catch (e) { 3324 } catch (e) {
3325 throw __dom_wrap_exception(e); 3325 throw __dom_wrap_exception(e);
3326 } 3326 }
3327 } 3327 }
3328 3328
3329 function native__DOMWindowWrappingImplementation__set__DOMWindow_ondevicemotion( _this, value) { 3329 function native__DOMWindowWrappingImplementation__set_ondevicemotion(_this, valu e) {
3330 try { 3330 try {
3331 _this.$dom.ondevicemotion = __dom_unwrap(value); 3331 _this.$dom.ondevicemotion = __dom_unwrap(value);
3332 } catch (e) { 3332 } catch (e) {
3333 throw __dom_wrap_exception(e); 3333 throw __dom_wrap_exception(e);
3334 } 3334 }
3335 } 3335 }
3336 3336
3337 function native__DOMWindowWrappingImplementation__get__DOMWindow_ondeviceorienta tion(_this) { 3337 function native__DOMWindowWrappingImplementation__get_ondeviceorientation(_this) {
3338 try { 3338 try {
3339 return __dom_wrap(_this.$dom.ondeviceorientation); 3339 return __dom_wrap(_this.$dom.ondeviceorientation);
3340 } catch (e) { 3340 } catch (e) {
3341 throw __dom_wrap_exception(e); 3341 throw __dom_wrap_exception(e);
3342 } 3342 }
3343 } 3343 }
3344 3344
3345 function native__DOMWindowWrappingImplementation__set__DOMWindow_ondeviceorienta tion(_this, value) { 3345 function native__DOMWindowWrappingImplementation__set_ondeviceorientation(_this, value) {
3346 try { 3346 try {
3347 _this.$dom.ondeviceorientation = __dom_unwrap(value); 3347 _this.$dom.ondeviceorientation = __dom_unwrap(value);
3348 } catch (e) { 3348 } catch (e) {
3349 throw __dom_wrap_exception(e); 3349 throw __dom_wrap_exception(e);
3350 } 3350 }
3351 } 3351 }
3352 3352
3353 function native__DOMWindowWrappingImplementation__get__DOMWindow_ondrag(_this) { 3353 function native__DOMWindowWrappingImplementation__get_ondrag(_this) {
3354 try { 3354 try {
3355 return __dom_wrap(_this.$dom.ondrag); 3355 return __dom_wrap(_this.$dom.ondrag);
3356 } catch (e) { 3356 } catch (e) {
3357 throw __dom_wrap_exception(e); 3357 throw __dom_wrap_exception(e);
3358 } 3358 }
3359 } 3359 }
3360 3360
3361 function native__DOMWindowWrappingImplementation__set__DOMWindow_ondrag(_this, v alue) { 3361 function native__DOMWindowWrappingImplementation__set_ondrag(_this, value) {
3362 try { 3362 try {
3363 _this.$dom.ondrag = __dom_unwrap(value); 3363 _this.$dom.ondrag = __dom_unwrap(value);
3364 } catch (e) { 3364 } catch (e) {
3365 throw __dom_wrap_exception(e); 3365 throw __dom_wrap_exception(e);
3366 } 3366 }
3367 } 3367 }
3368 3368
3369 function native__DOMWindowWrappingImplementation__get__DOMWindow_ondragend(_this ) { 3369 function native__DOMWindowWrappingImplementation__get_ondragend(_this) {
3370 try { 3370 try {
3371 return __dom_wrap(_this.$dom.ondragend); 3371 return __dom_wrap(_this.$dom.ondragend);
3372 } catch (e) { 3372 } catch (e) {
3373 throw __dom_wrap_exception(e); 3373 throw __dom_wrap_exception(e);
3374 } 3374 }
3375 } 3375 }
3376 3376
3377 function native__DOMWindowWrappingImplementation__set__DOMWindow_ondragend(_this , value) { 3377 function native__DOMWindowWrappingImplementation__set_ondragend(_this, value) {
3378 try { 3378 try {
3379 _this.$dom.ondragend = __dom_unwrap(value); 3379 _this.$dom.ondragend = __dom_unwrap(value);
3380 } catch (e) { 3380 } catch (e) {
3381 throw __dom_wrap_exception(e); 3381 throw __dom_wrap_exception(e);
3382 } 3382 }
3383 } 3383 }
3384 3384
3385 function native__DOMWindowWrappingImplementation__get__DOMWindow_ondragenter(_th is) { 3385 function native__DOMWindowWrappingImplementation__get_ondragenter(_this) {
3386 try { 3386 try {
3387 return __dom_wrap(_this.$dom.ondragenter); 3387 return __dom_wrap(_this.$dom.ondragenter);
3388 } catch (e) { 3388 } catch (e) {
3389 throw __dom_wrap_exception(e); 3389 throw __dom_wrap_exception(e);
3390 } 3390 }
3391 } 3391 }
3392 3392
3393 function native__DOMWindowWrappingImplementation__set__DOMWindow_ondragenter(_th is, value) { 3393 function native__DOMWindowWrappingImplementation__set_ondragenter(_this, value) {
3394 try { 3394 try {
3395 _this.$dom.ondragenter = __dom_unwrap(value); 3395 _this.$dom.ondragenter = __dom_unwrap(value);
3396 } catch (e) { 3396 } catch (e) {
3397 throw __dom_wrap_exception(e); 3397 throw __dom_wrap_exception(e);
3398 } 3398 }
3399 } 3399 }
3400 3400
3401 function native__DOMWindowWrappingImplementation__get__DOMWindow_ondragleave(_th is) { 3401 function native__DOMWindowWrappingImplementation__get_ondragleave(_this) {
3402 try { 3402 try {
3403 return __dom_wrap(_this.$dom.ondragleave); 3403 return __dom_wrap(_this.$dom.ondragleave);
3404 } catch (e) { 3404 } catch (e) {
3405 throw __dom_wrap_exception(e); 3405 throw __dom_wrap_exception(e);
3406 } 3406 }
3407 } 3407 }
3408 3408
3409 function native__DOMWindowWrappingImplementation__set__DOMWindow_ondragleave(_th is, value) { 3409 function native__DOMWindowWrappingImplementation__set_ondragleave(_this, value) {
3410 try { 3410 try {
3411 _this.$dom.ondragleave = __dom_unwrap(value); 3411 _this.$dom.ondragleave = __dom_unwrap(value);
3412 } catch (e) { 3412 } catch (e) {
3413 throw __dom_wrap_exception(e); 3413 throw __dom_wrap_exception(e);
3414 } 3414 }
3415 } 3415 }
3416 3416
3417 function native__DOMWindowWrappingImplementation__get__DOMWindow_ondragover(_thi s) { 3417 function native__DOMWindowWrappingImplementation__get_ondragover(_this) {
3418 try { 3418 try {
3419 return __dom_wrap(_this.$dom.ondragover); 3419 return __dom_wrap(_this.$dom.ondragover);
3420 } catch (e) { 3420 } catch (e) {
3421 throw __dom_wrap_exception(e); 3421 throw __dom_wrap_exception(e);
3422 } 3422 }
3423 } 3423 }
3424 3424
3425 function native__DOMWindowWrappingImplementation__set__DOMWindow_ondragover(_thi s, value) { 3425 function native__DOMWindowWrappingImplementation__set_ondragover(_this, value) {
3426 try { 3426 try {
3427 _this.$dom.ondragover = __dom_unwrap(value); 3427 _this.$dom.ondragover = __dom_unwrap(value);
3428 } catch (e) { 3428 } catch (e) {
3429 throw __dom_wrap_exception(e); 3429 throw __dom_wrap_exception(e);
3430 } 3430 }
3431 } 3431 }
3432 3432
3433 function native__DOMWindowWrappingImplementation__get__DOMWindow_ondragstart(_th is) { 3433 function native__DOMWindowWrappingImplementation__get_ondragstart(_this) {
3434 try { 3434 try {
3435 return __dom_wrap(_this.$dom.ondragstart); 3435 return __dom_wrap(_this.$dom.ondragstart);
3436 } catch (e) { 3436 } catch (e) {
3437 throw __dom_wrap_exception(e); 3437 throw __dom_wrap_exception(e);
3438 } 3438 }
3439 } 3439 }
3440 3440
3441 function native__DOMWindowWrappingImplementation__set__DOMWindow_ondragstart(_th is, value) { 3441 function native__DOMWindowWrappingImplementation__set_ondragstart(_this, value) {
3442 try { 3442 try {
3443 _this.$dom.ondragstart = __dom_unwrap(value); 3443 _this.$dom.ondragstart = __dom_unwrap(value);
3444 } catch (e) { 3444 } catch (e) {
3445 throw __dom_wrap_exception(e); 3445 throw __dom_wrap_exception(e);
3446 } 3446 }
3447 } 3447 }
3448 3448
3449 function native__DOMWindowWrappingImplementation__get__DOMWindow_ondrop(_this) { 3449 function native__DOMWindowWrappingImplementation__get_ondrop(_this) {
3450 try { 3450 try {
3451 return __dom_wrap(_this.$dom.ondrop); 3451 return __dom_wrap(_this.$dom.ondrop);
3452 } catch (e) { 3452 } catch (e) {
3453 throw __dom_wrap_exception(e); 3453 throw __dom_wrap_exception(e);
3454 } 3454 }
3455 } 3455 }
3456 3456
3457 function native__DOMWindowWrappingImplementation__set__DOMWindow_ondrop(_this, v alue) { 3457 function native__DOMWindowWrappingImplementation__set_ondrop(_this, value) {
3458 try { 3458 try {
3459 _this.$dom.ondrop = __dom_unwrap(value); 3459 _this.$dom.ondrop = __dom_unwrap(value);
3460 } catch (e) { 3460 } catch (e) {
3461 throw __dom_wrap_exception(e); 3461 throw __dom_wrap_exception(e);
3462 } 3462 }
3463 } 3463 }
3464 3464
3465 function native__DOMWindowWrappingImplementation__get__DOMWindow_ondurationchang e(_this) { 3465 function native__DOMWindowWrappingImplementation__get_ondurationchange(_this) {
3466 try { 3466 try {
3467 return __dom_wrap(_this.$dom.ondurationchange); 3467 return __dom_wrap(_this.$dom.ondurationchange);
3468 } catch (e) { 3468 } catch (e) {
3469 throw __dom_wrap_exception(e); 3469 throw __dom_wrap_exception(e);
3470 } 3470 }
3471 } 3471 }
3472 3472
3473 function native__DOMWindowWrappingImplementation__set__DOMWindow_ondurationchang e(_this, value) { 3473 function native__DOMWindowWrappingImplementation__set_ondurationchange(_this, va lue) {
3474 try { 3474 try {
3475 _this.$dom.ondurationchange = __dom_unwrap(value); 3475 _this.$dom.ondurationchange = __dom_unwrap(value);
3476 } catch (e) { 3476 } catch (e) {
3477 throw __dom_wrap_exception(e); 3477 throw __dom_wrap_exception(e);
3478 } 3478 }
3479 } 3479 }
3480 3480
3481 function native__DOMWindowWrappingImplementation__get__DOMWindow_onemptied(_this ) { 3481 function native__DOMWindowWrappingImplementation__get_onemptied(_this) {
3482 try { 3482 try {
3483 return __dom_wrap(_this.$dom.onemptied); 3483 return __dom_wrap(_this.$dom.onemptied);
3484 } catch (e) { 3484 } catch (e) {
3485 throw __dom_wrap_exception(e); 3485 throw __dom_wrap_exception(e);
3486 } 3486 }
3487 } 3487 }
3488 3488
3489 function native__DOMWindowWrappingImplementation__set__DOMWindow_onemptied(_this , value) { 3489 function native__DOMWindowWrappingImplementation__set_onemptied(_this, value) {
3490 try { 3490 try {
3491 _this.$dom.onemptied = __dom_unwrap(value); 3491 _this.$dom.onemptied = __dom_unwrap(value);
3492 } catch (e) { 3492 } catch (e) {
3493 throw __dom_wrap_exception(e); 3493 throw __dom_wrap_exception(e);
3494 } 3494 }
3495 } 3495 }
3496 3496
3497 function native__DOMWindowWrappingImplementation__get__DOMWindow_onended(_this) { 3497 function native__DOMWindowWrappingImplementation__get_onended(_this) {
3498 try { 3498 try {
3499 return __dom_wrap(_this.$dom.onended); 3499 return __dom_wrap(_this.$dom.onended);
3500 } catch (e) { 3500 } catch (e) {
3501 throw __dom_wrap_exception(e); 3501 throw __dom_wrap_exception(e);
3502 } 3502 }
3503 } 3503 }
3504 3504
3505 function native__DOMWindowWrappingImplementation__set__DOMWindow_onended(_this, value) { 3505 function native__DOMWindowWrappingImplementation__set_onended(_this, value) {
3506 try { 3506 try {
3507 _this.$dom.onended = __dom_unwrap(value); 3507 _this.$dom.onended = __dom_unwrap(value);
3508 } catch (e) { 3508 } catch (e) {
3509 throw __dom_wrap_exception(e); 3509 throw __dom_wrap_exception(e);
3510 } 3510 }
3511 } 3511 }
3512 3512
3513 function native__DOMWindowWrappingImplementation__get__DOMWindow_onerror(_this) { 3513 function native__DOMWindowWrappingImplementation__get_onerror(_this) {
3514 try { 3514 try {
3515 return __dom_wrap(_this.$dom.onerror); 3515 return __dom_wrap(_this.$dom.onerror);
3516 } catch (e) { 3516 } catch (e) {
3517 throw __dom_wrap_exception(e); 3517 throw __dom_wrap_exception(e);
3518 } 3518 }
3519 } 3519 }
3520 3520
3521 function native__DOMWindowWrappingImplementation__set__DOMWindow_onerror(_this, value) { 3521 function native__DOMWindowWrappingImplementation__set_onerror(_this, value) {
3522 try { 3522 try {
3523 _this.$dom.onerror = __dom_unwrap(value); 3523 _this.$dom.onerror = __dom_unwrap(value);
3524 } catch (e) { 3524 } catch (e) {
3525 throw __dom_wrap_exception(e); 3525 throw __dom_wrap_exception(e);
3526 } 3526 }
3527 } 3527 }
3528 3528
3529 function native__DOMWindowWrappingImplementation__get__DOMWindow_onfocus(_this) { 3529 function native__DOMWindowWrappingImplementation__get_onfocus(_this) {
3530 try { 3530 try {
3531 return __dom_wrap(_this.$dom.onfocus); 3531 return __dom_wrap(_this.$dom.onfocus);
3532 } catch (e) { 3532 } catch (e) {
3533 throw __dom_wrap_exception(e); 3533 throw __dom_wrap_exception(e);
3534 } 3534 }
3535 } 3535 }
3536 3536
3537 function native__DOMWindowWrappingImplementation__set__DOMWindow_onfocus(_this, value) { 3537 function native__DOMWindowWrappingImplementation__set_onfocus(_this, value) {
3538 try { 3538 try {
3539 _this.$dom.onfocus = __dom_unwrap(value); 3539 _this.$dom.onfocus = __dom_unwrap(value);
3540 } catch (e) { 3540 } catch (e) {
3541 throw __dom_wrap_exception(e); 3541 throw __dom_wrap_exception(e);
3542 } 3542 }
3543 } 3543 }
3544 3544
3545 function native__DOMWindowWrappingImplementation__get__DOMWindow_onhashchange(_t his) { 3545 function native__DOMWindowWrappingImplementation__get_onhashchange(_this) {
3546 try { 3546 try {
3547 return __dom_wrap(_this.$dom.onhashchange); 3547 return __dom_wrap(_this.$dom.onhashchange);
3548 } catch (e) { 3548 } catch (e) {
3549 throw __dom_wrap_exception(e); 3549 throw __dom_wrap_exception(e);
3550 } 3550 }
3551 } 3551 }
3552 3552
3553 function native__DOMWindowWrappingImplementation__set__DOMWindow_onhashchange(_t his, value) { 3553 function native__DOMWindowWrappingImplementation__set_onhashchange(_this, value) {
3554 try { 3554 try {
3555 _this.$dom.onhashchange = __dom_unwrap(value); 3555 _this.$dom.onhashchange = __dom_unwrap(value);
3556 } catch (e) { 3556 } catch (e) {
3557 throw __dom_wrap_exception(e); 3557 throw __dom_wrap_exception(e);
3558 } 3558 }
3559 } 3559 }
3560 3560
3561 function native__DOMWindowWrappingImplementation__get__DOMWindow_oninput(_this) { 3561 function native__DOMWindowWrappingImplementation__get_oninput(_this) {
3562 try { 3562 try {
3563 return __dom_wrap(_this.$dom.oninput); 3563 return __dom_wrap(_this.$dom.oninput);
3564 } catch (e) { 3564 } catch (e) {
3565 throw __dom_wrap_exception(e); 3565 throw __dom_wrap_exception(e);
3566 } 3566 }
3567 } 3567 }
3568 3568
3569 function native__DOMWindowWrappingImplementation__set__DOMWindow_oninput(_this, value) { 3569 function native__DOMWindowWrappingImplementation__set_oninput(_this, value) {
3570 try { 3570 try {
3571 _this.$dom.oninput = __dom_unwrap(value); 3571 _this.$dom.oninput = __dom_unwrap(value);
3572 } catch (e) { 3572 } catch (e) {
3573 throw __dom_wrap_exception(e); 3573 throw __dom_wrap_exception(e);
3574 } 3574 }
3575 } 3575 }
3576 3576
3577 function native__DOMWindowWrappingImplementation__get__DOMWindow_oninvalid(_this ) { 3577 function native__DOMWindowWrappingImplementation__get_oninvalid(_this) {
3578 try { 3578 try {
3579 return __dom_wrap(_this.$dom.oninvalid); 3579 return __dom_wrap(_this.$dom.oninvalid);
3580 } catch (e) { 3580 } catch (e) {
3581 throw __dom_wrap_exception(e); 3581 throw __dom_wrap_exception(e);
3582 } 3582 }
3583 } 3583 }
3584 3584
3585 function native__DOMWindowWrappingImplementation__set__DOMWindow_oninvalid(_this , value) { 3585 function native__DOMWindowWrappingImplementation__set_oninvalid(_this, value) {
3586 try { 3586 try {
3587 _this.$dom.oninvalid = __dom_unwrap(value); 3587 _this.$dom.oninvalid = __dom_unwrap(value);
3588 } catch (e) { 3588 } catch (e) {
3589 throw __dom_wrap_exception(e); 3589 throw __dom_wrap_exception(e);
3590 } 3590 }
3591 } 3591 }
3592 3592
3593 function native__DOMWindowWrappingImplementation__get__DOMWindow_onkeydown(_this ) { 3593 function native__DOMWindowWrappingImplementation__get_onkeydown(_this) {
3594 try { 3594 try {
3595 return __dom_wrap(_this.$dom.onkeydown); 3595 return __dom_wrap(_this.$dom.onkeydown);
3596 } catch (e) { 3596 } catch (e) {
3597 throw __dom_wrap_exception(e); 3597 throw __dom_wrap_exception(e);
3598 } 3598 }
3599 } 3599 }
3600 3600
3601 function native__DOMWindowWrappingImplementation__set__DOMWindow_onkeydown(_this , value) { 3601 function native__DOMWindowWrappingImplementation__set_onkeydown(_this, value) {
3602 try { 3602 try {
3603 _this.$dom.onkeydown = __dom_unwrap(value); 3603 _this.$dom.onkeydown = __dom_unwrap(value);
3604 } catch (e) { 3604 } catch (e) {
3605 throw __dom_wrap_exception(e); 3605 throw __dom_wrap_exception(e);
3606 } 3606 }
3607 } 3607 }
3608 3608
3609 function native__DOMWindowWrappingImplementation__get__DOMWindow_onkeypress(_thi s) { 3609 function native__DOMWindowWrappingImplementation__get_onkeypress(_this) {
3610 try { 3610 try {
3611 return __dom_wrap(_this.$dom.onkeypress); 3611 return __dom_wrap(_this.$dom.onkeypress);
3612 } catch (e) { 3612 } catch (e) {
3613 throw __dom_wrap_exception(e); 3613 throw __dom_wrap_exception(e);
3614 } 3614 }
3615 } 3615 }
3616 3616
3617 function native__DOMWindowWrappingImplementation__set__DOMWindow_onkeypress(_thi s, value) { 3617 function native__DOMWindowWrappingImplementation__set_onkeypress(_this, value) {
3618 try { 3618 try {
3619 _this.$dom.onkeypress = __dom_unwrap(value); 3619 _this.$dom.onkeypress = __dom_unwrap(value);
3620 } catch (e) { 3620 } catch (e) {
3621 throw __dom_wrap_exception(e); 3621 throw __dom_wrap_exception(e);
3622 } 3622 }
3623 } 3623 }
3624 3624
3625 function native__DOMWindowWrappingImplementation__get__DOMWindow_onkeyup(_this) { 3625 function native__DOMWindowWrappingImplementation__get_onkeyup(_this) {
3626 try { 3626 try {
3627 return __dom_wrap(_this.$dom.onkeyup); 3627 return __dom_wrap(_this.$dom.onkeyup);
3628 } catch (e) { 3628 } catch (e) {
3629 throw __dom_wrap_exception(e); 3629 throw __dom_wrap_exception(e);
3630 } 3630 }
3631 } 3631 }
3632 3632
3633 function native__DOMWindowWrappingImplementation__set__DOMWindow_onkeyup(_this, value) { 3633 function native__DOMWindowWrappingImplementation__set_onkeyup(_this, value) {
3634 try { 3634 try {
3635 _this.$dom.onkeyup = __dom_unwrap(value); 3635 _this.$dom.onkeyup = __dom_unwrap(value);
3636 } catch (e) { 3636 } catch (e) {
3637 throw __dom_wrap_exception(e); 3637 throw __dom_wrap_exception(e);
3638 } 3638 }
3639 } 3639 }
3640 3640
3641 function native__DOMWindowWrappingImplementation__get__DOMWindow_onload(_this) { 3641 function native__DOMWindowWrappingImplementation__get_onload(_this) {
3642 try { 3642 try {
3643 return __dom_wrap(_this.$dom.onload); 3643 return __dom_wrap(_this.$dom.onload);
3644 } catch (e) { 3644 } catch (e) {
3645 throw __dom_wrap_exception(e); 3645 throw __dom_wrap_exception(e);
3646 } 3646 }
3647 } 3647 }
3648 3648
3649 function native__DOMWindowWrappingImplementation__set__DOMWindow_onload(_this, v alue) { 3649 function native__DOMWindowWrappingImplementation__set_onload(_this, value) {
3650 try { 3650 try {
3651 _this.$dom.onload = __dom_unwrap(value); 3651 _this.$dom.onload = __dom_unwrap(value);
3652 } catch (e) { 3652 } catch (e) {
3653 throw __dom_wrap_exception(e); 3653 throw __dom_wrap_exception(e);
3654 } 3654 }
3655 } 3655 }
3656 3656
3657 function native__DOMWindowWrappingImplementation__get__DOMWindow_onloadeddata(_t his) { 3657 function native__DOMWindowWrappingImplementation__get_onloadeddata(_this) {
3658 try { 3658 try {
3659 return __dom_wrap(_this.$dom.onloadeddata); 3659 return __dom_wrap(_this.$dom.onloadeddata);
3660 } catch (e) { 3660 } catch (e) {
3661 throw __dom_wrap_exception(e); 3661 throw __dom_wrap_exception(e);
3662 } 3662 }
3663 } 3663 }
3664 3664
3665 function native__DOMWindowWrappingImplementation__set__DOMWindow_onloadeddata(_t his, value) { 3665 function native__DOMWindowWrappingImplementation__set_onloadeddata(_this, value) {
3666 try { 3666 try {
3667 _this.$dom.onloadeddata = __dom_unwrap(value); 3667 _this.$dom.onloadeddata = __dom_unwrap(value);
3668 } catch (e) { 3668 } catch (e) {
3669 throw __dom_wrap_exception(e); 3669 throw __dom_wrap_exception(e);
3670 } 3670 }
3671 } 3671 }
3672 3672
3673 function native__DOMWindowWrappingImplementation__get__DOMWindow_onloadedmetadat a(_this) { 3673 function native__DOMWindowWrappingImplementation__get_onloadedmetadata(_this) {
3674 try { 3674 try {
3675 return __dom_wrap(_this.$dom.onloadedmetadata); 3675 return __dom_wrap(_this.$dom.onloadedmetadata);
3676 } catch (e) { 3676 } catch (e) {
3677 throw __dom_wrap_exception(e); 3677 throw __dom_wrap_exception(e);
3678 } 3678 }
3679 } 3679 }
3680 3680
3681 function native__DOMWindowWrappingImplementation__set__DOMWindow_onloadedmetadat a(_this, value) { 3681 function native__DOMWindowWrappingImplementation__set_onloadedmetadata(_this, va lue) {
3682 try { 3682 try {
3683 _this.$dom.onloadedmetadata = __dom_unwrap(value); 3683 _this.$dom.onloadedmetadata = __dom_unwrap(value);
3684 } catch (e) { 3684 } catch (e) {
3685 throw __dom_wrap_exception(e); 3685 throw __dom_wrap_exception(e);
3686 } 3686 }
3687 } 3687 }
3688 3688
3689 function native__DOMWindowWrappingImplementation__get__DOMWindow_onloadstart(_th is) { 3689 function native__DOMWindowWrappingImplementation__get_onloadstart(_this) {
3690 try { 3690 try {
3691 return __dom_wrap(_this.$dom.onloadstart); 3691 return __dom_wrap(_this.$dom.onloadstart);
3692 } catch (e) { 3692 } catch (e) {
3693 throw __dom_wrap_exception(e); 3693 throw __dom_wrap_exception(e);
3694 } 3694 }
3695 } 3695 }
3696 3696
3697 function native__DOMWindowWrappingImplementation__set__DOMWindow_onloadstart(_th is, value) { 3697 function native__DOMWindowWrappingImplementation__set_onloadstart(_this, value) {
3698 try { 3698 try {
3699 _this.$dom.onloadstart = __dom_unwrap(value); 3699 _this.$dom.onloadstart = __dom_unwrap(value);
3700 } catch (e) { 3700 } catch (e) {
3701 throw __dom_wrap_exception(e); 3701 throw __dom_wrap_exception(e);
3702 } 3702 }
3703 } 3703 }
3704 3704
3705 function native__DOMWindowWrappingImplementation__get__DOMWindow_onmessage(_this ) { 3705 function native__DOMWindowWrappingImplementation__get_onmessage(_this) {
3706 try { 3706 try {
3707 return __dom_wrap(_this.$dom.onmessage); 3707 return __dom_wrap(_this.$dom.onmessage);
3708 } catch (e) { 3708 } catch (e) {
3709 throw __dom_wrap_exception(e); 3709 throw __dom_wrap_exception(e);
3710 } 3710 }
3711 } 3711 }
3712 3712
3713 function native__DOMWindowWrappingImplementation__set__DOMWindow_onmessage(_this , value) { 3713 function native__DOMWindowWrappingImplementation__set_onmessage(_this, value) {
3714 try { 3714 try {
3715 _this.$dom.onmessage = __dom_unwrap(value); 3715 _this.$dom.onmessage = __dom_unwrap(value);
3716 } catch (e) { 3716 } catch (e) {
3717 throw __dom_wrap_exception(e); 3717 throw __dom_wrap_exception(e);
3718 } 3718 }
3719 } 3719 }
3720 3720
3721 function native__DOMWindowWrappingImplementation__get__DOMWindow_onmousedown(_th is) { 3721 function native__DOMWindowWrappingImplementation__get_onmousedown(_this) {
3722 try { 3722 try {
3723 return __dom_wrap(_this.$dom.onmousedown); 3723 return __dom_wrap(_this.$dom.onmousedown);
3724 } catch (e) { 3724 } catch (e) {
3725 throw __dom_wrap_exception(e); 3725 throw __dom_wrap_exception(e);
3726 } 3726 }
3727 } 3727 }
3728 3728
3729 function native__DOMWindowWrappingImplementation__set__DOMWindow_onmousedown(_th is, value) { 3729 function native__DOMWindowWrappingImplementation__set_onmousedown(_this, value) {
3730 try { 3730 try {
3731 _this.$dom.onmousedown = __dom_unwrap(value); 3731 _this.$dom.onmousedown = __dom_unwrap(value);
3732 } catch (e) { 3732 } catch (e) {
3733 throw __dom_wrap_exception(e); 3733 throw __dom_wrap_exception(e);
3734 } 3734 }
3735 } 3735 }
3736 3736
3737 function native__DOMWindowWrappingImplementation__get__DOMWindow_onmousemove(_th is) { 3737 function native__DOMWindowWrappingImplementation__get_onmousemove(_this) {
3738 try { 3738 try {
3739 return __dom_wrap(_this.$dom.onmousemove); 3739 return __dom_wrap(_this.$dom.onmousemove);
3740 } catch (e) { 3740 } catch (e) {
3741 throw __dom_wrap_exception(e); 3741 throw __dom_wrap_exception(e);
3742 } 3742 }
3743 } 3743 }
3744 3744
3745 function native__DOMWindowWrappingImplementation__set__DOMWindow_onmousemove(_th is, value) { 3745 function native__DOMWindowWrappingImplementation__set_onmousemove(_this, value) {
3746 try { 3746 try {
3747 _this.$dom.onmousemove = __dom_unwrap(value); 3747 _this.$dom.onmousemove = __dom_unwrap(value);
3748 } catch (e) { 3748 } catch (e) {
3749 throw __dom_wrap_exception(e); 3749 throw __dom_wrap_exception(e);
3750 } 3750 }
3751 } 3751 }
3752 3752
3753 function native__DOMWindowWrappingImplementation__get__DOMWindow_onmouseout(_thi s) { 3753 function native__DOMWindowWrappingImplementation__get_onmouseout(_this) {
3754 try { 3754 try {
3755 return __dom_wrap(_this.$dom.onmouseout); 3755 return __dom_wrap(_this.$dom.onmouseout);
3756 } catch (e) { 3756 } catch (e) {
3757 throw __dom_wrap_exception(e); 3757 throw __dom_wrap_exception(e);
3758 } 3758 }
3759 } 3759 }
3760 3760
3761 function native__DOMWindowWrappingImplementation__set__DOMWindow_onmouseout(_thi s, value) { 3761 function native__DOMWindowWrappingImplementation__set_onmouseout(_this, value) {
3762 try { 3762 try {
3763 _this.$dom.onmouseout = __dom_unwrap(value); 3763 _this.$dom.onmouseout = __dom_unwrap(value);
3764 } catch (e) { 3764 } catch (e) {
3765 throw __dom_wrap_exception(e); 3765 throw __dom_wrap_exception(e);
3766 } 3766 }
3767 } 3767 }
3768 3768
3769 function native__DOMWindowWrappingImplementation__get__DOMWindow_onmouseover(_th is) { 3769 function native__DOMWindowWrappingImplementation__get_onmouseover(_this) {
3770 try { 3770 try {
3771 return __dom_wrap(_this.$dom.onmouseover); 3771 return __dom_wrap(_this.$dom.onmouseover);
3772 } catch (e) { 3772 } catch (e) {
3773 throw __dom_wrap_exception(e); 3773 throw __dom_wrap_exception(e);
3774 } 3774 }
3775 } 3775 }
3776 3776
3777 function native__DOMWindowWrappingImplementation__set__DOMWindow_onmouseover(_th is, value) { 3777 function native__DOMWindowWrappingImplementation__set_onmouseover(_this, value) {
3778 try { 3778 try {
3779 _this.$dom.onmouseover = __dom_unwrap(value); 3779 _this.$dom.onmouseover = __dom_unwrap(value);
3780 } catch (e) { 3780 } catch (e) {
3781 throw __dom_wrap_exception(e); 3781 throw __dom_wrap_exception(e);
3782 } 3782 }
3783 } 3783 }
3784 3784
3785 function native__DOMWindowWrappingImplementation__get__DOMWindow_onmouseup(_this ) { 3785 function native__DOMWindowWrappingImplementation__get_onmouseup(_this) {
3786 try { 3786 try {
3787 return __dom_wrap(_this.$dom.onmouseup); 3787 return __dom_wrap(_this.$dom.onmouseup);
3788 } catch (e) { 3788 } catch (e) {
3789 throw __dom_wrap_exception(e); 3789 throw __dom_wrap_exception(e);
3790 } 3790 }
3791 } 3791 }
3792 3792
3793 function native__DOMWindowWrappingImplementation__set__DOMWindow_onmouseup(_this , value) { 3793 function native__DOMWindowWrappingImplementation__set_onmouseup(_this, value) {
3794 try { 3794 try {
3795 _this.$dom.onmouseup = __dom_unwrap(value); 3795 _this.$dom.onmouseup = __dom_unwrap(value);
3796 } catch (e) { 3796 } catch (e) {
3797 throw __dom_wrap_exception(e); 3797 throw __dom_wrap_exception(e);
3798 } 3798 }
3799 } 3799 }
3800 3800
3801 function native__DOMWindowWrappingImplementation__get__DOMWindow_onmousewheel(_t his) { 3801 function native__DOMWindowWrappingImplementation__get_onmousewheel(_this) {
3802 try { 3802 try {
3803 return __dom_wrap(_this.$dom.onmousewheel); 3803 return __dom_wrap(_this.$dom.onmousewheel);
3804 } catch (e) { 3804 } catch (e) {
3805 throw __dom_wrap_exception(e); 3805 throw __dom_wrap_exception(e);
3806 } 3806 }
3807 } 3807 }
3808 3808
3809 function native__DOMWindowWrappingImplementation__set__DOMWindow_onmousewheel(_t his, value) { 3809 function native__DOMWindowWrappingImplementation__set_onmousewheel(_this, value) {
3810 try { 3810 try {
3811 _this.$dom.onmousewheel = __dom_unwrap(value); 3811 _this.$dom.onmousewheel = __dom_unwrap(value);
3812 } catch (e) { 3812 } catch (e) {
3813 throw __dom_wrap_exception(e); 3813 throw __dom_wrap_exception(e);
3814 } 3814 }
3815 } 3815 }
3816 3816
3817 function native__DOMWindowWrappingImplementation__get__DOMWindow_onoffline(_this ) { 3817 function native__DOMWindowWrappingImplementation__get_onoffline(_this) {
3818 try { 3818 try {
3819 return __dom_wrap(_this.$dom.onoffline); 3819 return __dom_wrap(_this.$dom.onoffline);
3820 } catch (e) { 3820 } catch (e) {
3821 throw __dom_wrap_exception(e); 3821 throw __dom_wrap_exception(e);
3822 } 3822 }
3823 } 3823 }
3824 3824
3825 function native__DOMWindowWrappingImplementation__set__DOMWindow_onoffline(_this , value) { 3825 function native__DOMWindowWrappingImplementation__set_onoffline(_this, value) {
3826 try { 3826 try {
3827 _this.$dom.onoffline = __dom_unwrap(value); 3827 _this.$dom.onoffline = __dom_unwrap(value);
3828 } catch (e) { 3828 } catch (e) {
3829 throw __dom_wrap_exception(e); 3829 throw __dom_wrap_exception(e);
3830 } 3830 }
3831 } 3831 }
3832 3832
3833 function native__DOMWindowWrappingImplementation__get__DOMWindow_ononline(_this) { 3833 function native__DOMWindowWrappingImplementation__get_ononline(_this) {
3834 try { 3834 try {
3835 return __dom_wrap(_this.$dom.ononline); 3835 return __dom_wrap(_this.$dom.ononline);
3836 } catch (e) { 3836 } catch (e) {
3837 throw __dom_wrap_exception(e); 3837 throw __dom_wrap_exception(e);
3838 } 3838 }
3839 } 3839 }
3840 3840
3841 function native__DOMWindowWrappingImplementation__set__DOMWindow_ononline(_this, value) { 3841 function native__DOMWindowWrappingImplementation__set_ononline(_this, value) {
3842 try { 3842 try {
3843 _this.$dom.ononline = __dom_unwrap(value); 3843 _this.$dom.ononline = __dom_unwrap(value);
3844 } catch (e) { 3844 } catch (e) {
3845 throw __dom_wrap_exception(e); 3845 throw __dom_wrap_exception(e);
3846 } 3846 }
3847 } 3847 }
3848 3848
3849 function native__DOMWindowWrappingImplementation__get__DOMWindow_onpagehide(_thi s) { 3849 function native__DOMWindowWrappingImplementation__get_onpagehide(_this) {
3850 try { 3850 try {
3851 return __dom_wrap(_this.$dom.onpagehide); 3851 return __dom_wrap(_this.$dom.onpagehide);
3852 } catch (e) { 3852 } catch (e) {
3853 throw __dom_wrap_exception(e); 3853 throw __dom_wrap_exception(e);
3854 } 3854 }
3855 } 3855 }
3856 3856
3857 function native__DOMWindowWrappingImplementation__set__DOMWindow_onpagehide(_thi s, value) { 3857 function native__DOMWindowWrappingImplementation__set_onpagehide(_this, value) {
3858 try { 3858 try {
3859 _this.$dom.onpagehide = __dom_unwrap(value); 3859 _this.$dom.onpagehide = __dom_unwrap(value);
3860 } catch (e) { 3860 } catch (e) {
3861 throw __dom_wrap_exception(e); 3861 throw __dom_wrap_exception(e);
3862 } 3862 }
3863 } 3863 }
3864 3864
3865 function native__DOMWindowWrappingImplementation__get__DOMWindow_onpageshow(_thi s) { 3865 function native__DOMWindowWrappingImplementation__get_onpageshow(_this) {
3866 try { 3866 try {
3867 return __dom_wrap(_this.$dom.onpageshow); 3867 return __dom_wrap(_this.$dom.onpageshow);
3868 } catch (e) { 3868 } catch (e) {
3869 throw __dom_wrap_exception(e); 3869 throw __dom_wrap_exception(e);
3870 } 3870 }
3871 } 3871 }
3872 3872
3873 function native__DOMWindowWrappingImplementation__set__DOMWindow_onpageshow(_thi s, value) { 3873 function native__DOMWindowWrappingImplementation__set_onpageshow(_this, value) {
3874 try { 3874 try {
3875 _this.$dom.onpageshow = __dom_unwrap(value); 3875 _this.$dom.onpageshow = __dom_unwrap(value);
3876 } catch (e) { 3876 } catch (e) {
3877 throw __dom_wrap_exception(e); 3877 throw __dom_wrap_exception(e);
3878 } 3878 }
3879 } 3879 }
3880 3880
3881 function native__DOMWindowWrappingImplementation__get__DOMWindow_onpause(_this) { 3881 function native__DOMWindowWrappingImplementation__get_onpause(_this) {
3882 try { 3882 try {
3883 return __dom_wrap(_this.$dom.onpause); 3883 return __dom_wrap(_this.$dom.onpause);
3884 } catch (e) { 3884 } catch (e) {
3885 throw __dom_wrap_exception(e); 3885 throw __dom_wrap_exception(e);
3886 } 3886 }
3887 } 3887 }
3888 3888
3889 function native__DOMWindowWrappingImplementation__set__DOMWindow_onpause(_this, value) { 3889 function native__DOMWindowWrappingImplementation__set_onpause(_this, value) {
3890 try { 3890 try {
3891 _this.$dom.onpause = __dom_unwrap(value); 3891 _this.$dom.onpause = __dom_unwrap(value);
3892 } catch (e) { 3892 } catch (e) {
3893 throw __dom_wrap_exception(e); 3893 throw __dom_wrap_exception(e);
3894 } 3894 }
3895 } 3895 }
3896 3896
3897 function native__DOMWindowWrappingImplementation__get__DOMWindow_onplay(_this) { 3897 function native__DOMWindowWrappingImplementation__get_onplay(_this) {
3898 try { 3898 try {
3899 return __dom_wrap(_this.$dom.onplay); 3899 return __dom_wrap(_this.$dom.onplay);
3900 } catch (e) { 3900 } catch (e) {
3901 throw __dom_wrap_exception(e); 3901 throw __dom_wrap_exception(e);
3902 } 3902 }
3903 } 3903 }
3904 3904
3905 function native__DOMWindowWrappingImplementation__set__DOMWindow_onplay(_this, v alue) { 3905 function native__DOMWindowWrappingImplementation__set_onplay(_this, value) {
3906 try { 3906 try {
3907 _this.$dom.onplay = __dom_unwrap(value); 3907 _this.$dom.onplay = __dom_unwrap(value);
3908 } catch (e) { 3908 } catch (e) {
3909 throw __dom_wrap_exception(e); 3909 throw __dom_wrap_exception(e);
3910 } 3910 }
3911 } 3911 }
3912 3912
3913 function native__DOMWindowWrappingImplementation__get__DOMWindow_onplaying(_this ) { 3913 function native__DOMWindowWrappingImplementation__get_onplaying(_this) {
3914 try { 3914 try {
3915 return __dom_wrap(_this.$dom.onplaying); 3915 return __dom_wrap(_this.$dom.onplaying);
3916 } catch (e) { 3916 } catch (e) {
3917 throw __dom_wrap_exception(e); 3917 throw __dom_wrap_exception(e);
3918 } 3918 }
3919 } 3919 }
3920 3920
3921 function native__DOMWindowWrappingImplementation__set__DOMWindow_onplaying(_this , value) { 3921 function native__DOMWindowWrappingImplementation__set_onplaying(_this, value) {
3922 try { 3922 try {
3923 _this.$dom.onplaying = __dom_unwrap(value); 3923 _this.$dom.onplaying = __dom_unwrap(value);
3924 } catch (e) { 3924 } catch (e) {
3925 throw __dom_wrap_exception(e); 3925 throw __dom_wrap_exception(e);
3926 } 3926 }
3927 } 3927 }
3928 3928
3929 function native__DOMWindowWrappingImplementation__get__DOMWindow_onpopstate(_thi s) { 3929 function native__DOMWindowWrappingImplementation__get_onpopstate(_this) {
3930 try { 3930 try {
3931 return __dom_wrap(_this.$dom.onpopstate); 3931 return __dom_wrap(_this.$dom.onpopstate);
3932 } catch (e) { 3932 } catch (e) {
3933 throw __dom_wrap_exception(e); 3933 throw __dom_wrap_exception(e);
3934 } 3934 }
3935 } 3935 }
3936 3936
3937 function native__DOMWindowWrappingImplementation__set__DOMWindow_onpopstate(_thi s, value) { 3937 function native__DOMWindowWrappingImplementation__set_onpopstate(_this, value) {
3938 try { 3938 try {
3939 _this.$dom.onpopstate = __dom_unwrap(value); 3939 _this.$dom.onpopstate = __dom_unwrap(value);
3940 } catch (e) { 3940 } catch (e) {
3941 throw __dom_wrap_exception(e); 3941 throw __dom_wrap_exception(e);
3942 } 3942 }
3943 } 3943 }
3944 3944
3945 function native__DOMWindowWrappingImplementation__get__DOMWindow_onprogress(_thi s) { 3945 function native__DOMWindowWrappingImplementation__get_onprogress(_this) {
3946 try { 3946 try {
3947 return __dom_wrap(_this.$dom.onprogress); 3947 return __dom_wrap(_this.$dom.onprogress);
3948 } catch (e) { 3948 } catch (e) {
3949 throw __dom_wrap_exception(e); 3949 throw __dom_wrap_exception(e);
3950 } 3950 }
3951 } 3951 }
3952 3952
3953 function native__DOMWindowWrappingImplementation__set__DOMWindow_onprogress(_thi s, value) { 3953 function native__DOMWindowWrappingImplementation__set_onprogress(_this, value) {
3954 try { 3954 try {
3955 _this.$dom.onprogress = __dom_unwrap(value); 3955 _this.$dom.onprogress = __dom_unwrap(value);
3956 } catch (e) { 3956 } catch (e) {
3957 throw __dom_wrap_exception(e); 3957 throw __dom_wrap_exception(e);
3958 } 3958 }
3959 } 3959 }
3960 3960
3961 function native__DOMWindowWrappingImplementation__get__DOMWindow_onratechange(_t his) { 3961 function native__DOMWindowWrappingImplementation__get_onratechange(_this) {
3962 try { 3962 try {
3963 return __dom_wrap(_this.$dom.onratechange); 3963 return __dom_wrap(_this.$dom.onratechange);
3964 } catch (e) { 3964 } catch (e) {
3965 throw __dom_wrap_exception(e); 3965 throw __dom_wrap_exception(e);
3966 } 3966 }
3967 } 3967 }
3968 3968
3969 function native__DOMWindowWrappingImplementation__set__DOMWindow_onratechange(_t his, value) { 3969 function native__DOMWindowWrappingImplementation__set_onratechange(_this, value) {
3970 try { 3970 try {
3971 _this.$dom.onratechange = __dom_unwrap(value); 3971 _this.$dom.onratechange = __dom_unwrap(value);
3972 } catch (e) { 3972 } catch (e) {
3973 throw __dom_wrap_exception(e); 3973 throw __dom_wrap_exception(e);
3974 } 3974 }
3975 } 3975 }
3976 3976
3977 function native__DOMWindowWrappingImplementation__get__DOMWindow_onreset(_this) { 3977 function native__DOMWindowWrappingImplementation__get_onreset(_this) {
3978 try { 3978 try {
3979 return __dom_wrap(_this.$dom.onreset); 3979 return __dom_wrap(_this.$dom.onreset);
3980 } catch (e) { 3980 } catch (e) {
3981 throw __dom_wrap_exception(e); 3981 throw __dom_wrap_exception(e);
3982 } 3982 }
3983 } 3983 }
3984 3984
3985 function native__DOMWindowWrappingImplementation__set__DOMWindow_onreset(_this, value) { 3985 function native__DOMWindowWrappingImplementation__set_onreset(_this, value) {
3986 try { 3986 try {
3987 _this.$dom.onreset = __dom_unwrap(value); 3987 _this.$dom.onreset = __dom_unwrap(value);
3988 } catch (e) { 3988 } catch (e) {
3989 throw __dom_wrap_exception(e); 3989 throw __dom_wrap_exception(e);
3990 } 3990 }
3991 } 3991 }
3992 3992
3993 function native__DOMWindowWrappingImplementation__get__DOMWindow_onresize(_this) { 3993 function native__DOMWindowWrappingImplementation__get_onresize(_this) {
3994 try { 3994 try {
3995 return __dom_wrap(_this.$dom.onresize); 3995 return __dom_wrap(_this.$dom.onresize);
3996 } catch (e) { 3996 } catch (e) {
3997 throw __dom_wrap_exception(e); 3997 throw __dom_wrap_exception(e);
3998 } 3998 }
3999 } 3999 }
4000 4000
4001 function native__DOMWindowWrappingImplementation__set__DOMWindow_onresize(_this, value) { 4001 function native__DOMWindowWrappingImplementation__set_onresize(_this, value) {
4002 try { 4002 try {
4003 _this.$dom.onresize = __dom_unwrap(value); 4003 _this.$dom.onresize = __dom_unwrap(value);
4004 } catch (e) { 4004 } catch (e) {
4005 throw __dom_wrap_exception(e); 4005 throw __dom_wrap_exception(e);
4006 } 4006 }
4007 } 4007 }
4008 4008
4009 function native__DOMWindowWrappingImplementation__get__DOMWindow_onscroll(_this) { 4009 function native__DOMWindowWrappingImplementation__get_onscroll(_this) {
4010 try { 4010 try {
4011 return __dom_wrap(_this.$dom.onscroll); 4011 return __dom_wrap(_this.$dom.onscroll);
4012 } catch (e) { 4012 } catch (e) {
4013 throw __dom_wrap_exception(e); 4013 throw __dom_wrap_exception(e);
4014 } 4014 }
4015 } 4015 }
4016 4016
4017 function native__DOMWindowWrappingImplementation__set__DOMWindow_onscroll(_this, value) { 4017 function native__DOMWindowWrappingImplementation__set_onscroll(_this, value) {
4018 try { 4018 try {
4019 _this.$dom.onscroll = __dom_unwrap(value); 4019 _this.$dom.onscroll = __dom_unwrap(value);
4020 } catch (e) { 4020 } catch (e) {
4021 throw __dom_wrap_exception(e); 4021 throw __dom_wrap_exception(e);
4022 } 4022 }
4023 } 4023 }
4024 4024
4025 function native__DOMWindowWrappingImplementation__get__DOMWindow_onsearch(_this) { 4025 function native__DOMWindowWrappingImplementation__get_onsearch(_this) {
4026 try { 4026 try {
4027 return __dom_wrap(_this.$dom.onsearch); 4027 return __dom_wrap(_this.$dom.onsearch);
4028 } catch (e) { 4028 } catch (e) {
4029 throw __dom_wrap_exception(e); 4029 throw __dom_wrap_exception(e);
4030 } 4030 }
4031 } 4031 }
4032 4032
4033 function native__DOMWindowWrappingImplementation__set__DOMWindow_onsearch(_this, value) { 4033 function native__DOMWindowWrappingImplementation__set_onsearch(_this, value) {
4034 try { 4034 try {
4035 _this.$dom.onsearch = __dom_unwrap(value); 4035 _this.$dom.onsearch = __dom_unwrap(value);
4036 } catch (e) { 4036 } catch (e) {
4037 throw __dom_wrap_exception(e); 4037 throw __dom_wrap_exception(e);
4038 } 4038 }
4039 } 4039 }
4040 4040
4041 function native__DOMWindowWrappingImplementation__get__DOMWindow_onseeked(_this) { 4041 function native__DOMWindowWrappingImplementation__get_onseeked(_this) {
4042 try { 4042 try {
4043 return __dom_wrap(_this.$dom.onseeked); 4043 return __dom_wrap(_this.$dom.onseeked);
4044 } catch (e) { 4044 } catch (e) {
4045 throw __dom_wrap_exception(e); 4045 throw __dom_wrap_exception(e);
4046 } 4046 }
4047 } 4047 }
4048 4048
4049 function native__DOMWindowWrappingImplementation__set__DOMWindow_onseeked(_this, value) { 4049 function native__DOMWindowWrappingImplementation__set_onseeked(_this, value) {
4050 try { 4050 try {
4051 _this.$dom.onseeked = __dom_unwrap(value); 4051 _this.$dom.onseeked = __dom_unwrap(value);
4052 } catch (e) { 4052 } catch (e) {
4053 throw __dom_wrap_exception(e); 4053 throw __dom_wrap_exception(e);
4054 } 4054 }
4055 } 4055 }
4056 4056
4057 function native__DOMWindowWrappingImplementation__get__DOMWindow_onseeking(_this ) { 4057 function native__DOMWindowWrappingImplementation__get_onseeking(_this) {
4058 try { 4058 try {
4059 return __dom_wrap(_this.$dom.onseeking); 4059 return __dom_wrap(_this.$dom.onseeking);
4060 } catch (e) { 4060 } catch (e) {
4061 throw __dom_wrap_exception(e); 4061 throw __dom_wrap_exception(e);
4062 } 4062 }
4063 } 4063 }
4064 4064
4065 function native__DOMWindowWrappingImplementation__set__DOMWindow_onseeking(_this , value) { 4065 function native__DOMWindowWrappingImplementation__set_onseeking(_this, value) {
4066 try { 4066 try {
4067 _this.$dom.onseeking = __dom_unwrap(value); 4067 _this.$dom.onseeking = __dom_unwrap(value);
4068 } catch (e) { 4068 } catch (e) {
4069 throw __dom_wrap_exception(e); 4069 throw __dom_wrap_exception(e);
4070 } 4070 }
4071 } 4071 }
4072 4072
4073 function native__DOMWindowWrappingImplementation__get__DOMWindow_onselect(_this) { 4073 function native__DOMWindowWrappingImplementation__get_onselect(_this) {
4074 try { 4074 try {
4075 return __dom_wrap(_this.$dom.onselect); 4075 return __dom_wrap(_this.$dom.onselect);
4076 } catch (e) { 4076 } catch (e) {
4077 throw __dom_wrap_exception(e); 4077 throw __dom_wrap_exception(e);
4078 } 4078 }
4079 } 4079 }
4080 4080
4081 function native__DOMWindowWrappingImplementation__set__DOMWindow_onselect(_this, value) { 4081 function native__DOMWindowWrappingImplementation__set_onselect(_this, value) {
4082 try { 4082 try {
4083 _this.$dom.onselect = __dom_unwrap(value); 4083 _this.$dom.onselect = __dom_unwrap(value);
4084 } catch (e) { 4084 } catch (e) {
4085 throw __dom_wrap_exception(e); 4085 throw __dom_wrap_exception(e);
4086 } 4086 }
4087 } 4087 }
4088 4088
4089 function native__DOMWindowWrappingImplementation__get__DOMWindow_onstalled(_this ) { 4089 function native__DOMWindowWrappingImplementation__get_onstalled(_this) {
4090 try { 4090 try {
4091 return __dom_wrap(_this.$dom.onstalled); 4091 return __dom_wrap(_this.$dom.onstalled);
4092 } catch (e) { 4092 } catch (e) {
4093 throw __dom_wrap_exception(e); 4093 throw __dom_wrap_exception(e);
4094 } 4094 }
4095 } 4095 }
4096 4096
4097 function native__DOMWindowWrappingImplementation__set__DOMWindow_onstalled(_this , value) { 4097 function native__DOMWindowWrappingImplementation__set_onstalled(_this, value) {
4098 try { 4098 try {
4099 _this.$dom.onstalled = __dom_unwrap(value); 4099 _this.$dom.onstalled = __dom_unwrap(value);
4100 } catch (e) { 4100 } catch (e) {
4101 throw __dom_wrap_exception(e); 4101 throw __dom_wrap_exception(e);
4102 } 4102 }
4103 } 4103 }
4104 4104
4105 function native__DOMWindowWrappingImplementation__get__DOMWindow_onstorage(_this ) { 4105 function native__DOMWindowWrappingImplementation__get_onstorage(_this) {
4106 try { 4106 try {
4107 return __dom_wrap(_this.$dom.onstorage); 4107 return __dom_wrap(_this.$dom.onstorage);
4108 } catch (e) { 4108 } catch (e) {
4109 throw __dom_wrap_exception(e); 4109 throw __dom_wrap_exception(e);
4110 } 4110 }
4111 } 4111 }
4112 4112
4113 function native__DOMWindowWrappingImplementation__set__DOMWindow_onstorage(_this , value) { 4113 function native__DOMWindowWrappingImplementation__set_onstorage(_this, value) {
4114 try { 4114 try {
4115 _this.$dom.onstorage = __dom_unwrap(value); 4115 _this.$dom.onstorage = __dom_unwrap(value);
4116 } catch (e) { 4116 } catch (e) {
4117 throw __dom_wrap_exception(e); 4117 throw __dom_wrap_exception(e);
4118 } 4118 }
4119 } 4119 }
4120 4120
4121 function native__DOMWindowWrappingImplementation__get__DOMWindow_onsubmit(_this) { 4121 function native__DOMWindowWrappingImplementation__get_onsubmit(_this) {
4122 try { 4122 try {
4123 return __dom_wrap(_this.$dom.onsubmit); 4123 return __dom_wrap(_this.$dom.onsubmit);
4124 } catch (e) { 4124 } catch (e) {
4125 throw __dom_wrap_exception(e); 4125 throw __dom_wrap_exception(e);
4126 } 4126 }
4127 } 4127 }
4128 4128
4129 function native__DOMWindowWrappingImplementation__set__DOMWindow_onsubmit(_this, value) { 4129 function native__DOMWindowWrappingImplementation__set_onsubmit(_this, value) {
4130 try { 4130 try {
4131 _this.$dom.onsubmit = __dom_unwrap(value); 4131 _this.$dom.onsubmit = __dom_unwrap(value);
4132 } catch (e) { 4132 } catch (e) {
4133 throw __dom_wrap_exception(e); 4133 throw __dom_wrap_exception(e);
4134 } 4134 }
4135 } 4135 }
4136 4136
4137 function native__DOMWindowWrappingImplementation__get__DOMWindow_onsuspend(_this ) { 4137 function native__DOMWindowWrappingImplementation__get_onsuspend(_this) {
4138 try { 4138 try {
4139 return __dom_wrap(_this.$dom.onsuspend); 4139 return __dom_wrap(_this.$dom.onsuspend);
4140 } catch (e) { 4140 } catch (e) {
4141 throw __dom_wrap_exception(e); 4141 throw __dom_wrap_exception(e);
4142 } 4142 }
4143 } 4143 }
4144 4144
4145 function native__DOMWindowWrappingImplementation__set__DOMWindow_onsuspend(_this , value) { 4145 function native__DOMWindowWrappingImplementation__set_onsuspend(_this, value) {
4146 try { 4146 try {
4147 _this.$dom.onsuspend = __dom_unwrap(value); 4147 _this.$dom.onsuspend = __dom_unwrap(value);
4148 } catch (e) { 4148 } catch (e) {
4149 throw __dom_wrap_exception(e); 4149 throw __dom_wrap_exception(e);
4150 } 4150 }
4151 } 4151 }
4152 4152
4153 function native__DOMWindowWrappingImplementation__get__DOMWindow_ontimeupdate(_t his) { 4153 function native__DOMWindowWrappingImplementation__get_ontimeupdate(_this) {
4154 try { 4154 try {
4155 return __dom_wrap(_this.$dom.ontimeupdate); 4155 return __dom_wrap(_this.$dom.ontimeupdate);
4156 } catch (e) { 4156 } catch (e) {
4157 throw __dom_wrap_exception(e); 4157 throw __dom_wrap_exception(e);
4158 } 4158 }
4159 } 4159 }
4160 4160
4161 function native__DOMWindowWrappingImplementation__set__DOMWindow_ontimeupdate(_t his, value) { 4161 function native__DOMWindowWrappingImplementation__set_ontimeupdate(_this, value) {
4162 try { 4162 try {
4163 _this.$dom.ontimeupdate = __dom_unwrap(value); 4163 _this.$dom.ontimeupdate = __dom_unwrap(value);
4164 } catch (e) { 4164 } catch (e) {
4165 throw __dom_wrap_exception(e); 4165 throw __dom_wrap_exception(e);
4166 } 4166 }
4167 } 4167 }
4168 4168
4169 function native__DOMWindowWrappingImplementation__get__DOMWindow_ontouchcancel(_ this) { 4169 function native__DOMWindowWrappingImplementation__get_ontouchcancel(_this) {
4170 try { 4170 try {
4171 return __dom_wrap(_this.$dom.ontouchcancel); 4171 return __dom_wrap(_this.$dom.ontouchcancel);
4172 } catch (e) { 4172 } catch (e) {
4173 throw __dom_wrap_exception(e); 4173 throw __dom_wrap_exception(e);
4174 } 4174 }
4175 } 4175 }
4176 4176
4177 function native__DOMWindowWrappingImplementation__set__DOMWindow_ontouchcancel(_ this, value) { 4177 function native__DOMWindowWrappingImplementation__set_ontouchcancel(_this, value ) {
4178 try { 4178 try {
4179 _this.$dom.ontouchcancel = __dom_unwrap(value); 4179 _this.$dom.ontouchcancel = __dom_unwrap(value);
4180 } catch (e) { 4180 } catch (e) {
4181 throw __dom_wrap_exception(e); 4181 throw __dom_wrap_exception(e);
4182 } 4182 }
4183 } 4183 }
4184 4184
4185 function native__DOMWindowWrappingImplementation__get__DOMWindow_ontouchend(_thi s) { 4185 function native__DOMWindowWrappingImplementation__get_ontouchend(_this) {
4186 try { 4186 try {
4187 return __dom_wrap(_this.$dom.ontouchend); 4187 return __dom_wrap(_this.$dom.ontouchend);
4188 } catch (e) { 4188 } catch (e) {
4189 throw __dom_wrap_exception(e); 4189 throw __dom_wrap_exception(e);
4190 } 4190 }
4191 } 4191 }
4192 4192
4193 function native__DOMWindowWrappingImplementation__set__DOMWindow_ontouchend(_thi s, value) { 4193 function native__DOMWindowWrappingImplementation__set_ontouchend(_this, value) {
4194 try { 4194 try {
4195 _this.$dom.ontouchend = __dom_unwrap(value); 4195 _this.$dom.ontouchend = __dom_unwrap(value);
4196 } catch (e) { 4196 } catch (e) {
4197 throw __dom_wrap_exception(e); 4197 throw __dom_wrap_exception(e);
4198 } 4198 }
4199 } 4199 }
4200 4200
4201 function native__DOMWindowWrappingImplementation__get__DOMWindow_ontouchmove(_th is) { 4201 function native__DOMWindowWrappingImplementation__get_ontouchmove(_this) {
4202 try { 4202 try {
4203 return __dom_wrap(_this.$dom.ontouchmove); 4203 return __dom_wrap(_this.$dom.ontouchmove);
4204 } catch (e) { 4204 } catch (e) {
4205 throw __dom_wrap_exception(e); 4205 throw __dom_wrap_exception(e);
4206 } 4206 }
4207 } 4207 }
4208 4208
4209 function native__DOMWindowWrappingImplementation__set__DOMWindow_ontouchmove(_th is, value) { 4209 function native__DOMWindowWrappingImplementation__set_ontouchmove(_this, value) {
4210 try { 4210 try {
4211 _this.$dom.ontouchmove = __dom_unwrap(value); 4211 _this.$dom.ontouchmove = __dom_unwrap(value);
4212 } catch (e) { 4212 } catch (e) {
4213 throw __dom_wrap_exception(e); 4213 throw __dom_wrap_exception(e);
4214 } 4214 }
4215 } 4215 }
4216 4216
4217 function native__DOMWindowWrappingImplementation__get__DOMWindow_ontouchstart(_t his) { 4217 function native__DOMWindowWrappingImplementation__get_ontouchstart(_this) {
4218 try { 4218 try {
4219 return __dom_wrap(_this.$dom.ontouchstart); 4219 return __dom_wrap(_this.$dom.ontouchstart);
4220 } catch (e) { 4220 } catch (e) {
4221 throw __dom_wrap_exception(e); 4221 throw __dom_wrap_exception(e);
4222 } 4222 }
4223 } 4223 }
4224 4224
4225 function native__DOMWindowWrappingImplementation__set__DOMWindow_ontouchstart(_t his, value) { 4225 function native__DOMWindowWrappingImplementation__set_ontouchstart(_this, value) {
4226 try { 4226 try {
4227 _this.$dom.ontouchstart = __dom_unwrap(value); 4227 _this.$dom.ontouchstart = __dom_unwrap(value);
4228 } catch (e) { 4228 } catch (e) {
4229 throw __dom_wrap_exception(e); 4229 throw __dom_wrap_exception(e);
4230 } 4230 }
4231 } 4231 }
4232 4232
4233 function native__DOMWindowWrappingImplementation__get__DOMWindow_onunload(_this) { 4233 function native__DOMWindowWrappingImplementation__get_onunload(_this) {
4234 try { 4234 try {
4235 return __dom_wrap(_this.$dom.onunload); 4235 return __dom_wrap(_this.$dom.onunload);
4236 } catch (e) { 4236 } catch (e) {
4237 throw __dom_wrap_exception(e); 4237 throw __dom_wrap_exception(e);
4238 } 4238 }
4239 } 4239 }
4240 4240
4241 function native__DOMWindowWrappingImplementation__set__DOMWindow_onunload(_this, value) { 4241 function native__DOMWindowWrappingImplementation__set_onunload(_this, value) {
4242 try { 4242 try {
4243 _this.$dom.onunload = __dom_unwrap(value); 4243 _this.$dom.onunload = __dom_unwrap(value);
4244 } catch (e) { 4244 } catch (e) {
4245 throw __dom_wrap_exception(e); 4245 throw __dom_wrap_exception(e);
4246 } 4246 }
4247 } 4247 }
4248 4248
4249 function native__DOMWindowWrappingImplementation__get__DOMWindow_onvolumechange( _this) { 4249 function native__DOMWindowWrappingImplementation__get_onvolumechange(_this) {
4250 try { 4250 try {
4251 return __dom_wrap(_this.$dom.onvolumechange); 4251 return __dom_wrap(_this.$dom.onvolumechange);
4252 } catch (e) { 4252 } catch (e) {
4253 throw __dom_wrap_exception(e); 4253 throw __dom_wrap_exception(e);
4254 } 4254 }
4255 } 4255 }
4256 4256
4257 function native__DOMWindowWrappingImplementation__set__DOMWindow_onvolumechange( _this, value) { 4257 function native__DOMWindowWrappingImplementation__set_onvolumechange(_this, valu e) {
4258 try { 4258 try {
4259 _this.$dom.onvolumechange = __dom_unwrap(value); 4259 _this.$dom.onvolumechange = __dom_unwrap(value);
4260 } catch (e) { 4260 } catch (e) {
4261 throw __dom_wrap_exception(e); 4261 throw __dom_wrap_exception(e);
4262 } 4262 }
4263 } 4263 }
4264 4264
4265 function native__DOMWindowWrappingImplementation__get__DOMWindow_onwaiting(_this ) { 4265 function native__DOMWindowWrappingImplementation__get_onwaiting(_this) {
4266 try { 4266 try {
4267 return __dom_wrap(_this.$dom.onwaiting); 4267 return __dom_wrap(_this.$dom.onwaiting);
4268 } catch (e) { 4268 } catch (e) {
4269 throw __dom_wrap_exception(e); 4269 throw __dom_wrap_exception(e);
4270 } 4270 }
4271 } 4271 }
4272 4272
4273 function native__DOMWindowWrappingImplementation__set__DOMWindow_onwaiting(_this , value) { 4273 function native__DOMWindowWrappingImplementation__set_onwaiting(_this, value) {
4274 try { 4274 try {
4275 _this.$dom.onwaiting = __dom_unwrap(value); 4275 _this.$dom.onwaiting = __dom_unwrap(value);
4276 } catch (e) { 4276 } catch (e) {
4277 throw __dom_wrap_exception(e); 4277 throw __dom_wrap_exception(e);
4278 } 4278 }
4279 } 4279 }
4280 4280
4281 function native__DOMWindowWrappingImplementation__get__DOMWindow_onwebkitanimati onend(_this) { 4281 function native__DOMWindowWrappingImplementation__get_onwebkitanimationend(_this ) {
4282 try { 4282 try {
4283 return __dom_wrap(_this.$dom.onwebkitanimationend); 4283 return __dom_wrap(_this.$dom.onwebkitanimationend);
4284 } catch (e) { 4284 } catch (e) {
4285 throw __dom_wrap_exception(e); 4285 throw __dom_wrap_exception(e);
4286 } 4286 }
4287 } 4287 }
4288 4288
4289 function native__DOMWindowWrappingImplementation__set__DOMWindow_onwebkitanimati onend(_this, value) { 4289 function native__DOMWindowWrappingImplementation__set_onwebkitanimationend(_this , value) {
4290 try { 4290 try {
4291 _this.$dom.onwebkitanimationend = __dom_unwrap(value); 4291 _this.$dom.onwebkitanimationend = __dom_unwrap(value);
4292 } catch (e) { 4292 } catch (e) {
4293 throw __dom_wrap_exception(e); 4293 throw __dom_wrap_exception(e);
4294 } 4294 }
4295 } 4295 }
4296 4296
4297 function native__DOMWindowWrappingImplementation__get__DOMWindow_onwebkitanimati oniteration(_this) { 4297 function native__DOMWindowWrappingImplementation__get_onwebkitanimationiteration (_this) {
4298 try { 4298 try {
4299 return __dom_wrap(_this.$dom.onwebkitanimationiteration); 4299 return __dom_wrap(_this.$dom.onwebkitanimationiteration);
4300 } catch (e) { 4300 } catch (e) {
4301 throw __dom_wrap_exception(e); 4301 throw __dom_wrap_exception(e);
4302 } 4302 }
4303 } 4303 }
4304 4304
4305 function native__DOMWindowWrappingImplementation__set__DOMWindow_onwebkitanimati oniteration(_this, value) { 4305 function native__DOMWindowWrappingImplementation__set_onwebkitanimationiteration (_this, value) {
4306 try { 4306 try {
4307 _this.$dom.onwebkitanimationiteration = __dom_unwrap(value); 4307 _this.$dom.onwebkitanimationiteration = __dom_unwrap(value);
4308 } catch (e) { 4308 } catch (e) {
4309 throw __dom_wrap_exception(e); 4309 throw __dom_wrap_exception(e);
4310 } 4310 }
4311 } 4311 }
4312 4312
4313 function native__DOMWindowWrappingImplementation__get__DOMWindow_onwebkitanimati onstart(_this) { 4313 function native__DOMWindowWrappingImplementation__get_onwebkitanimationstart(_th is) {
4314 try { 4314 try {
4315 return __dom_wrap(_this.$dom.onwebkitanimationstart); 4315 return __dom_wrap(_this.$dom.onwebkitanimationstart);
4316 } catch (e) { 4316 } catch (e) {
4317 throw __dom_wrap_exception(e); 4317 throw __dom_wrap_exception(e);
4318 } 4318 }
4319 } 4319 }
4320 4320
4321 function native__DOMWindowWrappingImplementation__set__DOMWindow_onwebkitanimati onstart(_this, value) { 4321 function native__DOMWindowWrappingImplementation__set_onwebkitanimationstart(_th is, value) {
4322 try { 4322 try {
4323 _this.$dom.onwebkitanimationstart = __dom_unwrap(value); 4323 _this.$dom.onwebkitanimationstart = __dom_unwrap(value);
4324 } catch (e) { 4324 } catch (e) {
4325 throw __dom_wrap_exception(e); 4325 throw __dom_wrap_exception(e);
4326 } 4326 }
4327 } 4327 }
4328 4328
4329 function native__DOMWindowWrappingImplementation__get__DOMWindow_onwebkittransit ionend(_this) { 4329 function native__DOMWindowWrappingImplementation__get_onwebkittransitionend(_thi s) {
4330 try { 4330 try {
4331 return __dom_wrap(_this.$dom.onwebkittransitionend); 4331 return __dom_wrap(_this.$dom.onwebkittransitionend);
4332 } catch (e) { 4332 } catch (e) {
4333 throw __dom_wrap_exception(e); 4333 throw __dom_wrap_exception(e);
4334 } 4334 }
4335 } 4335 }
4336 4336
4337 function native__DOMWindowWrappingImplementation__set__DOMWindow_onwebkittransit ionend(_this, value) { 4337 function native__DOMWindowWrappingImplementation__set_onwebkittransitionend(_thi s, value) {
4338 try { 4338 try {
4339 _this.$dom.onwebkittransitionend = __dom_unwrap(value); 4339 _this.$dom.onwebkittransitionend = __dom_unwrap(value);
4340 } catch (e) { 4340 } catch (e) {
4341 throw __dom_wrap_exception(e); 4341 throw __dom_wrap_exception(e);
4342 } 4342 }
4343 } 4343 }
4344 4344
4345 function native__DOMWindowWrappingImplementation__get__DOMWindow_opener(_this) { 4345 function native__DOMWindowWrappingImplementation__get_opener(_this) {
4346 try { 4346 try {
4347 return __dom_wrap(_this.$dom.opener); 4347 return __dom_wrap(_this.$dom.opener);
4348 } catch (e) { 4348 } catch (e) {
4349 throw __dom_wrap_exception(e); 4349 throw __dom_wrap_exception(e);
4350 } 4350 }
4351 } 4351 }
4352 4352
4353 function native__DOMWindowWrappingImplementation__set__DOMWindow_opener(_this, v alue) { 4353 function native__DOMWindowWrappingImplementation__set_opener(_this, value) {
4354 try { 4354 try {
4355 _this.$dom.opener = __dom_unwrap(value); 4355 _this.$dom.opener = __dom_unwrap(value);
4356 } catch (e) { 4356 } catch (e) {
4357 throw __dom_wrap_exception(e); 4357 throw __dom_wrap_exception(e);
4358 } 4358 }
4359 } 4359 }
4360 4360
4361 function native__DOMWindowWrappingImplementation__get__DOMWindow_outerHeight(_th is) { 4361 function native__DOMWindowWrappingImplementation__get_outerHeight(_this) {
4362 try { 4362 try {
4363 return __dom_wrap(_this.$dom.outerHeight); 4363 return __dom_wrap(_this.$dom.outerHeight);
4364 } catch (e) { 4364 } catch (e) {
4365 throw __dom_wrap_exception(e); 4365 throw __dom_wrap_exception(e);
4366 } 4366 }
4367 } 4367 }
4368 4368
4369 function native__DOMWindowWrappingImplementation__set__DOMWindow_outerHeight(_th is, value) { 4369 function native__DOMWindowWrappingImplementation__set_outerHeight(_this, value) {
4370 try { 4370 try {
4371 _this.$dom.outerHeight = __dom_unwrap(value); 4371 _this.$dom.outerHeight = __dom_unwrap(value);
4372 } catch (e) { 4372 } catch (e) {
4373 throw __dom_wrap_exception(e); 4373 throw __dom_wrap_exception(e);
4374 } 4374 }
4375 } 4375 }
4376 4376
4377 function native__DOMWindowWrappingImplementation__get__DOMWindow_outerWidth(_thi s) { 4377 function native__DOMWindowWrappingImplementation__get_outerWidth(_this) {
4378 try { 4378 try {
4379 return __dom_wrap(_this.$dom.outerWidth); 4379 return __dom_wrap(_this.$dom.outerWidth);
4380 } catch (e) { 4380 } catch (e) {
4381 throw __dom_wrap_exception(e); 4381 throw __dom_wrap_exception(e);
4382 } 4382 }
4383 } 4383 }
4384 4384
4385 function native__DOMWindowWrappingImplementation__set__DOMWindow_outerWidth(_thi s, value) { 4385 function native__DOMWindowWrappingImplementation__set_outerWidth(_this, value) {
4386 try { 4386 try {
4387 _this.$dom.outerWidth = __dom_unwrap(value); 4387 _this.$dom.outerWidth = __dom_unwrap(value);
4388 } catch (e) { 4388 } catch (e) {
4389 throw __dom_wrap_exception(e); 4389 throw __dom_wrap_exception(e);
4390 } 4390 }
4391 } 4391 }
4392 4392
4393 function native__DOMWindowWrappingImplementation__get__DOMWindow_pageXOffset(_th is) { 4393 function native__DOMWindowWrappingImplementation__get_pageXOffset(_this) {
4394 try { 4394 try {
4395 return __dom_wrap(_this.$dom.pageXOffset); 4395 return __dom_wrap(_this.$dom.pageXOffset);
4396 } catch (e) { 4396 } catch (e) {
4397 throw __dom_wrap_exception(e); 4397 throw __dom_wrap_exception(e);
4398 } 4398 }
4399 } 4399 }
4400 4400
4401 function native__DOMWindowWrappingImplementation__get__DOMWindow_pageYOffset(_th is) { 4401 function native__DOMWindowWrappingImplementation__get_pageYOffset(_this) {
4402 try { 4402 try {
4403 return __dom_wrap(_this.$dom.pageYOffset); 4403 return __dom_wrap(_this.$dom.pageYOffset);
4404 } catch (e) { 4404 } catch (e) {
4405 throw __dom_wrap_exception(e); 4405 throw __dom_wrap_exception(e);
4406 } 4406 }
4407 } 4407 }
4408 4408
4409 function native__DOMWindowWrappingImplementation__get__DOMWindow_parent(_this) { 4409 function native__DOMWindowWrappingImplementation__get_parent(_this) {
4410 try { 4410 try {
4411 return __dom_wrap(_this.$dom.parent); 4411 return __dom_wrap(_this.$dom.parent);
4412 } catch (e) { 4412 } catch (e) {
4413 throw __dom_wrap_exception(e); 4413 throw __dom_wrap_exception(e);
4414 } 4414 }
4415 } 4415 }
4416 4416
4417 function native__DOMWindowWrappingImplementation__set__DOMWindow_parent(_this, v alue) { 4417 function native__DOMWindowWrappingImplementation__set_parent(_this, value) {
4418 try { 4418 try {
4419 _this.$dom.parent = __dom_unwrap(value); 4419 _this.$dom.parent = __dom_unwrap(value);
4420 } catch (e) { 4420 } catch (e) {
4421 throw __dom_wrap_exception(e); 4421 throw __dom_wrap_exception(e);
4422 } 4422 }
4423 } 4423 }
4424 4424
4425 function native__DOMWindowWrappingImplementation__get__DOMWindow_performance(_th is) { 4425 function native__DOMWindowWrappingImplementation__get_performance(_this) {
4426 try { 4426 try {
4427 return __dom_wrap(_this.$dom.performance); 4427 return __dom_wrap(_this.$dom.performance);
4428 } catch (e) { 4428 } catch (e) {
4429 throw __dom_wrap_exception(e); 4429 throw __dom_wrap_exception(e);
4430 } 4430 }
4431 } 4431 }
4432 4432
4433 function native__DOMWindowWrappingImplementation__set__DOMWindow_performance(_th is, value) { 4433 function native__DOMWindowWrappingImplementation__set_performance(_this, value) {
4434 try { 4434 try {
4435 _this.$dom.performance = __dom_unwrap(value); 4435 _this.$dom.performance = __dom_unwrap(value);
4436 } catch (e) { 4436 } catch (e) {
4437 throw __dom_wrap_exception(e); 4437 throw __dom_wrap_exception(e);
4438 } 4438 }
4439 } 4439 }
4440 4440
4441 function native__DOMWindowWrappingImplementation__get__DOMWindow_personalbar(_th is) { 4441 function native__DOMWindowWrappingImplementation__get_personalbar(_this) {
4442 try { 4442 try {
4443 return __dom_wrap(_this.$dom.personalbar); 4443 return __dom_wrap(_this.$dom.personalbar);
4444 } catch (e) { 4444 } catch (e) {
4445 throw __dom_wrap_exception(e); 4445 throw __dom_wrap_exception(e);
4446 } 4446 }
4447 } 4447 }
4448 4448
4449 function native__DOMWindowWrappingImplementation__set__DOMWindow_personalbar(_th is, value) { 4449 function native__DOMWindowWrappingImplementation__set_personalbar(_this, value) {
4450 try { 4450 try {
4451 _this.$dom.personalbar = __dom_unwrap(value); 4451 _this.$dom.personalbar = __dom_unwrap(value);
4452 } catch (e) { 4452 } catch (e) {
4453 throw __dom_wrap_exception(e); 4453 throw __dom_wrap_exception(e);
4454 } 4454 }
4455 } 4455 }
4456 4456
4457 function native__DOMWindowWrappingImplementation__get__DOMWindow_screen(_this) { 4457 function native__DOMWindowWrappingImplementation__get_screen(_this) {
4458 try { 4458 try {
4459 return __dom_wrap(_this.$dom.screen); 4459 return __dom_wrap(_this.$dom.screen);
4460 } catch (e) { 4460 } catch (e) {
4461 throw __dom_wrap_exception(e); 4461 throw __dom_wrap_exception(e);
4462 } 4462 }
4463 } 4463 }
4464 4464
4465 function native__DOMWindowWrappingImplementation__set__DOMWindow_screen(_this, v alue) { 4465 function native__DOMWindowWrappingImplementation__set_screen(_this, value) {
4466 try { 4466 try {
4467 _this.$dom.screen = __dom_unwrap(value); 4467 _this.$dom.screen = __dom_unwrap(value);
4468 } catch (e) { 4468 } catch (e) {
4469 throw __dom_wrap_exception(e); 4469 throw __dom_wrap_exception(e);
4470 } 4470 }
4471 } 4471 }
4472 4472
4473 function native__DOMWindowWrappingImplementation__get__DOMWindow_screenLeft(_thi s) { 4473 function native__DOMWindowWrappingImplementation__get_screenLeft(_this) {
4474 try { 4474 try {
4475 return __dom_wrap(_this.$dom.screenLeft); 4475 return __dom_wrap(_this.$dom.screenLeft);
4476 } catch (e) { 4476 } catch (e) {
4477 throw __dom_wrap_exception(e); 4477 throw __dom_wrap_exception(e);
4478 } 4478 }
4479 } 4479 }
4480 4480
4481 function native__DOMWindowWrappingImplementation__set__DOMWindow_screenLeft(_thi s, value) { 4481 function native__DOMWindowWrappingImplementation__set_screenLeft(_this, value) {
4482 try { 4482 try {
4483 _this.$dom.screenLeft = __dom_unwrap(value); 4483 _this.$dom.screenLeft = __dom_unwrap(value);
4484 } catch (e) { 4484 } catch (e) {
4485 throw __dom_wrap_exception(e); 4485 throw __dom_wrap_exception(e);
4486 } 4486 }
4487 } 4487 }
4488 4488
4489 function native__DOMWindowWrappingImplementation__get__DOMWindow_screenTop(_this ) { 4489 function native__DOMWindowWrappingImplementation__get_screenTop(_this) {
4490 try { 4490 try {
4491 return __dom_wrap(_this.$dom.screenTop); 4491 return __dom_wrap(_this.$dom.screenTop);
4492 } catch (e) { 4492 } catch (e) {
4493 throw __dom_wrap_exception(e); 4493 throw __dom_wrap_exception(e);
4494 } 4494 }
4495 } 4495 }
4496 4496
4497 function native__DOMWindowWrappingImplementation__set__DOMWindow_screenTop(_this , value) { 4497 function native__DOMWindowWrappingImplementation__set_screenTop(_this, value) {
4498 try { 4498 try {
4499 _this.$dom.screenTop = __dom_unwrap(value); 4499 _this.$dom.screenTop = __dom_unwrap(value);
4500 } catch (e) { 4500 } catch (e) {
4501 throw __dom_wrap_exception(e); 4501 throw __dom_wrap_exception(e);
4502 } 4502 }
4503 } 4503 }
4504 4504
4505 function native__DOMWindowWrappingImplementation__get__DOMWindow_screenX(_this) { 4505 function native__DOMWindowWrappingImplementation__get_screenX(_this) {
4506 try { 4506 try {
4507 return __dom_wrap(_this.$dom.screenX); 4507 return __dom_wrap(_this.$dom.screenX);
4508 } catch (e) { 4508 } catch (e) {
4509 throw __dom_wrap_exception(e); 4509 throw __dom_wrap_exception(e);
4510 } 4510 }
4511 } 4511 }
4512 4512
4513 function native__DOMWindowWrappingImplementation__set__DOMWindow_screenX(_this, value) { 4513 function native__DOMWindowWrappingImplementation__set_screenX(_this, value) {
4514 try { 4514 try {
4515 _this.$dom.screenX = __dom_unwrap(value); 4515 _this.$dom.screenX = __dom_unwrap(value);
4516 } catch (e) { 4516 } catch (e) {
4517 throw __dom_wrap_exception(e); 4517 throw __dom_wrap_exception(e);
4518 } 4518 }
4519 } 4519 }
4520 4520
4521 function native__DOMWindowWrappingImplementation__get__DOMWindow_screenY(_this) { 4521 function native__DOMWindowWrappingImplementation__get_screenY(_this) {
4522 try { 4522 try {
4523 return __dom_wrap(_this.$dom.screenY); 4523 return __dom_wrap(_this.$dom.screenY);
4524 } catch (e) { 4524 } catch (e) {
4525 throw __dom_wrap_exception(e); 4525 throw __dom_wrap_exception(e);
4526 } 4526 }
4527 } 4527 }
4528 4528
4529 function native__DOMWindowWrappingImplementation__set__DOMWindow_screenY(_this, value) { 4529 function native__DOMWindowWrappingImplementation__set_screenY(_this, value) {
4530 try { 4530 try {
4531 _this.$dom.screenY = __dom_unwrap(value); 4531 _this.$dom.screenY = __dom_unwrap(value);
4532 } catch (e) { 4532 } catch (e) {
4533 throw __dom_wrap_exception(e); 4533 throw __dom_wrap_exception(e);
4534 } 4534 }
4535 } 4535 }
4536 4536
4537 function native__DOMWindowWrappingImplementation__get__DOMWindow_scrollX(_this) { 4537 function native__DOMWindowWrappingImplementation__get_scrollX(_this) {
4538 try { 4538 try {
4539 return __dom_wrap(_this.$dom.scrollX); 4539 return __dom_wrap(_this.$dom.scrollX);
4540 } catch (e) { 4540 } catch (e) {
4541 throw __dom_wrap_exception(e); 4541 throw __dom_wrap_exception(e);
4542 } 4542 }
4543 } 4543 }
4544 4544
4545 function native__DOMWindowWrappingImplementation__set__DOMWindow_scrollX(_this, value) { 4545 function native__DOMWindowWrappingImplementation__set_scrollX(_this, value) {
4546 try { 4546 try {
4547 _this.$dom.scrollX = __dom_unwrap(value); 4547 _this.$dom.scrollX = __dom_unwrap(value);
4548 } catch (e) { 4548 } catch (e) {
4549 throw __dom_wrap_exception(e); 4549 throw __dom_wrap_exception(e);
4550 } 4550 }
4551 } 4551 }
4552 4552
4553 function native__DOMWindowWrappingImplementation__get__DOMWindow_scrollY(_this) { 4553 function native__DOMWindowWrappingImplementation__get_scrollY(_this) {
4554 try { 4554 try {
4555 return __dom_wrap(_this.$dom.scrollY); 4555 return __dom_wrap(_this.$dom.scrollY);
4556 } catch (e) { 4556 } catch (e) {
4557 throw __dom_wrap_exception(e); 4557 throw __dom_wrap_exception(e);
4558 } 4558 }
4559 } 4559 }
4560 4560
4561 function native__DOMWindowWrappingImplementation__set__DOMWindow_scrollY(_this, value) { 4561 function native__DOMWindowWrappingImplementation__set_scrollY(_this, value) {
4562 try { 4562 try {
4563 _this.$dom.scrollY = __dom_unwrap(value); 4563 _this.$dom.scrollY = __dom_unwrap(value);
4564 } catch (e) { 4564 } catch (e) {
4565 throw __dom_wrap_exception(e); 4565 throw __dom_wrap_exception(e);
4566 } 4566 }
4567 } 4567 }
4568 4568
4569 function native__DOMWindowWrappingImplementation__get__DOMWindow_scrollbars(_thi s) { 4569 function native__DOMWindowWrappingImplementation__get_scrollbars(_this) {
4570 try { 4570 try {
4571 return __dom_wrap(_this.$dom.scrollbars); 4571 return __dom_wrap(_this.$dom.scrollbars);
4572 } catch (e) { 4572 } catch (e) {
4573 throw __dom_wrap_exception(e); 4573 throw __dom_wrap_exception(e);
4574 } 4574 }
4575 } 4575 }
4576 4576
4577 function native__DOMWindowWrappingImplementation__set__DOMWindow_scrollbars(_thi s, value) { 4577 function native__DOMWindowWrappingImplementation__set_scrollbars(_this, value) {
4578 try { 4578 try {
4579 _this.$dom.scrollbars = __dom_unwrap(value); 4579 _this.$dom.scrollbars = __dom_unwrap(value);
4580 } catch (e) { 4580 } catch (e) {
4581 throw __dom_wrap_exception(e); 4581 throw __dom_wrap_exception(e);
4582 } 4582 }
4583 } 4583 }
4584 4584
4585 function native__DOMWindowWrappingImplementation__get__DOMWindow_self(_this) { 4585 function native__DOMWindowWrappingImplementation__get_self(_this) {
4586 try { 4586 try {
4587 return __dom_wrap(_this.$dom.self); 4587 return __dom_wrap(_this.$dom.self);
4588 } catch (e) { 4588 } catch (e) {
4589 throw __dom_wrap_exception(e); 4589 throw __dom_wrap_exception(e);
4590 } 4590 }
4591 } 4591 }
4592 4592
4593 function native__DOMWindowWrappingImplementation__set__DOMWindow_self(_this, val ue) { 4593 function native__DOMWindowWrappingImplementation__set_self(_this, value) {
4594 try { 4594 try {
4595 _this.$dom.self = __dom_unwrap(value); 4595 _this.$dom.self = __dom_unwrap(value);
4596 } catch (e) { 4596 } catch (e) {
4597 throw __dom_wrap_exception(e); 4597 throw __dom_wrap_exception(e);
4598 } 4598 }
4599 } 4599 }
4600 4600
4601 function native__DOMWindowWrappingImplementation__get__DOMWindow_sessionStorage( _this) { 4601 function native__DOMWindowWrappingImplementation__get_sessionStorage(_this) {
4602 try { 4602 try {
4603 return __dom_wrap(_this.$dom.sessionStorage); 4603 return __dom_wrap(_this.$dom.sessionStorage);
4604 } catch (e) { 4604 } catch (e) {
4605 throw __dom_wrap_exception(e); 4605 throw __dom_wrap_exception(e);
4606 } 4606 }
4607 } 4607 }
4608 4608
4609 function native__DOMWindowWrappingImplementation__get__DOMWindow_status(_this) { 4609 function native__DOMWindowWrappingImplementation__get_status(_this) {
4610 try { 4610 try {
4611 return __dom_wrap(_this.$dom.status); 4611 return __dom_wrap(_this.$dom.status);
4612 } catch (e) { 4612 } catch (e) {
4613 throw __dom_wrap_exception(e); 4613 throw __dom_wrap_exception(e);
4614 } 4614 }
4615 } 4615 }
4616 4616
4617 function native__DOMWindowWrappingImplementation__set__DOMWindow_status(_this, v alue) { 4617 function native__DOMWindowWrappingImplementation__set_status(_this, value) {
4618 try { 4618 try {
4619 _this.$dom.status = __dom_unwrap(value); 4619 _this.$dom.status = __dom_unwrap(value);
4620 } catch (e) { 4620 } catch (e) {
4621 throw __dom_wrap_exception(e); 4621 throw __dom_wrap_exception(e);
4622 } 4622 }
4623 } 4623 }
4624 4624
4625 function native__DOMWindowWrappingImplementation__get__DOMWindow_statusbar(_this ) { 4625 function native__DOMWindowWrappingImplementation__get_statusbar(_this) {
4626 try { 4626 try {
4627 return __dom_wrap(_this.$dom.statusbar); 4627 return __dom_wrap(_this.$dom.statusbar);
4628 } catch (e) { 4628 } catch (e) {
4629 throw __dom_wrap_exception(e); 4629 throw __dom_wrap_exception(e);
4630 } 4630 }
4631 } 4631 }
4632 4632
4633 function native__DOMWindowWrappingImplementation__set__DOMWindow_statusbar(_this , value) { 4633 function native__DOMWindowWrappingImplementation__set_statusbar(_this, value) {
4634 try { 4634 try {
4635 _this.$dom.statusbar = __dom_unwrap(value); 4635 _this.$dom.statusbar = __dom_unwrap(value);
4636 } catch (e) { 4636 } catch (e) {
4637 throw __dom_wrap_exception(e); 4637 throw __dom_wrap_exception(e);
4638 } 4638 }
4639 } 4639 }
4640 4640
4641 function native__DOMWindowWrappingImplementation__get__DOMWindow_styleMedia(_thi s) { 4641 function native__DOMWindowWrappingImplementation__get_styleMedia(_this) {
4642 try { 4642 try {
4643 return __dom_wrap(_this.$dom.styleMedia); 4643 return __dom_wrap(_this.$dom.styleMedia);
4644 } catch (e) { 4644 } catch (e) {
4645 throw __dom_wrap_exception(e); 4645 throw __dom_wrap_exception(e);
4646 } 4646 }
4647 } 4647 }
4648 4648
4649 function native__DOMWindowWrappingImplementation__get__DOMWindow_toolbar(_this) { 4649 function native__DOMWindowWrappingImplementation__get_toolbar(_this) {
4650 try { 4650 try {
4651 return __dom_wrap(_this.$dom.toolbar); 4651 return __dom_wrap(_this.$dom.toolbar);
4652 } catch (e) { 4652 } catch (e) {
4653 throw __dom_wrap_exception(e); 4653 throw __dom_wrap_exception(e);
4654 } 4654 }
4655 } 4655 }
4656 4656
4657 function native__DOMWindowWrappingImplementation__set__DOMWindow_toolbar(_this, value) { 4657 function native__DOMWindowWrappingImplementation__set_toolbar(_this, value) {
4658 try { 4658 try {
4659 _this.$dom.toolbar = __dom_unwrap(value); 4659 _this.$dom.toolbar = __dom_unwrap(value);
4660 } catch (e) { 4660 } catch (e) {
4661 throw __dom_wrap_exception(e); 4661 throw __dom_wrap_exception(e);
4662 } 4662 }
4663 } 4663 }
4664 4664
4665 function native__DOMWindowWrappingImplementation__get__DOMWindow_top(_this) { 4665 function native__DOMWindowWrappingImplementation__get_top(_this) {
4666 try { 4666 try {
4667 return __dom_wrap(_this.$dom.top); 4667 return __dom_wrap(_this.$dom.top);
4668 } catch (e) { 4668 } catch (e) {
4669 throw __dom_wrap_exception(e); 4669 throw __dom_wrap_exception(e);
4670 } 4670 }
4671 } 4671 }
4672 4672
4673 function native__DOMWindowWrappingImplementation__set__DOMWindow_top(_this, valu e) { 4673 function native__DOMWindowWrappingImplementation__set_top(_this, value) {
4674 try { 4674 try {
4675 _this.$dom.top = __dom_unwrap(value); 4675 _this.$dom.top = __dom_unwrap(value);
4676 } catch (e) { 4676 } catch (e) {
4677 throw __dom_wrap_exception(e); 4677 throw __dom_wrap_exception(e);
4678 } 4678 }
4679 } 4679 }
4680 4680
4681 function native__DOMWindowWrappingImplementation__get__DOMWindow_webkitNotificat ions(_this) { 4681 function native__DOMWindowWrappingImplementation__get_webkitNotifications(_this) {
4682 try { 4682 try {
4683 return __dom_wrap(_this.$dom.webkitNotifications); 4683 return __dom_wrap(_this.$dom.webkitNotifications);
4684 } catch (e) { 4684 } catch (e) {
4685 throw __dom_wrap_exception(e); 4685 throw __dom_wrap_exception(e);
4686 } 4686 }
4687 } 4687 }
4688 4688
4689 function native__DOMWindowWrappingImplementation__get__DOMWindow_webkitURL(_this ) { 4689 function native__DOMWindowWrappingImplementation__get_webkitURL(_this) {
4690 try { 4690 try {
4691 return __dom_wrap(_this.$dom.webkitURL); 4691 return __dom_wrap(_this.$dom.webkitURL);
4692 } catch (e) { 4692 } catch (e) {
4693 throw __dom_wrap_exception(e); 4693 throw __dom_wrap_exception(e);
4694 } 4694 }
4695 } 4695 }
4696 4696
4697 function native__DOMWindowWrappingImplementation__get__DOMWindow_window(_this) { 4697 function native__DOMWindowWrappingImplementation__get_window(_this) {
4698 try { 4698 try {
4699 return __dom_wrap(_this.$dom.window); 4699 return __dom_wrap(_this.$dom.window);
4700 } catch (e) { 4700 } catch (e) {
4701 throw __dom_wrap_exception(e); 4701 throw __dom_wrap_exception(e);
4702 } 4702 }
4703 } 4703 }
4704 4704
4705 function native__DOMWindowWrappingImplementation__addEventListener(_this, type, listener) { 4705 function native__DOMWindowWrappingImplementation__addEventListener_DOMWindow(_th is, type, listener) {
4706 try { 4706 try {
4707 return __dom_wrap(_this.$dom.addEventListener(__dom_unwrap(type), __dom_unwr ap(listener))); 4707 return __dom_wrap(_this.$dom.addEventListener(__dom_unwrap(type), __dom_unwr ap(listener)));
4708 } catch (e) { 4708 } catch (e) {
4709 throw __dom_wrap_exception(e); 4709 throw __dom_wrap_exception(e);
4710 } 4710 }
4711 } 4711 }
4712 4712
4713 function native__DOMWindowWrappingImplementation__addEventListener_2(_this, type , listener, useCapture) { 4713 function native__DOMWindowWrappingImplementation__addEventListener_DOMWindow_2(_ this, type, listener, useCapture) {
4714 try { 4714 try {
4715 return __dom_wrap(_this.$dom.addEventListener(__dom_unwrap(type), __dom_unwr ap(listener), __dom_unwrap(useCapture))); 4715 return __dom_wrap(_this.$dom.addEventListener(__dom_unwrap(type), __dom_unwr ap(listener), __dom_unwrap(useCapture)));
4716 } catch (e) { 4716 } catch (e) {
4717 throw __dom_wrap_exception(e); 4717 throw __dom_wrap_exception(e);
4718 } 4718 }
4719 } 4719 }
4720 4720
4721 function native__DOMWindowWrappingImplementation__alert(_this, message) { 4721 function native__DOMWindowWrappingImplementation__alert(_this, message) {
4722 try { 4722 try {
4723 return __dom_wrap(_this.$dom.alert(__dom_unwrap(message))); 4723 return __dom_wrap(_this.$dom.alert(__dom_unwrap(message)));
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
4783 } 4783 }
4784 4784
4785 function native__DOMWindowWrappingImplementation__confirm(_this, message) { 4785 function native__DOMWindowWrappingImplementation__confirm(_this, message) {
4786 try { 4786 try {
4787 return __dom_wrap(_this.$dom.confirm(__dom_unwrap(message))); 4787 return __dom_wrap(_this.$dom.confirm(__dom_unwrap(message)));
4788 } catch (e) { 4788 } catch (e) {
4789 throw __dom_wrap_exception(e); 4789 throw __dom_wrap_exception(e);
4790 } 4790 }
4791 } 4791 }
4792 4792
4793 function native__DOMWindowWrappingImplementation__dispatchEvent(_this, evt) { 4793 function native__DOMWindowWrappingImplementation__dispatchEvent_DOMWindow(_this, evt) {
4794 try { 4794 try {
4795 return __dom_wrap(_this.$dom.dispatchEvent(__dom_unwrap(evt))); 4795 return __dom_wrap(_this.$dom.dispatchEvent(__dom_unwrap(evt)));
4796 } catch (e) { 4796 } catch (e) {
4797 throw __dom_wrap_exception(e); 4797 throw __dom_wrap_exception(e);
4798 } 4798 }
4799 } 4799 }
4800 4800
4801 function native__DOMWindowWrappingImplementation__find(_this, string, caseSensit ive, backwards, wrap, wholeWord, searchInFrames, showDialog) { 4801 function native__DOMWindowWrappingImplementation__find(_this, string, caseSensit ive, backwards, wrap, wholeWord, searchInFrames, showDialog) {
4802 try { 4802 try {
4803 return __dom_wrap(_this.$dom.find(__dom_unwrap(string), __dom_unwrap(caseSen sitive), __dom_unwrap(backwards), __dom_unwrap(wrap), __dom_unwrap(wholeWord), _ _dom_unwrap(searchInFrames), __dom_unwrap(showDialog))); 4803 return __dom_wrap(_this.$dom.find(__dom_unwrap(string), __dom_unwrap(caseSen sitive), __dom_unwrap(backwards), __dom_unwrap(wrap), __dom_unwrap(wholeWord), _ _dom_unwrap(searchInFrames), __dom_unwrap(showDialog)));
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
4911 } 4911 }
4912 4912
4913 function native__DOMWindowWrappingImplementation__releaseEvents(_this) { 4913 function native__DOMWindowWrappingImplementation__releaseEvents(_this) {
4914 try { 4914 try {
4915 return __dom_wrap(_this.$dom.releaseEvents()); 4915 return __dom_wrap(_this.$dom.releaseEvents());
4916 } catch (e) { 4916 } catch (e) {
4917 throw __dom_wrap_exception(e); 4917 throw __dom_wrap_exception(e);
4918 } 4918 }
4919 } 4919 }
4920 4920
4921 function native__DOMWindowWrappingImplementation__removeEventListener(_this, typ e, listener) { 4921 function native__DOMWindowWrappingImplementation__removeEventListener_DOMWindow( _this, type, listener) {
4922 try { 4922 try {
4923 return __dom_wrap(_this.$dom.removeEventListener(__dom_unwrap(type), __dom_u nwrap(listener))); 4923 return __dom_wrap(_this.$dom.removeEventListener(__dom_unwrap(type), __dom_u nwrap(listener)));
4924 } catch (e) { 4924 } catch (e) {
4925 throw __dom_wrap_exception(e); 4925 throw __dom_wrap_exception(e);
4926 } 4926 }
4927 } 4927 }
4928 4928
4929 function native__DOMWindowWrappingImplementation__removeEventListener_2(_this, t ype, listener, useCapture) { 4929 function native__DOMWindowWrappingImplementation__removeEventListener_DOMWindow_ 2(_this, type, listener, useCapture) {
4930 try { 4930 try {
4931 return __dom_wrap(_this.$dom.removeEventListener(__dom_unwrap(type), __dom_u nwrap(listener), __dom_unwrap(useCapture))); 4931 return __dom_wrap(_this.$dom.removeEventListener(__dom_unwrap(type), __dom_u nwrap(listener), __dom_unwrap(useCapture)));
4932 } catch (e) { 4932 } catch (e) {
4933 throw __dom_wrap_exception(e); 4933 throw __dom_wrap_exception(e);
4934 } 4934 }
4935 } 4935 }
4936 4936
4937 function native__DOMWindowWrappingImplementation__resizeBy(_this, x, y) { 4937 function native__DOMWindowWrappingImplementation__resizeBy(_this, x, y) {
4938 try { 4938 try {
4939 return __dom_wrap(_this.$dom.resizeBy(__dom_unwrap(x), __dom_unwrap(y))); 4939 return __dom_wrap(_this.$dom.resizeBy(__dom_unwrap(x), __dom_unwrap(y)));
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
5047 } 5047 }
5048 5048
5049 function native__DOMWindowWrappingImplementation__webkitRequestAnimationFrame(_t his, callback, element) { 5049 function native__DOMWindowWrappingImplementation__webkitRequestAnimationFrame(_t his, callback, element) {
5050 try { 5050 try {
5051 return __dom_wrap(_this.$dom.webkitRequestAnimationFrame(__dom_unwrap(callba ck), __dom_unwrap(element))); 5051 return __dom_wrap(_this.$dom.webkitRequestAnimationFrame(__dom_unwrap(callba ck), __dom_unwrap(element)));
5052 } catch (e) { 5052 } catch (e) {
5053 throw __dom_wrap_exception(e); 5053 throw __dom_wrap_exception(e);
5054 } 5054 }
5055 } 5055 }
5056 5056
5057 function native__DataTransferItemWrappingImplementation__get__DataTransferItem_k ind(_this) { 5057 function native__DataTransferItemWrappingImplementation__get_kind(_this) {
5058 try { 5058 try {
5059 return __dom_wrap(_this.$dom.kind); 5059 return __dom_wrap(_this.$dom.kind);
5060 } catch (e) { 5060 } catch (e) {
5061 throw __dom_wrap_exception(e); 5061 throw __dom_wrap_exception(e);
5062 } 5062 }
5063 } 5063 }
5064 5064
5065 function native__DataTransferItemWrappingImplementation__get__DataTransferItem_t ype(_this) { 5065 function native__DataTransferItemWrappingImplementation__get_type(_this) {
5066 try { 5066 try {
5067 return __dom_wrap(_this.$dom.type); 5067 return __dom_wrap(_this.$dom.type);
5068 } catch (e) { 5068 } catch (e) {
5069 throw __dom_wrap_exception(e); 5069 throw __dom_wrap_exception(e);
5070 } 5070 }
5071 } 5071 }
5072 5072
5073 function native__DataTransferItemWrappingImplementation__getAsFile(_this) { 5073 function native__DataTransferItemWrappingImplementation__getAsFile(_this) {
5074 try { 5074 try {
5075 return __dom_wrap(_this.$dom.getAsFile()); 5075 return __dom_wrap(_this.$dom.getAsFile());
5076 } catch (e) { 5076 } catch (e) {
5077 throw __dom_wrap_exception(e); 5077 throw __dom_wrap_exception(e);
5078 } 5078 }
5079 } 5079 }
5080 5080
5081 function native__DataTransferItemWrappingImplementation__getAsString(_this, call back) { 5081 function native__DataTransferItemWrappingImplementation__getAsString(_this, call back) {
5082 try { 5082 try {
5083 return __dom_wrap(_this.$dom.getAsString(__dom_unwrap(callback))); 5083 return __dom_wrap(_this.$dom.getAsString(__dom_unwrap(callback)));
5084 } catch (e) { 5084 } catch (e) {
5085 throw __dom_wrap_exception(e); 5085 throw __dom_wrap_exception(e);
5086 } 5086 }
5087 } 5087 }
5088 5088
5089 function native__DataTransferItemListWrappingImplementation__get__DataTransferIt emList_length(_this) { 5089 function native__DataTransferItemListWrappingImplementation__get_length(_this) {
5090 try { 5090 try {
5091 return __dom_wrap(_this.$dom.length); 5091 return __dom_wrap(_this.$dom.length);
5092 } catch (e) { 5092 } catch (e) {
5093 throw __dom_wrap_exception(e); 5093 throw __dom_wrap_exception(e);
5094 } 5094 }
5095 } 5095 }
5096 5096
5097 function native__DataTransferItemListWrappingImplementation__add(_this, data, ty pe) { 5097 function native__DataTransferItemListWrappingImplementation__add(_this, data, ty pe) {
5098 try { 5098 try {
5099 return __dom_wrap(_this.$dom.add(__dom_unwrap(data), __dom_unwrap(type))); 5099 return __dom_wrap(_this.$dom.add(__dom_unwrap(data), __dom_unwrap(type)));
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after
5335 } 5335 }
5336 5336
5337 function native__DataViewWrappingImplementation__setUint8(_this) { 5337 function native__DataViewWrappingImplementation__setUint8(_this) {
5338 try { 5338 try {
5339 return __dom_wrap(_this.$dom.setUint8()); 5339 return __dom_wrap(_this.$dom.setUint8());
5340 } catch (e) { 5340 } catch (e) {
5341 throw __dom_wrap_exception(e); 5341 throw __dom_wrap_exception(e);
5342 } 5342 }
5343 } 5343 }
5344 5344
5345 function native__DatabaseWrappingImplementation__get__Database_version(_this) { 5345 function native__DatabaseWrappingImplementation__get_version(_this) {
5346 try { 5346 try {
5347 return __dom_wrap(_this.$dom.version); 5347 return __dom_wrap(_this.$dom.version);
5348 } catch (e) { 5348 } catch (e) {
5349 throw __dom_wrap_exception(e); 5349 throw __dom_wrap_exception(e);
5350 } 5350 }
5351 } 5351 }
5352 5352
5353 function native__DatabaseWrappingImplementation__changeVersion(_this, oldVersion , newVersion) { 5353 function native__DatabaseWrappingImplementation__changeVersion(_this, oldVersion , newVersion) {
5354 try { 5354 try {
5355 return __dom_wrap(_this.$dom.changeVersion(__dom_unwrap(oldVersion), __dom_u nwrap(newVersion))); 5355 return __dom_wrap(_this.$dom.changeVersion(__dom_unwrap(oldVersion), __dom_u nwrap(newVersion)));
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
5439 } 5439 }
5440 5440
5441 function native__DatabaseCallbackWrappingImplementation__handleEvent_2(_this, da tabase) { 5441 function native__DatabaseCallbackWrappingImplementation__handleEvent_2(_this, da tabase) {
5442 try { 5442 try {
5443 return __dom_wrap(_this.$dom.handleEvent(__dom_unwrap(database))); 5443 return __dom_wrap(_this.$dom.handleEvent(__dom_unwrap(database)));
5444 } catch (e) { 5444 } catch (e) {
5445 throw __dom_wrap_exception(e); 5445 throw __dom_wrap_exception(e);
5446 } 5446 }
5447 } 5447 }
5448 5448
5449 function native__DatabaseSyncWrappingImplementation__get__DatabaseSync_version(_ this) { 5449 function native__DatabaseSyncWrappingImplementation__get_version(_this) {
5450 try { 5450 try {
5451 return __dom_wrap(_this.$dom.version); 5451 return __dom_wrap(_this.$dom.version);
5452 } catch (e) { 5452 } catch (e) {
5453 throw __dom_wrap_exception(e); 5453 throw __dom_wrap_exception(e);
5454 } 5454 }
5455 } 5455 }
5456 5456
5457 function native__DatabaseSyncWrappingImplementation__changeVersion(_this, oldVer sion, newVersion) { 5457 function native__DatabaseSyncWrappingImplementation__changeVersion(_this, oldVer sion, newVersion) {
5458 try { 5458 try {
5459 return __dom_wrap(_this.$dom.changeVersion(__dom_unwrap(oldVersion), __dom_u nwrap(newVersion))); 5459 return __dom_wrap(_this.$dom.changeVersion(__dom_unwrap(oldVersion), __dom_u nwrap(newVersion)));
(...skipping 19 matching lines...) Expand all
5479 } 5479 }
5480 5480
5481 function native__DatabaseSyncWrappingImplementation__transaction(_this, callback ) { 5481 function native__DatabaseSyncWrappingImplementation__transaction(_this, callback ) {
5482 try { 5482 try {
5483 return __dom_wrap(_this.$dom.transaction(__dom_unwrap(callback))); 5483 return __dom_wrap(_this.$dom.transaction(__dom_unwrap(callback)));
5484 } catch (e) { 5484 } catch (e) {
5485 throw __dom_wrap_exception(e); 5485 throw __dom_wrap_exception(e);
5486 } 5486 }
5487 } 5487 }
5488 5488
5489 function native__DedicatedWorkerContextWrappingImplementation__get__DedicatedWor kerContext_onmessage(_this) { 5489 function native__DedicatedWorkerContextWrappingImplementation__get_onmessage(_th is) {
5490 try { 5490 try {
5491 return __dom_wrap(_this.$dom.onmessage); 5491 return __dom_wrap(_this.$dom.onmessage);
5492 } catch (e) { 5492 } catch (e) {
5493 throw __dom_wrap_exception(e); 5493 throw __dom_wrap_exception(e);
5494 } 5494 }
5495 } 5495 }
5496 5496
5497 function native__DedicatedWorkerContextWrappingImplementation__set__DedicatedWor kerContext_onmessage(_this, value) { 5497 function native__DedicatedWorkerContextWrappingImplementation__set_onmessage(_th is, value) {
5498 try { 5498 try {
5499 _this.$dom.onmessage = __dom_unwrap(value); 5499 _this.$dom.onmessage = __dom_unwrap(value);
5500 } catch (e) { 5500 } catch (e) {
5501 throw __dom_wrap_exception(e); 5501 throw __dom_wrap_exception(e);
5502 } 5502 }
5503 } 5503 }
5504 5504
5505 function native__DedicatedWorkerContextWrappingImplementation__postMessage(_this , message) { 5505 function native__DedicatedWorkerContextWrappingImplementation__postMessage(_this , message) {
5506 try { 5506 try {
5507 return __dom_wrap(_this.$dom.postMessage(__dom_unwrap(message))); 5507 return __dom_wrap(_this.$dom.postMessage(__dom_unwrap(message)));
(...skipping 19 matching lines...) Expand all
5527 } 5527 }
5528 5528
5529 function native__DedicatedWorkerContextWrappingImplementation__webkitPostMessage _2(_this, message, transferList) { 5529 function native__DedicatedWorkerContextWrappingImplementation__webkitPostMessage _2(_this, message, transferList) {
5530 try { 5530 try {
5531 return __dom_wrap(_this.$dom.webkitPostMessage(__dom_unwrap(message), __dom_ unwrap(transferList))); 5531 return __dom_wrap(_this.$dom.webkitPostMessage(__dom_unwrap(message), __dom_ unwrap(transferList)));
5532 } catch (e) { 5532 } catch (e) {
5533 throw __dom_wrap_exception(e); 5533 throw __dom_wrap_exception(e);
5534 } 5534 }
5535 } 5535 }
5536 5536
5537 function native__DeviceMotionEventWrappingImplementation__get__DeviceMotionEvent _interval(_this) { 5537 function native__DeviceMotionEventWrappingImplementation__get_interval(_this) {
5538 try { 5538 try {
5539 return __dom_wrap(_this.$dom.interval); 5539 return __dom_wrap(_this.$dom.interval);
5540 } catch (e) { 5540 } catch (e) {
5541 throw __dom_wrap_exception(e); 5541 throw __dom_wrap_exception(e);
5542 } 5542 }
5543 } 5543 }
5544 5544
5545 function native__DeviceOrientationEventWrappingImplementation__get__DeviceOrient ationEvent_alpha(_this) { 5545 function native__DeviceOrientationEventWrappingImplementation__get_alpha(_this) {
5546 try { 5546 try {
5547 return __dom_wrap(_this.$dom.alpha); 5547 return __dom_wrap(_this.$dom.alpha);
5548 } catch (e) { 5548 } catch (e) {
5549 throw __dom_wrap_exception(e); 5549 throw __dom_wrap_exception(e);
5550 } 5550 }
5551 } 5551 }
5552 5552
5553 function native__DeviceOrientationEventWrappingImplementation__get__DeviceOrient ationEvent_beta(_this) { 5553 function native__DeviceOrientationEventWrappingImplementation__get_beta(_this) {
5554 try { 5554 try {
5555 return __dom_wrap(_this.$dom.beta); 5555 return __dom_wrap(_this.$dom.beta);
5556 } catch (e) { 5556 } catch (e) {
5557 throw __dom_wrap_exception(e); 5557 throw __dom_wrap_exception(e);
5558 } 5558 }
5559 } 5559 }
5560 5560
5561 function native__DeviceOrientationEventWrappingImplementation__get__DeviceOrient ationEvent_gamma(_this) { 5561 function native__DeviceOrientationEventWrappingImplementation__get_gamma(_this) {
5562 try { 5562 try {
5563 return __dom_wrap(_this.$dom.gamma); 5563 return __dom_wrap(_this.$dom.gamma);
5564 } catch (e) { 5564 } catch (e) {
5565 throw __dom_wrap_exception(e); 5565 throw __dom_wrap_exception(e);
5566 } 5566 }
5567 } 5567 }
5568 5568
5569 function native__DeviceOrientationEventWrappingImplementation__initDeviceOrienta tionEvent(_this, type, bubbles, cancelable, alpha, beta, gamma) { 5569 function native__DeviceOrientationEventWrappingImplementation__initDeviceOrienta tionEvent(_this, type, bubbles, cancelable, alpha, beta, gamma) {
5570 try { 5570 try {
5571 return __dom_wrap(_this.$dom.initDeviceOrientationEvent(__dom_unwrap(type), __dom_unwrap(bubbles), __dom_unwrap(cancelable), __dom_unwrap(alpha), __dom_unwr ap(beta), __dom_unwrap(gamma))); 5571 return __dom_wrap(_this.$dom.initDeviceOrientationEvent(__dom_unwrap(type), __dom_unwrap(bubbles), __dom_unwrap(cancelable), __dom_unwrap(alpha), __dom_unwr ap(beta), __dom_unwrap(gamma)));
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
5719 } 5719 }
5720 5720
5721 function native__DirectoryReaderSyncWrappingImplementation__readEntries(_this) { 5721 function native__DirectoryReaderSyncWrappingImplementation__readEntries(_this) {
5722 try { 5722 try {
5723 return __dom_wrap(_this.$dom.readEntries()); 5723 return __dom_wrap(_this.$dom.readEntries());
5724 } catch (e) { 5724 } catch (e) {
5725 throw __dom_wrap_exception(e); 5725 throw __dom_wrap_exception(e);
5726 } 5726 }
5727 } 5727 }
5728 5728
5729 function native__DocumentWrappingImplementation__get__Document_URL(_this) { 5729 function native__DocumentWrappingImplementation__get_URL(_this) {
5730 try { 5730 try {
5731 return __dom_wrap(_this.$dom.URL); 5731 return __dom_wrap(_this.$dom.URL);
5732 } catch (e) { 5732 } catch (e) {
5733 throw __dom_wrap_exception(e); 5733 throw __dom_wrap_exception(e);
5734 } 5734 }
5735 } 5735 }
5736 5736
5737 function native__DocumentWrappingImplementation__get__Document_anchors(_this) { 5737 function native__DocumentWrappingImplementation__get_anchors(_this) {
5738 try { 5738 try {
5739 return __dom_wrap(_this.$dom.anchors); 5739 return __dom_wrap(_this.$dom.anchors);
5740 } catch (e) { 5740 } catch (e) {
5741 throw __dom_wrap_exception(e); 5741 throw __dom_wrap_exception(e);
5742 } 5742 }
5743 } 5743 }
5744 5744
5745 function native__DocumentWrappingImplementation__get__Document_applets(_this) { 5745 function native__DocumentWrappingImplementation__get_applets(_this) {
5746 try { 5746 try {
5747 return __dom_wrap(_this.$dom.applets); 5747 return __dom_wrap(_this.$dom.applets);
5748 } catch (e) { 5748 } catch (e) {
5749 throw __dom_wrap_exception(e); 5749 throw __dom_wrap_exception(e);
5750 } 5750 }
5751 } 5751 }
5752 5752
5753 function native__DocumentWrappingImplementation__get__Document_body(_this) { 5753 function native__DocumentWrappingImplementation__get_body(_this) {
5754 try { 5754 try {
5755 return __dom_wrap(_this.$dom.body); 5755 return __dom_wrap(_this.$dom.body);
5756 } catch (e) { 5756 } catch (e) {
5757 throw __dom_wrap_exception(e); 5757 throw __dom_wrap_exception(e);
5758 } 5758 }
5759 } 5759 }
5760 5760
5761 function native__DocumentWrappingImplementation__set__Document_body(_this, value ) { 5761 function native__DocumentWrappingImplementation__set_body(_this, value) {
5762 try { 5762 try {
5763 _this.$dom.body = __dom_unwrap(value); 5763 _this.$dom.body = __dom_unwrap(value);
5764 } catch (e) { 5764 } catch (e) {
5765 throw __dom_wrap_exception(e); 5765 throw __dom_wrap_exception(e);
5766 } 5766 }
5767 } 5767 }
5768 5768
5769 function native__DocumentWrappingImplementation__get__Document_characterSet(_thi s) { 5769 function native__DocumentWrappingImplementation__get_characterSet(_this) {
5770 try { 5770 try {
5771 return __dom_wrap(_this.$dom.characterSet); 5771 return __dom_wrap(_this.$dom.characterSet);
5772 } catch (e) { 5772 } catch (e) {
5773 throw __dom_wrap_exception(e); 5773 throw __dom_wrap_exception(e);
5774 } 5774 }
5775 } 5775 }
5776 5776
5777 function native__DocumentWrappingImplementation__get__Document_charset(_this) { 5777 function native__DocumentWrappingImplementation__get_charset(_this) {
5778 try { 5778 try {
5779 return __dom_wrap(_this.$dom.charset); 5779 return __dom_wrap(_this.$dom.charset);
5780 } catch (e) { 5780 } catch (e) {
5781 throw __dom_wrap_exception(e); 5781 throw __dom_wrap_exception(e);
5782 } 5782 }
5783 } 5783 }
5784 5784
5785 function native__DocumentWrappingImplementation__set__Document_charset(_this, va lue) { 5785 function native__DocumentWrappingImplementation__set_charset(_this, value) {
5786 try { 5786 try {
5787 _this.$dom.charset = __dom_unwrap(value); 5787 _this.$dom.charset = __dom_unwrap(value);
5788 } catch (e) { 5788 } catch (e) {
5789 throw __dom_wrap_exception(e); 5789 throw __dom_wrap_exception(e);
5790 } 5790 }
5791 } 5791 }
5792 5792
5793 function native__DocumentWrappingImplementation__get__Document_compatMode(_this) { 5793 function native__DocumentWrappingImplementation__get_compatMode(_this) {
5794 try { 5794 try {
5795 return __dom_wrap(_this.$dom.compatMode); 5795 return __dom_wrap(_this.$dom.compatMode);
5796 } catch (e) { 5796 } catch (e) {
5797 throw __dom_wrap_exception(e); 5797 throw __dom_wrap_exception(e);
5798 } 5798 }
5799 } 5799 }
5800 5800
5801 function native__DocumentWrappingImplementation__get__Document_cookie(_this) { 5801 function native__DocumentWrappingImplementation__get_cookie(_this) {
5802 try { 5802 try {
5803 return __dom_wrap(_this.$dom.cookie); 5803 return __dom_wrap(_this.$dom.cookie);
5804 } catch (e) { 5804 } catch (e) {
5805 throw __dom_wrap_exception(e); 5805 throw __dom_wrap_exception(e);
5806 } 5806 }
5807 } 5807 }
5808 5808
5809 function native__DocumentWrappingImplementation__set__Document_cookie(_this, val ue) { 5809 function native__DocumentWrappingImplementation__set_cookie(_this, value) {
5810 try { 5810 try {
5811 _this.$dom.cookie = __dom_unwrap(value); 5811 _this.$dom.cookie = __dom_unwrap(value);
5812 } catch (e) { 5812 } catch (e) {
5813 throw __dom_wrap_exception(e); 5813 throw __dom_wrap_exception(e);
5814 } 5814 }
5815 } 5815 }
5816 5816
5817 function native__DocumentWrappingImplementation__get__Document_defaultCharset(_t his) { 5817 function native__DocumentWrappingImplementation__get_defaultCharset(_this) {
5818 try { 5818 try {
5819 return __dom_wrap(_this.$dom.defaultCharset); 5819 return __dom_wrap(_this.$dom.defaultCharset);
5820 } catch (e) { 5820 } catch (e) {
5821 throw __dom_wrap_exception(e); 5821 throw __dom_wrap_exception(e);
5822 } 5822 }
5823 } 5823 }
5824 5824
5825 function native__DocumentWrappingImplementation__get__Document_defaultView(_this ) { 5825 function native__DocumentWrappingImplementation__get_defaultView(_this) {
5826 try { 5826 try {
5827 return __dom_wrap(_this.$dom.defaultView); 5827 return __dom_wrap(_this.$dom.defaultView);
5828 } catch (e) { 5828 } catch (e) {
5829 throw __dom_wrap_exception(e); 5829 throw __dom_wrap_exception(e);
5830 } 5830 }
5831 } 5831 }
5832 5832
5833 function native__DocumentWrappingImplementation__get__Document_doctype(_this) { 5833 function native__DocumentWrappingImplementation__get_doctype(_this) {
5834 try { 5834 try {
5835 return __dom_wrap(_this.$dom.doctype); 5835 return __dom_wrap(_this.$dom.doctype);
5836 } catch (e) { 5836 } catch (e) {
5837 throw __dom_wrap_exception(e); 5837 throw __dom_wrap_exception(e);
5838 } 5838 }
5839 } 5839 }
5840 5840
5841 function native__DocumentWrappingImplementation__get__Document_documentElement(_ this) { 5841 function native__DocumentWrappingImplementation__get_documentElement(_this) {
5842 try { 5842 try {
5843 return __dom_wrap(_this.$dom.documentElement); 5843 return __dom_wrap(_this.$dom.documentElement);
5844 } catch (e) { 5844 } catch (e) {
5845 throw __dom_wrap_exception(e); 5845 throw __dom_wrap_exception(e);
5846 } 5846 }
5847 } 5847 }
5848 5848
5849 function native__DocumentWrappingImplementation__get__Document_documentURI(_this ) { 5849 function native__DocumentWrappingImplementation__get_documentURI(_this) {
5850 try { 5850 try {
5851 return __dom_wrap(_this.$dom.documentURI); 5851 return __dom_wrap(_this.$dom.documentURI);
5852 } catch (e) { 5852 } catch (e) {
5853 throw __dom_wrap_exception(e); 5853 throw __dom_wrap_exception(e);
5854 } 5854 }
5855 } 5855 }
5856 5856
5857 function native__DocumentWrappingImplementation__set__Document_documentURI(_this , value) { 5857 function native__DocumentWrappingImplementation__set_documentURI(_this, value) {
5858 try { 5858 try {
5859 _this.$dom.documentURI = __dom_unwrap(value); 5859 _this.$dom.documentURI = __dom_unwrap(value);
5860 } catch (e) { 5860 } catch (e) {
5861 throw __dom_wrap_exception(e); 5861 throw __dom_wrap_exception(e);
5862 } 5862 }
5863 } 5863 }
5864 5864
5865 function native__DocumentWrappingImplementation__get__Document_domain(_this) { 5865 function native__DocumentWrappingImplementation__get_domain(_this) {
5866 try { 5866 try {
5867 return __dom_wrap(_this.$dom.domain); 5867 return __dom_wrap(_this.$dom.domain);
5868 } catch (e) { 5868 } catch (e) {
5869 throw __dom_wrap_exception(e); 5869 throw __dom_wrap_exception(e);
5870 } 5870 }
5871 } 5871 }
5872 5872
5873 function native__DocumentWrappingImplementation__set__Document_domain(_this, val ue) { 5873 function native__DocumentWrappingImplementation__set_domain(_this, value) {
5874 try { 5874 try {
5875 _this.$dom.domain = __dom_unwrap(value); 5875 _this.$dom.domain = __dom_unwrap(value);
5876 } catch (e) { 5876 } catch (e) {
5877 throw __dom_wrap_exception(e); 5877 throw __dom_wrap_exception(e);
5878 } 5878 }
5879 } 5879 }
5880 5880
5881 function native__DocumentWrappingImplementation__get__Document_forms(_this) { 5881 function native__DocumentWrappingImplementation__get_forms(_this) {
5882 try { 5882 try {
5883 return __dom_wrap(_this.$dom.forms); 5883 return __dom_wrap(_this.$dom.forms);
5884 } catch (e) { 5884 } catch (e) {
5885 throw __dom_wrap_exception(e); 5885 throw __dom_wrap_exception(e);
5886 } 5886 }
5887 } 5887 }
5888 5888
5889 function native__DocumentWrappingImplementation__get__Document_head(_this) { 5889 function native__DocumentWrappingImplementation__get_head(_this) {
5890 try { 5890 try {
5891 return __dom_wrap(_this.$dom.head); 5891 return __dom_wrap(_this.$dom.head);
5892 } catch (e) { 5892 } catch (e) {
5893 throw __dom_wrap_exception(e); 5893 throw __dom_wrap_exception(e);
5894 } 5894 }
5895 } 5895 }
5896 5896
5897 function native__DocumentWrappingImplementation__get__Document_images(_this) { 5897 function native__DocumentWrappingImplementation__get_images(_this) {
5898 try { 5898 try {
5899 return __dom_wrap(_this.$dom.images); 5899 return __dom_wrap(_this.$dom.images);
5900 } catch (e) { 5900 } catch (e) {
5901 throw __dom_wrap_exception(e); 5901 throw __dom_wrap_exception(e);
5902 } 5902 }
5903 } 5903 }
5904 5904
5905 function native__DocumentWrappingImplementation__get__Document_implementation(_t his) { 5905 function native__DocumentWrappingImplementation__get_implementation(_this) {
5906 try { 5906 try {
5907 return __dom_wrap(_this.$dom.implementation); 5907 return __dom_wrap(_this.$dom.implementation);
5908 } catch (e) { 5908 } catch (e) {
5909 throw __dom_wrap_exception(e); 5909 throw __dom_wrap_exception(e);
5910 } 5910 }
5911 } 5911 }
5912 5912
5913 function native__DocumentWrappingImplementation__get__Document_inputEncoding(_th is) { 5913 function native__DocumentWrappingImplementation__get_inputEncoding(_this) {
5914 try { 5914 try {
5915 return __dom_wrap(_this.$dom.inputEncoding); 5915 return __dom_wrap(_this.$dom.inputEncoding);
5916 } catch (e) { 5916 } catch (e) {
5917 throw __dom_wrap_exception(e); 5917 throw __dom_wrap_exception(e);
5918 } 5918 }
5919 } 5919 }
5920 5920
5921 function native__DocumentWrappingImplementation__get__Document_lastModified(_thi s) { 5921 function native__DocumentWrappingImplementation__get_lastModified(_this) {
5922 try { 5922 try {
5923 return __dom_wrap(_this.$dom.lastModified); 5923 return __dom_wrap(_this.$dom.lastModified);
5924 } catch (e) { 5924 } catch (e) {
5925 throw __dom_wrap_exception(e); 5925 throw __dom_wrap_exception(e);
5926 } 5926 }
5927 } 5927 }
5928 5928
5929 function native__DocumentWrappingImplementation__get__Document_links(_this) { 5929 function native__DocumentWrappingImplementation__get_links(_this) {
5930 try { 5930 try {
5931 return __dom_wrap(_this.$dom.links); 5931 return __dom_wrap(_this.$dom.links);
5932 } catch (e) { 5932 } catch (e) {
5933 throw __dom_wrap_exception(e); 5933 throw __dom_wrap_exception(e);
5934 } 5934 }
5935 } 5935 }
5936 5936
5937 function native__DocumentWrappingImplementation__get__Document_location(_this) { 5937 function native__DocumentWrappingImplementation__get_location(_this) {
5938 try { 5938 try {
5939 return __dom_wrap(_this.$dom.location); 5939 return __dom_wrap(_this.$dom.location);
5940 } catch (e) { 5940 } catch (e) {
5941 throw __dom_wrap_exception(e); 5941 throw __dom_wrap_exception(e);
5942 } 5942 }
5943 } 5943 }
5944 5944
5945 function native__DocumentWrappingImplementation__set__Document_location(_this, v alue) { 5945 function native__DocumentWrappingImplementation__set_location(_this, value) {
5946 try { 5946 try {
5947 _this.$dom.location = __dom_unwrap(value); 5947 _this.$dom.location = __dom_unwrap(value);
5948 } catch (e) { 5948 } catch (e) {
5949 throw __dom_wrap_exception(e); 5949 throw __dom_wrap_exception(e);
5950 } 5950 }
5951 } 5951 }
5952 5952
5953 function native__DocumentWrappingImplementation__get__Document_onabort(_this) { 5953 function native__DocumentWrappingImplementation__get_onabort(_this) {
5954 try { 5954 try {
5955 return __dom_wrap(_this.$dom.onabort); 5955 return __dom_wrap(_this.$dom.onabort);
5956 } catch (e) { 5956 } catch (e) {
5957 throw __dom_wrap_exception(e); 5957 throw __dom_wrap_exception(e);
5958 } 5958 }
5959 } 5959 }
5960 5960
5961 function native__DocumentWrappingImplementation__set__Document_onabort(_this, va lue) { 5961 function native__DocumentWrappingImplementation__set_onabort(_this, value) {
5962 try { 5962 try {
5963 _this.$dom.onabort = __dom_unwrap(value); 5963 _this.$dom.onabort = __dom_unwrap(value);
5964 } catch (e) { 5964 } catch (e) {
5965 throw __dom_wrap_exception(e); 5965 throw __dom_wrap_exception(e);
5966 } 5966 }
5967 } 5967 }
5968 5968
5969 function native__DocumentWrappingImplementation__get__Document_onbeforecopy(_thi s) { 5969 function native__DocumentWrappingImplementation__get_onbeforecopy(_this) {
5970 try { 5970 try {
5971 return __dom_wrap(_this.$dom.onbeforecopy); 5971 return __dom_wrap(_this.$dom.onbeforecopy);
5972 } catch (e) { 5972 } catch (e) {
5973 throw __dom_wrap_exception(e); 5973 throw __dom_wrap_exception(e);
5974 } 5974 }
5975 } 5975 }
5976 5976
5977 function native__DocumentWrappingImplementation__set__Document_onbeforecopy(_thi s, value) { 5977 function native__DocumentWrappingImplementation__set_onbeforecopy(_this, value) {
5978 try { 5978 try {
5979 _this.$dom.onbeforecopy = __dom_unwrap(value); 5979 _this.$dom.onbeforecopy = __dom_unwrap(value);
5980 } catch (e) { 5980 } catch (e) {
5981 throw __dom_wrap_exception(e); 5981 throw __dom_wrap_exception(e);
5982 } 5982 }
5983 } 5983 }
5984 5984
5985 function native__DocumentWrappingImplementation__get__Document_onbeforecut(_this ) { 5985 function native__DocumentWrappingImplementation__get_onbeforecut(_this) {
5986 try { 5986 try {
5987 return __dom_wrap(_this.$dom.onbeforecut); 5987 return __dom_wrap(_this.$dom.onbeforecut);
5988 } catch (e) { 5988 } catch (e) {
5989 throw __dom_wrap_exception(e); 5989 throw __dom_wrap_exception(e);
5990 } 5990 }
5991 } 5991 }
5992 5992
5993 function native__DocumentWrappingImplementation__set__Document_onbeforecut(_this , value) { 5993 function native__DocumentWrappingImplementation__set_onbeforecut(_this, value) {
5994 try { 5994 try {
5995 _this.$dom.onbeforecut = __dom_unwrap(value); 5995 _this.$dom.onbeforecut = __dom_unwrap(value);
5996 } catch (e) { 5996 } catch (e) {
5997 throw __dom_wrap_exception(e); 5997 throw __dom_wrap_exception(e);
5998 } 5998 }
5999 } 5999 }
6000 6000
6001 function native__DocumentWrappingImplementation__get__Document_onbeforepaste(_th is) { 6001 function native__DocumentWrappingImplementation__get_onbeforepaste(_this) {
6002 try { 6002 try {
6003 return __dom_wrap(_this.$dom.onbeforepaste); 6003 return __dom_wrap(_this.$dom.onbeforepaste);
6004 } catch (e) { 6004 } catch (e) {
6005 throw __dom_wrap_exception(e); 6005 throw __dom_wrap_exception(e);
6006 } 6006 }
6007 } 6007 }
6008 6008
6009 function native__DocumentWrappingImplementation__set__Document_onbeforepaste(_th is, value) { 6009 function native__DocumentWrappingImplementation__set_onbeforepaste(_this, value) {
6010 try { 6010 try {
6011 _this.$dom.onbeforepaste = __dom_unwrap(value); 6011 _this.$dom.onbeforepaste = __dom_unwrap(value);
6012 } catch (e) { 6012 } catch (e) {
6013 throw __dom_wrap_exception(e); 6013 throw __dom_wrap_exception(e);
6014 } 6014 }
6015 } 6015 }
6016 6016
6017 function native__DocumentWrappingImplementation__get__Document_onblur(_this) { 6017 function native__DocumentWrappingImplementation__get_onblur(_this) {
6018 try { 6018 try {
6019 return __dom_wrap(_this.$dom.onblur); 6019 return __dom_wrap(_this.$dom.onblur);
6020 } catch (e) { 6020 } catch (e) {
6021 throw __dom_wrap_exception(e); 6021 throw __dom_wrap_exception(e);
6022 } 6022 }
6023 } 6023 }
6024 6024
6025 function native__DocumentWrappingImplementation__set__Document_onblur(_this, val ue) { 6025 function native__DocumentWrappingImplementation__set_onblur(_this, value) {
6026 try { 6026 try {
6027 _this.$dom.onblur = __dom_unwrap(value); 6027 _this.$dom.onblur = __dom_unwrap(value);
6028 } catch (e) { 6028 } catch (e) {
6029 throw __dom_wrap_exception(e); 6029 throw __dom_wrap_exception(e);
6030 } 6030 }
6031 } 6031 }
6032 6032
6033 function native__DocumentWrappingImplementation__get__Document_onchange(_this) { 6033 function native__DocumentWrappingImplementation__get_onchange(_this) {
6034 try { 6034 try {
6035 return __dom_wrap(_this.$dom.onchange); 6035 return __dom_wrap(_this.$dom.onchange);
6036 } catch (e) { 6036 } catch (e) {
6037 throw __dom_wrap_exception(e); 6037 throw __dom_wrap_exception(e);
6038 } 6038 }
6039 } 6039 }
6040 6040
6041 function native__DocumentWrappingImplementation__set__Document_onchange(_this, v alue) { 6041 function native__DocumentWrappingImplementation__set_onchange(_this, value) {
6042 try { 6042 try {
6043 _this.$dom.onchange = __dom_unwrap(value); 6043 _this.$dom.onchange = __dom_unwrap(value);
6044 } catch (e) { 6044 } catch (e) {
6045 throw __dom_wrap_exception(e); 6045 throw __dom_wrap_exception(e);
6046 } 6046 }
6047 } 6047 }
6048 6048
6049 function native__DocumentWrappingImplementation__get__Document_onclick(_this) { 6049 function native__DocumentWrappingImplementation__get_onclick(_this) {
6050 try { 6050 try {
6051 return __dom_wrap(_this.$dom.onclick); 6051 return __dom_wrap(_this.$dom.onclick);
6052 } catch (e) { 6052 } catch (e) {
6053 throw __dom_wrap_exception(e); 6053 throw __dom_wrap_exception(e);
6054 } 6054 }
6055 } 6055 }
6056 6056
6057 function native__DocumentWrappingImplementation__set__Document_onclick(_this, va lue) { 6057 function native__DocumentWrappingImplementation__set_onclick(_this, value) {
6058 try { 6058 try {
6059 _this.$dom.onclick = __dom_unwrap(value); 6059 _this.$dom.onclick = __dom_unwrap(value);
6060 } catch (e) { 6060 } catch (e) {
6061 throw __dom_wrap_exception(e); 6061 throw __dom_wrap_exception(e);
6062 } 6062 }
6063 } 6063 }
6064 6064
6065 function native__DocumentWrappingImplementation__get__Document_oncontextmenu(_th is) { 6065 function native__DocumentWrappingImplementation__get_oncontextmenu(_this) {
6066 try { 6066 try {
6067 return __dom_wrap(_this.$dom.oncontextmenu); 6067 return __dom_wrap(_this.$dom.oncontextmenu);
6068 } catch (e) { 6068 } catch (e) {
6069 throw __dom_wrap_exception(e); 6069 throw __dom_wrap_exception(e);
6070 } 6070 }
6071 } 6071 }
6072 6072
6073 function native__DocumentWrappingImplementation__set__Document_oncontextmenu(_th is, value) { 6073 function native__DocumentWrappingImplementation__set_oncontextmenu(_this, value) {
6074 try { 6074 try {
6075 _this.$dom.oncontextmenu = __dom_unwrap(value); 6075 _this.$dom.oncontextmenu = __dom_unwrap(value);
6076 } catch (e) { 6076 } catch (e) {
6077 throw __dom_wrap_exception(e); 6077 throw __dom_wrap_exception(e);
6078 } 6078 }
6079 } 6079 }
6080 6080
6081 function native__DocumentWrappingImplementation__get__Document_oncopy(_this) { 6081 function native__DocumentWrappingImplementation__get_oncopy(_this) {
6082 try { 6082 try {
6083 return __dom_wrap(_this.$dom.oncopy); 6083 return __dom_wrap(_this.$dom.oncopy);
6084 } catch (e) { 6084 } catch (e) {
6085 throw __dom_wrap_exception(e); 6085 throw __dom_wrap_exception(e);
6086 } 6086 }
6087 } 6087 }
6088 6088
6089 function native__DocumentWrappingImplementation__set__Document_oncopy(_this, val ue) { 6089 function native__DocumentWrappingImplementation__set_oncopy(_this, value) {
6090 try { 6090 try {
6091 _this.$dom.oncopy = __dom_unwrap(value); 6091 _this.$dom.oncopy = __dom_unwrap(value);
6092 } catch (e) { 6092 } catch (e) {
6093 throw __dom_wrap_exception(e); 6093 throw __dom_wrap_exception(e);
6094 } 6094 }
6095 } 6095 }
6096 6096
6097 function native__DocumentWrappingImplementation__get__Document_oncut(_this) { 6097 function native__DocumentWrappingImplementation__get_oncut(_this) {
6098 try { 6098 try {
6099 return __dom_wrap(_this.$dom.oncut); 6099 return __dom_wrap(_this.$dom.oncut);
6100 } catch (e) { 6100 } catch (e) {
6101 throw __dom_wrap_exception(e); 6101 throw __dom_wrap_exception(e);
6102 } 6102 }
6103 } 6103 }
6104 6104
6105 function native__DocumentWrappingImplementation__set__Document_oncut(_this, valu e) { 6105 function native__DocumentWrappingImplementation__set_oncut(_this, value) {
6106 try { 6106 try {
6107 _this.$dom.oncut = __dom_unwrap(value); 6107 _this.$dom.oncut = __dom_unwrap(value);
6108 } catch (e) { 6108 } catch (e) {
6109 throw __dom_wrap_exception(e); 6109 throw __dom_wrap_exception(e);
6110 } 6110 }
6111 } 6111 }
6112 6112
6113 function native__DocumentWrappingImplementation__get__Document_ondblclick(_this) { 6113 function native__DocumentWrappingImplementation__get_ondblclick(_this) {
6114 try { 6114 try {
6115 return __dom_wrap(_this.$dom.ondblclick); 6115 return __dom_wrap(_this.$dom.ondblclick);
6116 } catch (e) { 6116 } catch (e) {
6117 throw __dom_wrap_exception(e); 6117 throw __dom_wrap_exception(e);
6118 } 6118 }
6119 } 6119 }
6120 6120
6121 function native__DocumentWrappingImplementation__set__Document_ondblclick(_this, value) { 6121 function native__DocumentWrappingImplementation__set_ondblclick(_this, value) {
6122 try { 6122 try {
6123 _this.$dom.ondblclick = __dom_unwrap(value); 6123 _this.$dom.ondblclick = __dom_unwrap(value);
6124 } catch (e) { 6124 } catch (e) {
6125 throw __dom_wrap_exception(e); 6125 throw __dom_wrap_exception(e);
6126 } 6126 }
6127 } 6127 }
6128 6128
6129 function native__DocumentWrappingImplementation__get__Document_ondrag(_this) { 6129 function native__DocumentWrappingImplementation__get_ondrag(_this) {
6130 try { 6130 try {
6131 return __dom_wrap(_this.$dom.ondrag); 6131 return __dom_wrap(_this.$dom.ondrag);
6132 } catch (e) { 6132 } catch (e) {
6133 throw __dom_wrap_exception(e); 6133 throw __dom_wrap_exception(e);
6134 } 6134 }
6135 } 6135 }
6136 6136
6137 function native__DocumentWrappingImplementation__set__Document_ondrag(_this, val ue) { 6137 function native__DocumentWrappingImplementation__set_ondrag(_this, value) {
6138 try { 6138 try {
6139 _this.$dom.ondrag = __dom_unwrap(value); 6139 _this.$dom.ondrag = __dom_unwrap(value);
6140 } catch (e) { 6140 } catch (e) {
6141 throw __dom_wrap_exception(e); 6141 throw __dom_wrap_exception(e);
6142 } 6142 }
6143 } 6143 }
6144 6144
6145 function native__DocumentWrappingImplementation__get__Document_ondragend(_this) { 6145 function native__DocumentWrappingImplementation__get_ondragend(_this) {
6146 try { 6146 try {
6147 return __dom_wrap(_this.$dom.ondragend); 6147 return __dom_wrap(_this.$dom.ondragend);
6148 } catch (e) { 6148 } catch (e) {
6149 throw __dom_wrap_exception(e); 6149 throw __dom_wrap_exception(e);
6150 } 6150 }
6151 } 6151 }
6152 6152
6153 function native__DocumentWrappingImplementation__set__Document_ondragend(_this, value) { 6153 function native__DocumentWrappingImplementation__set_ondragend(_this, value) {
6154 try { 6154 try {
6155 _this.$dom.ondragend = __dom_unwrap(value); 6155 _this.$dom.ondragend = __dom_unwrap(value);
6156 } catch (e) { 6156 } catch (e) {
6157 throw __dom_wrap_exception(e); 6157 throw __dom_wrap_exception(e);
6158 } 6158 }
6159 } 6159 }
6160 6160
6161 function native__DocumentWrappingImplementation__get__Document_ondragenter(_this ) { 6161 function native__DocumentWrappingImplementation__get_ondragenter(_this) {
6162 try { 6162 try {
6163 return __dom_wrap(_this.$dom.ondragenter); 6163 return __dom_wrap(_this.$dom.ondragenter);
6164 } catch (e) { 6164 } catch (e) {
6165 throw __dom_wrap_exception(e); 6165 throw __dom_wrap_exception(e);
6166 } 6166 }
6167 } 6167 }
6168 6168
6169 function native__DocumentWrappingImplementation__set__Document_ondragenter(_this , value) { 6169 function native__DocumentWrappingImplementation__set_ondragenter(_this, value) {
6170 try { 6170 try {
6171 _this.$dom.ondragenter = __dom_unwrap(value); 6171 _this.$dom.ondragenter = __dom_unwrap(value);
6172 } catch (e) { 6172 } catch (e) {
6173 throw __dom_wrap_exception(e); 6173 throw __dom_wrap_exception(e);
6174 } 6174 }
6175 } 6175 }
6176 6176
6177 function native__DocumentWrappingImplementation__get__Document_ondragleave(_this ) { 6177 function native__DocumentWrappingImplementation__get_ondragleave(_this) {
6178 try { 6178 try {
6179 return __dom_wrap(_this.$dom.ondragleave); 6179 return __dom_wrap(_this.$dom.ondragleave);
6180 } catch (e) { 6180 } catch (e) {
6181 throw __dom_wrap_exception(e); 6181 throw __dom_wrap_exception(e);
6182 } 6182 }
6183 } 6183 }
6184 6184
6185 function native__DocumentWrappingImplementation__set__Document_ondragleave(_this , value) { 6185 function native__DocumentWrappingImplementation__set_ondragleave(_this, value) {
6186 try { 6186 try {
6187 _this.$dom.ondragleave = __dom_unwrap(value); 6187 _this.$dom.ondragleave = __dom_unwrap(value);
6188 } catch (e) { 6188 } catch (e) {
6189 throw __dom_wrap_exception(e); 6189 throw __dom_wrap_exception(e);
6190 } 6190 }
6191 } 6191 }
6192 6192
6193 function native__DocumentWrappingImplementation__get__Document_ondragover(_this) { 6193 function native__DocumentWrappingImplementation__get_ondragover(_this) {
6194 try { 6194 try {
6195 return __dom_wrap(_this.$dom.ondragover); 6195 return __dom_wrap(_this.$dom.ondragover);
6196 } catch (e) { 6196 } catch (e) {
6197 throw __dom_wrap_exception(e); 6197 throw __dom_wrap_exception(e);
6198 } 6198 }
6199 } 6199 }
6200 6200
6201 function native__DocumentWrappingImplementation__set__Document_ondragover(_this, value) { 6201 function native__DocumentWrappingImplementation__set_ondragover(_this, value) {
6202 try { 6202 try {
6203 _this.$dom.ondragover = __dom_unwrap(value); 6203 _this.$dom.ondragover = __dom_unwrap(value);
6204 } catch (e) { 6204 } catch (e) {
6205 throw __dom_wrap_exception(e); 6205 throw __dom_wrap_exception(e);
6206 } 6206 }
6207 } 6207 }
6208 6208
6209 function native__DocumentWrappingImplementation__get__Document_ondragstart(_this ) { 6209 function native__DocumentWrappingImplementation__get_ondragstart(_this) {
6210 try { 6210 try {
6211 return __dom_wrap(_this.$dom.ondragstart); 6211 return __dom_wrap(_this.$dom.ondragstart);
6212 } catch (e) { 6212 } catch (e) {
6213 throw __dom_wrap_exception(e); 6213 throw __dom_wrap_exception(e);
6214 } 6214 }
6215 } 6215 }
6216 6216
6217 function native__DocumentWrappingImplementation__set__Document_ondragstart(_this , value) { 6217 function native__DocumentWrappingImplementation__set_ondragstart(_this, value) {
6218 try { 6218 try {
6219 _this.$dom.ondragstart = __dom_unwrap(value); 6219 _this.$dom.ondragstart = __dom_unwrap(value);
6220 } catch (e) { 6220 } catch (e) {
6221 throw __dom_wrap_exception(e); 6221 throw __dom_wrap_exception(e);
6222 } 6222 }
6223 } 6223 }
6224 6224
6225 function native__DocumentWrappingImplementation__get__Document_ondrop(_this) { 6225 function native__DocumentWrappingImplementation__get_ondrop(_this) {
6226 try { 6226 try {
6227 return __dom_wrap(_this.$dom.ondrop); 6227 return __dom_wrap(_this.$dom.ondrop);
6228 } catch (e) { 6228 } catch (e) {
6229 throw __dom_wrap_exception(e); 6229 throw __dom_wrap_exception(e);
6230 } 6230 }
6231 } 6231 }
6232 6232
6233 function native__DocumentWrappingImplementation__set__Document_ondrop(_this, val ue) { 6233 function native__DocumentWrappingImplementation__set_ondrop(_this, value) {
6234 try { 6234 try {
6235 _this.$dom.ondrop = __dom_unwrap(value); 6235 _this.$dom.ondrop = __dom_unwrap(value);
6236 } catch (e) { 6236 } catch (e) {
6237 throw __dom_wrap_exception(e); 6237 throw __dom_wrap_exception(e);
6238 } 6238 }
6239 } 6239 }
6240 6240
6241 function native__DocumentWrappingImplementation__get__Document_onerror(_this) { 6241 function native__DocumentWrappingImplementation__get_onerror(_this) {
6242 try { 6242 try {
6243 return __dom_wrap(_this.$dom.onerror); 6243 return __dom_wrap(_this.$dom.onerror);
6244 } catch (e) { 6244 } catch (e) {
6245 throw __dom_wrap_exception(e); 6245 throw __dom_wrap_exception(e);
6246 } 6246 }
6247 } 6247 }
6248 6248
6249 function native__DocumentWrappingImplementation__set__Document_onerror(_this, va lue) { 6249 function native__DocumentWrappingImplementation__set_onerror(_this, value) {
6250 try { 6250 try {
6251 _this.$dom.onerror = __dom_unwrap(value); 6251 _this.$dom.onerror = __dom_unwrap(value);
6252 } catch (e) { 6252 } catch (e) {
6253 throw __dom_wrap_exception(e); 6253 throw __dom_wrap_exception(e);
6254 } 6254 }
6255 } 6255 }
6256 6256
6257 function native__DocumentWrappingImplementation__get__Document_onfocus(_this) { 6257 function native__DocumentWrappingImplementation__get_onfocus(_this) {
6258 try { 6258 try {
6259 return __dom_wrap(_this.$dom.onfocus); 6259 return __dom_wrap(_this.$dom.onfocus);
6260 } catch (e) { 6260 } catch (e) {
6261 throw __dom_wrap_exception(e); 6261 throw __dom_wrap_exception(e);
6262 } 6262 }
6263 } 6263 }
6264 6264
6265 function native__DocumentWrappingImplementation__set__Document_onfocus(_this, va lue) { 6265 function native__DocumentWrappingImplementation__set_onfocus(_this, value) {
6266 try { 6266 try {
6267 _this.$dom.onfocus = __dom_unwrap(value); 6267 _this.$dom.onfocus = __dom_unwrap(value);
6268 } catch (e) { 6268 } catch (e) {
6269 throw __dom_wrap_exception(e); 6269 throw __dom_wrap_exception(e);
6270 } 6270 }
6271 } 6271 }
6272 6272
6273 function native__DocumentWrappingImplementation__get__Document_oninput(_this) { 6273 function native__DocumentWrappingImplementation__get_oninput(_this) {
6274 try { 6274 try {
6275 return __dom_wrap(_this.$dom.oninput); 6275 return __dom_wrap(_this.$dom.oninput);
6276 } catch (e) { 6276 } catch (e) {
6277 throw __dom_wrap_exception(e); 6277 throw __dom_wrap_exception(e);
6278 } 6278 }
6279 } 6279 }
6280 6280
6281 function native__DocumentWrappingImplementation__set__Document_oninput(_this, va lue) { 6281 function native__DocumentWrappingImplementation__set_oninput(_this, value) {
6282 try { 6282 try {
6283 _this.$dom.oninput = __dom_unwrap(value); 6283 _this.$dom.oninput = __dom_unwrap(value);
6284 } catch (e) { 6284 } catch (e) {
6285 throw __dom_wrap_exception(e); 6285 throw __dom_wrap_exception(e);
6286 } 6286 }
6287 } 6287 }
6288 6288
6289 function native__DocumentWrappingImplementation__get__Document_oninvalid(_this) { 6289 function native__DocumentWrappingImplementation__get_oninvalid(_this) {
6290 try { 6290 try {
6291 return __dom_wrap(_this.$dom.oninvalid); 6291 return __dom_wrap(_this.$dom.oninvalid);
6292 } catch (e) { 6292 } catch (e) {
6293 throw __dom_wrap_exception(e); 6293 throw __dom_wrap_exception(e);
6294 } 6294 }
6295 } 6295 }
6296 6296
6297 function native__DocumentWrappingImplementation__set__Document_oninvalid(_this, value) { 6297 function native__DocumentWrappingImplementation__set_oninvalid(_this, value) {
6298 try { 6298 try {
6299 _this.$dom.oninvalid = __dom_unwrap(value); 6299 _this.$dom.oninvalid = __dom_unwrap(value);
6300 } catch (e) { 6300 } catch (e) {
6301 throw __dom_wrap_exception(e); 6301 throw __dom_wrap_exception(e);
6302 } 6302 }
6303 } 6303 }
6304 6304
6305 function native__DocumentWrappingImplementation__get__Document_onkeydown(_this) { 6305 function native__DocumentWrappingImplementation__get_onkeydown(_this) {
6306 try { 6306 try {
6307 return __dom_wrap(_this.$dom.onkeydown); 6307 return __dom_wrap(_this.$dom.onkeydown);
6308 } catch (e) { 6308 } catch (e) {
6309 throw __dom_wrap_exception(e); 6309 throw __dom_wrap_exception(e);
6310 } 6310 }
6311 } 6311 }
6312 6312
6313 function native__DocumentWrappingImplementation__set__Document_onkeydown(_this, value) { 6313 function native__DocumentWrappingImplementation__set_onkeydown(_this, value) {
6314 try { 6314 try {
6315 _this.$dom.onkeydown = __dom_unwrap(value); 6315 _this.$dom.onkeydown = __dom_unwrap(value);
6316 } catch (e) { 6316 } catch (e) {
6317 throw __dom_wrap_exception(e); 6317 throw __dom_wrap_exception(e);
6318 } 6318 }
6319 } 6319 }
6320 6320
6321 function native__DocumentWrappingImplementation__get__Document_onkeypress(_this) { 6321 function native__DocumentWrappingImplementation__get_onkeypress(_this) {
6322 try { 6322 try {
6323 return __dom_wrap(_this.$dom.onkeypress); 6323 return __dom_wrap(_this.$dom.onkeypress);
6324 } catch (e) { 6324 } catch (e) {
6325 throw __dom_wrap_exception(e); 6325 throw __dom_wrap_exception(e);
6326 } 6326 }
6327 } 6327 }
6328 6328
6329 function native__DocumentWrappingImplementation__set__Document_onkeypress(_this, value) { 6329 function native__DocumentWrappingImplementation__set_onkeypress(_this, value) {
6330 try { 6330 try {
6331 _this.$dom.onkeypress = __dom_unwrap(value); 6331 _this.$dom.onkeypress = __dom_unwrap(value);
6332 } catch (e) { 6332 } catch (e) {
6333 throw __dom_wrap_exception(e); 6333 throw __dom_wrap_exception(e);
6334 } 6334 }
6335 } 6335 }
6336 6336
6337 function native__DocumentWrappingImplementation__get__Document_onkeyup(_this) { 6337 function native__DocumentWrappingImplementation__get_onkeyup(_this) {
6338 try { 6338 try {
6339 return __dom_wrap(_this.$dom.onkeyup); 6339 return __dom_wrap(_this.$dom.onkeyup);
6340 } catch (e) { 6340 } catch (e) {
6341 throw __dom_wrap_exception(e); 6341 throw __dom_wrap_exception(e);
6342 } 6342 }
6343 } 6343 }
6344 6344
6345 function native__DocumentWrappingImplementation__set__Document_onkeyup(_this, va lue) { 6345 function native__DocumentWrappingImplementation__set_onkeyup(_this, value) {
6346 try { 6346 try {
6347 _this.$dom.onkeyup = __dom_unwrap(value); 6347 _this.$dom.onkeyup = __dom_unwrap(value);
6348 } catch (e) { 6348 } catch (e) {
6349 throw __dom_wrap_exception(e); 6349 throw __dom_wrap_exception(e);
6350 } 6350 }
6351 } 6351 }
6352 6352
6353 function native__DocumentWrappingImplementation__get__Document_onload(_this) { 6353 function native__DocumentWrappingImplementation__get_onload(_this) {
6354 try { 6354 try {
6355 return __dom_wrap(_this.$dom.onload); 6355 return __dom_wrap(_this.$dom.onload);
6356 } catch (e) { 6356 } catch (e) {
6357 throw __dom_wrap_exception(e); 6357 throw __dom_wrap_exception(e);
6358 } 6358 }
6359 } 6359 }
6360 6360
6361 function native__DocumentWrappingImplementation__set__Document_onload(_this, val ue) { 6361 function native__DocumentWrappingImplementation__set_onload(_this, value) {
6362 try { 6362 try {
6363 _this.$dom.onload = __dom_unwrap(value); 6363 _this.$dom.onload = __dom_unwrap(value);
6364 } catch (e) { 6364 } catch (e) {
6365 throw __dom_wrap_exception(e); 6365 throw __dom_wrap_exception(e);
6366 } 6366 }
6367 } 6367 }
6368 6368
6369 function native__DocumentWrappingImplementation__get__Document_onmousedown(_this ) { 6369 function native__DocumentWrappingImplementation__get_onmousedown(_this) {
6370 try { 6370 try {
6371 return __dom_wrap(_this.$dom.onmousedown); 6371 return __dom_wrap(_this.$dom.onmousedown);
6372 } catch (e) { 6372 } catch (e) {
6373 throw __dom_wrap_exception(e); 6373 throw __dom_wrap_exception(e);
6374 } 6374 }
6375 } 6375 }
6376 6376
6377 function native__DocumentWrappingImplementation__set__Document_onmousedown(_this , value) { 6377 function native__DocumentWrappingImplementation__set_onmousedown(_this, value) {
6378 try { 6378 try {
6379 _this.$dom.onmousedown = __dom_unwrap(value); 6379 _this.$dom.onmousedown = __dom_unwrap(value);
6380 } catch (e) { 6380 } catch (e) {
6381 throw __dom_wrap_exception(e); 6381 throw __dom_wrap_exception(e);
6382 } 6382 }
6383 } 6383 }
6384 6384
6385 function native__DocumentWrappingImplementation__get__Document_onmousemove(_this ) { 6385 function native__DocumentWrappingImplementation__get_onmousemove(_this) {
6386 try { 6386 try {
6387 return __dom_wrap(_this.$dom.onmousemove); 6387 return __dom_wrap(_this.$dom.onmousemove);
6388 } catch (e) { 6388 } catch (e) {
6389 throw __dom_wrap_exception(e); 6389 throw __dom_wrap_exception(e);
6390 } 6390 }
6391 } 6391 }
6392 6392
6393 function native__DocumentWrappingImplementation__set__Document_onmousemove(_this , value) { 6393 function native__DocumentWrappingImplementation__set_onmousemove(_this, value) {
6394 try { 6394 try {
6395 _this.$dom.onmousemove = __dom_unwrap(value); 6395 _this.$dom.onmousemove = __dom_unwrap(value);
6396 } catch (e) { 6396 } catch (e) {
6397 throw __dom_wrap_exception(e); 6397 throw __dom_wrap_exception(e);
6398 } 6398 }
6399 } 6399 }
6400 6400
6401 function native__DocumentWrappingImplementation__get__Document_onmouseout(_this) { 6401 function native__DocumentWrappingImplementation__get_onmouseout(_this) {
6402 try { 6402 try {
6403 return __dom_wrap(_this.$dom.onmouseout); 6403 return __dom_wrap(_this.$dom.onmouseout);
6404 } catch (e) { 6404 } catch (e) {
6405 throw __dom_wrap_exception(e); 6405 throw __dom_wrap_exception(e);
6406 } 6406 }
6407 } 6407 }
6408 6408
6409 function native__DocumentWrappingImplementation__set__Document_onmouseout(_this, value) { 6409 function native__DocumentWrappingImplementation__set_onmouseout(_this, value) {
6410 try { 6410 try {
6411 _this.$dom.onmouseout = __dom_unwrap(value); 6411 _this.$dom.onmouseout = __dom_unwrap(value);
6412 } catch (e) { 6412 } catch (e) {
6413 throw __dom_wrap_exception(e); 6413 throw __dom_wrap_exception(e);
6414 } 6414 }
6415 } 6415 }
6416 6416
6417 function native__DocumentWrappingImplementation__get__Document_onmouseover(_this ) { 6417 function native__DocumentWrappingImplementation__get_onmouseover(_this) {
6418 try { 6418 try {
6419 return __dom_wrap(_this.$dom.onmouseover); 6419 return __dom_wrap(_this.$dom.onmouseover);
6420 } catch (e) { 6420 } catch (e) {
6421 throw __dom_wrap_exception(e); 6421 throw __dom_wrap_exception(e);
6422 } 6422 }
6423 } 6423 }
6424 6424
6425 function native__DocumentWrappingImplementation__set__Document_onmouseover(_this , value) { 6425 function native__DocumentWrappingImplementation__set_onmouseover(_this, value) {
6426 try { 6426 try {
6427 _this.$dom.onmouseover = __dom_unwrap(value); 6427 _this.$dom.onmouseover = __dom_unwrap(value);
6428 } catch (e) { 6428 } catch (e) {
6429 throw __dom_wrap_exception(e); 6429 throw __dom_wrap_exception(e);
6430 } 6430 }
6431 } 6431 }
6432 6432
6433 function native__DocumentWrappingImplementation__get__Document_onmouseup(_this) { 6433 function native__DocumentWrappingImplementation__get_onmouseup(_this) {
6434 try { 6434 try {
6435 return __dom_wrap(_this.$dom.onmouseup); 6435 return __dom_wrap(_this.$dom.onmouseup);
6436 } catch (e) { 6436 } catch (e) {
6437 throw __dom_wrap_exception(e); 6437 throw __dom_wrap_exception(e);
6438 } 6438 }
6439 } 6439 }
6440 6440
6441 function native__DocumentWrappingImplementation__set__Document_onmouseup(_this, value) { 6441 function native__DocumentWrappingImplementation__set_onmouseup(_this, value) {
6442 try { 6442 try {
6443 _this.$dom.onmouseup = __dom_unwrap(value); 6443 _this.$dom.onmouseup = __dom_unwrap(value);
6444 } catch (e) { 6444 } catch (e) {
6445 throw __dom_wrap_exception(e); 6445 throw __dom_wrap_exception(e);
6446 } 6446 }
6447 } 6447 }
6448 6448
6449 function native__DocumentWrappingImplementation__get__Document_onmousewheel(_thi s) { 6449 function native__DocumentWrappingImplementation__get_onmousewheel(_this) {
6450 try { 6450 try {
6451 return __dom_wrap(_this.$dom.onmousewheel); 6451 return __dom_wrap(_this.$dom.onmousewheel);
6452 } catch (e) { 6452 } catch (e) {
6453 throw __dom_wrap_exception(e); 6453 throw __dom_wrap_exception(e);
6454 } 6454 }
6455 } 6455 }
6456 6456
6457 function native__DocumentWrappingImplementation__set__Document_onmousewheel(_thi s, value) { 6457 function native__DocumentWrappingImplementation__set_onmousewheel(_this, value) {
6458 try { 6458 try {
6459 _this.$dom.onmousewheel = __dom_unwrap(value); 6459 _this.$dom.onmousewheel = __dom_unwrap(value);
6460 } catch (e) { 6460 } catch (e) {
6461 throw __dom_wrap_exception(e); 6461 throw __dom_wrap_exception(e);
6462 } 6462 }
6463 } 6463 }
6464 6464
6465 function native__DocumentWrappingImplementation__get__Document_onpaste(_this) { 6465 function native__DocumentWrappingImplementation__get_onpaste(_this) {
6466 try { 6466 try {
6467 return __dom_wrap(_this.$dom.onpaste); 6467 return __dom_wrap(_this.$dom.onpaste);
6468 } catch (e) { 6468 } catch (e) {
6469 throw __dom_wrap_exception(e); 6469 throw __dom_wrap_exception(e);
6470 } 6470 }
6471 } 6471 }
6472 6472
6473 function native__DocumentWrappingImplementation__set__Document_onpaste(_this, va lue) { 6473 function native__DocumentWrappingImplementation__set_onpaste(_this, value) {
6474 try { 6474 try {
6475 _this.$dom.onpaste = __dom_unwrap(value); 6475 _this.$dom.onpaste = __dom_unwrap(value);
6476 } catch (e) { 6476 } catch (e) {
6477 throw __dom_wrap_exception(e); 6477 throw __dom_wrap_exception(e);
6478 } 6478 }
6479 } 6479 }
6480 6480
6481 function native__DocumentWrappingImplementation__get__Document_onreadystatechang e(_this) { 6481 function native__DocumentWrappingImplementation__get_onreadystatechange(_this) {
6482 try { 6482 try {
6483 return __dom_wrap(_this.$dom.onreadystatechange); 6483 return __dom_wrap(_this.$dom.onreadystatechange);
6484 } catch (e) { 6484 } catch (e) {
6485 throw __dom_wrap_exception(e); 6485 throw __dom_wrap_exception(e);
6486 } 6486 }
6487 } 6487 }
6488 6488
6489 function native__DocumentWrappingImplementation__set__Document_onreadystatechang e(_this, value) { 6489 function native__DocumentWrappingImplementation__set_onreadystatechange(_this, v alue) {
6490 try { 6490 try {
6491 _this.$dom.onreadystatechange = __dom_unwrap(value); 6491 _this.$dom.onreadystatechange = __dom_unwrap(value);
6492 } catch (e) { 6492 } catch (e) {
6493 throw __dom_wrap_exception(e); 6493 throw __dom_wrap_exception(e);
6494 } 6494 }
6495 } 6495 }
6496 6496
6497 function native__DocumentWrappingImplementation__get__Document_onreset(_this) { 6497 function native__DocumentWrappingImplementation__get_onreset(_this) {
6498 try { 6498 try {
6499 return __dom_wrap(_this.$dom.onreset); 6499 return __dom_wrap(_this.$dom.onreset);
6500 } catch (e) { 6500 } catch (e) {
6501 throw __dom_wrap_exception(e); 6501 throw __dom_wrap_exception(e);
6502 } 6502 }
6503 } 6503 }
6504 6504
6505 function native__DocumentWrappingImplementation__set__Document_onreset(_this, va lue) { 6505 function native__DocumentWrappingImplementation__set_onreset(_this, value) {
6506 try { 6506 try {
6507 _this.$dom.onreset = __dom_unwrap(value); 6507 _this.$dom.onreset = __dom_unwrap(value);
6508 } catch (e) { 6508 } catch (e) {
6509 throw __dom_wrap_exception(e); 6509 throw __dom_wrap_exception(e);
6510 } 6510 }
6511 } 6511 }
6512 6512
6513 function native__DocumentWrappingImplementation__get__Document_onscroll(_this) { 6513 function native__DocumentWrappingImplementation__get_onscroll(_this) {
6514 try { 6514 try {
6515 return __dom_wrap(_this.$dom.onscroll); 6515 return __dom_wrap(_this.$dom.onscroll);
6516 } catch (e) { 6516 } catch (e) {
6517 throw __dom_wrap_exception(e); 6517 throw __dom_wrap_exception(e);
6518 } 6518 }
6519 } 6519 }
6520 6520
6521 function native__DocumentWrappingImplementation__set__Document_onscroll(_this, v alue) { 6521 function native__DocumentWrappingImplementation__set_onscroll(_this, value) {
6522 try { 6522 try {
6523 _this.$dom.onscroll = __dom_unwrap(value); 6523 _this.$dom.onscroll = __dom_unwrap(value);
6524 } catch (e) { 6524 } catch (e) {
6525 throw __dom_wrap_exception(e); 6525 throw __dom_wrap_exception(e);
6526 } 6526 }
6527 } 6527 }
6528 6528
6529 function native__DocumentWrappingImplementation__get__Document_onsearch(_this) { 6529 function native__DocumentWrappingImplementation__get_onsearch(_this) {
6530 try { 6530 try {
6531 return __dom_wrap(_this.$dom.onsearch); 6531 return __dom_wrap(_this.$dom.onsearch);
6532 } catch (e) { 6532 } catch (e) {
6533 throw __dom_wrap_exception(e); 6533 throw __dom_wrap_exception(e);
6534 } 6534 }
6535 } 6535 }
6536 6536
6537 function native__DocumentWrappingImplementation__set__Document_onsearch(_this, v alue) { 6537 function native__DocumentWrappingImplementation__set_onsearch(_this, value) {
6538 try { 6538 try {
6539 _this.$dom.onsearch = __dom_unwrap(value); 6539 _this.$dom.onsearch = __dom_unwrap(value);
6540 } catch (e) { 6540 } catch (e) {
6541 throw __dom_wrap_exception(e); 6541 throw __dom_wrap_exception(e);
6542 } 6542 }
6543 } 6543 }
6544 6544
6545 function native__DocumentWrappingImplementation__get__Document_onselect(_this) { 6545 function native__DocumentWrappingImplementation__get_onselect(_this) {
6546 try { 6546 try {
6547 return __dom_wrap(_this.$dom.onselect); 6547 return __dom_wrap(_this.$dom.onselect);
6548 } catch (e) { 6548 } catch (e) {
6549 throw __dom_wrap_exception(e); 6549 throw __dom_wrap_exception(e);
6550 } 6550 }
6551 } 6551 }
6552 6552
6553 function native__DocumentWrappingImplementation__set__Document_onselect(_this, v alue) { 6553 function native__DocumentWrappingImplementation__set_onselect(_this, value) {
6554 try { 6554 try {
6555 _this.$dom.onselect = __dom_unwrap(value); 6555 _this.$dom.onselect = __dom_unwrap(value);
6556 } catch (e) { 6556 } catch (e) {
6557 throw __dom_wrap_exception(e); 6557 throw __dom_wrap_exception(e);
6558 } 6558 }
6559 } 6559 }
6560 6560
6561 function native__DocumentWrappingImplementation__get__Document_onselectionchange (_this) { 6561 function native__DocumentWrappingImplementation__get_onselectionchange(_this) {
6562 try { 6562 try {
6563 return __dom_wrap(_this.$dom.onselectionchange); 6563 return __dom_wrap(_this.$dom.onselectionchange);
6564 } catch (e) { 6564 } catch (e) {
6565 throw __dom_wrap_exception(e); 6565 throw __dom_wrap_exception(e);
6566 } 6566 }
6567 } 6567 }
6568 6568
6569 function native__DocumentWrappingImplementation__set__Document_onselectionchange (_this, value) { 6569 function native__DocumentWrappingImplementation__set_onselectionchange(_this, va lue) {
6570 try { 6570 try {
6571 _this.$dom.onselectionchange = __dom_unwrap(value); 6571 _this.$dom.onselectionchange = __dom_unwrap(value);
6572 } catch (e) { 6572 } catch (e) {
6573 throw __dom_wrap_exception(e); 6573 throw __dom_wrap_exception(e);
6574 } 6574 }
6575 } 6575 }
6576 6576
6577 function native__DocumentWrappingImplementation__get__Document_onselectstart(_th is) { 6577 function native__DocumentWrappingImplementation__get_onselectstart(_this) {
6578 try { 6578 try {
6579 return __dom_wrap(_this.$dom.onselectstart); 6579 return __dom_wrap(_this.$dom.onselectstart);
6580 } catch (e) { 6580 } catch (e) {
6581 throw __dom_wrap_exception(e); 6581 throw __dom_wrap_exception(e);
6582 } 6582 }
6583 } 6583 }
6584 6584
6585 function native__DocumentWrappingImplementation__set__Document_onselectstart(_th is, value) { 6585 function native__DocumentWrappingImplementation__set_onselectstart(_this, value) {
6586 try { 6586 try {
6587 _this.$dom.onselectstart = __dom_unwrap(value); 6587 _this.$dom.onselectstart = __dom_unwrap(value);
6588 } catch (e) { 6588 } catch (e) {
6589 throw __dom_wrap_exception(e); 6589 throw __dom_wrap_exception(e);
6590 } 6590 }
6591 } 6591 }
6592 6592
6593 function native__DocumentWrappingImplementation__get__Document_onsubmit(_this) { 6593 function native__DocumentWrappingImplementation__get_onsubmit(_this) {
6594 try { 6594 try {
6595 return __dom_wrap(_this.$dom.onsubmit); 6595 return __dom_wrap(_this.$dom.onsubmit);
6596 } catch (e) { 6596 } catch (e) {
6597 throw __dom_wrap_exception(e); 6597 throw __dom_wrap_exception(e);
6598 } 6598 }
6599 } 6599 }
6600 6600
6601 function native__DocumentWrappingImplementation__set__Document_onsubmit(_this, v alue) { 6601 function native__DocumentWrappingImplementation__set_onsubmit(_this, value) {
6602 try { 6602 try {
6603 _this.$dom.onsubmit = __dom_unwrap(value); 6603 _this.$dom.onsubmit = __dom_unwrap(value);
6604 } catch (e) { 6604 } catch (e) {
6605 throw __dom_wrap_exception(e); 6605 throw __dom_wrap_exception(e);
6606 } 6606 }
6607 } 6607 }
6608 6608
6609 function native__DocumentWrappingImplementation__get__Document_ontouchcancel(_th is) { 6609 function native__DocumentWrappingImplementation__get_ontouchcancel(_this) {
6610 try { 6610 try {
6611 return __dom_wrap(_this.$dom.ontouchcancel); 6611 return __dom_wrap(_this.$dom.ontouchcancel);
6612 } catch (e) { 6612 } catch (e) {
6613 throw __dom_wrap_exception(e); 6613 throw __dom_wrap_exception(e);
6614 } 6614 }
6615 } 6615 }
6616 6616
6617 function native__DocumentWrappingImplementation__set__Document_ontouchcancel(_th is, value) { 6617 function native__DocumentWrappingImplementation__set_ontouchcancel(_this, value) {
6618 try { 6618 try {
6619 _this.$dom.ontouchcancel = __dom_unwrap(value); 6619 _this.$dom.ontouchcancel = __dom_unwrap(value);
6620 } catch (e) { 6620 } catch (e) {
6621 throw __dom_wrap_exception(e); 6621 throw __dom_wrap_exception(e);
6622 } 6622 }
6623 } 6623 }
6624 6624
6625 function native__DocumentWrappingImplementation__get__Document_ontouchend(_this) { 6625 function native__DocumentWrappingImplementation__get_ontouchend(_this) {
6626 try { 6626 try {
6627 return __dom_wrap(_this.$dom.ontouchend); 6627 return __dom_wrap(_this.$dom.ontouchend);
6628 } catch (e) { 6628 } catch (e) {
6629 throw __dom_wrap_exception(e); 6629 throw __dom_wrap_exception(e);
6630 } 6630 }
6631 } 6631 }
6632 6632
6633 function native__DocumentWrappingImplementation__set__Document_ontouchend(_this, value) { 6633 function native__DocumentWrappingImplementation__set_ontouchend(_this, value) {
6634 try { 6634 try {
6635 _this.$dom.ontouchend = __dom_unwrap(value); 6635 _this.$dom.ontouchend = __dom_unwrap(value);
6636 } catch (e) { 6636 } catch (e) {
6637 throw __dom_wrap_exception(e); 6637 throw __dom_wrap_exception(e);
6638 } 6638 }
6639 } 6639 }
6640 6640
6641 function native__DocumentWrappingImplementation__get__Document_ontouchmove(_this ) { 6641 function native__DocumentWrappingImplementation__get_ontouchmove(_this) {
6642 try { 6642 try {
6643 return __dom_wrap(_this.$dom.ontouchmove); 6643 return __dom_wrap(_this.$dom.ontouchmove);
6644 } catch (e) { 6644 } catch (e) {
6645 throw __dom_wrap_exception(e); 6645 throw __dom_wrap_exception(e);
6646 } 6646 }
6647 } 6647 }
6648 6648
6649 function native__DocumentWrappingImplementation__set__Document_ontouchmove(_this , value) { 6649 function native__DocumentWrappingImplementation__set_ontouchmove(_this, value) {
6650 try { 6650 try {
6651 _this.$dom.ontouchmove = __dom_unwrap(value); 6651 _this.$dom.ontouchmove = __dom_unwrap(value);
6652 } catch (e) { 6652 } catch (e) {
6653 throw __dom_wrap_exception(e); 6653 throw __dom_wrap_exception(e);
6654 } 6654 }
6655 } 6655 }
6656 6656
6657 function native__DocumentWrappingImplementation__get__Document_ontouchstart(_thi s) { 6657 function native__DocumentWrappingImplementation__get_ontouchstart(_this) {
6658 try { 6658 try {
6659 return __dom_wrap(_this.$dom.ontouchstart); 6659 return __dom_wrap(_this.$dom.ontouchstart);
6660 } catch (e) { 6660 } catch (e) {
6661 throw __dom_wrap_exception(e); 6661 throw __dom_wrap_exception(e);
6662 } 6662 }
6663 } 6663 }
6664 6664
6665 function native__DocumentWrappingImplementation__set__Document_ontouchstart(_thi s, value) { 6665 function native__DocumentWrappingImplementation__set_ontouchstart(_this, value) {
6666 try { 6666 try {
6667 _this.$dom.ontouchstart = __dom_unwrap(value); 6667 _this.$dom.ontouchstart = __dom_unwrap(value);
6668 } catch (e) { 6668 } catch (e) {
6669 throw __dom_wrap_exception(e); 6669 throw __dom_wrap_exception(e);
6670 } 6670 }
6671 } 6671 }
6672 6672
6673 function native__DocumentWrappingImplementation__get__Document_onwebkitfullscree nchange(_this) { 6673 function native__DocumentWrappingImplementation__get_onwebkitfullscreenchange(_t his) {
6674 try { 6674 try {
6675 return __dom_wrap(_this.$dom.onwebkitfullscreenchange); 6675 return __dom_wrap(_this.$dom.onwebkitfullscreenchange);
6676 } catch (e) { 6676 } catch (e) {
6677 throw __dom_wrap_exception(e); 6677 throw __dom_wrap_exception(e);
6678 } 6678 }
6679 } 6679 }
6680 6680
6681 function native__DocumentWrappingImplementation__set__Document_onwebkitfullscree nchange(_this, value) { 6681 function native__DocumentWrappingImplementation__set_onwebkitfullscreenchange(_t his, value) {
6682 try { 6682 try {
6683 _this.$dom.onwebkitfullscreenchange = __dom_unwrap(value); 6683 _this.$dom.onwebkitfullscreenchange = __dom_unwrap(value);
6684 } catch (e) { 6684 } catch (e) {
6685 throw __dom_wrap_exception(e); 6685 throw __dom_wrap_exception(e);
6686 } 6686 }
6687 } 6687 }
6688 6688
6689 function native__DocumentWrappingImplementation__get__Document_preferredStyleshe etSet(_this) { 6689 function native__DocumentWrappingImplementation__get_preferredStylesheetSet(_thi s) {
6690 try { 6690 try {
6691 return __dom_wrap(_this.$dom.preferredStylesheetSet); 6691 return __dom_wrap(_this.$dom.preferredStylesheetSet);
6692 } catch (e) { 6692 } catch (e) {
6693 throw __dom_wrap_exception(e); 6693 throw __dom_wrap_exception(e);
6694 } 6694 }
6695 } 6695 }
6696 6696
6697 function native__DocumentWrappingImplementation__get__Document_readyState(_this) { 6697 function native__DocumentWrappingImplementation__get_readyState(_this) {
6698 try { 6698 try {
6699 return __dom_wrap(_this.$dom.readyState); 6699 return __dom_wrap(_this.$dom.readyState);
6700 } catch (e) { 6700 } catch (e) {
6701 throw __dom_wrap_exception(e); 6701 throw __dom_wrap_exception(e);
6702 } 6702 }
6703 } 6703 }
6704 6704
6705 function native__DocumentWrappingImplementation__get__Document_referrer(_this) { 6705 function native__DocumentWrappingImplementation__get_referrer(_this) {
6706 try { 6706 try {
6707 return __dom_wrap(_this.$dom.referrer); 6707 return __dom_wrap(_this.$dom.referrer);
6708 } catch (e) { 6708 } catch (e) {
6709 throw __dom_wrap_exception(e); 6709 throw __dom_wrap_exception(e);
6710 } 6710 }
6711 } 6711 }
6712 6712
6713 function native__DocumentWrappingImplementation__get__Document_selectedStyleshee tSet(_this) { 6713 function native__DocumentWrappingImplementation__get_selectedStylesheetSet(_this ) {
6714 try { 6714 try {
6715 return __dom_wrap(_this.$dom.selectedStylesheetSet); 6715 return __dom_wrap(_this.$dom.selectedStylesheetSet);
6716 } catch (e) { 6716 } catch (e) {
6717 throw __dom_wrap_exception(e); 6717 throw __dom_wrap_exception(e);
6718 } 6718 }
6719 } 6719 }
6720 6720
6721 function native__DocumentWrappingImplementation__set__Document_selectedStyleshee tSet(_this, value) { 6721 function native__DocumentWrappingImplementation__set_selectedStylesheetSet(_this , value) {
6722 try { 6722 try {
6723 _this.$dom.selectedStylesheetSet = __dom_unwrap(value); 6723 _this.$dom.selectedStylesheetSet = __dom_unwrap(value);
6724 } catch (e) { 6724 } catch (e) {
6725 throw __dom_wrap_exception(e); 6725 throw __dom_wrap_exception(e);
6726 } 6726 }
6727 } 6727 }
6728 6728
6729 function native__DocumentWrappingImplementation__get__Document_styleSheets(_this ) { 6729 function native__DocumentWrappingImplementation__get_styleSheets(_this) {
6730 try { 6730 try {
6731 return __dom_wrap(_this.$dom.styleSheets); 6731 return __dom_wrap(_this.$dom.styleSheets);
6732 } catch (e) { 6732 } catch (e) {
6733 throw __dom_wrap_exception(e); 6733 throw __dom_wrap_exception(e);
6734 } 6734 }
6735 } 6735 }
6736 6736
6737 function native__DocumentWrappingImplementation__get__Document_title(_this) { 6737 function native__DocumentWrappingImplementation__get_title(_this) {
6738 try { 6738 try {
6739 return __dom_wrap(_this.$dom.title); 6739 return __dom_wrap(_this.$dom.title);
6740 } catch (e) { 6740 } catch (e) {
6741 throw __dom_wrap_exception(e); 6741 throw __dom_wrap_exception(e);
6742 } 6742 }
6743 } 6743 }
6744 6744
6745 function native__DocumentWrappingImplementation__set__Document_title(_this, valu e) { 6745 function native__DocumentWrappingImplementation__set_title(_this, value) {
6746 try { 6746 try {
6747 _this.$dom.title = __dom_unwrap(value); 6747 _this.$dom.title = __dom_unwrap(value);
6748 } catch (e) { 6748 } catch (e) {
6749 throw __dom_wrap_exception(e); 6749 throw __dom_wrap_exception(e);
6750 } 6750 }
6751 } 6751 }
6752 6752
6753 function native__DocumentWrappingImplementation__get__Document_webkitHidden(_thi s) { 6753 function native__DocumentWrappingImplementation__get_webkitHidden(_this) {
6754 try { 6754 try {
6755 return __dom_wrap(_this.$dom.webkitHidden); 6755 return __dom_wrap(_this.$dom.webkitHidden);
6756 } catch (e) { 6756 } catch (e) {
6757 throw __dom_wrap_exception(e); 6757 throw __dom_wrap_exception(e);
6758 } 6758 }
6759 } 6759 }
6760 6760
6761 function native__DocumentWrappingImplementation__get__Document_webkitVisibilityS tate(_this) { 6761 function native__DocumentWrappingImplementation__get_webkitVisibilityState(_this ) {
6762 try { 6762 try {
6763 return __dom_wrap(_this.$dom.webkitVisibilityState); 6763 return __dom_wrap(_this.$dom.webkitVisibilityState);
6764 } catch (e) { 6764 } catch (e) {
6765 throw __dom_wrap_exception(e); 6765 throw __dom_wrap_exception(e);
6766 } 6766 }
6767 } 6767 }
6768 6768
6769 function native__DocumentWrappingImplementation__get__Document_xmlEncoding(_this ) { 6769 function native__DocumentWrappingImplementation__get_xmlEncoding(_this) {
6770 try { 6770 try {
6771 return __dom_wrap(_this.$dom.xmlEncoding); 6771 return __dom_wrap(_this.$dom.xmlEncoding);
6772 } catch (e) { 6772 } catch (e) {
6773 throw __dom_wrap_exception(e); 6773 throw __dom_wrap_exception(e);
6774 } 6774 }
6775 } 6775 }
6776 6776
6777 function native__DocumentWrappingImplementation__get__Document_xmlStandalone(_th is) { 6777 function native__DocumentWrappingImplementation__get_xmlStandalone(_this) {
6778 try { 6778 try {
6779 return __dom_wrap(_this.$dom.xmlStandalone); 6779 return __dom_wrap(_this.$dom.xmlStandalone);
6780 } catch (e) { 6780 } catch (e) {
6781 throw __dom_wrap_exception(e); 6781 throw __dom_wrap_exception(e);
6782 } 6782 }
6783 } 6783 }
6784 6784
6785 function native__DocumentWrappingImplementation__set__Document_xmlStandalone(_th is, value) { 6785 function native__DocumentWrappingImplementation__set_xmlStandalone(_this, value) {
6786 try { 6786 try {
6787 _this.$dom.xmlStandalone = __dom_unwrap(value); 6787 _this.$dom.xmlStandalone = __dom_unwrap(value);
6788 } catch (e) { 6788 } catch (e) {
6789 throw __dom_wrap_exception(e); 6789 throw __dom_wrap_exception(e);
6790 } 6790 }
6791 } 6791 }
6792 6792
6793 function native__DocumentWrappingImplementation__get__Document_xmlVersion(_this) { 6793 function native__DocumentWrappingImplementation__get_xmlVersion(_this) {
6794 try { 6794 try {
6795 return __dom_wrap(_this.$dom.xmlVersion); 6795 return __dom_wrap(_this.$dom.xmlVersion);
6796 } catch (e) { 6796 } catch (e) {
6797 throw __dom_wrap_exception(e); 6797 throw __dom_wrap_exception(e);
6798 } 6798 }
6799 } 6799 }
6800 6800
6801 function native__DocumentWrappingImplementation__set__Document_xmlVersion(_this, value) { 6801 function native__DocumentWrappingImplementation__set_xmlVersion(_this, value) {
6802 try { 6802 try {
6803 _this.$dom.xmlVersion = __dom_unwrap(value); 6803 _this.$dom.xmlVersion = __dom_unwrap(value);
6804 } catch (e) { 6804 } catch (e) {
6805 throw __dom_wrap_exception(e); 6805 throw __dom_wrap_exception(e);
6806 } 6806 }
6807 } 6807 }
6808 6808
6809 function native__DocumentWrappingImplementation__adoptNode(_this, source) { 6809 function native__DocumentWrappingImplementation__adoptNode(_this, source) {
6810 try { 6810 try {
6811 return __dom_wrap(_this.$dom.adoptNode(__dom_unwrap(source))); 6811 return __dom_wrap(_this.$dom.adoptNode(__dom_unwrap(source)));
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after
7111 } 7111 }
7112 7112
7113 function native__DocumentFragmentWrappingImplementation__querySelectorAll(_this, selectors) { 7113 function native__DocumentFragmentWrappingImplementation__querySelectorAll(_this, selectors) {
7114 try { 7114 try {
7115 return __dom_wrap(_this.$dom.querySelectorAll(__dom_unwrap(selectors))); 7115 return __dom_wrap(_this.$dom.querySelectorAll(__dom_unwrap(selectors)));
7116 } catch (e) { 7116 } catch (e) {
7117 throw __dom_wrap_exception(e); 7117 throw __dom_wrap_exception(e);
7118 } 7118 }
7119 } 7119 }
7120 7120
7121 function native__DocumentTypeWrappingImplementation__get__DocumentType_entities( _this) { 7121 function native__DocumentTypeWrappingImplementation__get_entities(_this) {
7122 try { 7122 try {
7123 return __dom_wrap(_this.$dom.entities); 7123 return __dom_wrap(_this.$dom.entities);
7124 } catch (e) { 7124 } catch (e) {
7125 throw __dom_wrap_exception(e); 7125 throw __dom_wrap_exception(e);
7126 } 7126 }
7127 } 7127 }
7128 7128
7129 function native__DocumentTypeWrappingImplementation__get__DocumentType_internalS ubset(_this) { 7129 function native__DocumentTypeWrappingImplementation__get_internalSubset(_this) {
7130 try { 7130 try {
7131 return __dom_wrap(_this.$dom.internalSubset); 7131 return __dom_wrap(_this.$dom.internalSubset);
7132 } catch (e) { 7132 } catch (e) {
7133 throw __dom_wrap_exception(e); 7133 throw __dom_wrap_exception(e);
7134 } 7134 }
7135 } 7135 }
7136 7136
7137 function native__DocumentTypeWrappingImplementation__get__DocumentType_name(_thi s) { 7137 function native__DocumentTypeWrappingImplementation__get_name(_this) {
7138 try { 7138 try {
7139 return __dom_wrap(_this.$dom.name); 7139 return __dom_wrap(_this.$dom.name);
7140 } catch (e) { 7140 } catch (e) {
7141 throw __dom_wrap_exception(e); 7141 throw __dom_wrap_exception(e);
7142 } 7142 }
7143 } 7143 }
7144 7144
7145 function native__DocumentTypeWrappingImplementation__get__DocumentType_notations (_this) { 7145 function native__DocumentTypeWrappingImplementation__get_notations(_this) {
7146 try { 7146 try {
7147 return __dom_wrap(_this.$dom.notations); 7147 return __dom_wrap(_this.$dom.notations);
7148 } catch (e) { 7148 } catch (e) {
7149 throw __dom_wrap_exception(e); 7149 throw __dom_wrap_exception(e);
7150 } 7150 }
7151 } 7151 }
7152 7152
7153 function native__DocumentTypeWrappingImplementation__get__DocumentType_publicId( _this) { 7153 function native__DocumentTypeWrappingImplementation__get_publicId(_this) {
7154 try { 7154 try {
7155 return __dom_wrap(_this.$dom.publicId); 7155 return __dom_wrap(_this.$dom.publicId);
7156 } catch (e) { 7156 } catch (e) {
7157 throw __dom_wrap_exception(e); 7157 throw __dom_wrap_exception(e);
7158 } 7158 }
7159 } 7159 }
7160 7160
7161 function native__DocumentTypeWrappingImplementation__get__DocumentType_systemId( _this) { 7161 function native__DocumentTypeWrappingImplementation__get_systemId(_this) {
7162 try { 7162 try {
7163 return __dom_wrap(_this.$dom.systemId); 7163 return __dom_wrap(_this.$dom.systemId);
7164 } catch (e) { 7164 } catch (e) {
7165 throw __dom_wrap_exception(e); 7165 throw __dom_wrap_exception(e);
7166 } 7166 }
7167 } 7167 }
7168 7168
7169 function native__ElementWrappingImplementation__get__Element_childElementCount(_ this) { 7169 function native__ElementWrappingImplementation__get_childElementCount(_this) {
7170 try { 7170 try {
7171 return __dom_wrap(_this.$dom.childElementCount); 7171 return __dom_wrap(_this.$dom.childElementCount);
7172 } catch (e) { 7172 } catch (e) {
7173 throw __dom_wrap_exception(e); 7173 throw __dom_wrap_exception(e);
7174 } 7174 }
7175 } 7175 }
7176 7176
7177 function native__ElementWrappingImplementation__get__Element_clientHeight(_this) { 7177 function native__ElementWrappingImplementation__get_clientHeight(_this) {
7178 try { 7178 try {
7179 return __dom_wrap(_this.$dom.clientHeight); 7179 return __dom_wrap(_this.$dom.clientHeight);
7180 } catch (e) { 7180 } catch (e) {
7181 throw __dom_wrap_exception(e); 7181 throw __dom_wrap_exception(e);
7182 } 7182 }
7183 } 7183 }
7184 7184
7185 function native__ElementWrappingImplementation__get__Element_clientLeft(_this) { 7185 function native__ElementWrappingImplementation__get_clientLeft(_this) {
7186 try { 7186 try {
7187 return __dom_wrap(_this.$dom.clientLeft); 7187 return __dom_wrap(_this.$dom.clientLeft);
7188 } catch (e) { 7188 } catch (e) {
7189 throw __dom_wrap_exception(e); 7189 throw __dom_wrap_exception(e);
7190 } 7190 }
7191 } 7191 }
7192 7192
7193 function native__ElementWrappingImplementation__get__Element_clientTop(_this) { 7193 function native__ElementWrappingImplementation__get_clientTop(_this) {
7194 try { 7194 try {
7195 return __dom_wrap(_this.$dom.clientTop); 7195 return __dom_wrap(_this.$dom.clientTop);
7196 } catch (e) { 7196 } catch (e) {
7197 throw __dom_wrap_exception(e); 7197 throw __dom_wrap_exception(e);
7198 } 7198 }
7199 } 7199 }
7200 7200
7201 function native__ElementWrappingImplementation__get__Element_clientWidth(_this) { 7201 function native__ElementWrappingImplementation__get_clientWidth(_this) {
7202 try { 7202 try {
7203 return __dom_wrap(_this.$dom.clientWidth); 7203 return __dom_wrap(_this.$dom.clientWidth);
7204 } catch (e) { 7204 } catch (e) {
7205 throw __dom_wrap_exception(e); 7205 throw __dom_wrap_exception(e);
7206 } 7206 }
7207 } 7207 }
7208 7208
7209 function native__ElementWrappingImplementation__get__Element_firstElementChild(_ this) { 7209 function native__ElementWrappingImplementation__get_firstElementChild(_this) {
7210 try { 7210 try {
7211 return __dom_wrap(_this.$dom.firstElementChild); 7211 return __dom_wrap(_this.$dom.firstElementChild);
7212 } catch (e) { 7212 } catch (e) {
7213 throw __dom_wrap_exception(e); 7213 throw __dom_wrap_exception(e);
7214 } 7214 }
7215 } 7215 }
7216 7216
7217 function native__ElementWrappingImplementation__get__Element_lastElementChild(_t his) { 7217 function native__ElementWrappingImplementation__get_lastElementChild(_this) {
7218 try { 7218 try {
7219 return __dom_wrap(_this.$dom.lastElementChild); 7219 return __dom_wrap(_this.$dom.lastElementChild);
7220 } catch (e) { 7220 } catch (e) {
7221 throw __dom_wrap_exception(e); 7221 throw __dom_wrap_exception(e);
7222 } 7222 }
7223 } 7223 }
7224 7224
7225 function native__ElementWrappingImplementation__get__Element_nextElementSibling( _this) { 7225 function native__ElementWrappingImplementation__get_nextElementSibling(_this) {
7226 try { 7226 try {
7227 return __dom_wrap(_this.$dom.nextElementSibling); 7227 return __dom_wrap(_this.$dom.nextElementSibling);
7228 } catch (e) { 7228 } catch (e) {
7229 throw __dom_wrap_exception(e); 7229 throw __dom_wrap_exception(e);
7230 } 7230 }
7231 } 7231 }
7232 7232
7233 function native__ElementWrappingImplementation__get__Element_offsetHeight(_this) { 7233 function native__ElementWrappingImplementation__get_offsetHeight(_this) {
7234 try { 7234 try {
7235 return __dom_wrap(_this.$dom.offsetHeight); 7235 return __dom_wrap(_this.$dom.offsetHeight);
7236 } catch (e) { 7236 } catch (e) {
7237 throw __dom_wrap_exception(e); 7237 throw __dom_wrap_exception(e);
7238 } 7238 }
7239 } 7239 }
7240 7240
7241 function native__ElementWrappingImplementation__get__Element_offsetLeft(_this) { 7241 function native__ElementWrappingImplementation__get_offsetLeft(_this) {
7242 try { 7242 try {
7243 return __dom_wrap(_this.$dom.offsetLeft); 7243 return __dom_wrap(_this.$dom.offsetLeft);
7244 } catch (e) { 7244 } catch (e) {
7245 throw __dom_wrap_exception(e); 7245 throw __dom_wrap_exception(e);
7246 } 7246 }
7247 } 7247 }
7248 7248
7249 function native__ElementWrappingImplementation__get__Element_offsetParent(_this) { 7249 function native__ElementWrappingImplementation__get_offsetParent(_this) {
7250 try { 7250 try {
7251 return __dom_wrap(_this.$dom.offsetParent); 7251 return __dom_wrap(_this.$dom.offsetParent);
7252 } catch (e) { 7252 } catch (e) {
7253 throw __dom_wrap_exception(e); 7253 throw __dom_wrap_exception(e);
7254 } 7254 }
7255 } 7255 }
7256 7256
7257 function native__ElementWrappingImplementation__get__Element_offsetTop(_this) { 7257 function native__ElementWrappingImplementation__get_offsetTop(_this) {
7258 try { 7258 try {
7259 return __dom_wrap(_this.$dom.offsetTop); 7259 return __dom_wrap(_this.$dom.offsetTop);
7260 } catch (e) { 7260 } catch (e) {
7261 throw __dom_wrap_exception(e); 7261 throw __dom_wrap_exception(e);
7262 } 7262 }
7263 } 7263 }
7264 7264
7265 function native__ElementWrappingImplementation__get__Element_offsetWidth(_this) { 7265 function native__ElementWrappingImplementation__get_offsetWidth(_this) {
7266 try { 7266 try {
7267 return __dom_wrap(_this.$dom.offsetWidth); 7267 return __dom_wrap(_this.$dom.offsetWidth);
7268 } catch (e) { 7268 } catch (e) {
7269 throw __dom_wrap_exception(e); 7269 throw __dom_wrap_exception(e);
7270 } 7270 }
7271 } 7271 }
7272 7272
7273 function native__ElementWrappingImplementation__get__Element_onabort(_this) { 7273 function native__ElementWrappingImplementation__get_onabort(_this) {
7274 try { 7274 try {
7275 return __dom_wrap(_this.$dom.onabort); 7275 return __dom_wrap(_this.$dom.onabort);
7276 } catch (e) { 7276 } catch (e) {
7277 throw __dom_wrap_exception(e); 7277 throw __dom_wrap_exception(e);
7278 } 7278 }
7279 } 7279 }
7280 7280
7281 function native__ElementWrappingImplementation__set__Element_onabort(_this, valu e) { 7281 function native__ElementWrappingImplementation__set_onabort(_this, value) {
7282 try { 7282 try {
7283 _this.$dom.onabort = __dom_unwrap(value); 7283 _this.$dom.onabort = __dom_unwrap(value);
7284 } catch (e) { 7284 } catch (e) {
7285 throw __dom_wrap_exception(e); 7285 throw __dom_wrap_exception(e);
7286 } 7286 }
7287 } 7287 }
7288 7288
7289 function native__ElementWrappingImplementation__get__Element_onbeforecopy(_this) { 7289 function native__ElementWrappingImplementation__get_onbeforecopy(_this) {
7290 try { 7290 try {
7291 return __dom_wrap(_this.$dom.onbeforecopy); 7291 return __dom_wrap(_this.$dom.onbeforecopy);
7292 } catch (e) { 7292 } catch (e) {
7293 throw __dom_wrap_exception(e); 7293 throw __dom_wrap_exception(e);
7294 } 7294 }
7295 } 7295 }
7296 7296
7297 function native__ElementWrappingImplementation__set__Element_onbeforecopy(_this, value) { 7297 function native__ElementWrappingImplementation__set_onbeforecopy(_this, value) {
7298 try { 7298 try {
7299 _this.$dom.onbeforecopy = __dom_unwrap(value); 7299 _this.$dom.onbeforecopy = __dom_unwrap(value);
7300 } catch (e) { 7300 } catch (e) {
7301 throw __dom_wrap_exception(e); 7301 throw __dom_wrap_exception(e);
7302 } 7302 }
7303 } 7303 }
7304 7304
7305 function native__ElementWrappingImplementation__get__Element_onbeforecut(_this) { 7305 function native__ElementWrappingImplementation__get_onbeforecut(_this) {
7306 try { 7306 try {
7307 return __dom_wrap(_this.$dom.onbeforecut); 7307 return __dom_wrap(_this.$dom.onbeforecut);
7308 } catch (e) { 7308 } catch (e) {
7309 throw __dom_wrap_exception(e); 7309 throw __dom_wrap_exception(e);
7310 } 7310 }
7311 } 7311 }
7312 7312
7313 function native__ElementWrappingImplementation__set__Element_onbeforecut(_this, value) { 7313 function native__ElementWrappingImplementation__set_onbeforecut(_this, value) {
7314 try { 7314 try {
7315 _this.$dom.onbeforecut = __dom_unwrap(value); 7315 _this.$dom.onbeforecut = __dom_unwrap(value);
7316 } catch (e) { 7316 } catch (e) {
7317 throw __dom_wrap_exception(e); 7317 throw __dom_wrap_exception(e);
7318 } 7318 }
7319 } 7319 }
7320 7320
7321 function native__ElementWrappingImplementation__get__Element_onbeforepaste(_this ) { 7321 function native__ElementWrappingImplementation__get_onbeforepaste(_this) {
7322 try { 7322 try {
7323 return __dom_wrap(_this.$dom.onbeforepaste); 7323 return __dom_wrap(_this.$dom.onbeforepaste);
7324 } catch (e) { 7324 } catch (e) {
7325 throw __dom_wrap_exception(e); 7325 throw __dom_wrap_exception(e);
7326 } 7326 }
7327 } 7327 }
7328 7328
7329 function native__ElementWrappingImplementation__set__Element_onbeforepaste(_this , value) { 7329 function native__ElementWrappingImplementation__set_onbeforepaste(_this, value) {
7330 try { 7330 try {
7331 _this.$dom.onbeforepaste = __dom_unwrap(value); 7331 _this.$dom.onbeforepaste = __dom_unwrap(value);
7332 } catch (e) { 7332 } catch (e) {
7333 throw __dom_wrap_exception(e); 7333 throw __dom_wrap_exception(e);
7334 } 7334 }
7335 } 7335 }
7336 7336
7337 function native__ElementWrappingImplementation__get__Element_onblur(_this) { 7337 function native__ElementWrappingImplementation__get_onblur(_this) {
7338 try { 7338 try {
7339 return __dom_wrap(_this.$dom.onblur); 7339 return __dom_wrap(_this.$dom.onblur);
7340 } catch (e) { 7340 } catch (e) {
7341 throw __dom_wrap_exception(e); 7341 throw __dom_wrap_exception(e);
7342 } 7342 }
7343 } 7343 }
7344 7344
7345 function native__ElementWrappingImplementation__set__Element_onblur(_this, value ) { 7345 function native__ElementWrappingImplementation__set_onblur(_this, value) {
7346 try { 7346 try {
7347 _this.$dom.onblur = __dom_unwrap(value); 7347 _this.$dom.onblur = __dom_unwrap(value);
7348 } catch (e) { 7348 } catch (e) {
7349 throw __dom_wrap_exception(e); 7349 throw __dom_wrap_exception(e);
7350 } 7350 }
7351 } 7351 }
7352 7352
7353 function native__ElementWrappingImplementation__get__Element_onchange(_this) { 7353 function native__ElementWrappingImplementation__get_onchange(_this) {
7354 try { 7354 try {
7355 return __dom_wrap(_this.$dom.onchange); 7355 return __dom_wrap(_this.$dom.onchange);
7356 } catch (e) { 7356 } catch (e) {
7357 throw __dom_wrap_exception(e); 7357 throw __dom_wrap_exception(e);
7358 } 7358 }
7359 } 7359 }
7360 7360
7361 function native__ElementWrappingImplementation__set__Element_onchange(_this, val ue) { 7361 function native__ElementWrappingImplementation__set_onchange(_this, value) {
7362 try { 7362 try {
7363 _this.$dom.onchange = __dom_unwrap(value); 7363 _this.$dom.onchange = __dom_unwrap(value);
7364 } catch (e) { 7364 } catch (e) {
7365 throw __dom_wrap_exception(e); 7365 throw __dom_wrap_exception(e);
7366 } 7366 }
7367 } 7367 }
7368 7368
7369 function native__ElementWrappingImplementation__get__Element_onclick(_this) { 7369 function native__ElementWrappingImplementation__get_onclick(_this) {
7370 try { 7370 try {
7371 return __dom_wrap(_this.$dom.onclick); 7371 return __dom_wrap(_this.$dom.onclick);
7372 } catch (e) { 7372 } catch (e) {
7373 throw __dom_wrap_exception(e); 7373 throw __dom_wrap_exception(e);
7374 } 7374 }
7375 } 7375 }
7376 7376
7377 function native__ElementWrappingImplementation__set__Element_onclick(_this, valu e) { 7377 function native__ElementWrappingImplementation__set_onclick(_this, value) {
7378 try { 7378 try {
7379 _this.$dom.onclick = __dom_unwrap(value); 7379 _this.$dom.onclick = __dom_unwrap(value);
7380 } catch (e) { 7380 } catch (e) {
7381 throw __dom_wrap_exception(e); 7381 throw __dom_wrap_exception(e);
7382 } 7382 }
7383 } 7383 }
7384 7384
7385 function native__ElementWrappingImplementation__get__Element_oncontextmenu(_this ) { 7385 function native__ElementWrappingImplementation__get_oncontextmenu(_this) {
7386 try { 7386 try {
7387 return __dom_wrap(_this.$dom.oncontextmenu); 7387 return __dom_wrap(_this.$dom.oncontextmenu);
7388 } catch (e) { 7388 } catch (e) {
7389 throw __dom_wrap_exception(e); 7389 throw __dom_wrap_exception(e);
7390 } 7390 }
7391 } 7391 }
7392 7392
7393 function native__ElementWrappingImplementation__set__Element_oncontextmenu(_this , value) { 7393 function native__ElementWrappingImplementation__set_oncontextmenu(_this, value) {
7394 try { 7394 try {
7395 _this.$dom.oncontextmenu = __dom_unwrap(value); 7395 _this.$dom.oncontextmenu = __dom_unwrap(value);
7396 } catch (e) { 7396 } catch (e) {
7397 throw __dom_wrap_exception(e); 7397 throw __dom_wrap_exception(e);
7398 } 7398 }
7399 } 7399 }
7400 7400
7401 function native__ElementWrappingImplementation__get__Element_oncopy(_this) { 7401 function native__ElementWrappingImplementation__get_oncopy(_this) {
7402 try { 7402 try {
7403 return __dom_wrap(_this.$dom.oncopy); 7403 return __dom_wrap(_this.$dom.oncopy);
7404 } catch (e) { 7404 } catch (e) {
7405 throw __dom_wrap_exception(e); 7405 throw __dom_wrap_exception(e);
7406 } 7406 }
7407 } 7407 }
7408 7408
7409 function native__ElementWrappingImplementation__set__Element_oncopy(_this, value ) { 7409 function native__ElementWrappingImplementation__set_oncopy(_this, value) {
7410 try { 7410 try {
7411 _this.$dom.oncopy = __dom_unwrap(value); 7411 _this.$dom.oncopy = __dom_unwrap(value);
7412 } catch (e) { 7412 } catch (e) {
7413 throw __dom_wrap_exception(e); 7413 throw __dom_wrap_exception(e);
7414 } 7414 }
7415 } 7415 }
7416 7416
7417 function native__ElementWrappingImplementation__get__Element_oncut(_this) { 7417 function native__ElementWrappingImplementation__get_oncut(_this) {
7418 try { 7418 try {
7419 return __dom_wrap(_this.$dom.oncut); 7419 return __dom_wrap(_this.$dom.oncut);
7420 } catch (e) { 7420 } catch (e) {
7421 throw __dom_wrap_exception(e); 7421 throw __dom_wrap_exception(e);
7422 } 7422 }
7423 } 7423 }
7424 7424
7425 function native__ElementWrappingImplementation__set__Element_oncut(_this, value) { 7425 function native__ElementWrappingImplementation__set_oncut(_this, value) {
7426 try { 7426 try {
7427 _this.$dom.oncut = __dom_unwrap(value); 7427 _this.$dom.oncut = __dom_unwrap(value);
7428 } catch (e) { 7428 } catch (e) {
7429 throw __dom_wrap_exception(e); 7429 throw __dom_wrap_exception(e);
7430 } 7430 }
7431 } 7431 }
7432 7432
7433 function native__ElementWrappingImplementation__get__Element_ondblclick(_this) { 7433 function native__ElementWrappingImplementation__get_ondblclick(_this) {
7434 try { 7434 try {
7435 return __dom_wrap(_this.$dom.ondblclick); 7435 return __dom_wrap(_this.$dom.ondblclick);
7436 } catch (e) { 7436 } catch (e) {
7437 throw __dom_wrap_exception(e); 7437 throw __dom_wrap_exception(e);
7438 } 7438 }
7439 } 7439 }
7440 7440
7441 function native__ElementWrappingImplementation__set__Element_ondblclick(_this, v alue) { 7441 function native__ElementWrappingImplementation__set_ondblclick(_this, value) {
7442 try { 7442 try {
7443 _this.$dom.ondblclick = __dom_unwrap(value); 7443 _this.$dom.ondblclick = __dom_unwrap(value);
7444 } catch (e) { 7444 } catch (e) {
7445 throw __dom_wrap_exception(e); 7445 throw __dom_wrap_exception(e);
7446 } 7446 }
7447 } 7447 }
7448 7448
7449 function native__ElementWrappingImplementation__get__Element_ondrag(_this) { 7449 function native__ElementWrappingImplementation__get_ondrag(_this) {
7450 try { 7450 try {
7451 return __dom_wrap(_this.$dom.ondrag); 7451 return __dom_wrap(_this.$dom.ondrag);
7452 } catch (e) { 7452 } catch (e) {
7453 throw __dom_wrap_exception(e); 7453 throw __dom_wrap_exception(e);
7454 } 7454 }
7455 } 7455 }
7456 7456
7457 function native__ElementWrappingImplementation__set__Element_ondrag(_this, value ) { 7457 function native__ElementWrappingImplementation__set_ondrag(_this, value) {
7458 try { 7458 try {
7459 _this.$dom.ondrag = __dom_unwrap(value); 7459 _this.$dom.ondrag = __dom_unwrap(value);
7460 } catch (e) { 7460 } catch (e) {
7461 throw __dom_wrap_exception(e); 7461 throw __dom_wrap_exception(e);
7462 } 7462 }
7463 } 7463 }
7464 7464
7465 function native__ElementWrappingImplementation__get__Element_ondragend(_this) { 7465 function native__ElementWrappingImplementation__get_ondragend(_this) {
7466 try { 7466 try {
7467 return __dom_wrap(_this.$dom.ondragend); 7467 return __dom_wrap(_this.$dom.ondragend);
7468 } catch (e) { 7468 } catch (e) {
7469 throw __dom_wrap_exception(e); 7469 throw __dom_wrap_exception(e);
7470 } 7470 }
7471 } 7471 }
7472 7472
7473 function native__ElementWrappingImplementation__set__Element_ondragend(_this, va lue) { 7473 function native__ElementWrappingImplementation__set_ondragend(_this, value) {
7474 try { 7474 try {
7475 _this.$dom.ondragend = __dom_unwrap(value); 7475 _this.$dom.ondragend = __dom_unwrap(value);
7476 } catch (e) { 7476 } catch (e) {
7477 throw __dom_wrap_exception(e); 7477 throw __dom_wrap_exception(e);
7478 } 7478 }
7479 } 7479 }
7480 7480
7481 function native__ElementWrappingImplementation__get__Element_ondragenter(_this) { 7481 function native__ElementWrappingImplementation__get_ondragenter(_this) {
7482 try { 7482 try {
7483 return __dom_wrap(_this.$dom.ondragenter); 7483 return __dom_wrap(_this.$dom.ondragenter);
7484 } catch (e) { 7484 } catch (e) {
7485 throw __dom_wrap_exception(e); 7485 throw __dom_wrap_exception(e);
7486 } 7486 }
7487 } 7487 }
7488 7488
7489 function native__ElementWrappingImplementation__set__Element_ondragenter(_this, value) { 7489 function native__ElementWrappingImplementation__set_ondragenter(_this, value) {
7490 try { 7490 try {
7491 _this.$dom.ondragenter = __dom_unwrap(value); 7491 _this.$dom.ondragenter = __dom_unwrap(value);
7492 } catch (e) { 7492 } catch (e) {
7493 throw __dom_wrap_exception(e); 7493 throw __dom_wrap_exception(e);
7494 } 7494 }
7495 } 7495 }
7496 7496
7497 function native__ElementWrappingImplementation__get__Element_ondragleave(_this) { 7497 function native__ElementWrappingImplementation__get_ondragleave(_this) {
7498 try { 7498 try {
7499 return __dom_wrap(_this.$dom.ondragleave); 7499 return __dom_wrap(_this.$dom.ondragleave);
7500 } catch (e) { 7500 } catch (e) {
7501 throw __dom_wrap_exception(e); 7501 throw __dom_wrap_exception(e);
7502 } 7502 }
7503 } 7503 }
7504 7504
7505 function native__ElementWrappingImplementation__set__Element_ondragleave(_this, value) { 7505 function native__ElementWrappingImplementation__set_ondragleave(_this, value) {
7506 try { 7506 try {
7507 _this.$dom.ondragleave = __dom_unwrap(value); 7507 _this.$dom.ondragleave = __dom_unwrap(value);
7508 } catch (e) { 7508 } catch (e) {
7509 throw __dom_wrap_exception(e); 7509 throw __dom_wrap_exception(e);
7510 } 7510 }
7511 } 7511 }
7512 7512
7513 function native__ElementWrappingImplementation__get__Element_ondragover(_this) { 7513 function native__ElementWrappingImplementation__get_ondragover(_this) {
7514 try { 7514 try {
7515 return __dom_wrap(_this.$dom.ondragover); 7515 return __dom_wrap(_this.$dom.ondragover);
7516 } catch (e) { 7516 } catch (e) {
7517 throw __dom_wrap_exception(e); 7517 throw __dom_wrap_exception(e);
7518 } 7518 }
7519 } 7519 }
7520 7520
7521 function native__ElementWrappingImplementation__set__Element_ondragover(_this, v alue) { 7521 function native__ElementWrappingImplementation__set_ondragover(_this, value) {
7522 try { 7522 try {
7523 _this.$dom.ondragover = __dom_unwrap(value); 7523 _this.$dom.ondragover = __dom_unwrap(value);
7524 } catch (e) { 7524 } catch (e) {
7525 throw __dom_wrap_exception(e); 7525 throw __dom_wrap_exception(e);
7526 } 7526 }
7527 } 7527 }
7528 7528
7529 function native__ElementWrappingImplementation__get__Element_ondragstart(_this) { 7529 function native__ElementWrappingImplementation__get_ondragstart(_this) {
7530 try { 7530 try {
7531 return __dom_wrap(_this.$dom.ondragstart); 7531 return __dom_wrap(_this.$dom.ondragstart);
7532 } catch (e) { 7532 } catch (e) {
7533 throw __dom_wrap_exception(e); 7533 throw __dom_wrap_exception(e);
7534 } 7534 }
7535 } 7535 }
7536 7536
7537 function native__ElementWrappingImplementation__set__Element_ondragstart(_this, value) { 7537 function native__ElementWrappingImplementation__set_ondragstart(_this, value) {
7538 try { 7538 try {
7539 _this.$dom.ondragstart = __dom_unwrap(value); 7539 _this.$dom.ondragstart = __dom_unwrap(value);
7540 } catch (e) { 7540 } catch (e) {
7541 throw __dom_wrap_exception(e); 7541 throw __dom_wrap_exception(e);
7542 } 7542 }
7543 } 7543 }
7544 7544
7545 function native__ElementWrappingImplementation__get__Element_ondrop(_this) { 7545 function native__ElementWrappingImplementation__get_ondrop(_this) {
7546 try { 7546 try {
7547 return __dom_wrap(_this.$dom.ondrop); 7547 return __dom_wrap(_this.$dom.ondrop);
7548 } catch (e) { 7548 } catch (e) {
7549 throw __dom_wrap_exception(e); 7549 throw __dom_wrap_exception(e);
7550 } 7550 }
7551 } 7551 }
7552 7552
7553 function native__ElementWrappingImplementation__set__Element_ondrop(_this, value ) { 7553 function native__ElementWrappingImplementation__set_ondrop(_this, value) {
7554 try { 7554 try {
7555 _this.$dom.ondrop = __dom_unwrap(value); 7555 _this.$dom.ondrop = __dom_unwrap(value);
7556 } catch (e) { 7556 } catch (e) {
7557 throw __dom_wrap_exception(e); 7557 throw __dom_wrap_exception(e);
7558 } 7558 }
7559 } 7559 }
7560 7560
7561 function native__ElementWrappingImplementation__get__Element_onerror(_this) { 7561 function native__ElementWrappingImplementation__get_onerror(_this) {
7562 try { 7562 try {
7563 return __dom_wrap(_this.$dom.onerror); 7563 return __dom_wrap(_this.$dom.onerror);
7564 } catch (e) { 7564 } catch (e) {
7565 throw __dom_wrap_exception(e); 7565 throw __dom_wrap_exception(e);
7566 } 7566 }
7567 } 7567 }
7568 7568
7569 function native__ElementWrappingImplementation__set__Element_onerror(_this, valu e) { 7569 function native__ElementWrappingImplementation__set_onerror(_this, value) {
7570 try { 7570 try {
7571 _this.$dom.onerror = __dom_unwrap(value); 7571 _this.$dom.onerror = __dom_unwrap(value);
7572 } catch (e) { 7572 } catch (e) {
7573 throw __dom_wrap_exception(e); 7573 throw __dom_wrap_exception(e);
7574 } 7574 }
7575 } 7575 }
7576 7576
7577 function native__ElementWrappingImplementation__get__Element_onfocus(_this) { 7577 function native__ElementWrappingImplementation__get_onfocus(_this) {
7578 try { 7578 try {
7579 return __dom_wrap(_this.$dom.onfocus); 7579 return __dom_wrap(_this.$dom.onfocus);
7580 } catch (e) { 7580 } catch (e) {
7581 throw __dom_wrap_exception(e); 7581 throw __dom_wrap_exception(e);
7582 } 7582 }
7583 } 7583 }
7584 7584
7585 function native__ElementWrappingImplementation__set__Element_onfocus(_this, valu e) { 7585 function native__ElementWrappingImplementation__set_onfocus(_this, value) {
7586 try { 7586 try {
7587 _this.$dom.onfocus = __dom_unwrap(value); 7587 _this.$dom.onfocus = __dom_unwrap(value);
7588 } catch (e) { 7588 } catch (e) {
7589 throw __dom_wrap_exception(e); 7589 throw __dom_wrap_exception(e);
7590 } 7590 }
7591 } 7591 }
7592 7592
7593 function native__ElementWrappingImplementation__get__Element_oninput(_this) { 7593 function native__ElementWrappingImplementation__get_oninput(_this) {
7594 try { 7594 try {
7595 return __dom_wrap(_this.$dom.oninput); 7595 return __dom_wrap(_this.$dom.oninput);
7596 } catch (e) { 7596 } catch (e) {
7597 throw __dom_wrap_exception(e); 7597 throw __dom_wrap_exception(e);
7598 } 7598 }
7599 } 7599 }
7600 7600
7601 function native__ElementWrappingImplementation__set__Element_oninput(_this, valu e) { 7601 function native__ElementWrappingImplementation__set_oninput(_this, value) {
7602 try { 7602 try {
7603 _this.$dom.oninput = __dom_unwrap(value); 7603 _this.$dom.oninput = __dom_unwrap(value);
7604 } catch (e) { 7604 } catch (e) {
7605 throw __dom_wrap_exception(e); 7605 throw __dom_wrap_exception(e);
7606 } 7606 }
7607 } 7607 }
7608 7608
7609 function native__ElementWrappingImplementation__get__Element_oninvalid(_this) { 7609 function native__ElementWrappingImplementation__get_oninvalid(_this) {
7610 try { 7610 try {
7611 return __dom_wrap(_this.$dom.oninvalid); 7611 return __dom_wrap(_this.$dom.oninvalid);
7612 } catch (e) { 7612 } catch (e) {
7613 throw __dom_wrap_exception(e); 7613 throw __dom_wrap_exception(e);
7614 } 7614 }
7615 } 7615 }
7616 7616
7617 function native__ElementWrappingImplementation__set__Element_oninvalid(_this, va lue) { 7617 function native__ElementWrappingImplementation__set_oninvalid(_this, value) {
7618 try { 7618 try {
7619 _this.$dom.oninvalid = __dom_unwrap(value); 7619 _this.$dom.oninvalid = __dom_unwrap(value);
7620 } catch (e) { 7620 } catch (e) {
7621 throw __dom_wrap_exception(e); 7621 throw __dom_wrap_exception(e);
7622 } 7622 }
7623 } 7623 }
7624 7624
7625 function native__ElementWrappingImplementation__get__Element_onkeydown(_this) { 7625 function native__ElementWrappingImplementation__get_onkeydown(_this) {
7626 try { 7626 try {
7627 return __dom_wrap(_this.$dom.onkeydown); 7627 return __dom_wrap(_this.$dom.onkeydown);
7628 } catch (e) { 7628 } catch (e) {
7629 throw __dom_wrap_exception(e); 7629 throw __dom_wrap_exception(e);
7630 } 7630 }
7631 } 7631 }
7632 7632
7633 function native__ElementWrappingImplementation__set__Element_onkeydown(_this, va lue) { 7633 function native__ElementWrappingImplementation__set_onkeydown(_this, value) {
7634 try { 7634 try {
7635 _this.$dom.onkeydown = __dom_unwrap(value); 7635 _this.$dom.onkeydown = __dom_unwrap(value);
7636 } catch (e) { 7636 } catch (e) {
7637 throw __dom_wrap_exception(e); 7637 throw __dom_wrap_exception(e);
7638 } 7638 }
7639 } 7639 }
7640 7640
7641 function native__ElementWrappingImplementation__get__Element_onkeypress(_this) { 7641 function native__ElementWrappingImplementation__get_onkeypress(_this) {
7642 try { 7642 try {
7643 return __dom_wrap(_this.$dom.onkeypress); 7643 return __dom_wrap(_this.$dom.onkeypress);
7644 } catch (e) { 7644 } catch (e) {
7645 throw __dom_wrap_exception(e); 7645 throw __dom_wrap_exception(e);
7646 } 7646 }
7647 } 7647 }
7648 7648
7649 function native__ElementWrappingImplementation__set__Element_onkeypress(_this, v alue) { 7649 function native__ElementWrappingImplementation__set_onkeypress(_this, value) {
7650 try { 7650 try {
7651 _this.$dom.onkeypress = __dom_unwrap(value); 7651 _this.$dom.onkeypress = __dom_unwrap(value);
7652 } catch (e) { 7652 } catch (e) {
7653 throw __dom_wrap_exception(e); 7653 throw __dom_wrap_exception(e);
7654 } 7654 }
7655 } 7655 }
7656 7656
7657 function native__ElementWrappingImplementation__get__Element_onkeyup(_this) { 7657 function native__ElementWrappingImplementation__get_onkeyup(_this) {
7658 try { 7658 try {
7659 return __dom_wrap(_this.$dom.onkeyup); 7659 return __dom_wrap(_this.$dom.onkeyup);
7660 } catch (e) { 7660 } catch (e) {
7661 throw __dom_wrap_exception(e); 7661 throw __dom_wrap_exception(e);
7662 } 7662 }
7663 } 7663 }
7664 7664
7665 function native__ElementWrappingImplementation__set__Element_onkeyup(_this, valu e) { 7665 function native__ElementWrappingImplementation__set_onkeyup(_this, value) {
7666 try { 7666 try {
7667 _this.$dom.onkeyup = __dom_unwrap(value); 7667 _this.$dom.onkeyup = __dom_unwrap(value);
7668 } catch (e) { 7668 } catch (e) {
7669 throw __dom_wrap_exception(e); 7669 throw __dom_wrap_exception(e);
7670 } 7670 }
7671 } 7671 }
7672 7672
7673 function native__ElementWrappingImplementation__get__Element_onload(_this) { 7673 function native__ElementWrappingImplementation__get_onload(_this) {
7674 try { 7674 try {
7675 return __dom_wrap(_this.$dom.onload); 7675 return __dom_wrap(_this.$dom.onload);
7676 } catch (e) { 7676 } catch (e) {
7677 throw __dom_wrap_exception(e); 7677 throw __dom_wrap_exception(e);
7678 } 7678 }
7679 } 7679 }
7680 7680
7681 function native__ElementWrappingImplementation__set__Element_onload(_this, value ) { 7681 function native__ElementWrappingImplementation__set_onload(_this, value) {
7682 try { 7682 try {
7683 _this.$dom.onload = __dom_unwrap(value); 7683 _this.$dom.onload = __dom_unwrap(value);
7684 } catch (e) { 7684 } catch (e) {
7685 throw __dom_wrap_exception(e); 7685 throw __dom_wrap_exception(e);
7686 } 7686 }
7687 } 7687 }
7688 7688
7689 function native__ElementWrappingImplementation__get__Element_onmousedown(_this) { 7689 function native__ElementWrappingImplementation__get_onmousedown(_this) {
7690 try { 7690 try {
7691 return __dom_wrap(_this.$dom.onmousedown); 7691 return __dom_wrap(_this.$dom.onmousedown);
7692 } catch (e) { 7692 } catch (e) {
7693 throw __dom_wrap_exception(e); 7693 throw __dom_wrap_exception(e);
7694 } 7694 }
7695 } 7695 }
7696 7696
7697 function native__ElementWrappingImplementation__set__Element_onmousedown(_this, value) { 7697 function native__ElementWrappingImplementation__set_onmousedown(_this, value) {
7698 try { 7698 try {
7699 _this.$dom.onmousedown = __dom_unwrap(value); 7699 _this.$dom.onmousedown = __dom_unwrap(value);
7700 } catch (e) { 7700 } catch (e) {
7701 throw __dom_wrap_exception(e); 7701 throw __dom_wrap_exception(e);
7702 } 7702 }
7703 } 7703 }
7704 7704
7705 function native__ElementWrappingImplementation__get__Element_onmousemove(_this) { 7705 function native__ElementWrappingImplementation__get_onmousemove(_this) {
7706 try { 7706 try {
7707 return __dom_wrap(_this.$dom.onmousemove); 7707 return __dom_wrap(_this.$dom.onmousemove);
7708 } catch (e) { 7708 } catch (e) {
7709 throw __dom_wrap_exception(e); 7709 throw __dom_wrap_exception(e);
7710 } 7710 }
7711 } 7711 }
7712 7712
7713 function native__ElementWrappingImplementation__set__Element_onmousemove(_this, value) { 7713 function native__ElementWrappingImplementation__set_onmousemove(_this, value) {
7714 try { 7714 try {
7715 _this.$dom.onmousemove = __dom_unwrap(value); 7715 _this.$dom.onmousemove = __dom_unwrap(value);
7716 } catch (e) { 7716 } catch (e) {
7717 throw __dom_wrap_exception(e); 7717 throw __dom_wrap_exception(e);
7718 } 7718 }
7719 } 7719 }
7720 7720
7721 function native__ElementWrappingImplementation__get__Element_onmouseout(_this) { 7721 function native__ElementWrappingImplementation__get_onmouseout(_this) {
7722 try { 7722 try {
7723 return __dom_wrap(_this.$dom.onmouseout); 7723 return __dom_wrap(_this.$dom.onmouseout);
7724 } catch (e) { 7724 } catch (e) {
7725 throw __dom_wrap_exception(e); 7725 throw __dom_wrap_exception(e);
7726 } 7726 }
7727 } 7727 }
7728 7728
7729 function native__ElementWrappingImplementation__set__Element_onmouseout(_this, v alue) { 7729 function native__ElementWrappingImplementation__set_onmouseout(_this, value) {
7730 try { 7730 try {
7731 _this.$dom.onmouseout = __dom_unwrap(value); 7731 _this.$dom.onmouseout = __dom_unwrap(value);
7732 } catch (e) { 7732 } catch (e) {
7733 throw __dom_wrap_exception(e); 7733 throw __dom_wrap_exception(e);
7734 } 7734 }
7735 } 7735 }
7736 7736
7737 function native__ElementWrappingImplementation__get__Element_onmouseover(_this) { 7737 function native__ElementWrappingImplementation__get_onmouseover(_this) {
7738 try { 7738 try {
7739 return __dom_wrap(_this.$dom.onmouseover); 7739 return __dom_wrap(_this.$dom.onmouseover);
7740 } catch (e) { 7740 } catch (e) {
7741 throw __dom_wrap_exception(e); 7741 throw __dom_wrap_exception(e);
7742 } 7742 }
7743 } 7743 }
7744 7744
7745 function native__ElementWrappingImplementation__set__Element_onmouseover(_this, value) { 7745 function native__ElementWrappingImplementation__set_onmouseover(_this, value) {
7746 try { 7746 try {
7747 _this.$dom.onmouseover = __dom_unwrap(value); 7747 _this.$dom.onmouseover = __dom_unwrap(value);
7748 } catch (e) { 7748 } catch (e) {
7749 throw __dom_wrap_exception(e); 7749 throw __dom_wrap_exception(e);
7750 } 7750 }
7751 } 7751 }
7752 7752
7753 function native__ElementWrappingImplementation__get__Element_onmouseup(_this) { 7753 function native__ElementWrappingImplementation__get_onmouseup(_this) {
7754 try { 7754 try {
7755 return __dom_wrap(_this.$dom.onmouseup); 7755 return __dom_wrap(_this.$dom.onmouseup);
7756 } catch (e) { 7756 } catch (e) {
7757 throw __dom_wrap_exception(e); 7757 throw __dom_wrap_exception(e);
7758 } 7758 }
7759 } 7759 }
7760 7760
7761 function native__ElementWrappingImplementation__set__Element_onmouseup(_this, va lue) { 7761 function native__ElementWrappingImplementation__set_onmouseup(_this, value) {
7762 try { 7762 try {
7763 _this.$dom.onmouseup = __dom_unwrap(value); 7763 _this.$dom.onmouseup = __dom_unwrap(value);
7764 } catch (e) { 7764 } catch (e) {
7765 throw __dom_wrap_exception(e); 7765 throw __dom_wrap_exception(e);
7766 } 7766 }
7767 } 7767 }
7768 7768
7769 function native__ElementWrappingImplementation__get__Element_onmousewheel(_this) { 7769 function native__ElementWrappingImplementation__get_onmousewheel(_this) {
7770 try { 7770 try {
7771 return __dom_wrap(_this.$dom.onmousewheel); 7771 return __dom_wrap(_this.$dom.onmousewheel);
7772 } catch (e) { 7772 } catch (e) {
7773 throw __dom_wrap_exception(e); 7773 throw __dom_wrap_exception(e);
7774 } 7774 }
7775 } 7775 }
7776 7776
7777 function native__ElementWrappingImplementation__set__Element_onmousewheel(_this, value) { 7777 function native__ElementWrappingImplementation__set_onmousewheel(_this, value) {
7778 try { 7778 try {
7779 _this.$dom.onmousewheel = __dom_unwrap(value); 7779 _this.$dom.onmousewheel = __dom_unwrap(value);
7780 } catch (e) { 7780 } catch (e) {
7781 throw __dom_wrap_exception(e); 7781 throw __dom_wrap_exception(e);
7782 } 7782 }
7783 } 7783 }
7784 7784
7785 function native__ElementWrappingImplementation__get__Element_onpaste(_this) { 7785 function native__ElementWrappingImplementation__get_onpaste(_this) {
7786 try { 7786 try {
7787 return __dom_wrap(_this.$dom.onpaste); 7787 return __dom_wrap(_this.$dom.onpaste);
7788 } catch (e) { 7788 } catch (e) {
7789 throw __dom_wrap_exception(e); 7789 throw __dom_wrap_exception(e);
7790 } 7790 }
7791 } 7791 }
7792 7792
7793 function native__ElementWrappingImplementation__set__Element_onpaste(_this, valu e) { 7793 function native__ElementWrappingImplementation__set_onpaste(_this, value) {
7794 try { 7794 try {
7795 _this.$dom.onpaste = __dom_unwrap(value); 7795 _this.$dom.onpaste = __dom_unwrap(value);
7796 } catch (e) { 7796 } catch (e) {
7797 throw __dom_wrap_exception(e); 7797 throw __dom_wrap_exception(e);
7798 } 7798 }
7799 } 7799 }
7800 7800
7801 function native__ElementWrappingImplementation__get__Element_onreset(_this) { 7801 function native__ElementWrappingImplementation__get_onreset(_this) {
7802 try { 7802 try {
7803 return __dom_wrap(_this.$dom.onreset); 7803 return __dom_wrap(_this.$dom.onreset);
7804 } catch (e) { 7804 } catch (e) {
7805 throw __dom_wrap_exception(e); 7805 throw __dom_wrap_exception(e);
7806 } 7806 }
7807 } 7807 }
7808 7808
7809 function native__ElementWrappingImplementation__set__Element_onreset(_this, valu e) { 7809 function native__ElementWrappingImplementation__set_onreset(_this, value) {
7810 try { 7810 try {
7811 _this.$dom.onreset = __dom_unwrap(value); 7811 _this.$dom.onreset = __dom_unwrap(value);
7812 } catch (e) { 7812 } catch (e) {
7813 throw __dom_wrap_exception(e); 7813 throw __dom_wrap_exception(e);
7814 } 7814 }
7815 } 7815 }
7816 7816
7817 function native__ElementWrappingImplementation__get__Element_onscroll(_this) { 7817 function native__ElementWrappingImplementation__get_onscroll(_this) {
7818 try { 7818 try {
7819 return __dom_wrap(_this.$dom.onscroll); 7819 return __dom_wrap(_this.$dom.onscroll);
7820 } catch (e) { 7820 } catch (e) {
7821 throw __dom_wrap_exception(e); 7821 throw __dom_wrap_exception(e);
7822 } 7822 }
7823 } 7823 }
7824 7824
7825 function native__ElementWrappingImplementation__set__Element_onscroll(_this, val ue) { 7825 function native__ElementWrappingImplementation__set_onscroll(_this, value) {
7826 try { 7826 try {
7827 _this.$dom.onscroll = __dom_unwrap(value); 7827 _this.$dom.onscroll = __dom_unwrap(value);
7828 } catch (e) { 7828 } catch (e) {
7829 throw __dom_wrap_exception(e); 7829 throw __dom_wrap_exception(e);
7830 } 7830 }
7831 } 7831 }
7832 7832
7833 function native__ElementWrappingImplementation__get__Element_onsearch(_this) { 7833 function native__ElementWrappingImplementation__get_onsearch(_this) {
7834 try { 7834 try {
7835 return __dom_wrap(_this.$dom.onsearch); 7835 return __dom_wrap(_this.$dom.onsearch);
7836 } catch (e) { 7836 } catch (e) {
7837 throw __dom_wrap_exception(e); 7837 throw __dom_wrap_exception(e);
7838 } 7838 }
7839 } 7839 }
7840 7840
7841 function native__ElementWrappingImplementation__set__Element_onsearch(_this, val ue) { 7841 function native__ElementWrappingImplementation__set_onsearch(_this, value) {
7842 try { 7842 try {
7843 _this.$dom.onsearch = __dom_unwrap(value); 7843 _this.$dom.onsearch = __dom_unwrap(value);
7844 } catch (e) { 7844 } catch (e) {
7845 throw __dom_wrap_exception(e); 7845 throw __dom_wrap_exception(e);
7846 } 7846 }
7847 } 7847 }
7848 7848
7849 function native__ElementWrappingImplementation__get__Element_onselect(_this) { 7849 function native__ElementWrappingImplementation__get_onselect(_this) {
7850 try { 7850 try {
7851 return __dom_wrap(_this.$dom.onselect); 7851 return __dom_wrap(_this.$dom.onselect);
7852 } catch (e) { 7852 } catch (e) {
7853 throw __dom_wrap_exception(e); 7853 throw __dom_wrap_exception(e);
7854 } 7854 }
7855 } 7855 }
7856 7856
7857 function native__ElementWrappingImplementation__set__Element_onselect(_this, val ue) { 7857 function native__ElementWrappingImplementation__set_onselect(_this, value) {
7858 try { 7858 try {
7859 _this.$dom.onselect = __dom_unwrap(value); 7859 _this.$dom.onselect = __dom_unwrap(value);
7860 } catch (e) { 7860 } catch (e) {
7861 throw __dom_wrap_exception(e); 7861 throw __dom_wrap_exception(e);
7862 } 7862 }
7863 } 7863 }
7864 7864
7865 function native__ElementWrappingImplementation__get__Element_onselectstart(_this ) { 7865 function native__ElementWrappingImplementation__get_onselectstart(_this) {
7866 try { 7866 try {
7867 return __dom_wrap(_this.$dom.onselectstart); 7867 return __dom_wrap(_this.$dom.onselectstart);
7868 } catch (e) { 7868 } catch (e) {
7869 throw __dom_wrap_exception(e); 7869 throw __dom_wrap_exception(e);
7870 } 7870 }
7871 } 7871 }
7872 7872
7873 function native__ElementWrappingImplementation__set__Element_onselectstart(_this , value) { 7873 function native__ElementWrappingImplementation__set_onselectstart(_this, value) {
7874 try { 7874 try {
7875 _this.$dom.onselectstart = __dom_unwrap(value); 7875 _this.$dom.onselectstart = __dom_unwrap(value);
7876 } catch (e) { 7876 } catch (e) {
7877 throw __dom_wrap_exception(e); 7877 throw __dom_wrap_exception(e);
7878 } 7878 }
7879 } 7879 }
7880 7880
7881 function native__ElementWrappingImplementation__get__Element_onsubmit(_this) { 7881 function native__ElementWrappingImplementation__get_onsubmit(_this) {
7882 try { 7882 try {
7883 return __dom_wrap(_this.$dom.onsubmit); 7883 return __dom_wrap(_this.$dom.onsubmit);
7884 } catch (e) { 7884 } catch (e) {
7885 throw __dom_wrap_exception(e); 7885 throw __dom_wrap_exception(e);
7886 } 7886 }
7887 } 7887 }
7888 7888
7889 function native__ElementWrappingImplementation__set__Element_onsubmit(_this, val ue) { 7889 function native__ElementWrappingImplementation__set_onsubmit(_this, value) {
7890 try { 7890 try {
7891 _this.$dom.onsubmit = __dom_unwrap(value); 7891 _this.$dom.onsubmit = __dom_unwrap(value);
7892 } catch (e) { 7892 } catch (e) {
7893 throw __dom_wrap_exception(e); 7893 throw __dom_wrap_exception(e);
7894 } 7894 }
7895 } 7895 }
7896 7896
7897 function native__ElementWrappingImplementation__get__Element_ontouchcancel(_this ) { 7897 function native__ElementWrappingImplementation__get_ontouchcancel(_this) {
7898 try { 7898 try {
7899 return __dom_wrap(_this.$dom.ontouchcancel); 7899 return __dom_wrap(_this.$dom.ontouchcancel);
7900 } catch (e) { 7900 } catch (e) {
7901 throw __dom_wrap_exception(e); 7901 throw __dom_wrap_exception(e);
7902 } 7902 }
7903 } 7903 }
7904 7904
7905 function native__ElementWrappingImplementation__set__Element_ontouchcancel(_this , value) { 7905 function native__ElementWrappingImplementation__set_ontouchcancel(_this, value) {
7906 try { 7906 try {
7907 _this.$dom.ontouchcancel = __dom_unwrap(value); 7907 _this.$dom.ontouchcancel = __dom_unwrap(value);
7908 } catch (e) { 7908 } catch (e) {
7909 throw __dom_wrap_exception(e); 7909 throw __dom_wrap_exception(e);
7910 } 7910 }
7911 } 7911 }
7912 7912
7913 function native__ElementWrappingImplementation__get__Element_ontouchend(_this) { 7913 function native__ElementWrappingImplementation__get_ontouchend(_this) {
7914 try { 7914 try {
7915 return __dom_wrap(_this.$dom.ontouchend); 7915 return __dom_wrap(_this.$dom.ontouchend);
7916 } catch (e) { 7916 } catch (e) {
7917 throw __dom_wrap_exception(e); 7917 throw __dom_wrap_exception(e);
7918 } 7918 }
7919 } 7919 }
7920 7920
7921 function native__ElementWrappingImplementation__set__Element_ontouchend(_this, v alue) { 7921 function native__ElementWrappingImplementation__set_ontouchend(_this, value) {
7922 try { 7922 try {
7923 _this.$dom.ontouchend = __dom_unwrap(value); 7923 _this.$dom.ontouchend = __dom_unwrap(value);
7924 } catch (e) { 7924 } catch (e) {
7925 throw __dom_wrap_exception(e); 7925 throw __dom_wrap_exception(e);
7926 } 7926 }
7927 } 7927 }
7928 7928
7929 function native__ElementWrappingImplementation__get__Element_ontouchmove(_this) { 7929 function native__ElementWrappingImplementation__get_ontouchmove(_this) {
7930 try { 7930 try {
7931 return __dom_wrap(_this.$dom.ontouchmove); 7931 return __dom_wrap(_this.$dom.ontouchmove);
7932 } catch (e) { 7932 } catch (e) {
7933 throw __dom_wrap_exception(e); 7933 throw __dom_wrap_exception(e);
7934 } 7934 }
7935 } 7935 }
7936 7936
7937 function native__ElementWrappingImplementation__set__Element_ontouchmove(_this, value) { 7937 function native__ElementWrappingImplementation__set_ontouchmove(_this, value) {
7938 try { 7938 try {
7939 _this.$dom.ontouchmove = __dom_unwrap(value); 7939 _this.$dom.ontouchmove = __dom_unwrap(value);
7940 } catch (e) { 7940 } catch (e) {
7941 throw __dom_wrap_exception(e); 7941 throw __dom_wrap_exception(e);
7942 } 7942 }
7943 } 7943 }
7944 7944
7945 function native__ElementWrappingImplementation__get__Element_ontouchstart(_this) { 7945 function native__ElementWrappingImplementation__get_ontouchstart(_this) {
7946 try { 7946 try {
7947 return __dom_wrap(_this.$dom.ontouchstart); 7947 return __dom_wrap(_this.$dom.ontouchstart);
7948 } catch (e) { 7948 } catch (e) {
7949 throw __dom_wrap_exception(e); 7949 throw __dom_wrap_exception(e);
7950 } 7950 }
7951 } 7951 }
7952 7952
7953 function native__ElementWrappingImplementation__set__Element_ontouchstart(_this, value) { 7953 function native__ElementWrappingImplementation__set_ontouchstart(_this, value) {
7954 try { 7954 try {
7955 _this.$dom.ontouchstart = __dom_unwrap(value); 7955 _this.$dom.ontouchstart = __dom_unwrap(value);
7956 } catch (e) { 7956 } catch (e) {
7957 throw __dom_wrap_exception(e); 7957 throw __dom_wrap_exception(e);
7958 } 7958 }
7959 } 7959 }
7960 7960
7961 function native__ElementWrappingImplementation__get__Element_onwebkitfullscreenc hange(_this) { 7961 function native__ElementWrappingImplementation__get_onwebkitfullscreenchange(_th is) {
7962 try { 7962 try {
7963 return __dom_wrap(_this.$dom.onwebkitfullscreenchange); 7963 return __dom_wrap(_this.$dom.onwebkitfullscreenchange);
7964 } catch (e) { 7964 } catch (e) {
7965 throw __dom_wrap_exception(e); 7965 throw __dom_wrap_exception(e);
7966 } 7966 }
7967 } 7967 }
7968 7968
7969 function native__ElementWrappingImplementation__set__Element_onwebkitfullscreenc hange(_this, value) { 7969 function native__ElementWrappingImplementation__set_onwebkitfullscreenchange(_th is, value) {
7970 try { 7970 try {
7971 _this.$dom.onwebkitfullscreenchange = __dom_unwrap(value); 7971 _this.$dom.onwebkitfullscreenchange = __dom_unwrap(value);
7972 } catch (e) { 7972 } catch (e) {
7973 throw __dom_wrap_exception(e); 7973 throw __dom_wrap_exception(e);
7974 } 7974 }
7975 } 7975 }
7976 7976
7977 function native__ElementWrappingImplementation__get__Element_previousElementSibl ing(_this) { 7977 function native__ElementWrappingImplementation__get_previousElementSibling(_this ) {
7978 try { 7978 try {
7979 return __dom_wrap(_this.$dom.previousElementSibling); 7979 return __dom_wrap(_this.$dom.previousElementSibling);
7980 } catch (e) { 7980 } catch (e) {
7981 throw __dom_wrap_exception(e); 7981 throw __dom_wrap_exception(e);
7982 } 7982 }
7983 } 7983 }
7984 7984
7985 function native__ElementWrappingImplementation__get__Element_scrollHeight(_this) { 7985 function native__ElementWrappingImplementation__get_scrollHeight(_this) {
7986 try { 7986 try {
7987 return __dom_wrap(_this.$dom.scrollHeight); 7987 return __dom_wrap(_this.$dom.scrollHeight);
7988 } catch (e) { 7988 } catch (e) {
7989 throw __dom_wrap_exception(e); 7989 throw __dom_wrap_exception(e);
7990 } 7990 }
7991 } 7991 }
7992 7992
7993 function native__ElementWrappingImplementation__get__Element_scrollLeft(_this) { 7993 function native__ElementWrappingImplementation__get_scrollLeft(_this) {
7994 try { 7994 try {
7995 return __dom_wrap(_this.$dom.scrollLeft); 7995 return __dom_wrap(_this.$dom.scrollLeft);
7996 } catch (e) { 7996 } catch (e) {
7997 throw __dom_wrap_exception(e); 7997 throw __dom_wrap_exception(e);
7998 } 7998 }
7999 } 7999 }
8000 8000
8001 function native__ElementWrappingImplementation__set__Element_scrollLeft(_this, v alue) { 8001 function native__ElementWrappingImplementation__set_scrollLeft(_this, value) {
8002 try { 8002 try {
8003 _this.$dom.scrollLeft = __dom_unwrap(value); 8003 _this.$dom.scrollLeft = __dom_unwrap(value);
8004 } catch (e) { 8004 } catch (e) {
8005 throw __dom_wrap_exception(e); 8005 throw __dom_wrap_exception(e);
8006 } 8006 }
8007 } 8007 }
8008 8008
8009 function native__ElementWrappingImplementation__get__Element_scrollTop(_this) { 8009 function native__ElementWrappingImplementation__get_scrollTop(_this) {
8010 try { 8010 try {
8011 return __dom_wrap(_this.$dom.scrollTop); 8011 return __dom_wrap(_this.$dom.scrollTop);
8012 } catch (e) { 8012 } catch (e) {
8013 throw __dom_wrap_exception(e); 8013 throw __dom_wrap_exception(e);
8014 } 8014 }
8015 } 8015 }
8016 8016
8017 function native__ElementWrappingImplementation__set__Element_scrollTop(_this, va lue) { 8017 function native__ElementWrappingImplementation__set_scrollTop(_this, value) {
8018 try { 8018 try {
8019 _this.$dom.scrollTop = __dom_unwrap(value); 8019 _this.$dom.scrollTop = __dom_unwrap(value);
8020 } catch (e) { 8020 } catch (e) {
8021 throw __dom_wrap_exception(e); 8021 throw __dom_wrap_exception(e);
8022 } 8022 }
8023 } 8023 }
8024 8024
8025 function native__ElementWrappingImplementation__get__Element_scrollWidth(_this) { 8025 function native__ElementWrappingImplementation__get_scrollWidth(_this) {
8026 try { 8026 try {
8027 return __dom_wrap(_this.$dom.scrollWidth); 8027 return __dom_wrap(_this.$dom.scrollWidth);
8028 } catch (e) { 8028 } catch (e) {
8029 throw __dom_wrap_exception(e); 8029 throw __dom_wrap_exception(e);
8030 } 8030 }
8031 } 8031 }
8032 8032
8033 function native__ElementWrappingImplementation__get__Element_style(_this) { 8033 function native__ElementWrappingImplementation__get_style(_this) {
8034 try { 8034 try {
8035 return __dom_wrap(_this.$dom.style); 8035 return __dom_wrap(_this.$dom.style);
8036 } catch (e) { 8036 } catch (e) {
8037 throw __dom_wrap_exception(e); 8037 throw __dom_wrap_exception(e);
8038 } 8038 }
8039 } 8039 }
8040 8040
8041 function native__ElementWrappingImplementation__get__Element_tagName(_this) { 8041 function native__ElementWrappingImplementation__get_tagName(_this) {
8042 try { 8042 try {
8043 return __dom_wrap(_this.$dom.tagName); 8043 return __dom_wrap(_this.$dom.tagName);
8044 } catch (e) { 8044 } catch (e) {
8045 throw __dom_wrap_exception(e); 8045 throw __dom_wrap_exception(e);
8046 } 8046 }
8047 } 8047 }
8048 8048
8049 function native__ElementWrappingImplementation__blur(_this) { 8049 function native__ElementWrappingImplementation__blur(_this) {
8050 try { 8050 try {
8051 return __dom_wrap(_this.$dom.blur()); 8051 return __dom_wrap(_this.$dom.blur());
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
8271 } 8271 }
8272 8272
8273 function native__ElementWrappingImplementation__webkitMatchesSelector(_this, sel ectors) { 8273 function native__ElementWrappingImplementation__webkitMatchesSelector(_this, sel ectors) {
8274 try { 8274 try {
8275 return __dom_wrap(_this.$dom.webkitMatchesSelector(__dom_unwrap(selectors))) ; 8275 return __dom_wrap(_this.$dom.webkitMatchesSelector(__dom_unwrap(selectors))) ;
8276 } catch (e) { 8276 } catch (e) {
8277 throw __dom_wrap_exception(e); 8277 throw __dom_wrap_exception(e);
8278 } 8278 }
8279 } 8279 }
8280 8280
8281 function native__ElementTraversalWrappingImplementation__get__ElementTraversal_c hildElementCount(_this) { 8281 function native__ElementTraversalWrappingImplementation__get_childElementCount(_ this) {
8282 try { 8282 try {
8283 return __dom_wrap(_this.$dom.childElementCount); 8283 return __dom_wrap(_this.$dom.childElementCount);
8284 } catch (e) { 8284 } catch (e) {
8285 throw __dom_wrap_exception(e); 8285 throw __dom_wrap_exception(e);
8286 } 8286 }
8287 } 8287 }
8288 8288
8289 function native__ElementTraversalWrappingImplementation__get__ElementTraversal_f irstElementChild(_this) { 8289 function native__ElementTraversalWrappingImplementation__get_firstElementChild(_ this) {
8290 try { 8290 try {
8291 return __dom_wrap(_this.$dom.firstElementChild); 8291 return __dom_wrap(_this.$dom.firstElementChild);
8292 } catch (e) { 8292 } catch (e) {
8293 throw __dom_wrap_exception(e); 8293 throw __dom_wrap_exception(e);
8294 } 8294 }
8295 } 8295 }
8296 8296
8297 function native__ElementTraversalWrappingImplementation__get__ElementTraversal_l astElementChild(_this) { 8297 function native__ElementTraversalWrappingImplementation__get_lastElementChild(_t his) {
8298 try { 8298 try {
8299 return __dom_wrap(_this.$dom.lastElementChild); 8299 return __dom_wrap(_this.$dom.lastElementChild);
8300 } catch (e) { 8300 } catch (e) {
8301 throw __dom_wrap_exception(e); 8301 throw __dom_wrap_exception(e);
8302 } 8302 }
8303 } 8303 }
8304 8304
8305 function native__ElementTraversalWrappingImplementation__get__ElementTraversal_n extElementSibling(_this) { 8305 function native__ElementTraversalWrappingImplementation__get_nextElementSibling( _this) {
8306 try { 8306 try {
8307 return __dom_wrap(_this.$dom.nextElementSibling); 8307 return __dom_wrap(_this.$dom.nextElementSibling);
8308 } catch (e) { 8308 } catch (e) {
8309 throw __dom_wrap_exception(e); 8309 throw __dom_wrap_exception(e);
8310 } 8310 }
8311 } 8311 }
8312 8312
8313 function native__ElementTraversalWrappingImplementation__get__ElementTraversal_p reviousElementSibling(_this) { 8313 function native__ElementTraversalWrappingImplementation__get_previousElementSibl ing(_this) {
8314 try { 8314 try {
8315 return __dom_wrap(_this.$dom.previousElementSibling); 8315 return __dom_wrap(_this.$dom.previousElementSibling);
8316 } catch (e) { 8316 } catch (e) {
8317 throw __dom_wrap_exception(e); 8317 throw __dom_wrap_exception(e);
8318 } 8318 }
8319 } 8319 }
8320 8320
8321 function native__EntityWrappingImplementation__get__Entity_notationName(_this) { 8321 function native__EntityWrappingImplementation__get_notationName(_this) {
8322 try { 8322 try {
8323 return __dom_wrap(_this.$dom.notationName); 8323 return __dom_wrap(_this.$dom.notationName);
8324 } catch (e) { 8324 } catch (e) {
8325 throw __dom_wrap_exception(e); 8325 throw __dom_wrap_exception(e);
8326 } 8326 }
8327 } 8327 }
8328 8328
8329 function native__EntityWrappingImplementation__get__Entity_publicId(_this) { 8329 function native__EntityWrappingImplementation__get_publicId(_this) {
8330 try { 8330 try {
8331 return __dom_wrap(_this.$dom.publicId); 8331 return __dom_wrap(_this.$dom.publicId);
8332 } catch (e) { 8332 } catch (e) {
8333 throw __dom_wrap_exception(e); 8333 throw __dom_wrap_exception(e);
8334 } 8334 }
8335 } 8335 }
8336 8336
8337 function native__EntityWrappingImplementation__get__Entity_systemId(_this) { 8337 function native__EntityWrappingImplementation__get_systemId(_this) {
8338 try { 8338 try {
8339 return __dom_wrap(_this.$dom.systemId); 8339 return __dom_wrap(_this.$dom.systemId);
8340 } catch (e) { 8340 } catch (e) {
8341 throw __dom_wrap_exception(e); 8341 throw __dom_wrap_exception(e);
8342 } 8342 }
8343 } 8343 }
8344 8344
8345 function native__EntriesCallbackWrappingImplementation__handleEvent(_this, entri es) { 8345 function native__EntriesCallbackWrappingImplementation__handleEvent(_this, entri es) {
8346 try { 8346 try {
8347 return __dom_wrap(_this.$dom.handleEvent(__dom_unwrap(entries))); 8347 return __dom_wrap(_this.$dom.handleEvent(__dom_unwrap(entries)));
8348 } catch (e) { 8348 } catch (e) {
8349 throw __dom_wrap_exception(e); 8349 throw __dom_wrap_exception(e);
8350 } 8350 }
8351 } 8351 }
8352 8352
8353 function native__EntryWrappingImplementation__get__Entry_filesystem(_this) { 8353 function native__EntryWrappingImplementation__get_filesystem(_this) {
8354 try { 8354 try {
8355 return __dom_wrap(_this.$dom.filesystem); 8355 return __dom_wrap(_this.$dom.filesystem);
8356 } catch (e) { 8356 } catch (e) {
8357 throw __dom_wrap_exception(e); 8357 throw __dom_wrap_exception(e);
8358 } 8358 }
8359 } 8359 }
8360 8360
8361 function native__EntryWrappingImplementation__get__Entry_fullPath(_this) { 8361 function native__EntryWrappingImplementation__get_fullPath(_this) {
8362 try { 8362 try {
8363 return __dom_wrap(_this.$dom.fullPath); 8363 return __dom_wrap(_this.$dom.fullPath);
8364 } catch (e) { 8364 } catch (e) {
8365 throw __dom_wrap_exception(e); 8365 throw __dom_wrap_exception(e);
8366 } 8366 }
8367 } 8367 }
8368 8368
8369 function native__EntryWrappingImplementation__get__Entry_isDirectory(_this) { 8369 function native__EntryWrappingImplementation__get_isDirectory(_this) {
8370 try { 8370 try {
8371 return __dom_wrap(_this.$dom.isDirectory); 8371 return __dom_wrap(_this.$dom.isDirectory);
8372 } catch (e) { 8372 } catch (e) {
8373 throw __dom_wrap_exception(e); 8373 throw __dom_wrap_exception(e);
8374 } 8374 }
8375 } 8375 }
8376 8376
8377 function native__EntryWrappingImplementation__get__Entry_isFile(_this) { 8377 function native__EntryWrappingImplementation__get_isFile(_this) {
8378 try { 8378 try {
8379 return __dom_wrap(_this.$dom.isFile); 8379 return __dom_wrap(_this.$dom.isFile);
8380 } catch (e) { 8380 } catch (e) {
8381 throw __dom_wrap_exception(e); 8381 throw __dom_wrap_exception(e);
8382 } 8382 }
8383 } 8383 }
8384 8384
8385 function native__EntryWrappingImplementation__get__Entry_name(_this) { 8385 function native__EntryWrappingImplementation__get_name(_this) {
8386 try { 8386 try {
8387 return __dom_wrap(_this.$dom.name); 8387 return __dom_wrap(_this.$dom.name);
8388 } catch (e) { 8388 } catch (e) {
8389 throw __dom_wrap_exception(e); 8389 throw __dom_wrap_exception(e);
8390 } 8390 }
8391 } 8391 }
8392 8392
8393 function native__EntryWrappingImplementation__copyTo(_this, parent) { 8393 function native__EntryWrappingImplementation__copyTo(_this, parent) {
8394 try { 8394 try {
8395 return __dom_wrap(_this.$dom.copyTo(__dom_unwrap(parent))); 8395 return __dom_wrap(_this.$dom.copyTo(__dom_unwrap(parent)));
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
8527 } 8527 }
8528 8528
8529 function native__EntryWrappingImplementation__toURL(_this) { 8529 function native__EntryWrappingImplementation__toURL(_this) {
8530 try { 8530 try {
8531 return __dom_wrap(_this.$dom.toURL()); 8531 return __dom_wrap(_this.$dom.toURL());
8532 } catch (e) { 8532 } catch (e) {
8533 throw __dom_wrap_exception(e); 8533 throw __dom_wrap_exception(e);
8534 } 8534 }
8535 } 8535 }
8536 8536
8537 function native__EntryArrayWrappingImplementation__get__EntryArray_length(_this) { 8537 function native__EntryArrayWrappingImplementation__get_length(_this) {
8538 try { 8538 try {
8539 return __dom_wrap(_this.$dom.length); 8539 return __dom_wrap(_this.$dom.length);
8540 } catch (e) { 8540 } catch (e) {
8541 throw __dom_wrap_exception(e); 8541 throw __dom_wrap_exception(e);
8542 } 8542 }
8543 } 8543 }
8544 8544
8545 function native__EntryArrayWrappingImplementation__item(_this, index) { 8545 function native__EntryArrayWrappingImplementation__item(_this, index) {
8546 try { 8546 try {
8547 return __dom_wrap(_this.$dom.item(__dom_unwrap(index))); 8547 return __dom_wrap(_this.$dom.item(__dom_unwrap(index)));
8548 } catch (e) { 8548 } catch (e) {
8549 throw __dom_wrap_exception(e); 8549 throw __dom_wrap_exception(e);
8550 } 8550 }
8551 } 8551 }
8552 8552
8553 function native__EntryArraySyncWrappingImplementation__get__EntryArraySync_lengt h(_this) { 8553 function native__EntryArraySyncWrappingImplementation__get_length(_this) {
8554 try { 8554 try {
8555 return __dom_wrap(_this.$dom.length); 8555 return __dom_wrap(_this.$dom.length);
8556 } catch (e) { 8556 } catch (e) {
8557 throw __dom_wrap_exception(e); 8557 throw __dom_wrap_exception(e);
8558 } 8558 }
8559 } 8559 }
8560 8560
8561 function native__EntryArraySyncWrappingImplementation__item(_this, index) { 8561 function native__EntryArraySyncWrappingImplementation__item(_this, index) {
8562 try { 8562 try {
8563 return __dom_wrap(_this.$dom.item(__dom_unwrap(index))); 8563 return __dom_wrap(_this.$dom.item(__dom_unwrap(index)));
8564 } catch (e) { 8564 } catch (e) {
8565 throw __dom_wrap_exception(e); 8565 throw __dom_wrap_exception(e);
8566 } 8566 }
8567 } 8567 }
8568 8568
8569 function native__EntryCallbackWrappingImplementation__handleEvent(_this, entry) { 8569 function native__EntryCallbackWrappingImplementation__handleEvent(_this, entry) {
8570 try { 8570 try {
8571 return __dom_wrap(_this.$dom.handleEvent(__dom_unwrap(entry))); 8571 return __dom_wrap(_this.$dom.handleEvent(__dom_unwrap(entry)));
8572 } catch (e) { 8572 } catch (e) {
8573 throw __dom_wrap_exception(e); 8573 throw __dom_wrap_exception(e);
8574 } 8574 }
8575 } 8575 }
8576 8576
8577 function native__EntrySyncWrappingImplementation__get__EntrySync_filesystem(_thi s) { 8577 function native__EntrySyncWrappingImplementation__get_filesystem(_this) {
8578 try { 8578 try {
8579 return __dom_wrap(_this.$dom.filesystem); 8579 return __dom_wrap(_this.$dom.filesystem);
8580 } catch (e) { 8580 } catch (e) {
8581 throw __dom_wrap_exception(e); 8581 throw __dom_wrap_exception(e);
8582 } 8582 }
8583 } 8583 }
8584 8584
8585 function native__EntrySyncWrappingImplementation__get__EntrySync_fullPath(_this) { 8585 function native__EntrySyncWrappingImplementation__get_fullPath(_this) {
8586 try { 8586 try {
8587 return __dom_wrap(_this.$dom.fullPath); 8587 return __dom_wrap(_this.$dom.fullPath);
8588 } catch (e) { 8588 } catch (e) {
8589 throw __dom_wrap_exception(e); 8589 throw __dom_wrap_exception(e);
8590 } 8590 }
8591 } 8591 }
8592 8592
8593 function native__EntrySyncWrappingImplementation__get__EntrySync_isDirectory(_th is) { 8593 function native__EntrySyncWrappingImplementation__get_isDirectory(_this) {
8594 try { 8594 try {
8595 return __dom_wrap(_this.$dom.isDirectory); 8595 return __dom_wrap(_this.$dom.isDirectory);
8596 } catch (e) { 8596 } catch (e) {
8597 throw __dom_wrap_exception(e); 8597 throw __dom_wrap_exception(e);
8598 } 8598 }
8599 } 8599 }
8600 8600
8601 function native__EntrySyncWrappingImplementation__get__EntrySync_isFile(_this) { 8601 function native__EntrySyncWrappingImplementation__get_isFile(_this) {
8602 try { 8602 try {
8603 return __dom_wrap(_this.$dom.isFile); 8603 return __dom_wrap(_this.$dom.isFile);
8604 } catch (e) { 8604 } catch (e) {
8605 throw __dom_wrap_exception(e); 8605 throw __dom_wrap_exception(e);
8606 } 8606 }
8607 } 8607 }
8608 8608
8609 function native__EntrySyncWrappingImplementation__get__EntrySync_name(_this) { 8609 function native__EntrySyncWrappingImplementation__get_name(_this) {
8610 try { 8610 try {
8611 return __dom_wrap(_this.$dom.name); 8611 return __dom_wrap(_this.$dom.name);
8612 } catch (e) { 8612 } catch (e) {
8613 throw __dom_wrap_exception(e); 8613 throw __dom_wrap_exception(e);
8614 } 8614 }
8615 } 8615 }
8616 8616
8617 function native__EntrySyncWrappingImplementation__copyTo(_this, parent, name) { 8617 function native__EntrySyncWrappingImplementation__copyTo(_this, parent, name) {
8618 try { 8618 try {
8619 return __dom_wrap(_this.$dom.copyTo(__dom_unwrap(parent), __dom_unwrap(name) )); 8619 return __dom_wrap(_this.$dom.copyTo(__dom_unwrap(parent), __dom_unwrap(name) ));
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
8663 } 8663 }
8664 8664
8665 function native__ErrorCallbackWrappingImplementation__handleEvent(_this, error) { 8665 function native__ErrorCallbackWrappingImplementation__handleEvent(_this, error) {
8666 try { 8666 try {
8667 return __dom_wrap(_this.$dom.handleEvent(__dom_unwrap(error))); 8667 return __dom_wrap(_this.$dom.handleEvent(__dom_unwrap(error)));
8668 } catch (e) { 8668 } catch (e) {
8669 throw __dom_wrap_exception(e); 8669 throw __dom_wrap_exception(e);
8670 } 8670 }
8671 } 8671 }
8672 8672
8673 function native__ErrorEventWrappingImplementation__get__ErrorEvent_filename(_thi s) { 8673 function native__ErrorEventWrappingImplementation__get_filename(_this) {
8674 try { 8674 try {
8675 return __dom_wrap(_this.$dom.filename); 8675 return __dom_wrap(_this.$dom.filename);
8676 } catch (e) { 8676 } catch (e) {
8677 throw __dom_wrap_exception(e); 8677 throw __dom_wrap_exception(e);
8678 } 8678 }
8679 } 8679 }
8680 8680
8681 function native__ErrorEventWrappingImplementation__get__ErrorEvent_lineno(_this) { 8681 function native__ErrorEventWrappingImplementation__get_lineno(_this) {
8682 try { 8682 try {
8683 return __dom_wrap(_this.$dom.lineno); 8683 return __dom_wrap(_this.$dom.lineno);
8684 } catch (e) { 8684 } catch (e) {
8685 throw __dom_wrap_exception(e); 8685 throw __dom_wrap_exception(e);
8686 } 8686 }
8687 } 8687 }
8688 8688
8689 function native__ErrorEventWrappingImplementation__get__ErrorEvent_message(_this ) { 8689 function native__ErrorEventWrappingImplementation__get_message(_this) {
8690 try { 8690 try {
8691 return __dom_wrap(_this.$dom.message); 8691 return __dom_wrap(_this.$dom.message);
8692 } catch (e) { 8692 } catch (e) {
8693 throw __dom_wrap_exception(e); 8693 throw __dom_wrap_exception(e);
8694 } 8694 }
8695 } 8695 }
8696 8696
8697 function native__ErrorEventWrappingImplementation__initErrorEvent(_this, typeArg , canBubbleArg, cancelableArg, messageArg, filenameArg, linenoArg) { 8697 function native__ErrorEventWrappingImplementation__initErrorEvent(_this, typeArg , canBubbleArg, cancelableArg, messageArg, filenameArg, linenoArg) {
8698 try { 8698 try {
8699 return __dom_wrap(_this.$dom.initErrorEvent(__dom_unwrap(typeArg), __dom_unw rap(canBubbleArg), __dom_unwrap(cancelableArg), __dom_unwrap(messageArg), __dom_ unwrap(filenameArg), __dom_unwrap(linenoArg))); 8699 return __dom_wrap(_this.$dom.initErrorEvent(__dom_unwrap(typeArg), __dom_unw rap(canBubbleArg), __dom_unwrap(cancelableArg), __dom_unwrap(messageArg), __dom_ unwrap(filenameArg), __dom_unwrap(linenoArg)));
8700 } catch (e) { 8700 } catch (e) {
8701 throw __dom_wrap_exception(e); 8701 throw __dom_wrap_exception(e);
8702 } 8702 }
8703 } 8703 }
8704 8704
8705 function native__EventWrappingImplementation__get__Event_bubbles(_this) { 8705 function native__EventWrappingImplementation__get_bubbles(_this) {
8706 try { 8706 try {
8707 return __dom_wrap(_this.$dom.bubbles); 8707 return __dom_wrap(_this.$dom.bubbles);
8708 } catch (e) { 8708 } catch (e) {
8709 throw __dom_wrap_exception(e); 8709 throw __dom_wrap_exception(e);
8710 } 8710 }
8711 } 8711 }
8712 8712
8713 function native__EventWrappingImplementation__get__Event_cancelBubble(_this) { 8713 function native__EventWrappingImplementation__get_cancelBubble(_this) {
8714 try { 8714 try {
8715 return __dom_wrap(_this.$dom.cancelBubble); 8715 return __dom_wrap(_this.$dom.cancelBubble);
8716 } catch (e) { 8716 } catch (e) {
8717 throw __dom_wrap_exception(e); 8717 throw __dom_wrap_exception(e);
8718 } 8718 }
8719 } 8719 }
8720 8720
8721 function native__EventWrappingImplementation__set__Event_cancelBubble(_this, val ue) { 8721 function native__EventWrappingImplementation__set_cancelBubble(_this, value) {
8722 try { 8722 try {
8723 _this.$dom.cancelBubble = __dom_unwrap(value); 8723 _this.$dom.cancelBubble = __dom_unwrap(value);
8724 } catch (e) { 8724 } catch (e) {
8725 throw __dom_wrap_exception(e); 8725 throw __dom_wrap_exception(e);
8726 } 8726 }
8727 } 8727 }
8728 8728
8729 function native__EventWrappingImplementation__get__Event_cancelable(_this) { 8729 function native__EventWrappingImplementation__get_cancelable(_this) {
8730 try { 8730 try {
8731 return __dom_wrap(_this.$dom.cancelable); 8731 return __dom_wrap(_this.$dom.cancelable);
8732 } catch (e) { 8732 } catch (e) {
8733 throw __dom_wrap_exception(e); 8733 throw __dom_wrap_exception(e);
8734 } 8734 }
8735 } 8735 }
8736 8736
8737 function native__EventWrappingImplementation__get__Event_clipboardData(_this) { 8737 function native__EventWrappingImplementation__get_clipboardData(_this) {
8738 try { 8738 try {
8739 return __dom_wrap(_this.$dom.clipboardData); 8739 return __dom_wrap(_this.$dom.clipboardData);
8740 } catch (e) { 8740 } catch (e) {
8741 throw __dom_wrap_exception(e); 8741 throw __dom_wrap_exception(e);
8742 } 8742 }
8743 } 8743 }
8744 8744
8745 function native__EventWrappingImplementation__get__Event_currentTarget(_this) { 8745 function native__EventWrappingImplementation__get_currentTarget(_this) {
8746 try { 8746 try {
8747 return __dom_wrap(_this.$dom.currentTarget); 8747 return __dom_wrap(_this.$dom.currentTarget);
8748 } catch (e) { 8748 } catch (e) {
8749 throw __dom_wrap_exception(e); 8749 throw __dom_wrap_exception(e);
8750 } 8750 }
8751 } 8751 }
8752 8752
8753 function native__EventWrappingImplementation__get__Event_defaultPrevented(_this) { 8753 function native__EventWrappingImplementation__get_defaultPrevented(_this) {
8754 try { 8754 try {
8755 return __dom_wrap(_this.$dom.defaultPrevented); 8755 return __dom_wrap(_this.$dom.defaultPrevented);
8756 } catch (e) { 8756 } catch (e) {
8757 throw __dom_wrap_exception(e); 8757 throw __dom_wrap_exception(e);
8758 } 8758 }
8759 } 8759 }
8760 8760
8761 function native__EventWrappingImplementation__get__Event_eventPhase(_this) { 8761 function native__EventWrappingImplementation__get_eventPhase(_this) {
8762 try { 8762 try {
8763 return __dom_wrap(_this.$dom.eventPhase); 8763 return __dom_wrap(_this.$dom.eventPhase);
8764 } catch (e) { 8764 } catch (e) {
8765 throw __dom_wrap_exception(e); 8765 throw __dom_wrap_exception(e);
8766 } 8766 }
8767 } 8767 }
8768 8768
8769 function native__EventWrappingImplementation__get__Event_returnValue(_this) { 8769 function native__EventWrappingImplementation__get_returnValue(_this) {
8770 try { 8770 try {
8771 return __dom_wrap(_this.$dom.returnValue); 8771 return __dom_wrap(_this.$dom.returnValue);
8772 } catch (e) { 8772 } catch (e) {
8773 throw __dom_wrap_exception(e); 8773 throw __dom_wrap_exception(e);
8774 } 8774 }
8775 } 8775 }
8776 8776
8777 function native__EventWrappingImplementation__set__Event_returnValue(_this, valu e) { 8777 function native__EventWrappingImplementation__set_returnValue(_this, value) {
8778 try { 8778 try {
8779 _this.$dom.returnValue = __dom_unwrap(value); 8779 _this.$dom.returnValue = __dom_unwrap(value);
8780 } catch (e) { 8780 } catch (e) {
8781 throw __dom_wrap_exception(e); 8781 throw __dom_wrap_exception(e);
8782 } 8782 }
8783 } 8783 }
8784 8784
8785 function native__EventWrappingImplementation__get__Event_srcElement(_this) { 8785 function native__EventWrappingImplementation__get_srcElement(_this) {
8786 try { 8786 try {
8787 return __dom_wrap(_this.$dom.srcElement); 8787 return __dom_wrap(_this.$dom.srcElement);
8788 } catch (e) { 8788 } catch (e) {
8789 throw __dom_wrap_exception(e); 8789 throw __dom_wrap_exception(e);
8790 } 8790 }
8791 } 8791 }
8792 8792
8793 function native__EventWrappingImplementation__get__Event_target(_this) { 8793 function native__EventWrappingImplementation__get_target(_this) {
8794 try { 8794 try {
8795 return __dom_wrap(_this.$dom.target); 8795 return __dom_wrap(_this.$dom.target);
8796 } catch (e) { 8796 } catch (e) {
8797 throw __dom_wrap_exception(e); 8797 throw __dom_wrap_exception(e);
8798 } 8798 }
8799 } 8799 }
8800 8800
8801 function native__EventWrappingImplementation__get__Event_timeStamp(_this) { 8801 function native__EventWrappingImplementation__get_timeStamp(_this) {
8802 try { 8802 try {
8803 return __dom_wrap(_this.$dom.timeStamp); 8803 return __dom_wrap(_this.$dom.timeStamp);
8804 } catch (e) { 8804 } catch (e) {
8805 throw __dom_wrap_exception(e); 8805 throw __dom_wrap_exception(e);
8806 } 8806 }
8807 } 8807 }
8808 8808
8809 function native__EventWrappingImplementation__get__Event_type(_this) { 8809 function native__EventWrappingImplementation__get_type(_this) {
8810 try { 8810 try {
8811 return __dom_wrap(_this.$dom.type); 8811 return __dom_wrap(_this.$dom.type);
8812 } catch (e) { 8812 } catch (e) {
8813 throw __dom_wrap_exception(e); 8813 throw __dom_wrap_exception(e);
8814 } 8814 }
8815 } 8815 }
8816 8816
8817 function native__EventWrappingImplementation__initEvent(_this, eventTypeArg, can BubbleArg, cancelableArg) { 8817 function native__EventWrappingImplementation__initEvent(_this, eventTypeArg, can BubbleArg, cancelableArg) {
8818 try { 8818 try {
8819 return __dom_wrap(_this.$dom.initEvent(__dom_unwrap(eventTypeArg), __dom_unw rap(canBubbleArg), __dom_unwrap(cancelableArg))); 8819 return __dom_wrap(_this.$dom.initEvent(__dom_unwrap(eventTypeArg), __dom_unw rap(canBubbleArg), __dom_unwrap(cancelableArg)));
(...skipping 19 matching lines...) Expand all
8839 } 8839 }
8840 8840
8841 function native__EventWrappingImplementation__stopPropagation(_this) { 8841 function native__EventWrappingImplementation__stopPropagation(_this) {
8842 try { 8842 try {
8843 return __dom_wrap(_this.$dom.stopPropagation()); 8843 return __dom_wrap(_this.$dom.stopPropagation());
8844 } catch (e) { 8844 } catch (e) {
8845 throw __dom_wrap_exception(e); 8845 throw __dom_wrap_exception(e);
8846 } 8846 }
8847 } 8847 }
8848 8848
8849 function native__EventExceptionWrappingImplementation__get__EventException_code( _this) { 8849 function native__EventExceptionWrappingImplementation__get_code(_this) {
8850 try { 8850 try {
8851 return __dom_wrap(_this.$dom.code); 8851 return __dom_wrap(_this.$dom.code);
8852 } catch (e) { 8852 } catch (e) {
8853 throw __dom_wrap_exception(e); 8853 throw __dom_wrap_exception(e);
8854 } 8854 }
8855 } 8855 }
8856 8856
8857 function native__EventExceptionWrappingImplementation__get__EventException_messa ge(_this) { 8857 function native__EventExceptionWrappingImplementation__get_message(_this) {
8858 try { 8858 try {
8859 return __dom_wrap(_this.$dom.message); 8859 return __dom_wrap(_this.$dom.message);
8860 } catch (e) { 8860 } catch (e) {
8861 throw __dom_wrap_exception(e); 8861 throw __dom_wrap_exception(e);
8862 } 8862 }
8863 } 8863 }
8864 8864
8865 function native__EventExceptionWrappingImplementation__get__EventException_name( _this) { 8865 function native__EventExceptionWrappingImplementation__get_name(_this) {
8866 try { 8866 try {
8867 return __dom_wrap(_this.$dom.name); 8867 return __dom_wrap(_this.$dom.name);
8868 } catch (e) { 8868 } catch (e) {
8869 throw __dom_wrap_exception(e); 8869 throw __dom_wrap_exception(e);
8870 } 8870 }
8871 } 8871 }
8872 8872
8873 function native__EventExceptionWrappingImplementation__toString(_this) { 8873 function native__EventExceptionWrappingImplementation__toString(_this) {
8874 try { 8874 try {
8875 return __dom_wrap(_this.$dom.toString()); 8875 return __dom_wrap(_this.$dom.toString());
8876 } catch (e) { 8876 } catch (e) {
8877 throw __dom_wrap_exception(e); 8877 throw __dom_wrap_exception(e);
8878 } 8878 }
8879 } 8879 }
8880 8880
8881 function native__EventSourceWrappingImplementation__get__EventSource_URL(_this) { 8881 function native__EventSourceWrappingImplementation__get_URL(_this) {
8882 try { 8882 try {
8883 return __dom_wrap(_this.$dom.URL); 8883 return __dom_wrap(_this.$dom.URL);
8884 } catch (e) { 8884 } catch (e) {
8885 throw __dom_wrap_exception(e); 8885 throw __dom_wrap_exception(e);
8886 } 8886 }
8887 } 8887 }
8888 8888
8889 function native__EventSourceWrappingImplementation__get__EventSource_onerror(_th is) { 8889 function native__EventSourceWrappingImplementation__get_onerror(_this) {
8890 try { 8890 try {
8891 return __dom_wrap(_this.$dom.onerror); 8891 return __dom_wrap(_this.$dom.onerror);
8892 } catch (e) { 8892 } catch (e) {
8893 throw __dom_wrap_exception(e); 8893 throw __dom_wrap_exception(e);
8894 } 8894 }
8895 } 8895 }
8896 8896
8897 function native__EventSourceWrappingImplementation__set__EventSource_onerror(_th is, value) { 8897 function native__EventSourceWrappingImplementation__set_onerror(_this, value) {
8898 try { 8898 try {
8899 _this.$dom.onerror = __dom_unwrap(value); 8899 _this.$dom.onerror = __dom_unwrap(value);
8900 } catch (e) { 8900 } catch (e) {
8901 throw __dom_wrap_exception(e); 8901 throw __dom_wrap_exception(e);
8902 } 8902 }
8903 } 8903 }
8904 8904
8905 function native__EventSourceWrappingImplementation__get__EventSource_onmessage(_ this) { 8905 function native__EventSourceWrappingImplementation__get_onmessage(_this) {
8906 try { 8906 try {
8907 return __dom_wrap(_this.$dom.onmessage); 8907 return __dom_wrap(_this.$dom.onmessage);
8908 } catch (e) { 8908 } catch (e) {
8909 throw __dom_wrap_exception(e); 8909 throw __dom_wrap_exception(e);
8910 } 8910 }
8911 } 8911 }
8912 8912
8913 function native__EventSourceWrappingImplementation__set__EventSource_onmessage(_ this, value) { 8913 function native__EventSourceWrappingImplementation__set_onmessage(_this, value) {
8914 try { 8914 try {
8915 _this.$dom.onmessage = __dom_unwrap(value); 8915 _this.$dom.onmessage = __dom_unwrap(value);
8916 } catch (e) { 8916 } catch (e) {
8917 throw __dom_wrap_exception(e); 8917 throw __dom_wrap_exception(e);
8918 } 8918 }
8919 } 8919 }
8920 8920
8921 function native__EventSourceWrappingImplementation__get__EventSource_onopen(_thi s) { 8921 function native__EventSourceWrappingImplementation__get_onopen(_this) {
8922 try { 8922 try {
8923 return __dom_wrap(_this.$dom.onopen); 8923 return __dom_wrap(_this.$dom.onopen);
8924 } catch (e) { 8924 } catch (e) {
8925 throw __dom_wrap_exception(e); 8925 throw __dom_wrap_exception(e);
8926 } 8926 }
8927 } 8927 }
8928 8928
8929 function native__EventSourceWrappingImplementation__set__EventSource_onopen(_thi s, value) { 8929 function native__EventSourceWrappingImplementation__set_onopen(_this, value) {
8930 try { 8930 try {
8931 _this.$dom.onopen = __dom_unwrap(value); 8931 _this.$dom.onopen = __dom_unwrap(value);
8932 } catch (e) { 8932 } catch (e) {
8933 throw __dom_wrap_exception(e); 8933 throw __dom_wrap_exception(e);
8934 } 8934 }
8935 } 8935 }
8936 8936
8937 function native__EventSourceWrappingImplementation__get__EventSource_readyState( _this) { 8937 function native__EventSourceWrappingImplementation__get_readyState(_this) {
8938 try { 8938 try {
8939 return __dom_wrap(_this.$dom.readyState); 8939 return __dom_wrap(_this.$dom.readyState);
8940 } catch (e) { 8940 } catch (e) {
8941 throw __dom_wrap_exception(e); 8941 throw __dom_wrap_exception(e);
8942 } 8942 }
8943 } 8943 }
8944 8944
8945 function native__EventSourceWrappingImplementation__addEventListener(_this, type , listener) { 8945 function native__EventSourceWrappingImplementation__addEventListener_EventSource (_this, type, listener) {
8946 try { 8946 try {
8947 return __dom_wrap(_this.$dom.addEventListener(__dom_unwrap(type), __dom_unwr ap(listener))); 8947 return __dom_wrap(_this.$dom.addEventListener(__dom_unwrap(type), __dom_unwr ap(listener)));
8948 } catch (e) { 8948 } catch (e) {
8949 throw __dom_wrap_exception(e); 8949 throw __dom_wrap_exception(e);
8950 } 8950 }
8951 } 8951 }
8952 8952
8953 function native__EventSourceWrappingImplementation__addEventListener_2(_this, ty pe, listener, useCapture) { 8953 function native__EventSourceWrappingImplementation__addEventListener_EventSource _2(_this, type, listener, useCapture) {
8954 try { 8954 try {
8955 return __dom_wrap(_this.$dom.addEventListener(__dom_unwrap(type), __dom_unwr ap(listener), __dom_unwrap(useCapture))); 8955 return __dom_wrap(_this.$dom.addEventListener(__dom_unwrap(type), __dom_unwr ap(listener), __dom_unwrap(useCapture)));
8956 } catch (e) { 8956 } catch (e) {
8957 throw __dom_wrap_exception(e); 8957 throw __dom_wrap_exception(e);
8958 } 8958 }
8959 } 8959 }
8960 8960
8961 function native__EventSourceWrappingImplementation__close(_this) { 8961 function native__EventSourceWrappingImplementation__close(_this) {
8962 try { 8962 try {
8963 return __dom_wrap(_this.$dom.close()); 8963 return __dom_wrap(_this.$dom.close());
8964 } catch (e) { 8964 } catch (e) {
8965 throw __dom_wrap_exception(e); 8965 throw __dom_wrap_exception(e);
8966 } 8966 }
8967 } 8967 }
8968 8968
8969 function native__EventSourceWrappingImplementation__dispatchEvent(_this, evt) { 8969 function native__EventSourceWrappingImplementation__dispatchEvent_EventSource(_t his, evt) {
8970 try { 8970 try {
8971 return __dom_wrap(_this.$dom.dispatchEvent(__dom_unwrap(evt))); 8971 return __dom_wrap(_this.$dom.dispatchEvent(__dom_unwrap(evt)));
8972 } catch (e) { 8972 } catch (e) {
8973 throw __dom_wrap_exception(e); 8973 throw __dom_wrap_exception(e);
8974 } 8974 }
8975 } 8975 }
8976 8976
8977 function native__EventSourceWrappingImplementation__removeEventListener(_this, t ype, listener) { 8977 function native__EventSourceWrappingImplementation__removeEventListener_EventSou rce(_this, type, listener) {
8978 try { 8978 try {
8979 return __dom_wrap(_this.$dom.removeEventListener(__dom_unwrap(type), __dom_u nwrap(listener))); 8979 return __dom_wrap(_this.$dom.removeEventListener(__dom_unwrap(type), __dom_u nwrap(listener)));
8980 } catch (e) { 8980 } catch (e) {
8981 throw __dom_wrap_exception(e); 8981 throw __dom_wrap_exception(e);
8982 } 8982 }
8983 } 8983 }
8984 8984
8985 function native__EventSourceWrappingImplementation__removeEventListener_2(_this, type, listener, useCapture) { 8985 function native__EventSourceWrappingImplementation__removeEventListener_EventSou rce_2(_this, type, listener, useCapture) {
8986 try { 8986 try {
8987 return __dom_wrap(_this.$dom.removeEventListener(__dom_unwrap(type), __dom_u nwrap(listener), __dom_unwrap(useCapture))); 8987 return __dom_wrap(_this.$dom.removeEventListener(__dom_unwrap(type), __dom_u nwrap(listener), __dom_unwrap(useCapture)));
8988 } catch (e) { 8988 } catch (e) {
8989 throw __dom_wrap_exception(e); 8989 throw __dom_wrap_exception(e);
8990 } 8990 }
8991 } 8991 }
8992 8992
8993 function native__EventTargetWrappingImplementation__addEventListener(_this, type , listener) { 8993 function native__EventTargetWrappingImplementation__addEventListener(_this, type , listener) {
8994 try { 8994 try {
8995 return __dom_wrap(_this.$dom.addEventListener(__dom_unwrap(type), __dom_unwr ap(listener))); 8995 return __dom_wrap(_this.$dom.addEventListener(__dom_unwrap(type), __dom_unwr ap(listener)));
(...skipping 27 matching lines...) Expand all
9023 } 9023 }
9024 9024
9025 function native__EventTargetWrappingImplementation__removeEventListener_2(_this, type, listener, useCapture) { 9025 function native__EventTargetWrappingImplementation__removeEventListener_2(_this, type, listener, useCapture) {
9026 try { 9026 try {
9027 return __dom_wrap(_this.$dom.removeEventListener(__dom_unwrap(type), __dom_u nwrap(listener), __dom_unwrap(useCapture))); 9027 return __dom_wrap(_this.$dom.removeEventListener(__dom_unwrap(type), __dom_u nwrap(listener), __dom_unwrap(useCapture)));
9028 } catch (e) { 9028 } catch (e) {
9029 throw __dom_wrap_exception(e); 9029 throw __dom_wrap_exception(e);
9030 } 9030 }
9031 } 9031 }
9032 9032
9033 function native__FileWrappingImplementation__get__File_fileName(_this) { 9033 function native__FileWrappingImplementation__get_fileName(_this) {
9034 try { 9034 try {
9035 return __dom_wrap(_this.$dom.fileName); 9035 return __dom_wrap(_this.$dom.fileName);
9036 } catch (e) { 9036 } catch (e) {
9037 throw __dom_wrap_exception(e); 9037 throw __dom_wrap_exception(e);
9038 } 9038 }
9039 } 9039 }
9040 9040
9041 function native__FileWrappingImplementation__get__File_fileSize(_this) { 9041 function native__FileWrappingImplementation__get_fileSize(_this) {
9042 try { 9042 try {
9043 return __dom_wrap(_this.$dom.fileSize); 9043 return __dom_wrap(_this.$dom.fileSize);
9044 } catch (e) { 9044 } catch (e) {
9045 throw __dom_wrap_exception(e); 9045 throw __dom_wrap_exception(e);
9046 } 9046 }
9047 } 9047 }
9048 9048
9049 function native__FileWrappingImplementation__get__File_lastModifiedDate(_this) { 9049 function native__FileWrappingImplementation__get_lastModifiedDate(_this) {
9050 try { 9050 try {
9051 return __dom_wrap(_this.$dom.lastModifiedDate); 9051 return __dom_wrap(_this.$dom.lastModifiedDate);
9052 } catch (e) { 9052 } catch (e) {
9053 throw __dom_wrap_exception(e); 9053 throw __dom_wrap_exception(e);
9054 } 9054 }
9055 } 9055 }
9056 9056
9057 function native__FileWrappingImplementation__get__File_name(_this) { 9057 function native__FileWrappingImplementation__get_name(_this) {
9058 try { 9058 try {
9059 return __dom_wrap(_this.$dom.name); 9059 return __dom_wrap(_this.$dom.name);
9060 } catch (e) { 9060 } catch (e) {
9061 throw __dom_wrap_exception(e); 9061 throw __dom_wrap_exception(e);
9062 } 9062 }
9063 } 9063 }
9064 9064
9065 function native__FileCallbackWrappingImplementation__handleEvent(_this, file) { 9065 function native__FileCallbackWrappingImplementation__handleEvent(_this, file) {
9066 try { 9066 try {
9067 return __dom_wrap(_this.$dom.handleEvent(__dom_unwrap(file))); 9067 return __dom_wrap(_this.$dom.handleEvent(__dom_unwrap(file)));
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
9111 } 9111 }
9112 9112
9113 function native__FileEntrySyncWrappingImplementation__file(_this) { 9113 function native__FileEntrySyncWrappingImplementation__file(_this) {
9114 try { 9114 try {
9115 return __dom_wrap(_this.$dom.file()); 9115 return __dom_wrap(_this.$dom.file());
9116 } catch (e) { 9116 } catch (e) {
9117 throw __dom_wrap_exception(e); 9117 throw __dom_wrap_exception(e);
9118 } 9118 }
9119 } 9119 }
9120 9120
9121 function native__FileErrorWrappingImplementation__get__FileError_code(_this) { 9121 function native__FileErrorWrappingImplementation__get_code(_this) {
9122 try { 9122 try {
9123 return __dom_wrap(_this.$dom.code); 9123 return __dom_wrap(_this.$dom.code);
9124 } catch (e) { 9124 } catch (e) {
9125 throw __dom_wrap_exception(e); 9125 throw __dom_wrap_exception(e);
9126 } 9126 }
9127 } 9127 }
9128 9128
9129 function native__FileExceptionWrappingImplementation__get__FileException_code(_t his) { 9129 function native__FileExceptionWrappingImplementation__get_code(_this) {
9130 try { 9130 try {
9131 return __dom_wrap(_this.$dom.code); 9131 return __dom_wrap(_this.$dom.code);
9132 } catch (e) { 9132 } catch (e) {
9133 throw __dom_wrap_exception(e); 9133 throw __dom_wrap_exception(e);
9134 } 9134 }
9135 } 9135 }
9136 9136
9137 function native__FileExceptionWrappingImplementation__get__FileException_message (_this) { 9137 function native__FileExceptionWrappingImplementation__get_message(_this) {
9138 try { 9138 try {
9139 return __dom_wrap(_this.$dom.message); 9139 return __dom_wrap(_this.$dom.message);
9140 } catch (e) { 9140 } catch (e) {
9141 throw __dom_wrap_exception(e); 9141 throw __dom_wrap_exception(e);
9142 } 9142 }
9143 } 9143 }
9144 9144
9145 function native__FileExceptionWrappingImplementation__get__FileException_name(_t his) { 9145 function native__FileExceptionWrappingImplementation__get_name(_this) {
9146 try { 9146 try {
9147 return __dom_wrap(_this.$dom.name); 9147 return __dom_wrap(_this.$dom.name);
9148 } catch (e) { 9148 } catch (e) {
9149 throw __dom_wrap_exception(e); 9149 throw __dom_wrap_exception(e);
9150 } 9150 }
9151 } 9151 }
9152 9152
9153 function native__FileExceptionWrappingImplementation__toString(_this) { 9153 function native__FileExceptionWrappingImplementation__toString(_this) {
9154 try { 9154 try {
9155 return __dom_wrap(_this.$dom.toString()); 9155 return __dom_wrap(_this.$dom.toString());
9156 } catch (e) { 9156 } catch (e) {
9157 throw __dom_wrap_exception(e); 9157 throw __dom_wrap_exception(e);
9158 } 9158 }
9159 } 9159 }
9160 9160
9161 function native__FileListWrappingImplementation__get__FileList_length(_this) { 9161 function native__FileListWrappingImplementation__get_length(_this) {
9162 try { 9162 try {
9163 return __dom_wrap(_this.$dom.length); 9163 return __dom_wrap(_this.$dom.length);
9164 } catch (e) { 9164 } catch (e) {
9165 throw __dom_wrap_exception(e); 9165 throw __dom_wrap_exception(e);
9166 } 9166 }
9167 } 9167 }
9168 9168
9169 function native__FileListWrappingImplementation__item(_this, index) { 9169 function native__FileListWrappingImplementation__item(_this, index) {
9170 try { 9170 try {
9171 return __dom_wrap(_this.$dom.item(__dom_unwrap(index))); 9171 return __dom_wrap(_this.$dom.item(__dom_unwrap(index)));
9172 } catch (e) { 9172 } catch (e) {
9173 throw __dom_wrap_exception(e); 9173 throw __dom_wrap_exception(e);
9174 } 9174 }
9175 } 9175 }
9176 9176
9177 function native__FileReaderWrappingImplementation__get__FileReader_error(_this) { 9177 function native__FileReaderWrappingImplementation__get_error(_this) {
9178 try { 9178 try {
9179 return __dom_wrap(_this.$dom.error); 9179 return __dom_wrap(_this.$dom.error);
9180 } catch (e) { 9180 } catch (e) {
9181 throw __dom_wrap_exception(e); 9181 throw __dom_wrap_exception(e);
9182 } 9182 }
9183 } 9183 }
9184 9184
9185 function native__FileReaderWrappingImplementation__get__FileReader_onabort(_this ) { 9185 function native__FileReaderWrappingImplementation__get_onabort(_this) {
9186 try { 9186 try {
9187 return __dom_wrap(_this.$dom.onabort); 9187 return __dom_wrap(_this.$dom.onabort);
9188 } catch (e) { 9188 } catch (e) {
9189 throw __dom_wrap_exception(e); 9189 throw __dom_wrap_exception(e);
9190 } 9190 }
9191 } 9191 }
9192 9192
9193 function native__FileReaderWrappingImplementation__set__FileReader_onabort(_this , value) { 9193 function native__FileReaderWrappingImplementation__set_onabort(_this, value) {
9194 try { 9194 try {
9195 _this.$dom.onabort = __dom_unwrap(value); 9195 _this.$dom.onabort = __dom_unwrap(value);
9196 } catch (e) { 9196 } catch (e) {
9197 throw __dom_wrap_exception(e); 9197 throw __dom_wrap_exception(e);
9198 } 9198 }
9199 } 9199 }
9200 9200
9201 function native__FileReaderWrappingImplementation__get__FileReader_onerror(_this ) { 9201 function native__FileReaderWrappingImplementation__get_onerror(_this) {
9202 try { 9202 try {
9203 return __dom_wrap(_this.$dom.onerror); 9203 return __dom_wrap(_this.$dom.onerror);
9204 } catch (e) { 9204 } catch (e) {
9205 throw __dom_wrap_exception(e); 9205 throw __dom_wrap_exception(e);
9206 } 9206 }
9207 } 9207 }
9208 9208
9209 function native__FileReaderWrappingImplementation__set__FileReader_onerror(_this , value) { 9209 function native__FileReaderWrappingImplementation__set_onerror(_this, value) {
9210 try { 9210 try {
9211 _this.$dom.onerror = __dom_unwrap(value); 9211 _this.$dom.onerror = __dom_unwrap(value);
9212 } catch (e) { 9212 } catch (e) {
9213 throw __dom_wrap_exception(e); 9213 throw __dom_wrap_exception(e);
9214 } 9214 }
9215 } 9215 }
9216 9216
9217 function native__FileReaderWrappingImplementation__get__FileReader_onload(_this) { 9217 function native__FileReaderWrappingImplementation__get_onload(_this) {
9218 try { 9218 try {
9219 return __dom_wrap(_this.$dom.onload); 9219 return __dom_wrap(_this.$dom.onload);
9220 } catch (e) { 9220 } catch (e) {
9221 throw __dom_wrap_exception(e); 9221 throw __dom_wrap_exception(e);
9222 } 9222 }
9223 } 9223 }
9224 9224
9225 function native__FileReaderWrappingImplementation__set__FileReader_onload(_this, value) { 9225 function native__FileReaderWrappingImplementation__set_onload(_this, value) {
9226 try { 9226 try {
9227 _this.$dom.onload = __dom_unwrap(value); 9227 _this.$dom.onload = __dom_unwrap(value);
9228 } catch (e) { 9228 } catch (e) {
9229 throw __dom_wrap_exception(e); 9229 throw __dom_wrap_exception(e);
9230 } 9230 }
9231 } 9231 }
9232 9232
9233 function native__FileReaderWrappingImplementation__get__FileReader_onloadend(_th is) { 9233 function native__FileReaderWrappingImplementation__get_onloadend(_this) {
9234 try { 9234 try {
9235 return __dom_wrap(_this.$dom.onloadend); 9235 return __dom_wrap(_this.$dom.onloadend);
9236 } catch (e) { 9236 } catch (e) {
9237 throw __dom_wrap_exception(e); 9237 throw __dom_wrap_exception(e);
9238 } 9238 }
9239 } 9239 }
9240 9240
9241 function native__FileReaderWrappingImplementation__set__FileReader_onloadend(_th is, value) { 9241 function native__FileReaderWrappingImplementation__set_onloadend(_this, value) {
9242 try { 9242 try {
9243 _this.$dom.onloadend = __dom_unwrap(value); 9243 _this.$dom.onloadend = __dom_unwrap(value);
9244 } catch (e) { 9244 } catch (e) {
9245 throw __dom_wrap_exception(e); 9245 throw __dom_wrap_exception(e);
9246 } 9246 }
9247 } 9247 }
9248 9248
9249 function native__FileReaderWrappingImplementation__get__FileReader_onloadstart(_ this) { 9249 function native__FileReaderWrappingImplementation__get_onloadstart(_this) {
9250 try { 9250 try {
9251 return __dom_wrap(_this.$dom.onloadstart); 9251 return __dom_wrap(_this.$dom.onloadstart);
9252 } catch (e) { 9252 } catch (e) {
9253 throw __dom_wrap_exception(e); 9253 throw __dom_wrap_exception(e);
9254 } 9254 }
9255 } 9255 }
9256 9256
9257 function native__FileReaderWrappingImplementation__set__FileReader_onloadstart(_ this, value) { 9257 function native__FileReaderWrappingImplementation__set_onloadstart(_this, value) {
9258 try { 9258 try {
9259 _this.$dom.onloadstart = __dom_unwrap(value); 9259 _this.$dom.onloadstart = __dom_unwrap(value);
9260 } catch (e) { 9260 } catch (e) {
9261 throw __dom_wrap_exception(e); 9261 throw __dom_wrap_exception(e);
9262 } 9262 }
9263 } 9263 }
9264 9264
9265 function native__FileReaderWrappingImplementation__get__FileReader_onprogress(_t his) { 9265 function native__FileReaderWrappingImplementation__get_onprogress(_this) {
9266 try { 9266 try {
9267 return __dom_wrap(_this.$dom.onprogress); 9267 return __dom_wrap(_this.$dom.onprogress);
9268 } catch (e) { 9268 } catch (e) {
9269 throw __dom_wrap_exception(e); 9269 throw __dom_wrap_exception(e);
9270 } 9270 }
9271 } 9271 }
9272 9272
9273 function native__FileReaderWrappingImplementation__set__FileReader_onprogress(_t his, value) { 9273 function native__FileReaderWrappingImplementation__set_onprogress(_this, value) {
9274 try { 9274 try {
9275 _this.$dom.onprogress = __dom_unwrap(value); 9275 _this.$dom.onprogress = __dom_unwrap(value);
9276 } catch (e) { 9276 } catch (e) {
9277 throw __dom_wrap_exception(e); 9277 throw __dom_wrap_exception(e);
9278 } 9278 }
9279 } 9279 }
9280 9280
9281 function native__FileReaderWrappingImplementation__get__FileReader_readyState(_t his) { 9281 function native__FileReaderWrappingImplementation__get_readyState(_this) {
9282 try { 9282 try {
9283 return __dom_wrap(_this.$dom.readyState); 9283 return __dom_wrap(_this.$dom.readyState);
9284 } catch (e) { 9284 } catch (e) {
9285 throw __dom_wrap_exception(e); 9285 throw __dom_wrap_exception(e);
9286 } 9286 }
9287 } 9287 }
9288 9288
9289 function native__FileReaderWrappingImplementation__get__FileReader_result(_this) { 9289 function native__FileReaderWrappingImplementation__get_result(_this) {
9290 try { 9290 try {
9291 return __dom_wrap(_this.$dom.result); 9291 return __dom_wrap(_this.$dom.result);
9292 } catch (e) { 9292 } catch (e) {
9293 throw __dom_wrap_exception(e); 9293 throw __dom_wrap_exception(e);
9294 } 9294 }
9295 } 9295 }
9296 9296
9297 function native__FileReaderWrappingImplementation__abort(_this) { 9297 function native__FileReaderWrappingImplementation__abort(_this) {
9298 try { 9298 try {
9299 return __dom_wrap(_this.$dom.abort()); 9299 return __dom_wrap(_this.$dom.abort());
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
9383 } 9383 }
9384 9384
9385 function native__FileSystemCallbackWrappingImplementation__handleEvent(_this, fi leSystem) { 9385 function native__FileSystemCallbackWrappingImplementation__handleEvent(_this, fi leSystem) {
9386 try { 9386 try {
9387 return __dom_wrap(_this.$dom.handleEvent(__dom_unwrap(fileSystem))); 9387 return __dom_wrap(_this.$dom.handleEvent(__dom_unwrap(fileSystem)));
9388 } catch (e) { 9388 } catch (e) {
9389 throw __dom_wrap_exception(e); 9389 throw __dom_wrap_exception(e);
9390 } 9390 }
9391 } 9391 }
9392 9392
9393 function native__FileWriterWrappingImplementation__get__FileWriter_error(_this) { 9393 function native__FileWriterWrappingImplementation__get_error(_this) {
9394 try { 9394 try {
9395 return __dom_wrap(_this.$dom.error); 9395 return __dom_wrap(_this.$dom.error);
9396 } catch (e) { 9396 } catch (e) {
9397 throw __dom_wrap_exception(e); 9397 throw __dom_wrap_exception(e);
9398 } 9398 }
9399 } 9399 }
9400 9400
9401 function native__FileWriterWrappingImplementation__get__FileWriter_length(_this) { 9401 function native__FileWriterWrappingImplementation__get_length(_this) {
9402 try { 9402 try {
9403 return __dom_wrap(_this.$dom.length); 9403 return __dom_wrap(_this.$dom.length);
9404 } catch (e) { 9404 } catch (e) {
9405 throw __dom_wrap_exception(e); 9405 throw __dom_wrap_exception(e);
9406 } 9406 }
9407 } 9407 }
9408 9408
9409 function native__FileWriterWrappingImplementation__get__FileWriter_onabort(_this ) { 9409 function native__FileWriterWrappingImplementation__get_onabort(_this) {
9410 try { 9410 try {
9411 return __dom_wrap(_this.$dom.onabort); 9411 return __dom_wrap(_this.$dom.onabort);
9412 } catch (e) { 9412 } catch (e) {
9413 throw __dom_wrap_exception(e); 9413 throw __dom_wrap_exception(e);
9414 } 9414 }
9415 } 9415 }
9416 9416
9417 function native__FileWriterWrappingImplementation__set__FileWriter_onabort(_this , value) { 9417 function native__FileWriterWrappingImplementation__set_onabort(_this, value) {
9418 try { 9418 try {
9419 _this.$dom.onabort = __dom_unwrap(value); 9419 _this.$dom.onabort = __dom_unwrap(value);
9420 } catch (e) { 9420 } catch (e) {
9421 throw __dom_wrap_exception(e); 9421 throw __dom_wrap_exception(e);
9422 } 9422 }
9423 } 9423 }
9424 9424
9425 function native__FileWriterWrappingImplementation__get__FileWriter_onerror(_this ) { 9425 function native__FileWriterWrappingImplementation__get_onerror(_this) {
9426 try { 9426 try {
9427 return __dom_wrap(_this.$dom.onerror); 9427 return __dom_wrap(_this.$dom.onerror);
9428 } catch (e) { 9428 } catch (e) {
9429 throw __dom_wrap_exception(e); 9429 throw __dom_wrap_exception(e);
9430 } 9430 }
9431 } 9431 }
9432 9432
9433 function native__FileWriterWrappingImplementation__set__FileWriter_onerror(_this , value) { 9433 function native__FileWriterWrappingImplementation__set_onerror(_this, value) {
9434 try { 9434 try {
9435 _this.$dom.onerror = __dom_unwrap(value); 9435 _this.$dom.onerror = __dom_unwrap(value);
9436 } catch (e) { 9436 } catch (e) {
9437 throw __dom_wrap_exception(e); 9437 throw __dom_wrap_exception(e);
9438 } 9438 }
9439 } 9439 }
9440 9440
9441 function native__FileWriterWrappingImplementation__get__FileWriter_onprogress(_t his) { 9441 function native__FileWriterWrappingImplementation__get_onprogress(_this) {
9442 try { 9442 try {
9443 return __dom_wrap(_this.$dom.onprogress); 9443 return __dom_wrap(_this.$dom.onprogress);
9444 } catch (e) { 9444 } catch (e) {
9445 throw __dom_wrap_exception(e); 9445 throw __dom_wrap_exception(e);
9446 } 9446 }
9447 } 9447 }
9448 9448
9449 function native__FileWriterWrappingImplementation__set__FileWriter_onprogress(_t his, value) { 9449 function native__FileWriterWrappingImplementation__set_onprogress(_this, value) {
9450 try { 9450 try {
9451 _this.$dom.onprogress = __dom_unwrap(value); 9451 _this.$dom.onprogress = __dom_unwrap(value);
9452 } catch (e) { 9452 } catch (e) {
9453 throw __dom_wrap_exception(e); 9453 throw __dom_wrap_exception(e);
9454 } 9454 }
9455 } 9455 }
9456 9456
9457 function native__FileWriterWrappingImplementation__get__FileWriter_onwrite(_this ) { 9457 function native__FileWriterWrappingImplementation__get_onwrite(_this) {
9458 try { 9458 try {
9459 return __dom_wrap(_this.$dom.onwrite); 9459 return __dom_wrap(_this.$dom.onwrite);
9460 } catch (e) { 9460 } catch (e) {
9461 throw __dom_wrap_exception(e); 9461 throw __dom_wrap_exception(e);
9462 } 9462 }
9463 } 9463 }
9464 9464
9465 function native__FileWriterWrappingImplementation__set__FileWriter_onwrite(_this , value) { 9465 function native__FileWriterWrappingImplementation__set_onwrite(_this, value) {
9466 try { 9466 try {
9467 _this.$dom.onwrite = __dom_unwrap(value); 9467 _this.$dom.onwrite = __dom_unwrap(value);
9468 } catch (e) { 9468 } catch (e) {
9469 throw __dom_wrap_exception(e); 9469 throw __dom_wrap_exception(e);
9470 } 9470 }
9471 } 9471 }
9472 9472
9473 function native__FileWriterWrappingImplementation__get__FileWriter_onwriteend(_t his) { 9473 function native__FileWriterWrappingImplementation__get_onwriteend(_this) {
9474 try { 9474 try {
9475 return __dom_wrap(_this.$dom.onwriteend); 9475 return __dom_wrap(_this.$dom.onwriteend);
9476 } catch (e) { 9476 } catch (e) {
9477 throw __dom_wrap_exception(e); 9477 throw __dom_wrap_exception(e);
9478 } 9478 }
9479 } 9479 }
9480 9480
9481 function native__FileWriterWrappingImplementation__set__FileWriter_onwriteend(_t his, value) { 9481 function native__FileWriterWrappingImplementation__set_onwriteend(_this, value) {
9482 try { 9482 try {
9483 _this.$dom.onwriteend = __dom_unwrap(value); 9483 _this.$dom.onwriteend = __dom_unwrap(value);
9484 } catch (e) { 9484 } catch (e) {
9485 throw __dom_wrap_exception(e); 9485 throw __dom_wrap_exception(e);
9486 } 9486 }
9487 } 9487 }
9488 9488
9489 function native__FileWriterWrappingImplementation__get__FileWriter_onwritestart( _this) { 9489 function native__FileWriterWrappingImplementation__get_onwritestart(_this) {
9490 try { 9490 try {
9491 return __dom_wrap(_this.$dom.onwritestart); 9491 return __dom_wrap(_this.$dom.onwritestart);
9492 } catch (e) { 9492 } catch (e) {
9493 throw __dom_wrap_exception(e); 9493 throw __dom_wrap_exception(e);
9494 } 9494 }
9495 } 9495 }
9496 9496
9497 function native__FileWriterWrappingImplementation__set__FileWriter_onwritestart( _this, value) { 9497 function native__FileWriterWrappingImplementation__set_onwritestart(_this, value ) {
9498 try { 9498 try {
9499 _this.$dom.onwritestart = __dom_unwrap(value); 9499 _this.$dom.onwritestart = __dom_unwrap(value);
9500 } catch (e) { 9500 } catch (e) {
9501 throw __dom_wrap_exception(e); 9501 throw __dom_wrap_exception(e);
9502 } 9502 }
9503 } 9503 }
9504 9504
9505 function native__FileWriterWrappingImplementation__get__FileWriter_position(_thi s) { 9505 function native__FileWriterWrappingImplementation__get_position(_this) {
9506 try { 9506 try {
9507 return __dom_wrap(_this.$dom.position); 9507 return __dom_wrap(_this.$dom.position);
9508 } catch (e) { 9508 } catch (e) {
9509 throw __dom_wrap_exception(e); 9509 throw __dom_wrap_exception(e);
9510 } 9510 }
9511 } 9511 }
9512 9512
9513 function native__FileWriterWrappingImplementation__get__FileWriter_readyState(_t his) { 9513 function native__FileWriterWrappingImplementation__get_readyState(_this) {
9514 try { 9514 try {
9515 return __dom_wrap(_this.$dom.readyState); 9515 return __dom_wrap(_this.$dom.readyState);
9516 } catch (e) { 9516 } catch (e) {
9517 throw __dom_wrap_exception(e); 9517 throw __dom_wrap_exception(e);
9518 } 9518 }
9519 } 9519 }
9520 9520
9521 function native__FileWriterWrappingImplementation__abort(_this) { 9521 function native__FileWriterWrappingImplementation__abort(_this) {
9522 try { 9522 try {
9523 return __dom_wrap(_this.$dom.abort()); 9523 return __dom_wrap(_this.$dom.abort());
(...skipping 27 matching lines...) Expand all
9551 } 9551 }
9552 9552
9553 function native__FileWriterCallbackWrappingImplementation__handleEvent(_this, fi leWriter) { 9553 function native__FileWriterCallbackWrappingImplementation__handleEvent(_this, fi leWriter) {
9554 try { 9554 try {
9555 return __dom_wrap(_this.$dom.handleEvent(__dom_unwrap(fileWriter))); 9555 return __dom_wrap(_this.$dom.handleEvent(__dom_unwrap(fileWriter)));
9556 } catch (e) { 9556 } catch (e) {
9557 throw __dom_wrap_exception(e); 9557 throw __dom_wrap_exception(e);
9558 } 9558 }
9559 } 9559 }
9560 9560
9561 function native__FileWriterSyncWrappingImplementation__get__FileWriterSync_lengt h(_this) { 9561 function native__FileWriterSyncWrappingImplementation__get_length(_this) {
9562 try { 9562 try {
9563 return __dom_wrap(_this.$dom.length); 9563 return __dom_wrap(_this.$dom.length);
9564 } catch (e) { 9564 } catch (e) {
9565 throw __dom_wrap_exception(e); 9565 throw __dom_wrap_exception(e);
9566 } 9566 }
9567 } 9567 }
9568 9568
9569 function native__FileWriterSyncWrappingImplementation__get__FileWriterSync_posit ion(_this) { 9569 function native__FileWriterSyncWrappingImplementation__get_position(_this) {
9570 try { 9570 try {
9571 return __dom_wrap(_this.$dom.position); 9571 return __dom_wrap(_this.$dom.position);
9572 } catch (e) { 9572 } catch (e) {
9573 throw __dom_wrap_exception(e); 9573 throw __dom_wrap_exception(e);
9574 } 9574 }
9575 } 9575 }
9576 9576
9577 function native__FileWriterSyncWrappingImplementation__seek(_this, position) { 9577 function native__FileWriterSyncWrappingImplementation__seek(_this, position) {
9578 try { 9578 try {
9579 return __dom_wrap(_this.$dom.seek(__dom_unwrap(position))); 9579 return __dom_wrap(_this.$dom.seek(__dom_unwrap(position)));
(...skipping 11 matching lines...) Expand all
9591 } 9591 }
9592 9592
9593 function native__FileWriterSyncWrappingImplementation__write(_this, data) { 9593 function native__FileWriterSyncWrappingImplementation__write(_this, data) {
9594 try { 9594 try {
9595 return __dom_wrap(_this.$dom.write(__dom_unwrap(data))); 9595 return __dom_wrap(_this.$dom.write(__dom_unwrap(data)));
9596 } catch (e) { 9596 } catch (e) {
9597 throw __dom_wrap_exception(e); 9597 throw __dom_wrap_exception(e);
9598 } 9598 }
9599 } 9599 }
9600 9600
9601 function native__Float32ArrayWrappingImplementation__get__Float32Array_length(_t his) { 9601 function native__Float32ArrayWrappingImplementation__get_length(_this) {
9602 try { 9602 try {
9603 return __dom_wrap(_this.$dom.length); 9603 return __dom_wrap(_this.$dom.length);
9604 } catch (e) { 9604 } catch (e) {
9605 throw __dom_wrap_exception(e); 9605 throw __dom_wrap_exception(e);
9606 } 9606 }
9607 } 9607 }
9608 9608
9609 function native__Float32ArrayWrappingImplementation__subarray(_this, start) { 9609 function native__Float32ArrayWrappingImplementation__subarray(_this, start) {
9610 try { 9610 try {
9611 return __dom_wrap(_this.$dom.subarray(__dom_unwrap(start))); 9611 return __dom_wrap(_this.$dom.subarray(__dom_unwrap(start)));
9612 } catch (e) { 9612 } catch (e) {
9613 throw __dom_wrap_exception(e); 9613 throw __dom_wrap_exception(e);
9614 } 9614 }
9615 } 9615 }
9616 9616
9617 function native__Float32ArrayWrappingImplementation__subarray_2(_this, start, en d) { 9617 function native__Float32ArrayWrappingImplementation__subarray_2(_this, start, en d) {
9618 try { 9618 try {
9619 return __dom_wrap(_this.$dom.subarray(__dom_unwrap(start), __dom_unwrap(end) )); 9619 return __dom_wrap(_this.$dom.subarray(__dom_unwrap(start), __dom_unwrap(end) ));
9620 } catch (e) { 9620 } catch (e) {
9621 throw __dom_wrap_exception(e); 9621 throw __dom_wrap_exception(e);
9622 } 9622 }
9623 } 9623 }
9624 9624
9625 function native__Float64ArrayWrappingImplementation__get__Float64Array_length(_t his) { 9625 function native__Float64ArrayWrappingImplementation__get_length(_this) {
9626 try { 9626 try {
9627 return __dom_wrap(_this.$dom.length); 9627 return __dom_wrap(_this.$dom.length);
9628 } catch (e) { 9628 } catch (e) {
9629 throw __dom_wrap_exception(e); 9629 throw __dom_wrap_exception(e);
9630 } 9630 }
9631 } 9631 }
9632 9632
9633 function native__Float64ArrayWrappingImplementation__subarray(_this, start) { 9633 function native__Float64ArrayWrappingImplementation__subarray(_this, start) {
9634 try { 9634 try {
9635 return __dom_wrap(_this.$dom.subarray(__dom_unwrap(start))); 9635 return __dom_wrap(_this.$dom.subarray(__dom_unwrap(start)));
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
9679 } 9679 }
9680 9680
9681 function native__GeolocationWrappingImplementation__watchPosition_2(_this, succe ssCallback, errorCallback) { 9681 function native__GeolocationWrappingImplementation__watchPosition_2(_this, succe ssCallback, errorCallback) {
9682 try { 9682 try {
9683 return __dom_wrap(_this.$dom.watchPosition(__dom_unwrap(successCallback), __ dom_unwrap(errorCallback))); 9683 return __dom_wrap(_this.$dom.watchPosition(__dom_unwrap(successCallback), __ dom_unwrap(errorCallback)));
9684 } catch (e) { 9684 } catch (e) {
9685 throw __dom_wrap_exception(e); 9685 throw __dom_wrap_exception(e);
9686 } 9686 }
9687 } 9687 }
9688 9688
9689 function native__GeopositionWrappingImplementation__get__Geoposition_coords(_thi s) { 9689 function native__GeopositionWrappingImplementation__get_coords(_this) {
9690 try { 9690 try {
9691 return __dom_wrap(_this.$dom.coords); 9691 return __dom_wrap(_this.$dom.coords);
9692 } catch (e) { 9692 } catch (e) {
9693 throw __dom_wrap_exception(e); 9693 throw __dom_wrap_exception(e);
9694 } 9694 }
9695 } 9695 }
9696 9696
9697 function native__GeopositionWrappingImplementation__get__Geoposition_timestamp(_ this) { 9697 function native__GeopositionWrappingImplementation__get_timestamp(_this) {
9698 try { 9698 try {
9699 return __dom_wrap(_this.$dom.timestamp); 9699 return __dom_wrap(_this.$dom.timestamp);
9700 } catch (e) { 9700 } catch (e) {
9701 throw __dom_wrap_exception(e); 9701 throw __dom_wrap_exception(e);
9702 } 9702 }
9703 } 9703 }
9704 9704
9705 function native__HTMLAllCollectionWrappingImplementation__get__HTMLAllCollection _length(_this) { 9705 function native__HTMLAllCollectionWrappingImplementation__get_length(_this) {
9706 try { 9706 try {
9707 return __dom_wrap(_this.$dom.length); 9707 return __dom_wrap(_this.$dom.length);
9708 } catch (e) { 9708 } catch (e) {
9709 throw __dom_wrap_exception(e); 9709 throw __dom_wrap_exception(e);
9710 } 9710 }
9711 } 9711 }
9712 9712
9713 function native__HTMLAllCollectionWrappingImplementation__item(_this, index) { 9713 function native__HTMLAllCollectionWrappingImplementation__item(_this, index) {
9714 try { 9714 try {
9715 return __dom_wrap(_this.$dom.item(__dom_unwrap(index))); 9715 return __dom_wrap(_this.$dom.item(__dom_unwrap(index)));
(...skipping 11 matching lines...) Expand all
9727 } 9727 }
9728 9728
9729 function native__HTMLAllCollectionWrappingImplementation__tags(_this, name) { 9729 function native__HTMLAllCollectionWrappingImplementation__tags(_this, name) {
9730 try { 9730 try {
9731 return __dom_wrap(_this.$dom.tags(__dom_unwrap(name))); 9731 return __dom_wrap(_this.$dom.tags(__dom_unwrap(name)));
9732 } catch (e) { 9732 } catch (e) {
9733 throw __dom_wrap_exception(e); 9733 throw __dom_wrap_exception(e);
9734 } 9734 }
9735 } 9735 }
9736 9736
9737 function native__HTMLAnchorElementWrappingImplementation__get__HTMLAnchorElement _accessKey(_this) { 9737 function native__HTMLAnchorElementWrappingImplementation__get_accessKey(_this) {
9738 try { 9738 try {
9739 return __dom_wrap(_this.$dom.accessKey); 9739 return __dom_wrap(_this.$dom.accessKey);
9740 } catch (e) { 9740 } catch (e) {
9741 throw __dom_wrap_exception(e); 9741 throw __dom_wrap_exception(e);
9742 } 9742 }
9743 } 9743 }
9744 9744
9745 function native__HTMLAnchorElementWrappingImplementation__set__HTMLAnchorElement _accessKey(_this, value) { 9745 function native__HTMLAnchorElementWrappingImplementation__set_accessKey(_this, v alue) {
9746 try { 9746 try {
9747 _this.$dom.accessKey = __dom_unwrap(value); 9747 _this.$dom.accessKey = __dom_unwrap(value);
9748 } catch (e) { 9748 } catch (e) {
9749 throw __dom_wrap_exception(e); 9749 throw __dom_wrap_exception(e);
9750 } 9750 }
9751 } 9751 }
9752 9752
9753 function native__HTMLAnchorElementWrappingImplementation__get__HTMLAnchorElement _charset(_this) { 9753 function native__HTMLAnchorElementWrappingImplementation__get_charset(_this) {
9754 try { 9754 try {
9755 return __dom_wrap(_this.$dom.charset); 9755 return __dom_wrap(_this.$dom.charset);
9756 } catch (e) { 9756 } catch (e) {
9757 throw __dom_wrap_exception(e); 9757 throw __dom_wrap_exception(e);
9758 } 9758 }
9759 } 9759 }
9760 9760
9761 function native__HTMLAnchorElementWrappingImplementation__set__HTMLAnchorElement _charset(_this, value) { 9761 function native__HTMLAnchorElementWrappingImplementation__set_charset(_this, val ue) {
9762 try { 9762 try {
9763 _this.$dom.charset = __dom_unwrap(value); 9763 _this.$dom.charset = __dom_unwrap(value);
9764 } catch (e) { 9764 } catch (e) {
9765 throw __dom_wrap_exception(e); 9765 throw __dom_wrap_exception(e);
9766 } 9766 }
9767 } 9767 }
9768 9768
9769 function native__HTMLAnchorElementWrappingImplementation__get__HTMLAnchorElement _coords(_this) { 9769 function native__HTMLAnchorElementWrappingImplementation__get_coords(_this) {
9770 try { 9770 try {
9771 return __dom_wrap(_this.$dom.coords); 9771 return __dom_wrap(_this.$dom.coords);
9772 } catch (e) { 9772 } catch (e) {
9773 throw __dom_wrap_exception(e); 9773 throw __dom_wrap_exception(e);
9774 } 9774 }
9775 } 9775 }
9776 9776
9777 function native__HTMLAnchorElementWrappingImplementation__set__HTMLAnchorElement _coords(_this, value) { 9777 function native__HTMLAnchorElementWrappingImplementation__set_coords(_this, valu e) {
9778 try { 9778 try {
9779 _this.$dom.coords = __dom_unwrap(value); 9779 _this.$dom.coords = __dom_unwrap(value);
9780 } catch (e) { 9780 } catch (e) {
9781 throw __dom_wrap_exception(e); 9781 throw __dom_wrap_exception(e);
9782 } 9782 }
9783 } 9783 }
9784 9784
9785 function native__HTMLAnchorElementWrappingImplementation__get__HTMLAnchorElement _download(_this) { 9785 function native__HTMLAnchorElementWrappingImplementation__get_download(_this) {
9786 try { 9786 try {
9787 return __dom_wrap(_this.$dom.download); 9787 return __dom_wrap(_this.$dom.download);
9788 } catch (e) { 9788 } catch (e) {
9789 throw __dom_wrap_exception(e); 9789 throw __dom_wrap_exception(e);
9790 } 9790 }
9791 } 9791 }
9792 9792
9793 function native__HTMLAnchorElementWrappingImplementation__set__HTMLAnchorElement _download(_this, value) { 9793 function native__HTMLAnchorElementWrappingImplementation__set_download(_this, va lue) {
9794 try { 9794 try {
9795 _this.$dom.download = __dom_unwrap(value); 9795 _this.$dom.download = __dom_unwrap(value);
9796 } catch (e) { 9796 } catch (e) {
9797 throw __dom_wrap_exception(e); 9797 throw __dom_wrap_exception(e);
9798 } 9798 }
9799 } 9799 }
9800 9800
9801 function native__HTMLAnchorElementWrappingImplementation__get__HTMLAnchorElement _hash(_this) { 9801 function native__HTMLAnchorElementWrappingImplementation__get_hash(_this) {
9802 try { 9802 try {
9803 return __dom_wrap(_this.$dom.hash); 9803 return __dom_wrap(_this.$dom.hash);
9804 } catch (e) { 9804 } catch (e) {
9805 throw __dom_wrap_exception(e); 9805 throw __dom_wrap_exception(e);
9806 } 9806 }
9807 } 9807 }
9808 9808
9809 function native__HTMLAnchorElementWrappingImplementation__set__HTMLAnchorElement _hash(_this, value) { 9809 function native__HTMLAnchorElementWrappingImplementation__set_hash(_this, value) {
9810 try { 9810 try {
9811 _this.$dom.hash = __dom_unwrap(value); 9811 _this.$dom.hash = __dom_unwrap(value);
9812 } catch (e) { 9812 } catch (e) {
9813 throw __dom_wrap_exception(e); 9813 throw __dom_wrap_exception(e);
9814 } 9814 }
9815 } 9815 }
9816 9816
9817 function native__HTMLAnchorElementWrappingImplementation__get__HTMLAnchorElement _host(_this) { 9817 function native__HTMLAnchorElementWrappingImplementation__get_host(_this) {
9818 try { 9818 try {
9819 return __dom_wrap(_this.$dom.host); 9819 return __dom_wrap(_this.$dom.host);
9820 } catch (e) { 9820 } catch (e) {
9821 throw __dom_wrap_exception(e); 9821 throw __dom_wrap_exception(e);
9822 } 9822 }
9823 } 9823 }
9824 9824
9825 function native__HTMLAnchorElementWrappingImplementation__set__HTMLAnchorElement _host(_this, value) { 9825 function native__HTMLAnchorElementWrappingImplementation__set_host(_this, value) {
9826 try { 9826 try {
9827 _this.$dom.host = __dom_unwrap(value); 9827 _this.$dom.host = __dom_unwrap(value);
9828 } catch (e) { 9828 } catch (e) {
9829 throw __dom_wrap_exception(e); 9829 throw __dom_wrap_exception(e);
9830 } 9830 }
9831 } 9831 }
9832 9832
9833 function native__HTMLAnchorElementWrappingImplementation__get__HTMLAnchorElement _hostname(_this) { 9833 function native__HTMLAnchorElementWrappingImplementation__get_hostname(_this) {
9834 try { 9834 try {
9835 return __dom_wrap(_this.$dom.hostname); 9835 return __dom_wrap(_this.$dom.hostname);
9836 } catch (e) { 9836 } catch (e) {
9837 throw __dom_wrap_exception(e); 9837 throw __dom_wrap_exception(e);
9838 } 9838 }
9839 } 9839 }
9840 9840
9841 function native__HTMLAnchorElementWrappingImplementation__set__HTMLAnchorElement _hostname(_this, value) { 9841 function native__HTMLAnchorElementWrappingImplementation__set_hostname(_this, va lue) {
9842 try { 9842 try {
9843 _this.$dom.hostname = __dom_unwrap(value); 9843 _this.$dom.hostname = __dom_unwrap(value);
9844 } catch (e) { 9844 } catch (e) {
9845 throw __dom_wrap_exception(e); 9845 throw __dom_wrap_exception(e);
9846 } 9846 }
9847 } 9847 }
9848 9848
9849 function native__HTMLAnchorElementWrappingImplementation__get__HTMLAnchorElement _href(_this) { 9849 function native__HTMLAnchorElementWrappingImplementation__get_href(_this) {
9850 try { 9850 try {
9851 return __dom_wrap(_this.$dom.href); 9851 return __dom_wrap(_this.$dom.href);
9852 } catch (e) { 9852 } catch (e) {
9853 throw __dom_wrap_exception(e); 9853 throw __dom_wrap_exception(e);
9854 } 9854 }
9855 } 9855 }
9856 9856
9857 function native__HTMLAnchorElementWrappingImplementation__set__HTMLAnchorElement _href(_this, value) { 9857 function native__HTMLAnchorElementWrappingImplementation__set_href(_this, value) {
9858 try { 9858 try {
9859 _this.$dom.href = __dom_unwrap(value); 9859 _this.$dom.href = __dom_unwrap(value);
9860 } catch (e) { 9860 } catch (e) {
9861 throw __dom_wrap_exception(e); 9861 throw __dom_wrap_exception(e);
9862 } 9862 }
9863 } 9863 }
9864 9864
9865 function native__HTMLAnchorElementWrappingImplementation__get__HTMLAnchorElement _hreflang(_this) { 9865 function native__HTMLAnchorElementWrappingImplementation__get_hreflang(_this) {
9866 try { 9866 try {
9867 return __dom_wrap(_this.$dom.hreflang); 9867 return __dom_wrap(_this.$dom.hreflang);
9868 } catch (e) { 9868 } catch (e) {
9869 throw __dom_wrap_exception(e); 9869 throw __dom_wrap_exception(e);
9870 } 9870 }
9871 } 9871 }
9872 9872
9873 function native__HTMLAnchorElementWrappingImplementation__set__HTMLAnchorElement _hreflang(_this, value) { 9873 function native__HTMLAnchorElementWrappingImplementation__set_hreflang(_this, va lue) {
9874 try { 9874 try {
9875 _this.$dom.hreflang = __dom_unwrap(value); 9875 _this.$dom.hreflang = __dom_unwrap(value);
9876 } catch (e) { 9876 } catch (e) {
9877 throw __dom_wrap_exception(e); 9877 throw __dom_wrap_exception(e);
9878 } 9878 }
9879 } 9879 }
9880 9880
9881 function native__HTMLAnchorElementWrappingImplementation__get__HTMLAnchorElement _name(_this) { 9881 function native__HTMLAnchorElementWrappingImplementation__get_name(_this) {
9882 try { 9882 try {
9883 return __dom_wrap(_this.$dom.name); 9883 return __dom_wrap(_this.$dom.name);
9884 } catch (e) { 9884 } catch (e) {
9885 throw __dom_wrap_exception(e); 9885 throw __dom_wrap_exception(e);
9886 } 9886 }
9887 } 9887 }
9888 9888
9889 function native__HTMLAnchorElementWrappingImplementation__set__HTMLAnchorElement _name(_this, value) { 9889 function native__HTMLAnchorElementWrappingImplementation__set_name(_this, value) {
9890 try { 9890 try {
9891 _this.$dom.name = __dom_unwrap(value); 9891 _this.$dom.name = __dom_unwrap(value);
9892 } catch (e) { 9892 } catch (e) {
9893 throw __dom_wrap_exception(e); 9893 throw __dom_wrap_exception(e);
9894 } 9894 }
9895 } 9895 }
9896 9896
9897 function native__HTMLAnchorElementWrappingImplementation__get__HTMLAnchorElement _origin(_this) { 9897 function native__HTMLAnchorElementWrappingImplementation__get_origin(_this) {
9898 try { 9898 try {
9899 return __dom_wrap(_this.$dom.origin); 9899 return __dom_wrap(_this.$dom.origin);
9900 } catch (e) { 9900 } catch (e) {
9901 throw __dom_wrap_exception(e); 9901 throw __dom_wrap_exception(e);
9902 } 9902 }
9903 } 9903 }
9904 9904
9905 function native__HTMLAnchorElementWrappingImplementation__get__HTMLAnchorElement _pathname(_this) { 9905 function native__HTMLAnchorElementWrappingImplementation__get_pathname(_this) {
9906 try { 9906 try {
9907 return __dom_wrap(_this.$dom.pathname); 9907 return __dom_wrap(_this.$dom.pathname);
9908 } catch (e) { 9908 } catch (e) {
9909 throw __dom_wrap_exception(e); 9909 throw __dom_wrap_exception(e);
9910 } 9910 }
9911 } 9911 }
9912 9912
9913 function native__HTMLAnchorElementWrappingImplementation__set__HTMLAnchorElement _pathname(_this, value) { 9913 function native__HTMLAnchorElementWrappingImplementation__set_pathname(_this, va lue) {
9914 try { 9914 try {
9915 _this.$dom.pathname = __dom_unwrap(value); 9915 _this.$dom.pathname = __dom_unwrap(value);
9916 } catch (e) { 9916 } catch (e) {
9917 throw __dom_wrap_exception(e); 9917 throw __dom_wrap_exception(e);
9918 } 9918 }
9919 } 9919 }
9920 9920
9921 function native__HTMLAnchorElementWrappingImplementation__get__HTMLAnchorElement _ping(_this) { 9921 function native__HTMLAnchorElementWrappingImplementation__get_ping(_this) {
9922 try { 9922 try {
9923 return __dom_wrap(_this.$dom.ping); 9923 return __dom_wrap(_this.$dom.ping);
9924 } catch (e) { 9924 } catch (e) {
9925 throw __dom_wrap_exception(e); 9925 throw __dom_wrap_exception(e);
9926 } 9926 }
9927 } 9927 }
9928 9928
9929 function native__HTMLAnchorElementWrappingImplementation__set__HTMLAnchorElement _ping(_this, value) { 9929 function native__HTMLAnchorElementWrappingImplementation__set_ping(_this, value) {
9930 try { 9930 try {
9931 _this.$dom.ping = __dom_unwrap(value); 9931 _this.$dom.ping = __dom_unwrap(value);
9932 } catch (e) { 9932 } catch (e) {
9933 throw __dom_wrap_exception(e); 9933 throw __dom_wrap_exception(e);
9934 } 9934 }
9935 } 9935 }
9936 9936
9937 function native__HTMLAnchorElementWrappingImplementation__get__HTMLAnchorElement _port(_this) { 9937 function native__HTMLAnchorElementWrappingImplementation__get_port(_this) {
9938 try { 9938 try {
9939 return __dom_wrap(_this.$dom.port); 9939 return __dom_wrap(_this.$dom.port);
9940 } catch (e) { 9940 } catch (e) {
9941 throw __dom_wrap_exception(e); 9941 throw __dom_wrap_exception(e);
9942 } 9942 }
9943 } 9943 }
9944 9944
9945 function native__HTMLAnchorElementWrappingImplementation__set__HTMLAnchorElement _port(_this, value) { 9945 function native__HTMLAnchorElementWrappingImplementation__set_port(_this, value) {
9946 try { 9946 try {
9947 _this.$dom.port = __dom_unwrap(value); 9947 _this.$dom.port = __dom_unwrap(value);
9948 } catch (e) { 9948 } catch (e) {
9949 throw __dom_wrap_exception(e); 9949 throw __dom_wrap_exception(e);
9950 } 9950 }
9951 } 9951 }
9952 9952
9953 function native__HTMLAnchorElementWrappingImplementation__get__HTMLAnchorElement _protocol(_this) { 9953 function native__HTMLAnchorElementWrappingImplementation__get_protocol(_this) {
9954 try { 9954 try {
9955 return __dom_wrap(_this.$dom.protocol); 9955 return __dom_wrap(_this.$dom.protocol);
9956 } catch (e) { 9956 } catch (e) {
9957 throw __dom_wrap_exception(e); 9957 throw __dom_wrap_exception(e);
9958 } 9958 }
9959 } 9959 }
9960 9960
9961 function native__HTMLAnchorElementWrappingImplementation__set__HTMLAnchorElement _protocol(_this, value) { 9961 function native__HTMLAnchorElementWrappingImplementation__set_protocol(_this, va lue) {
9962 try { 9962 try {
9963 _this.$dom.protocol = __dom_unwrap(value); 9963 _this.$dom.protocol = __dom_unwrap(value);
9964 } catch (e) { 9964 } catch (e) {
9965 throw __dom_wrap_exception(e); 9965 throw __dom_wrap_exception(e);
9966 } 9966 }
9967 } 9967 }
9968 9968
9969 function native__HTMLAnchorElementWrappingImplementation__get__HTMLAnchorElement _rel(_this) { 9969 function native__HTMLAnchorElementWrappingImplementation__get_rel(_this) {
9970 try { 9970 try {
9971 return __dom_wrap(_this.$dom.rel); 9971 return __dom_wrap(_this.$dom.rel);
9972 } catch (e) { 9972 } catch (e) {
9973 throw __dom_wrap_exception(e); 9973 throw __dom_wrap_exception(e);
9974 } 9974 }
9975 } 9975 }
9976 9976
9977 function native__HTMLAnchorElementWrappingImplementation__set__HTMLAnchorElement _rel(_this, value) { 9977 function native__HTMLAnchorElementWrappingImplementation__set_rel(_this, value) {
9978 try { 9978 try {
9979 _this.$dom.rel = __dom_unwrap(value); 9979 _this.$dom.rel = __dom_unwrap(value);
9980 } catch (e) { 9980 } catch (e) {
9981 throw __dom_wrap_exception(e); 9981 throw __dom_wrap_exception(e);
9982 } 9982 }
9983 } 9983 }
9984 9984
9985 function native__HTMLAnchorElementWrappingImplementation__get__HTMLAnchorElement _rev(_this) { 9985 function native__HTMLAnchorElementWrappingImplementation__get_rev(_this) {
9986 try { 9986 try {
9987 return __dom_wrap(_this.$dom.rev); 9987 return __dom_wrap(_this.$dom.rev);
9988 } catch (e) { 9988 } catch (e) {
9989 throw __dom_wrap_exception(e); 9989 throw __dom_wrap_exception(e);
9990 } 9990 }
9991 } 9991 }
9992 9992
9993 function native__HTMLAnchorElementWrappingImplementation__set__HTMLAnchorElement _rev(_this, value) { 9993 function native__HTMLAnchorElementWrappingImplementation__set_rev(_this, value) {
9994 try { 9994 try {
9995 _this.$dom.rev = __dom_unwrap(value); 9995 _this.$dom.rev = __dom_unwrap(value);
9996 } catch (e) { 9996 } catch (e) {
9997 throw __dom_wrap_exception(e); 9997 throw __dom_wrap_exception(e);
9998 } 9998 }
9999 } 9999 }
10000 10000
10001 function native__HTMLAnchorElementWrappingImplementation__get__HTMLAnchorElement _search(_this) { 10001 function native__HTMLAnchorElementWrappingImplementation__get_search(_this) {
10002 try { 10002 try {
10003 return __dom_wrap(_this.$dom.search); 10003 return __dom_wrap(_this.$dom.search);
10004 } catch (e) { 10004 } catch (e) {
10005 throw __dom_wrap_exception(e); 10005 throw __dom_wrap_exception(e);
10006 } 10006 }
10007 } 10007 }
10008 10008
10009 function native__HTMLAnchorElementWrappingImplementation__set__HTMLAnchorElement _search(_this, value) { 10009 function native__HTMLAnchorElementWrappingImplementation__set_search(_this, valu e) {
10010 try { 10010 try {
10011 _this.$dom.search = __dom_unwrap(value); 10011 _this.$dom.search = __dom_unwrap(value);
10012 } catch (e) { 10012 } catch (e) {
10013 throw __dom_wrap_exception(e); 10013 throw __dom_wrap_exception(e);
10014 } 10014 }
10015 } 10015 }
10016 10016
10017 function native__HTMLAnchorElementWrappingImplementation__get__HTMLAnchorElement _shape(_this) { 10017 function native__HTMLAnchorElementWrappingImplementation__get_shape(_this) {
10018 try { 10018 try {
10019 return __dom_wrap(_this.$dom.shape); 10019 return __dom_wrap(_this.$dom.shape);
10020 } catch (e) { 10020 } catch (e) {
10021 throw __dom_wrap_exception(e); 10021 throw __dom_wrap_exception(e);
10022 } 10022 }
10023 } 10023 }
10024 10024
10025 function native__HTMLAnchorElementWrappingImplementation__set__HTMLAnchorElement _shape(_this, value) { 10025 function native__HTMLAnchorElementWrappingImplementation__set_shape(_this, value ) {
10026 try { 10026 try {
10027 _this.$dom.shape = __dom_unwrap(value); 10027 _this.$dom.shape = __dom_unwrap(value);
10028 } catch (e) { 10028 } catch (e) {
10029 throw __dom_wrap_exception(e); 10029 throw __dom_wrap_exception(e);
10030 } 10030 }
10031 } 10031 }
10032 10032
10033 function native__HTMLAnchorElementWrappingImplementation__get__HTMLAnchorElement _target(_this) { 10033 function native__HTMLAnchorElementWrappingImplementation__get_target(_this) {
10034 try { 10034 try {
10035 return __dom_wrap(_this.$dom.target); 10035 return __dom_wrap(_this.$dom.target);
10036 } catch (e) { 10036 } catch (e) {
10037 throw __dom_wrap_exception(e); 10037 throw __dom_wrap_exception(e);
10038 } 10038 }
10039 } 10039 }
10040 10040
10041 function native__HTMLAnchorElementWrappingImplementation__set__HTMLAnchorElement _target(_this, value) { 10041 function native__HTMLAnchorElementWrappingImplementation__set_target(_this, valu e) {
10042 try { 10042 try {
10043 _this.$dom.target = __dom_unwrap(value); 10043 _this.$dom.target = __dom_unwrap(value);
10044 } catch (e) { 10044 } catch (e) {
10045 throw __dom_wrap_exception(e); 10045 throw __dom_wrap_exception(e);
10046 } 10046 }
10047 } 10047 }
10048 10048
10049 function native__HTMLAnchorElementWrappingImplementation__get__HTMLAnchorElement _text(_this) { 10049 function native__HTMLAnchorElementWrappingImplementation__get_text(_this) {
10050 try { 10050 try {
10051 return __dom_wrap(_this.$dom.text); 10051 return __dom_wrap(_this.$dom.text);
10052 } catch (e) { 10052 } catch (e) {
10053 throw __dom_wrap_exception(e); 10053 throw __dom_wrap_exception(e);
10054 } 10054 }
10055 } 10055 }
10056 10056
10057 function native__HTMLAnchorElementWrappingImplementation__get__HTMLAnchorElement _type(_this) { 10057 function native__HTMLAnchorElementWrappingImplementation__get_type(_this) {
10058 try { 10058 try {
10059 return __dom_wrap(_this.$dom.type); 10059 return __dom_wrap(_this.$dom.type);
10060 } catch (e) { 10060 } catch (e) {
10061 throw __dom_wrap_exception(e); 10061 throw __dom_wrap_exception(e);
10062 } 10062 }
10063 } 10063 }
10064 10064
10065 function native__HTMLAnchorElementWrappingImplementation__set__HTMLAnchorElement _type(_this, value) { 10065 function native__HTMLAnchorElementWrappingImplementation__set_type(_this, value) {
10066 try { 10066 try {
10067 _this.$dom.type = __dom_unwrap(value); 10067 _this.$dom.type = __dom_unwrap(value);
10068 } catch (e) { 10068 } catch (e) {
10069 throw __dom_wrap_exception(e); 10069 throw __dom_wrap_exception(e);
10070 } 10070 }
10071 } 10071 }
10072 10072
10073 function native__HTMLAnchorElementWrappingImplementation__getParameter(_this, na me) { 10073 function native__HTMLAnchorElementWrappingImplementation__getParameter(_this, na me) {
10074 try { 10074 try {
10075 return __dom_wrap(_this.$dom.getParameter(__dom_unwrap(name))); 10075 return __dom_wrap(_this.$dom.getParameter(__dom_unwrap(name)));
10076 } catch (e) { 10076 } catch (e) {
10077 throw __dom_wrap_exception(e); 10077 throw __dom_wrap_exception(e);
10078 } 10078 }
10079 } 10079 }
10080 10080
10081 function native__HTMLAnchorElementWrappingImplementation__toString(_this) { 10081 function native__HTMLAnchorElementWrappingImplementation__toString(_this) {
10082 try { 10082 try {
10083 return __dom_wrap(_this.$dom.toString()); 10083 return __dom_wrap(_this.$dom.toString());
10084 } catch (e) { 10084 } catch (e) {
10085 throw __dom_wrap_exception(e); 10085 throw __dom_wrap_exception(e);
10086 } 10086 }
10087 } 10087 }
10088 10088
10089 function native__HTMLAppletElementWrappingImplementation__get__HTMLAppletElement _align(_this) { 10089 function native__HTMLAppletElementWrappingImplementation__get_align(_this) {
10090 try { 10090 try {
10091 return __dom_wrap(_this.$dom.align); 10091 return __dom_wrap(_this.$dom.align);
10092 } catch (e) { 10092 } catch (e) {
10093 throw __dom_wrap_exception(e); 10093 throw __dom_wrap_exception(e);
10094 } 10094 }
10095 } 10095 }
10096 10096
10097 function native__HTMLAppletElementWrappingImplementation__set__HTMLAppletElement _align(_this, value) { 10097 function native__HTMLAppletElementWrappingImplementation__set_align(_this, value ) {
10098 try { 10098 try {
10099 _this.$dom.align = __dom_unwrap(value); 10099 _this.$dom.align = __dom_unwrap(value);
10100 } catch (e) { 10100 } catch (e) {
10101 throw __dom_wrap_exception(e); 10101 throw __dom_wrap_exception(e);
10102 } 10102 }
10103 } 10103 }
10104 10104
10105 function native__HTMLAppletElementWrappingImplementation__get__HTMLAppletElement _alt(_this) { 10105 function native__HTMLAppletElementWrappingImplementation__get_alt(_this) {
10106 try { 10106 try {
10107 return __dom_wrap(_this.$dom.alt); 10107 return __dom_wrap(_this.$dom.alt);
10108 } catch (e) { 10108 } catch (e) {
10109 throw __dom_wrap_exception(e); 10109 throw __dom_wrap_exception(e);
10110 } 10110 }
10111 } 10111 }
10112 10112
10113 function native__HTMLAppletElementWrappingImplementation__set__HTMLAppletElement _alt(_this, value) { 10113 function native__HTMLAppletElementWrappingImplementation__set_alt(_this, value) {
10114 try { 10114 try {
10115 _this.$dom.alt = __dom_unwrap(value); 10115 _this.$dom.alt = __dom_unwrap(value);
10116 } catch (e) { 10116 } catch (e) {
10117 throw __dom_wrap_exception(e); 10117 throw __dom_wrap_exception(e);
10118 } 10118 }
10119 } 10119 }
10120 10120
10121 function native__HTMLAppletElementWrappingImplementation__get__HTMLAppletElement _archive(_this) { 10121 function native__HTMLAppletElementWrappingImplementation__get_archive(_this) {
10122 try { 10122 try {
10123 return __dom_wrap(_this.$dom.archive); 10123 return __dom_wrap(_this.$dom.archive);
10124 } catch (e) { 10124 } catch (e) {
10125 throw __dom_wrap_exception(e); 10125 throw __dom_wrap_exception(e);
10126 } 10126 }
10127 } 10127 }
10128 10128
10129 function native__HTMLAppletElementWrappingImplementation__set__HTMLAppletElement _archive(_this, value) { 10129 function native__HTMLAppletElementWrappingImplementation__set_archive(_this, val ue) {
10130 try { 10130 try {
10131 _this.$dom.archive = __dom_unwrap(value); 10131 _this.$dom.archive = __dom_unwrap(value);
10132 } catch (e) { 10132 } catch (e) {
10133 throw __dom_wrap_exception(e); 10133 throw __dom_wrap_exception(e);
10134 } 10134 }
10135 } 10135 }
10136 10136
10137 function native__HTMLAppletElementWrappingImplementation__get__HTMLAppletElement _code(_this) { 10137 function native__HTMLAppletElementWrappingImplementation__get_code(_this) {
10138 try { 10138 try {
10139 return __dom_wrap(_this.$dom.code); 10139 return __dom_wrap(_this.$dom.code);
10140 } catch (e) { 10140 } catch (e) {
10141 throw __dom_wrap_exception(e); 10141 throw __dom_wrap_exception(e);
10142 } 10142 }
10143 } 10143 }
10144 10144
10145 function native__HTMLAppletElementWrappingImplementation__set__HTMLAppletElement _code(_this, value) { 10145 function native__HTMLAppletElementWrappingImplementation__set_code(_this, value) {
10146 try { 10146 try {
10147 _this.$dom.code = __dom_unwrap(value); 10147 _this.$dom.code = __dom_unwrap(value);
10148 } catch (e) { 10148 } catch (e) {
10149 throw __dom_wrap_exception(e); 10149 throw __dom_wrap_exception(e);
10150 } 10150 }
10151 } 10151 }
10152 10152
10153 function native__HTMLAppletElementWrappingImplementation__get__HTMLAppletElement _codeBase(_this) { 10153 function native__HTMLAppletElementWrappingImplementation__get_codeBase(_this) {
10154 try { 10154 try {
10155 return __dom_wrap(_this.$dom.codeBase); 10155 return __dom_wrap(_this.$dom.codeBase);
10156 } catch (e) { 10156 } catch (e) {
10157 throw __dom_wrap_exception(e); 10157 throw __dom_wrap_exception(e);
10158 } 10158 }
10159 } 10159 }
10160 10160
10161 function native__HTMLAppletElementWrappingImplementation__set__HTMLAppletElement _codeBase(_this, value) { 10161 function native__HTMLAppletElementWrappingImplementation__set_codeBase(_this, va lue) {
10162 try { 10162 try {
10163 _this.$dom.codeBase = __dom_unwrap(value); 10163 _this.$dom.codeBase = __dom_unwrap(value);
10164 } catch (e) { 10164 } catch (e) {
10165 throw __dom_wrap_exception(e); 10165 throw __dom_wrap_exception(e);
10166 } 10166 }
10167 } 10167 }
10168 10168
10169 function native__HTMLAppletElementWrappingImplementation__get__HTMLAppletElement _height(_this) { 10169 function native__HTMLAppletElementWrappingImplementation__get_height(_this) {
10170 try { 10170 try {
10171 return __dom_wrap(_this.$dom.height); 10171 return __dom_wrap(_this.$dom.height);
10172 } catch (e) { 10172 } catch (e) {
10173 throw __dom_wrap_exception(e); 10173 throw __dom_wrap_exception(e);
10174 } 10174 }
10175 } 10175 }
10176 10176
10177 function native__HTMLAppletElementWrappingImplementation__set__HTMLAppletElement _height(_this, value) { 10177 function native__HTMLAppletElementWrappingImplementation__set_height(_this, valu e) {
10178 try { 10178 try {
10179 _this.$dom.height = __dom_unwrap(value); 10179 _this.$dom.height = __dom_unwrap(value);
10180 } catch (e) { 10180 } catch (e) {
10181 throw __dom_wrap_exception(e); 10181 throw __dom_wrap_exception(e);
10182 } 10182 }
10183 } 10183 }
10184 10184
10185 function native__HTMLAppletElementWrappingImplementation__get__HTMLAppletElement _hspace(_this) { 10185 function native__HTMLAppletElementWrappingImplementation__get_hspace(_this) {
10186 try { 10186 try {
10187 return __dom_wrap(_this.$dom.hspace); 10187 return __dom_wrap(_this.$dom.hspace);
10188 } catch (e) { 10188 } catch (e) {
10189 throw __dom_wrap_exception(e); 10189 throw __dom_wrap_exception(e);
10190 } 10190 }
10191 } 10191 }
10192 10192
10193 function native__HTMLAppletElementWrappingImplementation__set__HTMLAppletElement _hspace(_this, value) { 10193 function native__HTMLAppletElementWrappingImplementation__set_hspace(_this, valu e) {
10194 try { 10194 try {
10195 _this.$dom.hspace = __dom_unwrap(value); 10195 _this.$dom.hspace = __dom_unwrap(value);
10196 } catch (e) { 10196 } catch (e) {
10197 throw __dom_wrap_exception(e); 10197 throw __dom_wrap_exception(e);
10198 } 10198 }
10199 } 10199 }
10200 10200
10201 function native__HTMLAppletElementWrappingImplementation__get__HTMLAppletElement _name(_this) { 10201 function native__HTMLAppletElementWrappingImplementation__get_name(_this) {
10202 try { 10202 try {
10203 return __dom_wrap(_this.$dom.name); 10203 return __dom_wrap(_this.$dom.name);
10204 } catch (e) { 10204 } catch (e) {
10205 throw __dom_wrap_exception(e); 10205 throw __dom_wrap_exception(e);
10206 } 10206 }
10207 } 10207 }
10208 10208
10209 function native__HTMLAppletElementWrappingImplementation__set__HTMLAppletElement _name(_this, value) { 10209 function native__HTMLAppletElementWrappingImplementation__set_name(_this, value) {
10210 try { 10210 try {
10211 _this.$dom.name = __dom_unwrap(value); 10211 _this.$dom.name = __dom_unwrap(value);
10212 } catch (e) { 10212 } catch (e) {
10213 throw __dom_wrap_exception(e); 10213 throw __dom_wrap_exception(e);
10214 } 10214 }
10215 } 10215 }
10216 10216
10217 function native__HTMLAppletElementWrappingImplementation__get__HTMLAppletElement _object(_this) { 10217 function native__HTMLAppletElementWrappingImplementation__get_object(_this) {
10218 try { 10218 try {
10219 return __dom_wrap(_this.$dom.object); 10219 return __dom_wrap(_this.$dom.object);
10220 } catch (e) { 10220 } catch (e) {
10221 throw __dom_wrap_exception(e); 10221 throw __dom_wrap_exception(e);
10222 } 10222 }
10223 } 10223 }
10224 10224
10225 function native__HTMLAppletElementWrappingImplementation__set__HTMLAppletElement _object(_this, value) { 10225 function native__HTMLAppletElementWrappingImplementation__set_object(_this, valu e) {
10226 try { 10226 try {
10227 _this.$dom.object = __dom_unwrap(value); 10227 _this.$dom.object = __dom_unwrap(value);
10228 } catch (e) { 10228 } catch (e) {
10229 throw __dom_wrap_exception(e); 10229 throw __dom_wrap_exception(e);
10230 } 10230 }
10231 } 10231 }
10232 10232
10233 function native__HTMLAppletElementWrappingImplementation__get__HTMLAppletElement _vspace(_this) { 10233 function native__HTMLAppletElementWrappingImplementation__get_vspace(_this) {
10234 try { 10234 try {
10235 return __dom_wrap(_this.$dom.vspace); 10235 return __dom_wrap(_this.$dom.vspace);
10236 } catch (e) { 10236 } catch (e) {
10237 throw __dom_wrap_exception(e); 10237 throw __dom_wrap_exception(e);
10238 } 10238 }
10239 } 10239 }
10240 10240
10241 function native__HTMLAppletElementWrappingImplementation__set__HTMLAppletElement _vspace(_this, value) { 10241 function native__HTMLAppletElementWrappingImplementation__set_vspace(_this, valu e) {
10242 try { 10242 try {
10243 _this.$dom.vspace = __dom_unwrap(value); 10243 _this.$dom.vspace = __dom_unwrap(value);
10244 } catch (e) { 10244 } catch (e) {
10245 throw __dom_wrap_exception(e); 10245 throw __dom_wrap_exception(e);
10246 } 10246 }
10247 } 10247 }
10248 10248
10249 function native__HTMLAppletElementWrappingImplementation__get__HTMLAppletElement _width(_this) { 10249 function native__HTMLAppletElementWrappingImplementation__get_width(_this) {
10250 try { 10250 try {
10251 return __dom_wrap(_this.$dom.width); 10251 return __dom_wrap(_this.$dom.width);
10252 } catch (e) { 10252 } catch (e) {
10253 throw __dom_wrap_exception(e); 10253 throw __dom_wrap_exception(e);
10254 } 10254 }
10255 } 10255 }
10256 10256
10257 function native__HTMLAppletElementWrappingImplementation__set__HTMLAppletElement _width(_this, value) { 10257 function native__HTMLAppletElementWrappingImplementation__set_width(_this, value ) {
10258 try { 10258 try {
10259 _this.$dom.width = __dom_unwrap(value); 10259 _this.$dom.width = __dom_unwrap(value);
10260 } catch (e) { 10260 } catch (e) {
10261 throw __dom_wrap_exception(e); 10261 throw __dom_wrap_exception(e);
10262 } 10262 }
10263 } 10263 }
10264 10264
10265 function native__HTMLAreaElementWrappingImplementation__get__HTMLAreaElement_acc essKey(_this) { 10265 function native__HTMLAreaElementWrappingImplementation__get_accessKey(_this) {
10266 try { 10266 try {
10267 return __dom_wrap(_this.$dom.accessKey); 10267 return __dom_wrap(_this.$dom.accessKey);
10268 } catch (e) { 10268 } catch (e) {
10269 throw __dom_wrap_exception(e); 10269 throw __dom_wrap_exception(e);
10270 } 10270 }
10271 } 10271 }
10272 10272
10273 function native__HTMLAreaElementWrappingImplementation__set__HTMLAreaElement_acc essKey(_this, value) { 10273 function native__HTMLAreaElementWrappingImplementation__set_accessKey(_this, val ue) {
10274 try { 10274 try {
10275 _this.$dom.accessKey = __dom_unwrap(value); 10275 _this.$dom.accessKey = __dom_unwrap(value);
10276 } catch (e) { 10276 } catch (e) {
10277 throw __dom_wrap_exception(e); 10277 throw __dom_wrap_exception(e);
10278 } 10278 }
10279 } 10279 }
10280 10280
10281 function native__HTMLAreaElementWrappingImplementation__get__HTMLAreaElement_alt (_this) { 10281 function native__HTMLAreaElementWrappingImplementation__get_alt(_this) {
10282 try { 10282 try {
10283 return __dom_wrap(_this.$dom.alt); 10283 return __dom_wrap(_this.$dom.alt);
10284 } catch (e) { 10284 } catch (e) {
10285 throw __dom_wrap_exception(e); 10285 throw __dom_wrap_exception(e);
10286 } 10286 }
10287 } 10287 }
10288 10288
10289 function native__HTMLAreaElementWrappingImplementation__set__HTMLAreaElement_alt (_this, value) { 10289 function native__HTMLAreaElementWrappingImplementation__set_alt(_this, value) {
10290 try { 10290 try {
10291 _this.$dom.alt = __dom_unwrap(value); 10291 _this.$dom.alt = __dom_unwrap(value);
10292 } catch (e) { 10292 } catch (e) {
10293 throw __dom_wrap_exception(e); 10293 throw __dom_wrap_exception(e);
10294 } 10294 }
10295 } 10295 }
10296 10296
10297 function native__HTMLAreaElementWrappingImplementation__get__HTMLAreaElement_coo rds(_this) { 10297 function native__HTMLAreaElementWrappingImplementation__get_coords(_this) {
10298 try { 10298 try {
10299 return __dom_wrap(_this.$dom.coords); 10299 return __dom_wrap(_this.$dom.coords);
10300 } catch (e) { 10300 } catch (e) {
10301 throw __dom_wrap_exception(e); 10301 throw __dom_wrap_exception(e);
10302 } 10302 }
10303 } 10303 }
10304 10304
10305 function native__HTMLAreaElementWrappingImplementation__set__HTMLAreaElement_coo rds(_this, value) { 10305 function native__HTMLAreaElementWrappingImplementation__set_coords(_this, value) {
10306 try { 10306 try {
10307 _this.$dom.coords = __dom_unwrap(value); 10307 _this.$dom.coords = __dom_unwrap(value);
10308 } catch (e) { 10308 } catch (e) {
10309 throw __dom_wrap_exception(e); 10309 throw __dom_wrap_exception(e);
10310 } 10310 }
10311 } 10311 }
10312 10312
10313 function native__HTMLAreaElementWrappingImplementation__get__HTMLAreaElement_has h(_this) { 10313 function native__HTMLAreaElementWrappingImplementation__get_hash(_this) {
10314 try { 10314 try {
10315 return __dom_wrap(_this.$dom.hash); 10315 return __dom_wrap(_this.$dom.hash);
10316 } catch (e) { 10316 } catch (e) {
10317 throw __dom_wrap_exception(e); 10317 throw __dom_wrap_exception(e);
10318 } 10318 }
10319 } 10319 }
10320 10320
10321 function native__HTMLAreaElementWrappingImplementation__get__HTMLAreaElement_hos t(_this) { 10321 function native__HTMLAreaElementWrappingImplementation__get_host(_this) {
10322 try { 10322 try {
10323 return __dom_wrap(_this.$dom.host); 10323 return __dom_wrap(_this.$dom.host);
10324 } catch (e) { 10324 } catch (e) {
10325 throw __dom_wrap_exception(e); 10325 throw __dom_wrap_exception(e);
10326 } 10326 }
10327 } 10327 }
10328 10328
10329 function native__HTMLAreaElementWrappingImplementation__get__HTMLAreaElement_hos tname(_this) { 10329 function native__HTMLAreaElementWrappingImplementation__get_hostname(_this) {
10330 try { 10330 try {
10331 return __dom_wrap(_this.$dom.hostname); 10331 return __dom_wrap(_this.$dom.hostname);
10332 } catch (e) { 10332 } catch (e) {
10333 throw __dom_wrap_exception(e); 10333 throw __dom_wrap_exception(e);
10334 } 10334 }
10335 } 10335 }
10336 10336
10337 function native__HTMLAreaElementWrappingImplementation__get__HTMLAreaElement_hre f(_this) { 10337 function native__HTMLAreaElementWrappingImplementation__get_href(_this) {
10338 try { 10338 try {
10339 return __dom_wrap(_this.$dom.href); 10339 return __dom_wrap(_this.$dom.href);
10340 } catch (e) { 10340 } catch (e) {
10341 throw __dom_wrap_exception(e); 10341 throw __dom_wrap_exception(e);
10342 } 10342 }
10343 } 10343 }
10344 10344
10345 function native__HTMLAreaElementWrappingImplementation__set__HTMLAreaElement_hre f(_this, value) { 10345 function native__HTMLAreaElementWrappingImplementation__set_href(_this, value) {
10346 try { 10346 try {
10347 _this.$dom.href = __dom_unwrap(value); 10347 _this.$dom.href = __dom_unwrap(value);
10348 } catch (e) { 10348 } catch (e) {
10349 throw __dom_wrap_exception(e); 10349 throw __dom_wrap_exception(e);
10350 } 10350 }
10351 } 10351 }
10352 10352
10353 function native__HTMLAreaElementWrappingImplementation__get__HTMLAreaElement_noH ref(_this) { 10353 function native__HTMLAreaElementWrappingImplementation__get_noHref(_this) {
10354 try { 10354 try {
10355 return __dom_wrap(_this.$dom.noHref); 10355 return __dom_wrap(_this.$dom.noHref);
10356 } catch (e) { 10356 } catch (e) {
10357 throw __dom_wrap_exception(e); 10357 throw __dom_wrap_exception(e);
10358 } 10358 }
10359 } 10359 }
10360 10360
10361 function native__HTMLAreaElementWrappingImplementation__set__HTMLAreaElement_noH ref(_this, value) { 10361 function native__HTMLAreaElementWrappingImplementation__set_noHref(_this, value) {
10362 try { 10362 try {
10363 _this.$dom.noHref = __dom_unwrap(value); 10363 _this.$dom.noHref = __dom_unwrap(value);
10364 } catch (e) { 10364 } catch (e) {
10365 throw __dom_wrap_exception(e); 10365 throw __dom_wrap_exception(e);
10366 } 10366 }
10367 } 10367 }
10368 10368
10369 function native__HTMLAreaElementWrappingImplementation__get__HTMLAreaElement_pat hname(_this) { 10369 function native__HTMLAreaElementWrappingImplementation__get_pathname(_this) {
10370 try { 10370 try {
10371 return __dom_wrap(_this.$dom.pathname); 10371 return __dom_wrap(_this.$dom.pathname);
10372 } catch (e) { 10372 } catch (e) {
10373 throw __dom_wrap_exception(e); 10373 throw __dom_wrap_exception(e);
10374 } 10374 }
10375 } 10375 }
10376 10376
10377 function native__HTMLAreaElementWrappingImplementation__get__HTMLAreaElement_pin g(_this) { 10377 function native__HTMLAreaElementWrappingImplementation__get_ping(_this) {
10378 try { 10378 try {
10379 return __dom_wrap(_this.$dom.ping); 10379 return __dom_wrap(_this.$dom.ping);
10380 } catch (e) { 10380 } catch (e) {
10381 throw __dom_wrap_exception(e); 10381 throw __dom_wrap_exception(e);
10382 } 10382 }
10383 } 10383 }
10384 10384
10385 function native__HTMLAreaElementWrappingImplementation__set__HTMLAreaElement_pin g(_this, value) { 10385 function native__HTMLAreaElementWrappingImplementation__set_ping(_this, value) {
10386 try { 10386 try {
10387 _this.$dom.ping = __dom_unwrap(value); 10387 _this.$dom.ping = __dom_unwrap(value);
10388 } catch (e) { 10388 } catch (e) {
10389 throw __dom_wrap_exception(e); 10389 throw __dom_wrap_exception(e);
10390 } 10390 }
10391 } 10391 }
10392 10392
10393 function native__HTMLAreaElementWrappingImplementation__get__HTMLAreaElement_por t(_this) { 10393 function native__HTMLAreaElementWrappingImplementation__get_port(_this) {
10394 try { 10394 try {
10395 return __dom_wrap(_this.$dom.port); 10395 return __dom_wrap(_this.$dom.port);
10396 } catch (e) { 10396 } catch (e) {
10397 throw __dom_wrap_exception(e); 10397 throw __dom_wrap_exception(e);
10398 } 10398 }
10399 } 10399 }
10400 10400
10401 function native__HTMLAreaElementWrappingImplementation__get__HTMLAreaElement_pro tocol(_this) { 10401 function native__HTMLAreaElementWrappingImplementation__get_protocol(_this) {
10402 try { 10402 try {
10403 return __dom_wrap(_this.$dom.protocol); 10403 return __dom_wrap(_this.$dom.protocol);
10404 } catch (e) { 10404 } catch (e) {
10405 throw __dom_wrap_exception(e); 10405 throw __dom_wrap_exception(e);
10406 } 10406 }
10407 } 10407 }
10408 10408
10409 function native__HTMLAreaElementWrappingImplementation__get__HTMLAreaElement_sea rch(_this) { 10409 function native__HTMLAreaElementWrappingImplementation__get_search(_this) {
10410 try { 10410 try {
10411 return __dom_wrap(_this.$dom.search); 10411 return __dom_wrap(_this.$dom.search);
10412 } catch (e) { 10412 } catch (e) {
10413 throw __dom_wrap_exception(e); 10413 throw __dom_wrap_exception(e);
10414 } 10414 }
10415 } 10415 }
10416 10416
10417 function native__HTMLAreaElementWrappingImplementation__get__HTMLAreaElement_sha pe(_this) { 10417 function native__HTMLAreaElementWrappingImplementation__get_shape(_this) {
10418 try { 10418 try {
10419 return __dom_wrap(_this.$dom.shape); 10419 return __dom_wrap(_this.$dom.shape);
10420 } catch (e) { 10420 } catch (e) {
10421 throw __dom_wrap_exception(e); 10421 throw __dom_wrap_exception(e);
10422 } 10422 }
10423 } 10423 }
10424 10424
10425 function native__HTMLAreaElementWrappingImplementation__set__HTMLAreaElement_sha pe(_this, value) { 10425 function native__HTMLAreaElementWrappingImplementation__set_shape(_this, value) {
10426 try { 10426 try {
10427 _this.$dom.shape = __dom_unwrap(value); 10427 _this.$dom.shape = __dom_unwrap(value);
10428 } catch (e) { 10428 } catch (e) {
10429 throw __dom_wrap_exception(e); 10429 throw __dom_wrap_exception(e);
10430 } 10430 }
10431 } 10431 }
10432 10432
10433 function native__HTMLAreaElementWrappingImplementation__get__HTMLAreaElement_tar get(_this) { 10433 function native__HTMLAreaElementWrappingImplementation__get_target(_this) {
10434 try { 10434 try {
10435 return __dom_wrap(_this.$dom.target); 10435 return __dom_wrap(_this.$dom.target);
10436 } catch (e) { 10436 } catch (e) {
10437 throw __dom_wrap_exception(e); 10437 throw __dom_wrap_exception(e);
10438 } 10438 }
10439 } 10439 }
10440 10440
10441 function native__HTMLAreaElementWrappingImplementation__set__HTMLAreaElement_tar get(_this, value) { 10441 function native__HTMLAreaElementWrappingImplementation__set_target(_this, value) {
10442 try { 10442 try {
10443 _this.$dom.target = __dom_unwrap(value); 10443 _this.$dom.target = __dom_unwrap(value);
10444 } catch (e) { 10444 } catch (e) {
10445 throw __dom_wrap_exception(e); 10445 throw __dom_wrap_exception(e);
10446 } 10446 }
10447 } 10447 }
10448 10448
10449 function native__HTMLBRElementWrappingImplementation__get__HTMLBRElement_clear(_ this) { 10449 function native__HTMLBRElementWrappingImplementation__get_clear(_this) {
10450 try { 10450 try {
10451 return __dom_wrap(_this.$dom.clear); 10451 return __dom_wrap(_this.$dom.clear);
10452 } catch (e) { 10452 } catch (e) {
10453 throw __dom_wrap_exception(e); 10453 throw __dom_wrap_exception(e);
10454 } 10454 }
10455 } 10455 }
10456 10456
10457 function native__HTMLBRElementWrappingImplementation__set__HTMLBRElement_clear(_ this, value) { 10457 function native__HTMLBRElementWrappingImplementation__set_clear(_this, value) {
10458 try { 10458 try {
10459 _this.$dom.clear = __dom_unwrap(value); 10459 _this.$dom.clear = __dom_unwrap(value);
10460 } catch (e) { 10460 } catch (e) {
10461 throw __dom_wrap_exception(e); 10461 throw __dom_wrap_exception(e);
10462 } 10462 }
10463 } 10463 }
10464 10464
10465 function native__HTMLBaseElementWrappingImplementation__get__HTMLBaseElement_hre f(_this) { 10465 function native__HTMLBaseElementWrappingImplementation__get_href(_this) {
10466 try { 10466 try {
10467 return __dom_wrap(_this.$dom.href); 10467 return __dom_wrap(_this.$dom.href);
10468 } catch (e) { 10468 } catch (e) {
10469 throw __dom_wrap_exception(e); 10469 throw __dom_wrap_exception(e);
10470 } 10470 }
10471 } 10471 }
10472 10472
10473 function native__HTMLBaseElementWrappingImplementation__set__HTMLBaseElement_hre f(_this, value) { 10473 function native__HTMLBaseElementWrappingImplementation__set_href(_this, value) {
10474 try { 10474 try {
10475 _this.$dom.href = __dom_unwrap(value); 10475 _this.$dom.href = __dom_unwrap(value);
10476 } catch (e) { 10476 } catch (e) {
10477 throw __dom_wrap_exception(e); 10477 throw __dom_wrap_exception(e);
10478 } 10478 }
10479 } 10479 }
10480 10480
10481 function native__HTMLBaseElementWrappingImplementation__get__HTMLBaseElement_tar get(_this) { 10481 function native__HTMLBaseElementWrappingImplementation__get_target(_this) {
10482 try { 10482 try {
10483 return __dom_wrap(_this.$dom.target); 10483 return __dom_wrap(_this.$dom.target);
10484 } catch (e) { 10484 } catch (e) {
10485 throw __dom_wrap_exception(e); 10485 throw __dom_wrap_exception(e);
10486 } 10486 }
10487 } 10487 }
10488 10488
10489 function native__HTMLBaseElementWrappingImplementation__set__HTMLBaseElement_tar get(_this, value) { 10489 function native__HTMLBaseElementWrappingImplementation__set_target(_this, value) {
10490 try { 10490 try {
10491 _this.$dom.target = __dom_unwrap(value); 10491 _this.$dom.target = __dom_unwrap(value);
10492 } catch (e) { 10492 } catch (e) {
10493 throw __dom_wrap_exception(e); 10493 throw __dom_wrap_exception(e);
10494 } 10494 }
10495 } 10495 }
10496 10496
10497 function native__HTMLBaseFontElementWrappingImplementation__get__HTMLBaseFontEle ment_color(_this) { 10497 function native__HTMLBaseFontElementWrappingImplementation__get_color(_this) {
10498 try { 10498 try {
10499 return __dom_wrap(_this.$dom.color); 10499 return __dom_wrap(_this.$dom.color);
10500 } catch (e) { 10500 } catch (e) {
10501 throw __dom_wrap_exception(e); 10501 throw __dom_wrap_exception(e);
10502 } 10502 }
10503 } 10503 }
10504 10504
10505 function native__HTMLBaseFontElementWrappingImplementation__set__HTMLBaseFontEle ment_color(_this, value) { 10505 function native__HTMLBaseFontElementWrappingImplementation__set_color(_this, val ue) {
10506 try { 10506 try {
10507 _this.$dom.color = __dom_unwrap(value); 10507 _this.$dom.color = __dom_unwrap(value);
10508 } catch (e) { 10508 } catch (e) {
10509 throw __dom_wrap_exception(e); 10509 throw __dom_wrap_exception(e);
10510 } 10510 }
10511 } 10511 }
10512 10512
10513 function native__HTMLBaseFontElementWrappingImplementation__get__HTMLBaseFontEle ment_face(_this) { 10513 function native__HTMLBaseFontElementWrappingImplementation__get_face(_this) {
10514 try { 10514 try {
10515 return __dom_wrap(_this.$dom.face); 10515 return __dom_wrap(_this.$dom.face);
10516 } catch (e) { 10516 } catch (e) {
10517 throw __dom_wrap_exception(e); 10517 throw __dom_wrap_exception(e);
10518 } 10518 }
10519 } 10519 }
10520 10520
10521 function native__HTMLBaseFontElementWrappingImplementation__set__HTMLBaseFontEle ment_face(_this, value) { 10521 function native__HTMLBaseFontElementWrappingImplementation__set_face(_this, valu e) {
10522 try { 10522 try {
10523 _this.$dom.face = __dom_unwrap(value); 10523 _this.$dom.face = __dom_unwrap(value);
10524 } catch (e) { 10524 } catch (e) {
10525 throw __dom_wrap_exception(e); 10525 throw __dom_wrap_exception(e);
10526 } 10526 }
10527 } 10527 }
10528 10528
10529 function native__HTMLBaseFontElementWrappingImplementation__get__HTMLBaseFontEle ment_size(_this) { 10529 function native__HTMLBaseFontElementWrappingImplementation__get_size(_this) {
10530 try { 10530 try {
10531 return __dom_wrap(_this.$dom.size); 10531 return __dom_wrap(_this.$dom.size);
10532 } catch (e) { 10532 } catch (e) {
10533 throw __dom_wrap_exception(e); 10533 throw __dom_wrap_exception(e);
10534 } 10534 }
10535 } 10535 }
10536 10536
10537 function native__HTMLBaseFontElementWrappingImplementation__set__HTMLBaseFontEle ment_size(_this, value) { 10537 function native__HTMLBaseFontElementWrappingImplementation__set_size(_this, valu e) {
10538 try { 10538 try {
10539 _this.$dom.size = __dom_unwrap(value); 10539 _this.$dom.size = __dom_unwrap(value);
10540 } catch (e) { 10540 } catch (e) {
10541 throw __dom_wrap_exception(e); 10541 throw __dom_wrap_exception(e);
10542 } 10542 }
10543 } 10543 }
10544 10544
10545 function native__HTMLBodyElementWrappingImplementation__get__HTMLBodyElement_aLi nk(_this) { 10545 function native__HTMLBodyElementWrappingImplementation__get_aLink(_this) {
10546 try { 10546 try {
10547 return __dom_wrap(_this.$dom.aLink); 10547 return __dom_wrap(_this.$dom.aLink);
10548 } catch (e) { 10548 } catch (e) {
10549 throw __dom_wrap_exception(e); 10549 throw __dom_wrap_exception(e);
10550 } 10550 }
10551 } 10551 }
10552 10552
10553 function native__HTMLBodyElementWrappingImplementation__set__HTMLBodyElement_aLi nk(_this, value) { 10553 function native__HTMLBodyElementWrappingImplementation__set_aLink(_this, value) {
10554 try { 10554 try {
10555 _this.$dom.aLink = __dom_unwrap(value); 10555 _this.$dom.aLink = __dom_unwrap(value);
10556 } catch (e) { 10556 } catch (e) {
10557 throw __dom_wrap_exception(e); 10557 throw __dom_wrap_exception(e);
10558 } 10558 }
10559 } 10559 }
10560 10560
10561 function native__HTMLBodyElementWrappingImplementation__get__HTMLBodyElement_bac kground(_this) { 10561 function native__HTMLBodyElementWrappingImplementation__get_background(_this) {
10562 try { 10562 try {
10563 return __dom_wrap(_this.$dom.background); 10563 return __dom_wrap(_this.$dom.background);
10564 } catch (e) { 10564 } catch (e) {
10565 throw __dom_wrap_exception(e); 10565 throw __dom_wrap_exception(e);
10566 } 10566 }
10567 } 10567 }
10568 10568
10569 function native__HTMLBodyElementWrappingImplementation__set__HTMLBodyElement_bac kground(_this, value) { 10569 function native__HTMLBodyElementWrappingImplementation__set_background(_this, va lue) {
10570 try { 10570 try {
10571 _this.$dom.background = __dom_unwrap(value); 10571 _this.$dom.background = __dom_unwrap(value);
10572 } catch (e) { 10572 } catch (e) {
10573 throw __dom_wrap_exception(e); 10573 throw __dom_wrap_exception(e);
10574 } 10574 }
10575 } 10575 }
10576 10576
10577 function native__HTMLBodyElementWrappingImplementation__get__HTMLBodyElement_bgC olor(_this) { 10577 function native__HTMLBodyElementWrappingImplementation__get_bgColor(_this) {
10578 try { 10578 try {
10579 return __dom_wrap(_this.$dom.bgColor); 10579 return __dom_wrap(_this.$dom.bgColor);
10580 } catch (e) { 10580 } catch (e) {
10581 throw __dom_wrap_exception(e); 10581 throw __dom_wrap_exception(e);
10582 } 10582 }
10583 } 10583 }
10584 10584
10585 function native__HTMLBodyElementWrappingImplementation__set__HTMLBodyElement_bgC olor(_this, value) { 10585 function native__HTMLBodyElementWrappingImplementation__set_bgColor(_this, value ) {
10586 try { 10586 try {
10587 _this.$dom.bgColor = __dom_unwrap(value); 10587 _this.$dom.bgColor = __dom_unwrap(value);
10588 } catch (e) { 10588 } catch (e) {
10589 throw __dom_wrap_exception(e); 10589 throw __dom_wrap_exception(e);
10590 } 10590 }
10591 } 10591 }
10592 10592
10593 function native__HTMLBodyElementWrappingImplementation__get__HTMLBodyElement_lin k(_this) { 10593 function native__HTMLBodyElementWrappingImplementation__get_link(_this) {
10594 try { 10594 try {
10595 return __dom_wrap(_this.$dom.link); 10595 return __dom_wrap(_this.$dom.link);
10596 } catch (e) { 10596 } catch (e) {
10597 throw __dom_wrap_exception(e); 10597 throw __dom_wrap_exception(e);
10598 } 10598 }
10599 } 10599 }
10600 10600
10601 function native__HTMLBodyElementWrappingImplementation__set__HTMLBodyElement_lin k(_this, value) { 10601 function native__HTMLBodyElementWrappingImplementation__set_link(_this, value) {
10602 try { 10602 try {
10603 _this.$dom.link = __dom_unwrap(value); 10603 _this.$dom.link = __dom_unwrap(value);
10604 } catch (e) { 10604 } catch (e) {
10605 throw __dom_wrap_exception(e); 10605 throw __dom_wrap_exception(e);
10606 } 10606 }
10607 } 10607 }
10608 10608
10609 function native__HTMLBodyElementWrappingImplementation__get__HTMLBodyElement_onb eforeunload(_this) { 10609 function native__HTMLBodyElementWrappingImplementation__get_onbeforeunload(_this ) {
10610 try { 10610 try {
10611 return __dom_wrap(_this.$dom.onbeforeunload); 10611 return __dom_wrap(_this.$dom.onbeforeunload);
10612 } catch (e) { 10612 } catch (e) {
10613 throw __dom_wrap_exception(e); 10613 throw __dom_wrap_exception(e);
10614 } 10614 }
10615 } 10615 }
10616 10616
10617 function native__HTMLBodyElementWrappingImplementation__set__HTMLBodyElement_onb eforeunload(_this, value) { 10617 function native__HTMLBodyElementWrappingImplementation__set_onbeforeunload(_this , value) {
10618 try { 10618 try {
10619 _this.$dom.onbeforeunload = __dom_unwrap(value); 10619 _this.$dom.onbeforeunload = __dom_unwrap(value);
10620 } catch (e) { 10620 } catch (e) {
10621 throw __dom_wrap_exception(e); 10621 throw __dom_wrap_exception(e);
10622 } 10622 }
10623 } 10623 }
10624 10624
10625 function native__HTMLBodyElementWrappingImplementation__get__HTMLBodyElement_onb lur(_this) { 10625 function native__HTMLBodyElementWrappingImplementation__get_onblur_HTMLBodyEleme nt(_this) {
10626 try { 10626 try {
10627 return __dom_wrap(_this.$dom.onblur); 10627 return __dom_wrap(_this.$dom.onblur);
10628 } catch (e) { 10628 } catch (e) {
10629 throw __dom_wrap_exception(e); 10629 throw __dom_wrap_exception(e);
10630 } 10630 }
10631 } 10631 }
10632 10632
10633 function native__HTMLBodyElementWrappingImplementation__set__HTMLBodyElement_onb lur(_this, value) { 10633 function native__HTMLBodyElementWrappingImplementation__set_onblur_HTMLBodyEleme nt(_this, value) {
10634 try { 10634 try {
10635 _this.$dom.onblur = __dom_unwrap(value); 10635 _this.$dom.onblur = __dom_unwrap(value);
10636 } catch (e) { 10636 } catch (e) {
10637 throw __dom_wrap_exception(e); 10637 throw __dom_wrap_exception(e);
10638 } 10638 }
10639 } 10639 }
10640 10640
10641 function native__HTMLBodyElementWrappingImplementation__get__HTMLBodyElement_one rror(_this) { 10641 function native__HTMLBodyElementWrappingImplementation__get_onerror_HTMLBodyElem ent(_this) {
10642 try { 10642 try {
10643 return __dom_wrap(_this.$dom.onerror); 10643 return __dom_wrap(_this.$dom.onerror);
10644 } catch (e) { 10644 } catch (e) {
10645 throw __dom_wrap_exception(e); 10645 throw __dom_wrap_exception(e);
10646 } 10646 }
10647 } 10647 }
10648 10648
10649 function native__HTMLBodyElementWrappingImplementation__set__HTMLBodyElement_one rror(_this, value) { 10649 function native__HTMLBodyElementWrappingImplementation__set_onerror_HTMLBodyElem ent(_this, value) {
10650 try { 10650 try {
10651 _this.$dom.onerror = __dom_unwrap(value); 10651 _this.$dom.onerror = __dom_unwrap(value);
10652 } catch (e) { 10652 } catch (e) {
10653 throw __dom_wrap_exception(e); 10653 throw __dom_wrap_exception(e);
10654 } 10654 }
10655 } 10655 }
10656 10656
10657 function native__HTMLBodyElementWrappingImplementation__get__HTMLBodyElement_onf ocus(_this) { 10657 function native__HTMLBodyElementWrappingImplementation__get_onfocus_HTMLBodyElem ent(_this) {
10658 try { 10658 try {
10659 return __dom_wrap(_this.$dom.onfocus); 10659 return __dom_wrap(_this.$dom.onfocus);
10660 } catch (e) { 10660 } catch (e) {
10661 throw __dom_wrap_exception(e); 10661 throw __dom_wrap_exception(e);
10662 } 10662 }
10663 } 10663 }
10664 10664
10665 function native__HTMLBodyElementWrappingImplementation__set__HTMLBodyElement_onf ocus(_this, value) { 10665 function native__HTMLBodyElementWrappingImplementation__set_onfocus_HTMLBodyElem ent(_this, value) {
10666 try { 10666 try {
10667 _this.$dom.onfocus = __dom_unwrap(value); 10667 _this.$dom.onfocus = __dom_unwrap(value);
10668 } catch (e) { 10668 } catch (e) {
10669 throw __dom_wrap_exception(e); 10669 throw __dom_wrap_exception(e);
10670 } 10670 }
10671 } 10671 }
10672 10672
10673 function native__HTMLBodyElementWrappingImplementation__get__HTMLBodyElement_onh ashchange(_this) { 10673 function native__HTMLBodyElementWrappingImplementation__get_onhashchange(_this) {
10674 try { 10674 try {
10675 return __dom_wrap(_this.$dom.onhashchange); 10675 return __dom_wrap(_this.$dom.onhashchange);
10676 } catch (e) { 10676 } catch (e) {
10677 throw __dom_wrap_exception(e); 10677 throw __dom_wrap_exception(e);
10678 } 10678 }
10679 } 10679 }
10680 10680
10681 function native__HTMLBodyElementWrappingImplementation__set__HTMLBodyElement_onh ashchange(_this, value) { 10681 function native__HTMLBodyElementWrappingImplementation__set_onhashchange(_this, value) {
10682 try { 10682 try {
10683 _this.$dom.onhashchange = __dom_unwrap(value); 10683 _this.$dom.onhashchange = __dom_unwrap(value);
10684 } catch (e) { 10684 } catch (e) {
10685 throw __dom_wrap_exception(e); 10685 throw __dom_wrap_exception(e);
10686 } 10686 }
10687 } 10687 }
10688 10688
10689 function native__HTMLBodyElementWrappingImplementation__get__HTMLBodyElement_onl oad(_this) { 10689 function native__HTMLBodyElementWrappingImplementation__get_onload_HTMLBodyEleme nt(_this) {
10690 try { 10690 try {
10691 return __dom_wrap(_this.$dom.onload); 10691 return __dom_wrap(_this.$dom.onload);
10692 } catch (e) { 10692 } catch (e) {
10693 throw __dom_wrap_exception(e); 10693 throw __dom_wrap_exception(e);
10694 } 10694 }
10695 } 10695 }
10696 10696
10697 function native__HTMLBodyElementWrappingImplementation__set__HTMLBodyElement_onl oad(_this, value) { 10697 function native__HTMLBodyElementWrappingImplementation__set_onload_HTMLBodyEleme nt(_this, value) {
10698 try { 10698 try {
10699 _this.$dom.onload = __dom_unwrap(value); 10699 _this.$dom.onload = __dom_unwrap(value);
10700 } catch (e) { 10700 } catch (e) {
10701 throw __dom_wrap_exception(e); 10701 throw __dom_wrap_exception(e);
10702 } 10702 }
10703 } 10703 }
10704 10704
10705 function native__HTMLBodyElementWrappingImplementation__get__HTMLBodyElement_onm essage(_this) { 10705 function native__HTMLBodyElementWrappingImplementation__get_onmessage(_this) {
10706 try { 10706 try {
10707 return __dom_wrap(_this.$dom.onmessage); 10707 return __dom_wrap(_this.$dom.onmessage);
10708 } catch (e) { 10708 } catch (e) {
10709 throw __dom_wrap_exception(e); 10709 throw __dom_wrap_exception(e);
10710 } 10710 }
10711 } 10711 }
10712 10712
10713 function native__HTMLBodyElementWrappingImplementation__set__HTMLBodyElement_onm essage(_this, value) { 10713 function native__HTMLBodyElementWrappingImplementation__set_onmessage(_this, val ue) {
10714 try { 10714 try {
10715 _this.$dom.onmessage = __dom_unwrap(value); 10715 _this.$dom.onmessage = __dom_unwrap(value);
10716 } catch (e) { 10716 } catch (e) {
10717 throw __dom_wrap_exception(e); 10717 throw __dom_wrap_exception(e);
10718 } 10718 }
10719 } 10719 }
10720 10720
10721 function native__HTMLBodyElementWrappingImplementation__get__HTMLBodyElement_ono ffline(_this) { 10721 function native__HTMLBodyElementWrappingImplementation__get_onoffline(_this) {
10722 try { 10722 try {
10723 return __dom_wrap(_this.$dom.onoffline); 10723 return __dom_wrap(_this.$dom.onoffline);
10724 } catch (e) { 10724 } catch (e) {
10725 throw __dom_wrap_exception(e); 10725 throw __dom_wrap_exception(e);
10726 } 10726 }
10727 } 10727 }
10728 10728
10729 function native__HTMLBodyElementWrappingImplementation__set__HTMLBodyElement_ono ffline(_this, value) { 10729 function native__HTMLBodyElementWrappingImplementation__set_onoffline(_this, val ue) {
10730 try { 10730 try {
10731 _this.$dom.onoffline = __dom_unwrap(value); 10731 _this.$dom.onoffline = __dom_unwrap(value);
10732 } catch (e) { 10732 } catch (e) {
10733 throw __dom_wrap_exception(e); 10733 throw __dom_wrap_exception(e);
10734 } 10734 }
10735 } 10735 }
10736 10736
10737 function native__HTMLBodyElementWrappingImplementation__get__HTMLBodyElement_ono nline(_this) { 10737 function native__HTMLBodyElementWrappingImplementation__get_ononline(_this) {
10738 try { 10738 try {
10739 return __dom_wrap(_this.$dom.ononline); 10739 return __dom_wrap(_this.$dom.ononline);
10740 } catch (e) { 10740 } catch (e) {
10741 throw __dom_wrap_exception(e); 10741 throw __dom_wrap_exception(e);
10742 } 10742 }
10743 } 10743 }
10744 10744
10745 function native__HTMLBodyElementWrappingImplementation__set__HTMLBodyElement_ono nline(_this, value) { 10745 function native__HTMLBodyElementWrappingImplementation__set_ononline(_this, valu e) {
10746 try { 10746 try {
10747 _this.$dom.ononline = __dom_unwrap(value); 10747 _this.$dom.ononline = __dom_unwrap(value);
10748 } catch (e) { 10748 } catch (e) {
10749 throw __dom_wrap_exception(e); 10749 throw __dom_wrap_exception(e);
10750 } 10750 }
10751 } 10751 }
10752 10752
10753 function native__HTMLBodyElementWrappingImplementation__get__HTMLBodyElement_ono rientationchange(_this) { 10753 function native__HTMLBodyElementWrappingImplementation__get_onorientationchange( _this) {
10754 try { 10754 try {
10755 return __dom_wrap(_this.$dom.onorientationchange); 10755 return __dom_wrap(_this.$dom.onorientationchange);
10756 } catch (e) { 10756 } catch (e) {
10757 throw __dom_wrap_exception(e); 10757 throw __dom_wrap_exception(e);
10758 } 10758 }
10759 } 10759 }
10760 10760
10761 function native__HTMLBodyElementWrappingImplementation__set__HTMLBodyElement_ono rientationchange(_this, value) { 10761 function native__HTMLBodyElementWrappingImplementation__set_onorientationchange( _this, value) {
10762 try { 10762 try {
10763 _this.$dom.onorientationchange = __dom_unwrap(value); 10763 _this.$dom.onorientationchange = __dom_unwrap(value);
10764 } catch (e) { 10764 } catch (e) {
10765 throw __dom_wrap_exception(e); 10765 throw __dom_wrap_exception(e);
10766 } 10766 }
10767 } 10767 }
10768 10768
10769 function native__HTMLBodyElementWrappingImplementation__get__HTMLBodyElement_onp opstate(_this) { 10769 function native__HTMLBodyElementWrappingImplementation__get_onpopstate(_this) {
10770 try { 10770 try {
10771 return __dom_wrap(_this.$dom.onpopstate); 10771 return __dom_wrap(_this.$dom.onpopstate);
10772 } catch (e) { 10772 } catch (e) {
10773 throw __dom_wrap_exception(e); 10773 throw __dom_wrap_exception(e);
10774 } 10774 }
10775 } 10775 }
10776 10776
10777 function native__HTMLBodyElementWrappingImplementation__set__HTMLBodyElement_onp opstate(_this, value) { 10777 function native__HTMLBodyElementWrappingImplementation__set_onpopstate(_this, va lue) {
10778 try { 10778 try {
10779 _this.$dom.onpopstate = __dom_unwrap(value); 10779 _this.$dom.onpopstate = __dom_unwrap(value);
10780 } catch (e) { 10780 } catch (e) {
10781 throw __dom_wrap_exception(e); 10781 throw __dom_wrap_exception(e);
10782 } 10782 }
10783 } 10783 }
10784 10784
10785 function native__HTMLBodyElementWrappingImplementation__get__HTMLBodyElement_onr esize(_this) { 10785 function native__HTMLBodyElementWrappingImplementation__get_onresize(_this) {
10786 try { 10786 try {
10787 return __dom_wrap(_this.$dom.onresize); 10787 return __dom_wrap(_this.$dom.onresize);
10788 } catch (e) { 10788 } catch (e) {
10789 throw __dom_wrap_exception(e); 10789 throw __dom_wrap_exception(e);
10790 } 10790 }
10791 } 10791 }
10792 10792
10793 function native__HTMLBodyElementWrappingImplementation__set__HTMLBodyElement_onr esize(_this, value) { 10793 function native__HTMLBodyElementWrappingImplementation__set_onresize(_this, valu e) {
10794 try { 10794 try {
10795 _this.$dom.onresize = __dom_unwrap(value); 10795 _this.$dom.onresize = __dom_unwrap(value);
10796 } catch (e) { 10796 } catch (e) {
10797 throw __dom_wrap_exception(e); 10797 throw __dom_wrap_exception(e);
10798 } 10798 }
10799 } 10799 }
10800 10800
10801 function native__HTMLBodyElementWrappingImplementation__get__HTMLBodyElement_ons torage(_this) { 10801 function native__HTMLBodyElementWrappingImplementation__get_onstorage(_this) {
10802 try { 10802 try {
10803 return __dom_wrap(_this.$dom.onstorage); 10803 return __dom_wrap(_this.$dom.onstorage);
10804 } catch (e) { 10804 } catch (e) {
10805 throw __dom_wrap_exception(e); 10805 throw __dom_wrap_exception(e);
10806 } 10806 }
10807 } 10807 }
10808 10808
10809 function native__HTMLBodyElementWrappingImplementation__set__HTMLBodyElement_ons torage(_this, value) { 10809 function native__HTMLBodyElementWrappingImplementation__set_onstorage(_this, val ue) {
10810 try { 10810 try {
10811 _this.$dom.onstorage = __dom_unwrap(value); 10811 _this.$dom.onstorage = __dom_unwrap(value);
10812 } catch (e) { 10812 } catch (e) {
10813 throw __dom_wrap_exception(e); 10813 throw __dom_wrap_exception(e);
10814 } 10814 }
10815 } 10815 }
10816 10816
10817 function native__HTMLBodyElementWrappingImplementation__get__HTMLBodyElement_onu nload(_this) { 10817 function native__HTMLBodyElementWrappingImplementation__get_onunload(_this) {
10818 try { 10818 try {
10819 return __dom_wrap(_this.$dom.onunload); 10819 return __dom_wrap(_this.$dom.onunload);
10820 } catch (e) { 10820 } catch (e) {
10821 throw __dom_wrap_exception(e); 10821 throw __dom_wrap_exception(e);
10822 } 10822 }
10823 } 10823 }
10824 10824
10825 function native__HTMLBodyElementWrappingImplementation__set__HTMLBodyElement_onu nload(_this, value) { 10825 function native__HTMLBodyElementWrappingImplementation__set_onunload(_this, valu e) {
10826 try { 10826 try {
10827 _this.$dom.onunload = __dom_unwrap(value); 10827 _this.$dom.onunload = __dom_unwrap(value);
10828 } catch (e) { 10828 } catch (e) {
10829 throw __dom_wrap_exception(e); 10829 throw __dom_wrap_exception(e);
10830 } 10830 }
10831 } 10831 }
10832 10832
10833 function native__HTMLBodyElementWrappingImplementation__get__HTMLBodyElement_tex t(_this) { 10833 function native__HTMLBodyElementWrappingImplementation__get_text(_this) {
10834 try { 10834 try {
10835 return __dom_wrap(_this.$dom.text); 10835 return __dom_wrap(_this.$dom.text);
10836 } catch (e) { 10836 } catch (e) {
10837 throw __dom_wrap_exception(e); 10837 throw __dom_wrap_exception(e);
10838 } 10838 }
10839 } 10839 }
10840 10840
10841 function native__HTMLBodyElementWrappingImplementation__set__HTMLBodyElement_tex t(_this, value) { 10841 function native__HTMLBodyElementWrappingImplementation__set_text(_this, value) {
10842 try { 10842 try {
10843 _this.$dom.text = __dom_unwrap(value); 10843 _this.$dom.text = __dom_unwrap(value);
10844 } catch (e) { 10844 } catch (e) {
10845 throw __dom_wrap_exception(e); 10845 throw __dom_wrap_exception(e);
10846 } 10846 }
10847 } 10847 }
10848 10848
10849 function native__HTMLBodyElementWrappingImplementation__get__HTMLBodyElement_vLi nk(_this) { 10849 function native__HTMLBodyElementWrappingImplementation__get_vLink(_this) {
10850 try { 10850 try {
10851 return __dom_wrap(_this.$dom.vLink); 10851 return __dom_wrap(_this.$dom.vLink);
10852 } catch (e) { 10852 } catch (e) {
10853 throw __dom_wrap_exception(e); 10853 throw __dom_wrap_exception(e);
10854 } 10854 }
10855 } 10855 }
10856 10856
10857 function native__HTMLBodyElementWrappingImplementation__set__HTMLBodyElement_vLi nk(_this, value) { 10857 function native__HTMLBodyElementWrappingImplementation__set_vLink(_this, value) {
10858 try { 10858 try {
10859 _this.$dom.vLink = __dom_unwrap(value); 10859 _this.$dom.vLink = __dom_unwrap(value);
10860 } catch (e) { 10860 } catch (e) {
10861 throw __dom_wrap_exception(e); 10861 throw __dom_wrap_exception(e);
10862 } 10862 }
10863 } 10863 }
10864 10864
10865 function native__HTMLButtonElementWrappingImplementation__get__HTMLButtonElement _accessKey(_this) { 10865 function native__HTMLButtonElementWrappingImplementation__get_accessKey(_this) {
10866 try { 10866 try {
10867 return __dom_wrap(_this.$dom.accessKey); 10867 return __dom_wrap(_this.$dom.accessKey);
10868 } catch (e) { 10868 } catch (e) {
10869 throw __dom_wrap_exception(e); 10869 throw __dom_wrap_exception(e);
10870 } 10870 }
10871 } 10871 }
10872 10872
10873 function native__HTMLButtonElementWrappingImplementation__set__HTMLButtonElement _accessKey(_this, value) { 10873 function native__HTMLButtonElementWrappingImplementation__set_accessKey(_this, v alue) {
10874 try { 10874 try {
10875 _this.$dom.accessKey = __dom_unwrap(value); 10875 _this.$dom.accessKey = __dom_unwrap(value);
10876 } catch (e) { 10876 } catch (e) {
10877 throw __dom_wrap_exception(e); 10877 throw __dom_wrap_exception(e);
10878 } 10878 }
10879 } 10879 }
10880 10880
10881 function native__HTMLButtonElementWrappingImplementation__get__HTMLButtonElement _autofocus(_this) { 10881 function native__HTMLButtonElementWrappingImplementation__get_autofocus(_this) {
10882 try { 10882 try {
10883 return __dom_wrap(_this.$dom.autofocus); 10883 return __dom_wrap(_this.$dom.autofocus);
10884 } catch (e) { 10884 } catch (e) {
10885 throw __dom_wrap_exception(e); 10885 throw __dom_wrap_exception(e);
10886 } 10886 }
10887 } 10887 }
10888 10888
10889 function native__HTMLButtonElementWrappingImplementation__set__HTMLButtonElement _autofocus(_this, value) { 10889 function native__HTMLButtonElementWrappingImplementation__set_autofocus(_this, v alue) {
10890 try { 10890 try {
10891 _this.$dom.autofocus = __dom_unwrap(value); 10891 _this.$dom.autofocus = __dom_unwrap(value);
10892 } catch (e) { 10892 } catch (e) {
10893 throw __dom_wrap_exception(e); 10893 throw __dom_wrap_exception(e);
10894 } 10894 }
10895 } 10895 }
10896 10896
10897 function native__HTMLButtonElementWrappingImplementation__get__HTMLButtonElement _disabled(_this) { 10897 function native__HTMLButtonElementWrappingImplementation__get_disabled(_this) {
10898 try { 10898 try {
10899 return __dom_wrap(_this.$dom.disabled); 10899 return __dom_wrap(_this.$dom.disabled);
10900 } catch (e) { 10900 } catch (e) {
10901 throw __dom_wrap_exception(e); 10901 throw __dom_wrap_exception(e);
10902 } 10902 }
10903 } 10903 }
10904 10904
10905 function native__HTMLButtonElementWrappingImplementation__set__HTMLButtonElement _disabled(_this, value) { 10905 function native__HTMLButtonElementWrappingImplementation__set_disabled(_this, va lue) {
10906 try { 10906 try {
10907 _this.$dom.disabled = __dom_unwrap(value); 10907 _this.$dom.disabled = __dom_unwrap(value);
10908 } catch (e) { 10908 } catch (e) {
10909 throw __dom_wrap_exception(e); 10909 throw __dom_wrap_exception(e);
10910 } 10910 }
10911 } 10911 }
10912 10912
10913 function native__HTMLButtonElementWrappingImplementation__get__HTMLButtonElement _form(_this) { 10913 function native__HTMLButtonElementWrappingImplementation__get_form(_this) {
10914 try { 10914 try {
10915 return __dom_wrap(_this.$dom.form); 10915 return __dom_wrap(_this.$dom.form);
10916 } catch (e) { 10916 } catch (e) {
10917 throw __dom_wrap_exception(e); 10917 throw __dom_wrap_exception(e);
10918 } 10918 }
10919 } 10919 }
10920 10920
10921 function native__HTMLButtonElementWrappingImplementation__get__HTMLButtonElement _formAction(_this) { 10921 function native__HTMLButtonElementWrappingImplementation__get_formAction(_this) {
10922 try { 10922 try {
10923 return __dom_wrap(_this.$dom.formAction); 10923 return __dom_wrap(_this.$dom.formAction);
10924 } catch (e) { 10924 } catch (e) {
10925 throw __dom_wrap_exception(e); 10925 throw __dom_wrap_exception(e);
10926 } 10926 }
10927 } 10927 }
10928 10928
10929 function native__HTMLButtonElementWrappingImplementation__set__HTMLButtonElement _formAction(_this, value) { 10929 function native__HTMLButtonElementWrappingImplementation__set_formAction(_this, value) {
10930 try { 10930 try {
10931 _this.$dom.formAction = __dom_unwrap(value); 10931 _this.$dom.formAction = __dom_unwrap(value);
10932 } catch (e) { 10932 } catch (e) {
10933 throw __dom_wrap_exception(e); 10933 throw __dom_wrap_exception(e);
10934 } 10934 }
10935 } 10935 }
10936 10936
10937 function native__HTMLButtonElementWrappingImplementation__get__HTMLButtonElement _formEnctype(_this) { 10937 function native__HTMLButtonElementWrappingImplementation__get_formEnctype(_this) {
10938 try { 10938 try {
10939 return __dom_wrap(_this.$dom.formEnctype); 10939 return __dom_wrap(_this.$dom.formEnctype);
10940 } catch (e) { 10940 } catch (e) {
10941 throw __dom_wrap_exception(e); 10941 throw __dom_wrap_exception(e);
10942 } 10942 }
10943 } 10943 }
10944 10944
10945 function native__HTMLButtonElementWrappingImplementation__set__HTMLButtonElement _formEnctype(_this, value) { 10945 function native__HTMLButtonElementWrappingImplementation__set_formEnctype(_this, value) {
10946 try { 10946 try {
10947 _this.$dom.formEnctype = __dom_unwrap(value); 10947 _this.$dom.formEnctype = __dom_unwrap(value);
10948 } catch (e) { 10948 } catch (e) {
10949 throw __dom_wrap_exception(e); 10949 throw __dom_wrap_exception(e);
10950 } 10950 }
10951 } 10951 }
10952 10952
10953 function native__HTMLButtonElementWrappingImplementation__get__HTMLButtonElement _formMethod(_this) { 10953 function native__HTMLButtonElementWrappingImplementation__get_formMethod(_this) {
10954 try { 10954 try {
10955 return __dom_wrap(_this.$dom.formMethod); 10955 return __dom_wrap(_this.$dom.formMethod);
10956 } catch (e) { 10956 } catch (e) {
10957 throw __dom_wrap_exception(e); 10957 throw __dom_wrap_exception(e);
10958 } 10958 }
10959 } 10959 }
10960 10960
10961 function native__HTMLButtonElementWrappingImplementation__set__HTMLButtonElement _formMethod(_this, value) { 10961 function native__HTMLButtonElementWrappingImplementation__set_formMethod(_this, value) {
10962 try { 10962 try {
10963 _this.$dom.formMethod = __dom_unwrap(value); 10963 _this.$dom.formMethod = __dom_unwrap(value);
10964 } catch (e) { 10964 } catch (e) {
10965 throw __dom_wrap_exception(e); 10965 throw __dom_wrap_exception(e);
10966 } 10966 }
10967 } 10967 }
10968 10968
10969 function native__HTMLButtonElementWrappingImplementation__get__HTMLButtonElement _formNoValidate(_this) { 10969 function native__HTMLButtonElementWrappingImplementation__get_formNoValidate(_th is) {
10970 try { 10970 try {
10971 return __dom_wrap(_this.$dom.formNoValidate); 10971 return __dom_wrap(_this.$dom.formNoValidate);
10972 } catch (e) { 10972 } catch (e) {
10973 throw __dom_wrap_exception(e); 10973 throw __dom_wrap_exception(e);
10974 } 10974 }
10975 } 10975 }
10976 10976
10977 function native__HTMLButtonElementWrappingImplementation__set__HTMLButtonElement _formNoValidate(_this, value) { 10977 function native__HTMLButtonElementWrappingImplementation__set_formNoValidate(_th is, value) {
10978 try { 10978 try {
10979 _this.$dom.formNoValidate = __dom_unwrap(value); 10979 _this.$dom.formNoValidate = __dom_unwrap(value);
10980 } catch (e) { 10980 } catch (e) {
10981 throw __dom_wrap_exception(e); 10981 throw __dom_wrap_exception(e);
10982 } 10982 }
10983 } 10983 }
10984 10984
10985 function native__HTMLButtonElementWrappingImplementation__get__HTMLButtonElement _formTarget(_this) { 10985 function native__HTMLButtonElementWrappingImplementation__get_formTarget(_this) {
10986 try { 10986 try {
10987 return __dom_wrap(_this.$dom.formTarget); 10987 return __dom_wrap(_this.$dom.formTarget);
10988 } catch (e) { 10988 } catch (e) {
10989 throw __dom_wrap_exception(e); 10989 throw __dom_wrap_exception(e);
10990 } 10990 }
10991 } 10991 }
10992 10992
10993 function native__HTMLButtonElementWrappingImplementation__set__HTMLButtonElement _formTarget(_this, value) { 10993 function native__HTMLButtonElementWrappingImplementation__set_formTarget(_this, value) {
10994 try { 10994 try {
10995 _this.$dom.formTarget = __dom_unwrap(value); 10995 _this.$dom.formTarget = __dom_unwrap(value);
10996 } catch (e) { 10996 } catch (e) {
10997 throw __dom_wrap_exception(e); 10997 throw __dom_wrap_exception(e);
10998 } 10998 }
10999 } 10999 }
11000 11000
11001 function native__HTMLButtonElementWrappingImplementation__get__HTMLButtonElement _labels(_this) { 11001 function native__HTMLButtonElementWrappingImplementation__get_labels(_this) {
11002 try { 11002 try {
11003 return __dom_wrap(_this.$dom.labels); 11003 return __dom_wrap(_this.$dom.labels);
11004 } catch (e) { 11004 } catch (e) {
11005 throw __dom_wrap_exception(e); 11005 throw __dom_wrap_exception(e);
11006 } 11006 }
11007 } 11007 }
11008 11008
11009 function native__HTMLButtonElementWrappingImplementation__get__HTMLButtonElement _name(_this) { 11009 function native__HTMLButtonElementWrappingImplementation__get_name(_this) {
11010 try { 11010 try {
11011 return __dom_wrap(_this.$dom.name); 11011 return __dom_wrap(_this.$dom.name);
11012 } catch (e) { 11012 } catch (e) {
11013 throw __dom_wrap_exception(e); 11013 throw __dom_wrap_exception(e);
11014 } 11014 }
11015 } 11015 }
11016 11016
11017 function native__HTMLButtonElementWrappingImplementation__set__HTMLButtonElement _name(_this, value) { 11017 function native__HTMLButtonElementWrappingImplementation__set_name(_this, value) {
11018 try { 11018 try {
11019 _this.$dom.name = __dom_unwrap(value); 11019 _this.$dom.name = __dom_unwrap(value);
11020 } catch (e) { 11020 } catch (e) {
11021 throw __dom_wrap_exception(e); 11021 throw __dom_wrap_exception(e);
11022 } 11022 }
11023 } 11023 }
11024 11024
11025 function native__HTMLButtonElementWrappingImplementation__get__HTMLButtonElement _type(_this) { 11025 function native__HTMLButtonElementWrappingImplementation__get_type(_this) {
11026 try { 11026 try {
11027 return __dom_wrap(_this.$dom.type); 11027 return __dom_wrap(_this.$dom.type);
11028 } catch (e) { 11028 } catch (e) {
11029 throw __dom_wrap_exception(e); 11029 throw __dom_wrap_exception(e);
11030 } 11030 }
11031 } 11031 }
11032 11032
11033 function native__HTMLButtonElementWrappingImplementation__get__HTMLButtonElement _validationMessage(_this) { 11033 function native__HTMLButtonElementWrappingImplementation__get_validationMessage( _this) {
11034 try { 11034 try {
11035 return __dom_wrap(_this.$dom.validationMessage); 11035 return __dom_wrap(_this.$dom.validationMessage);
11036 } catch (e) { 11036 } catch (e) {
11037 throw __dom_wrap_exception(e); 11037 throw __dom_wrap_exception(e);
11038 } 11038 }
11039 } 11039 }
11040 11040
11041 function native__HTMLButtonElementWrappingImplementation__get__HTMLButtonElement _validity(_this) { 11041 function native__HTMLButtonElementWrappingImplementation__get_validity(_this) {
11042 try { 11042 try {
11043 return __dom_wrap(_this.$dom.validity); 11043 return __dom_wrap(_this.$dom.validity);
11044 } catch (e) { 11044 } catch (e) {
11045 throw __dom_wrap_exception(e); 11045 throw __dom_wrap_exception(e);
11046 } 11046 }
11047 } 11047 }
11048 11048
11049 function native__HTMLButtonElementWrappingImplementation__get__HTMLButtonElement _value(_this) { 11049 function native__HTMLButtonElementWrappingImplementation__get_value(_this) {
11050 try { 11050 try {
11051 return __dom_wrap(_this.$dom.value); 11051 return __dom_wrap(_this.$dom.value);
11052 } catch (e) { 11052 } catch (e) {
11053 throw __dom_wrap_exception(e); 11053 throw __dom_wrap_exception(e);
11054 } 11054 }
11055 } 11055 }
11056 11056
11057 function native__HTMLButtonElementWrappingImplementation__set__HTMLButtonElement _value(_this, value) { 11057 function native__HTMLButtonElementWrappingImplementation__set_value(_this, value ) {
11058 try { 11058 try {
11059 _this.$dom.value = __dom_unwrap(value); 11059 _this.$dom.value = __dom_unwrap(value);
11060 } catch (e) { 11060 } catch (e) {
11061 throw __dom_wrap_exception(e); 11061 throw __dom_wrap_exception(e);
11062 } 11062 }
11063 } 11063 }
11064 11064
11065 function native__HTMLButtonElementWrappingImplementation__get__HTMLButtonElement _willValidate(_this) { 11065 function native__HTMLButtonElementWrappingImplementation__get_willValidate(_this ) {
11066 try { 11066 try {
11067 return __dom_wrap(_this.$dom.willValidate); 11067 return __dom_wrap(_this.$dom.willValidate);
11068 } catch (e) { 11068 } catch (e) {
11069 throw __dom_wrap_exception(e); 11069 throw __dom_wrap_exception(e);
11070 } 11070 }
11071 } 11071 }
11072 11072
11073 function native__HTMLButtonElementWrappingImplementation__checkValidity(_this) { 11073 function native__HTMLButtonElementWrappingImplementation__checkValidity(_this) {
11074 try { 11074 try {
11075 return __dom_wrap(_this.$dom.checkValidity()); 11075 return __dom_wrap(_this.$dom.checkValidity());
(...skipping 11 matching lines...) Expand all
11087 } 11087 }
11088 11088
11089 function native__HTMLButtonElementWrappingImplementation__setCustomValidity(_thi s, error) { 11089 function native__HTMLButtonElementWrappingImplementation__setCustomValidity(_thi s, error) {
11090 try { 11090 try {
11091 return __dom_wrap(_this.$dom.setCustomValidity(__dom_unwrap(error))); 11091 return __dom_wrap(_this.$dom.setCustomValidity(__dom_unwrap(error)));
11092 } catch (e) { 11092 } catch (e) {
11093 throw __dom_wrap_exception(e); 11093 throw __dom_wrap_exception(e);
11094 } 11094 }
11095 } 11095 }
11096 11096
11097 function native__HTMLCanvasElementWrappingImplementation__get__HTMLCanvasElement _height(_this) { 11097 function native__HTMLCanvasElementWrappingImplementation__get_height(_this) {
11098 try { 11098 try {
11099 return __dom_wrap(_this.$dom.height); 11099 return __dom_wrap(_this.$dom.height);
11100 } catch (e) { 11100 } catch (e) {
11101 throw __dom_wrap_exception(e); 11101 throw __dom_wrap_exception(e);
11102 } 11102 }
11103 } 11103 }
11104 11104
11105 function native__HTMLCanvasElementWrappingImplementation__set__HTMLCanvasElement _height(_this, value) { 11105 function native__HTMLCanvasElementWrappingImplementation__set_height(_this, valu e) {
11106 try { 11106 try {
11107 _this.$dom.height = __dom_unwrap(value); 11107 _this.$dom.height = __dom_unwrap(value);
11108 } catch (e) { 11108 } catch (e) {
11109 throw __dom_wrap_exception(e); 11109 throw __dom_wrap_exception(e);
11110 } 11110 }
11111 } 11111 }
11112 11112
11113 function native__HTMLCanvasElementWrappingImplementation__get__HTMLCanvasElement _width(_this) { 11113 function native__HTMLCanvasElementWrappingImplementation__get_width(_this) {
11114 try { 11114 try {
11115 return __dom_wrap(_this.$dom.width); 11115 return __dom_wrap(_this.$dom.width);
11116 } catch (e) { 11116 } catch (e) {
11117 throw __dom_wrap_exception(e); 11117 throw __dom_wrap_exception(e);
11118 } 11118 }
11119 } 11119 }
11120 11120
11121 function native__HTMLCanvasElementWrappingImplementation__set__HTMLCanvasElement _width(_this, value) { 11121 function native__HTMLCanvasElementWrappingImplementation__set_width(_this, value ) {
11122 try { 11122 try {
11123 _this.$dom.width = __dom_unwrap(value); 11123 _this.$dom.width = __dom_unwrap(value);
11124 } catch (e) { 11124 } catch (e) {
11125 throw __dom_wrap_exception(e); 11125 throw __dom_wrap_exception(e);
11126 } 11126 }
11127 } 11127 }
11128 11128
11129 function native__HTMLCanvasElementWrappingImplementation__getContext(_this, cont extId) { 11129 function native__HTMLCanvasElementWrappingImplementation__getContext(_this, cont extId) {
11130 try { 11130 try {
11131 return __dom_wrap(_this.$dom.getContext(__dom_unwrap(contextId))); 11131 return __dom_wrap(_this.$dom.getContext(__dom_unwrap(contextId)));
11132 } catch (e) { 11132 } catch (e) {
11133 throw __dom_wrap_exception(e); 11133 throw __dom_wrap_exception(e);
11134 } 11134 }
11135 } 11135 }
11136 11136
11137 function native__HTMLCanvasElementWrappingImplementation__toDataURL(_this, type) { 11137 function native__HTMLCanvasElementWrappingImplementation__toDataURL(_this, type) {
11138 try { 11138 try {
11139 return __dom_wrap(_this.$dom.toDataURL(__dom_unwrap(type))); 11139 return __dom_wrap(_this.$dom.toDataURL(__dom_unwrap(type)));
11140 } catch (e) { 11140 } catch (e) {
11141 throw __dom_wrap_exception(e); 11141 throw __dom_wrap_exception(e);
11142 } 11142 }
11143 } 11143 }
11144 11144
11145 function native__HTMLCollectionWrappingImplementation__get__HTMLCollection_lengt h(_this) { 11145 function native__HTMLCollectionWrappingImplementation__get_length(_this) {
11146 try { 11146 try {
11147 return __dom_wrap(_this.$dom.length); 11147 return __dom_wrap(_this.$dom.length);
11148 } catch (e) { 11148 } catch (e) {
11149 throw __dom_wrap_exception(e); 11149 throw __dom_wrap_exception(e);
11150 } 11150 }
11151 } 11151 }
11152 11152
11153 function native__HTMLCollectionWrappingImplementation__item(_this, index) { 11153 function native__HTMLCollectionWrappingImplementation__item(_this, index) {
11154 try { 11154 try {
11155 return __dom_wrap(_this.$dom.item(__dom_unwrap(index))); 11155 return __dom_wrap(_this.$dom.item(__dom_unwrap(index)));
11156 } catch (e) { 11156 } catch (e) {
11157 throw __dom_wrap_exception(e); 11157 throw __dom_wrap_exception(e);
11158 } 11158 }
11159 } 11159 }
11160 11160
11161 function native__HTMLCollectionWrappingImplementation__namedItem(_this, name) { 11161 function native__HTMLCollectionWrappingImplementation__namedItem(_this, name) {
11162 try { 11162 try {
11163 return __dom_wrap(_this.$dom.namedItem(__dom_unwrap(name))); 11163 return __dom_wrap(_this.$dom.namedItem(__dom_unwrap(name)));
11164 } catch (e) { 11164 } catch (e) {
11165 throw __dom_wrap_exception(e); 11165 throw __dom_wrap_exception(e);
11166 } 11166 }
11167 } 11167 }
11168 11168
11169 function native__HTMLDListElementWrappingImplementation__get__HTMLDListElement_c ompact(_this) { 11169 function native__HTMLDListElementWrappingImplementation__get_compact(_this) {
11170 try { 11170 try {
11171 return __dom_wrap(_this.$dom.compact); 11171 return __dom_wrap(_this.$dom.compact);
11172 } catch (e) { 11172 } catch (e) {
11173 throw __dom_wrap_exception(e); 11173 throw __dom_wrap_exception(e);
11174 } 11174 }
11175 } 11175 }
11176 11176
11177 function native__HTMLDListElementWrappingImplementation__set__HTMLDListElement_c ompact(_this, value) { 11177 function native__HTMLDListElementWrappingImplementation__set_compact(_this, valu e) {
11178 try { 11178 try {
11179 _this.$dom.compact = __dom_unwrap(value); 11179 _this.$dom.compact = __dom_unwrap(value);
11180 } catch (e) { 11180 } catch (e) {
11181 throw __dom_wrap_exception(e); 11181 throw __dom_wrap_exception(e);
11182 } 11182 }
11183 } 11183 }
11184 11184
11185 function native__HTMLDataListElementWrappingImplementation__get__HTMLDataListEle ment_options(_this) { 11185 function native__HTMLDataListElementWrappingImplementation__get_options(_this) {
11186 try { 11186 try {
11187 return __dom_wrap(_this.$dom.options); 11187 return __dom_wrap(_this.$dom.options);
11188 } catch (e) { 11188 } catch (e) {
11189 throw __dom_wrap_exception(e); 11189 throw __dom_wrap_exception(e);
11190 } 11190 }
11191 } 11191 }
11192 11192
11193 function native__HTMLDetailsElementWrappingImplementation__get__HTMLDetailsEleme nt_open(_this) { 11193 function native__HTMLDetailsElementWrappingImplementation__get_open(_this) {
11194 try { 11194 try {
11195 return __dom_wrap(_this.$dom.open); 11195 return __dom_wrap(_this.$dom.open);
11196 } catch (e) { 11196 } catch (e) {
11197 throw __dom_wrap_exception(e); 11197 throw __dom_wrap_exception(e);
11198 } 11198 }
11199 } 11199 }
11200 11200
11201 function native__HTMLDetailsElementWrappingImplementation__set__HTMLDetailsEleme nt_open(_this, value) { 11201 function native__HTMLDetailsElementWrappingImplementation__set_open(_this, value ) {
11202 try { 11202 try {
11203 _this.$dom.open = __dom_unwrap(value); 11203 _this.$dom.open = __dom_unwrap(value);
11204 } catch (e) { 11204 } catch (e) {
11205 throw __dom_wrap_exception(e); 11205 throw __dom_wrap_exception(e);
11206 } 11206 }
11207 } 11207 }
11208 11208
11209 function native__HTMLDirectoryElementWrappingImplementation__get__HTMLDirectoryE lement_compact(_this) { 11209 function native__HTMLDirectoryElementWrappingImplementation__get_compact(_this) {
11210 try { 11210 try {
11211 return __dom_wrap(_this.$dom.compact); 11211 return __dom_wrap(_this.$dom.compact);
11212 } catch (e) { 11212 } catch (e) {
11213 throw __dom_wrap_exception(e); 11213 throw __dom_wrap_exception(e);
11214 } 11214 }
11215 } 11215 }
11216 11216
11217 function native__HTMLDirectoryElementWrappingImplementation__set__HTMLDirectoryE lement_compact(_this, value) { 11217 function native__HTMLDirectoryElementWrappingImplementation__set_compact(_this, value) {
11218 try { 11218 try {
11219 _this.$dom.compact = __dom_unwrap(value); 11219 _this.$dom.compact = __dom_unwrap(value);
11220 } catch (e) { 11220 } catch (e) {
11221 throw __dom_wrap_exception(e); 11221 throw __dom_wrap_exception(e);
11222 } 11222 }
11223 } 11223 }
11224 11224
11225 function native__HTMLDivElementWrappingImplementation__get__HTMLDivElement_align (_this) { 11225 function native__HTMLDivElementWrappingImplementation__get_align(_this) {
11226 try { 11226 try {
11227 return __dom_wrap(_this.$dom.align); 11227 return __dom_wrap(_this.$dom.align);
11228 } catch (e) { 11228 } catch (e) {
11229 throw __dom_wrap_exception(e); 11229 throw __dom_wrap_exception(e);
11230 } 11230 }
11231 } 11231 }
11232 11232
11233 function native__HTMLDivElementWrappingImplementation__set__HTMLDivElement_align (_this, value) { 11233 function native__HTMLDivElementWrappingImplementation__set_align(_this, value) {
11234 try { 11234 try {
11235 _this.$dom.align = __dom_unwrap(value); 11235 _this.$dom.align = __dom_unwrap(value);
11236 } catch (e) { 11236 } catch (e) {
11237 throw __dom_wrap_exception(e); 11237 throw __dom_wrap_exception(e);
11238 } 11238 }
11239 } 11239 }
11240 11240
11241 function native__HTMLDocumentWrappingImplementation__get__HTMLDocument_activeEle ment(_this) { 11241 function native__HTMLDocumentWrappingImplementation__get_activeElement(_this) {
11242 try { 11242 try {
11243 return __dom_wrap(_this.$dom.activeElement); 11243 return __dom_wrap(_this.$dom.activeElement);
11244 } catch (e) { 11244 } catch (e) {
11245 throw __dom_wrap_exception(e); 11245 throw __dom_wrap_exception(e);
11246 } 11246 }
11247 } 11247 }
11248 11248
11249 function native__HTMLDocumentWrappingImplementation__get__HTMLDocument_alinkColo r(_this) { 11249 function native__HTMLDocumentWrappingImplementation__get_alinkColor(_this) {
11250 try { 11250 try {
11251 return __dom_wrap(_this.$dom.alinkColor); 11251 return __dom_wrap(_this.$dom.alinkColor);
11252 } catch (e) { 11252 } catch (e) {
11253 throw __dom_wrap_exception(e); 11253 throw __dom_wrap_exception(e);
11254 } 11254 }
11255 } 11255 }
11256 11256
11257 function native__HTMLDocumentWrappingImplementation__set__HTMLDocument_alinkColo r(_this, value) { 11257 function native__HTMLDocumentWrappingImplementation__set_alinkColor(_this, value ) {
11258 try { 11258 try {
11259 _this.$dom.alinkColor = __dom_unwrap(value); 11259 _this.$dom.alinkColor = __dom_unwrap(value);
11260 } catch (e) { 11260 } catch (e) {
11261 throw __dom_wrap_exception(e); 11261 throw __dom_wrap_exception(e);
11262 } 11262 }
11263 } 11263 }
11264 11264
11265 function native__HTMLDocumentWrappingImplementation__get__HTMLDocument_all(_this ) { 11265 function native__HTMLDocumentWrappingImplementation__get_all(_this) {
11266 try { 11266 try {
11267 return __dom_wrap(_this.$dom.all); 11267 return __dom_wrap(_this.$dom.all);
11268 } catch (e) { 11268 } catch (e) {
11269 throw __dom_wrap_exception(e); 11269 throw __dom_wrap_exception(e);
11270 } 11270 }
11271 } 11271 }
11272 11272
11273 function native__HTMLDocumentWrappingImplementation__set__HTMLDocument_all(_this , value) { 11273 function native__HTMLDocumentWrappingImplementation__set_all(_this, value) {
11274 try { 11274 try {
11275 _this.$dom.all = __dom_unwrap(value); 11275 _this.$dom.all = __dom_unwrap(value);
11276 } catch (e) { 11276 } catch (e) {
11277 throw __dom_wrap_exception(e); 11277 throw __dom_wrap_exception(e);
11278 } 11278 }
11279 } 11279 }
11280 11280
11281 function native__HTMLDocumentWrappingImplementation__get__HTMLDocument_bgColor(_ this) { 11281 function native__HTMLDocumentWrappingImplementation__get_bgColor(_this) {
11282 try { 11282 try {
11283 return __dom_wrap(_this.$dom.bgColor); 11283 return __dom_wrap(_this.$dom.bgColor);
11284 } catch (e) { 11284 } catch (e) {
11285 throw __dom_wrap_exception(e); 11285 throw __dom_wrap_exception(e);
11286 } 11286 }
11287 } 11287 }
11288 11288
11289 function native__HTMLDocumentWrappingImplementation__set__HTMLDocument_bgColor(_ this, value) { 11289 function native__HTMLDocumentWrappingImplementation__set_bgColor(_this, value) {
11290 try { 11290 try {
11291 _this.$dom.bgColor = __dom_unwrap(value); 11291 _this.$dom.bgColor = __dom_unwrap(value);
11292 } catch (e) { 11292 } catch (e) {
11293 throw __dom_wrap_exception(e); 11293 throw __dom_wrap_exception(e);
11294 } 11294 }
11295 } 11295 }
11296 11296
11297 function native__HTMLDocumentWrappingImplementation__get__HTMLDocument_compatMod e(_this) { 11297 function native__HTMLDocumentWrappingImplementation__get_compatMode_HTMLDocument (_this) {
11298 try { 11298 try {
11299 return __dom_wrap(_this.$dom.compatMode); 11299 return __dom_wrap(_this.$dom.compatMode);
11300 } catch (e) { 11300 } catch (e) {
11301 throw __dom_wrap_exception(e); 11301 throw __dom_wrap_exception(e);
11302 } 11302 }
11303 } 11303 }
11304 11304
11305 function native__HTMLDocumentWrappingImplementation__get__HTMLDocument_designMod e(_this) { 11305 function native__HTMLDocumentWrappingImplementation__get_designMode(_this) {
11306 try { 11306 try {
11307 return __dom_wrap(_this.$dom.designMode); 11307 return __dom_wrap(_this.$dom.designMode);
11308 } catch (e) { 11308 } catch (e) {
11309 throw __dom_wrap_exception(e); 11309 throw __dom_wrap_exception(e);
11310 } 11310 }
11311 } 11311 }
11312 11312
11313 function native__HTMLDocumentWrappingImplementation__set__HTMLDocument_designMod e(_this, value) { 11313 function native__HTMLDocumentWrappingImplementation__set_designMode(_this, value ) {
11314 try { 11314 try {
11315 _this.$dom.designMode = __dom_unwrap(value); 11315 _this.$dom.designMode = __dom_unwrap(value);
11316 } catch (e) { 11316 } catch (e) {
11317 throw __dom_wrap_exception(e); 11317 throw __dom_wrap_exception(e);
11318 } 11318 }
11319 } 11319 }
11320 11320
11321 function native__HTMLDocumentWrappingImplementation__get__HTMLDocument_dir(_this ) { 11321 function native__HTMLDocumentWrappingImplementation__get_dir(_this) {
11322 try { 11322 try {
11323 return __dom_wrap(_this.$dom.dir); 11323 return __dom_wrap(_this.$dom.dir);
11324 } catch (e) { 11324 } catch (e) {
11325 throw __dom_wrap_exception(e); 11325 throw __dom_wrap_exception(e);
11326 } 11326 }
11327 } 11327 }
11328 11328
11329 function native__HTMLDocumentWrappingImplementation__set__HTMLDocument_dir(_this , value) { 11329 function native__HTMLDocumentWrappingImplementation__set_dir(_this, value) {
11330 try { 11330 try {
11331 _this.$dom.dir = __dom_unwrap(value); 11331 _this.$dom.dir = __dom_unwrap(value);
11332 } catch (e) { 11332 } catch (e) {
11333 throw __dom_wrap_exception(e); 11333 throw __dom_wrap_exception(e);
11334 } 11334 }
11335 } 11335 }
11336 11336
11337 function native__HTMLDocumentWrappingImplementation__get__HTMLDocument_embeds(_t his) { 11337 function native__HTMLDocumentWrappingImplementation__get_embeds(_this) {
11338 try { 11338 try {
11339 return __dom_wrap(_this.$dom.embeds); 11339 return __dom_wrap(_this.$dom.embeds);
11340 } catch (e) { 11340 } catch (e) {
11341 throw __dom_wrap_exception(e); 11341 throw __dom_wrap_exception(e);
11342 } 11342 }
11343 } 11343 }
11344 11344
11345 function native__HTMLDocumentWrappingImplementation__get__HTMLDocument_fgColor(_ this) { 11345 function native__HTMLDocumentWrappingImplementation__get_fgColor(_this) {
11346 try { 11346 try {
11347 return __dom_wrap(_this.$dom.fgColor); 11347 return __dom_wrap(_this.$dom.fgColor);
11348 } catch (e) { 11348 } catch (e) {
11349 throw __dom_wrap_exception(e); 11349 throw __dom_wrap_exception(e);
11350 } 11350 }
11351 } 11351 }
11352 11352
11353 function native__HTMLDocumentWrappingImplementation__set__HTMLDocument_fgColor(_ this, value) { 11353 function native__HTMLDocumentWrappingImplementation__set_fgColor(_this, value) {
11354 try { 11354 try {
11355 _this.$dom.fgColor = __dom_unwrap(value); 11355 _this.$dom.fgColor = __dom_unwrap(value);
11356 } catch (e) { 11356 } catch (e) {
11357 throw __dom_wrap_exception(e); 11357 throw __dom_wrap_exception(e);
11358 } 11358 }
11359 } 11359 }
11360 11360
11361 function native__HTMLDocumentWrappingImplementation__get__HTMLDocument_height(_t his) { 11361 function native__HTMLDocumentWrappingImplementation__get_height(_this) {
11362 try { 11362 try {
11363 return __dom_wrap(_this.$dom.height); 11363 return __dom_wrap(_this.$dom.height);
11364 } catch (e) { 11364 } catch (e) {
11365 throw __dom_wrap_exception(e); 11365 throw __dom_wrap_exception(e);
11366 } 11366 }
11367 } 11367 }
11368 11368
11369 function native__HTMLDocumentWrappingImplementation__get__HTMLDocument_linkColor (_this) { 11369 function native__HTMLDocumentWrappingImplementation__get_linkColor(_this) {
11370 try { 11370 try {
11371 return __dom_wrap(_this.$dom.linkColor); 11371 return __dom_wrap(_this.$dom.linkColor);
11372 } catch (e) { 11372 } catch (e) {
11373 throw __dom_wrap_exception(e); 11373 throw __dom_wrap_exception(e);
11374 } 11374 }
11375 } 11375 }
11376 11376
11377 function native__HTMLDocumentWrappingImplementation__set__HTMLDocument_linkColor (_this, value) { 11377 function native__HTMLDocumentWrappingImplementation__set_linkColor(_this, value) {
11378 try { 11378 try {
11379 _this.$dom.linkColor = __dom_unwrap(value); 11379 _this.$dom.linkColor = __dom_unwrap(value);
11380 } catch (e) { 11380 } catch (e) {
11381 throw __dom_wrap_exception(e); 11381 throw __dom_wrap_exception(e);
11382 } 11382 }
11383 } 11383 }
11384 11384
11385 function native__HTMLDocumentWrappingImplementation__get__HTMLDocument_plugins(_ this) { 11385 function native__HTMLDocumentWrappingImplementation__get_plugins(_this) {
11386 try { 11386 try {
11387 return __dom_wrap(_this.$dom.plugins); 11387 return __dom_wrap(_this.$dom.plugins);
11388 } catch (e) { 11388 } catch (e) {
11389 throw __dom_wrap_exception(e); 11389 throw __dom_wrap_exception(e);
11390 } 11390 }
11391 } 11391 }
11392 11392
11393 function native__HTMLDocumentWrappingImplementation__get__HTMLDocument_scripts(_ this) { 11393 function native__HTMLDocumentWrappingImplementation__get_scripts(_this) {
11394 try { 11394 try {
11395 return __dom_wrap(_this.$dom.scripts); 11395 return __dom_wrap(_this.$dom.scripts);
11396 } catch (e) { 11396 } catch (e) {
11397 throw __dom_wrap_exception(e); 11397 throw __dom_wrap_exception(e);
11398 } 11398 }
11399 } 11399 }
11400 11400
11401 function native__HTMLDocumentWrappingImplementation__get__HTMLDocument_vlinkColo r(_this) { 11401 function native__HTMLDocumentWrappingImplementation__get_vlinkColor(_this) {
11402 try { 11402 try {
11403 return __dom_wrap(_this.$dom.vlinkColor); 11403 return __dom_wrap(_this.$dom.vlinkColor);
11404 } catch (e) { 11404 } catch (e) {
11405 throw __dom_wrap_exception(e); 11405 throw __dom_wrap_exception(e);
11406 } 11406 }
11407 } 11407 }
11408 11408
11409 function native__HTMLDocumentWrappingImplementation__set__HTMLDocument_vlinkColo r(_this, value) { 11409 function native__HTMLDocumentWrappingImplementation__set_vlinkColor(_this, value ) {
11410 try { 11410 try {
11411 _this.$dom.vlinkColor = __dom_unwrap(value); 11411 _this.$dom.vlinkColor = __dom_unwrap(value);
11412 } catch (e) { 11412 } catch (e) {
11413 throw __dom_wrap_exception(e); 11413 throw __dom_wrap_exception(e);
11414 } 11414 }
11415 } 11415 }
11416 11416
11417 function native__HTMLDocumentWrappingImplementation__get__HTMLDocument_width(_th is) { 11417 function native__HTMLDocumentWrappingImplementation__get_width(_this) {
11418 try { 11418 try {
11419 return __dom_wrap(_this.$dom.width); 11419 return __dom_wrap(_this.$dom.width);
11420 } catch (e) { 11420 } catch (e) {
11421 throw __dom_wrap_exception(e); 11421 throw __dom_wrap_exception(e);
11422 } 11422 }
11423 } 11423 }
11424 11424
11425 function native__HTMLDocumentWrappingImplementation__captureEvents(_this) { 11425 function native__HTMLDocumentWrappingImplementation__captureEvents(_this) {
11426 try { 11426 try {
11427 return __dom_wrap(_this.$dom.captureEvents()); 11427 return __dom_wrap(_this.$dom.captureEvents());
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
11479 } 11479 }
11480 11480
11481 function native__HTMLDocumentWrappingImplementation__writeln(_this, text) { 11481 function native__HTMLDocumentWrappingImplementation__writeln(_this, text) {
11482 try { 11482 try {
11483 return __dom_wrap(_this.$dom.writeln(__dom_unwrap(text))); 11483 return __dom_wrap(_this.$dom.writeln(__dom_unwrap(text)));
11484 } catch (e) { 11484 } catch (e) {
11485 throw __dom_wrap_exception(e); 11485 throw __dom_wrap_exception(e);
11486 } 11486 }
11487 } 11487 }
11488 11488
11489 function native__HTMLElementWrappingImplementation__get__HTMLElement_children(_t his) { 11489 function native__HTMLElementWrappingImplementation__get_children(_this) {
11490 try { 11490 try {
11491 return __dom_wrap(_this.$dom.children); 11491 return __dom_wrap(_this.$dom.children);
11492 } catch (e) { 11492 } catch (e) {
11493 throw __dom_wrap_exception(e); 11493 throw __dom_wrap_exception(e);
11494 } 11494 }
11495 } 11495 }
11496 11496
11497 function native__HTMLElementWrappingImplementation__get__HTMLElement_classList(_ this) { 11497 function native__HTMLElementWrappingImplementation__get_classList(_this) {
11498 try { 11498 try {
11499 return __dom_wrap(_this.$dom.classList); 11499 return __dom_wrap(_this.$dom.classList);
11500 } catch (e) { 11500 } catch (e) {
11501 throw __dom_wrap_exception(e); 11501 throw __dom_wrap_exception(e);
11502 } 11502 }
11503 } 11503 }
11504 11504
11505 function native__HTMLElementWrappingImplementation__get__HTMLElement_className(_ this) { 11505 function native__HTMLElementWrappingImplementation__get_className(_this) {
11506 try { 11506 try {
11507 return __dom_wrap(_this.$dom.className); 11507 return __dom_wrap(_this.$dom.className);
11508 } catch (e) { 11508 } catch (e) {
11509 throw __dom_wrap_exception(e); 11509 throw __dom_wrap_exception(e);
11510 } 11510 }
11511 } 11511 }
11512 11512
11513 function native__HTMLElementWrappingImplementation__set__HTMLElement_className(_ this, value) { 11513 function native__HTMLElementWrappingImplementation__set_className(_this, value) {
11514 try { 11514 try {
11515 _this.$dom.className = __dom_unwrap(value); 11515 _this.$dom.className = __dom_unwrap(value);
11516 } catch (e) { 11516 } catch (e) {
11517 throw __dom_wrap_exception(e); 11517 throw __dom_wrap_exception(e);
11518 } 11518 }
11519 } 11519 }
11520 11520
11521 function native__HTMLElementWrappingImplementation__get__HTMLElement_contentEdit able(_this) { 11521 function native__HTMLElementWrappingImplementation__get_contentEditable(_this) {
11522 try { 11522 try {
11523 return __dom_wrap(_this.$dom.contentEditable); 11523 return __dom_wrap(_this.$dom.contentEditable);
11524 } catch (e) { 11524 } catch (e) {
11525 throw __dom_wrap_exception(e); 11525 throw __dom_wrap_exception(e);
11526 } 11526 }
11527 } 11527 }
11528 11528
11529 function native__HTMLElementWrappingImplementation__set__HTMLElement_contentEdit able(_this, value) { 11529 function native__HTMLElementWrappingImplementation__set_contentEditable(_this, v alue) {
11530 try { 11530 try {
11531 _this.$dom.contentEditable = __dom_unwrap(value); 11531 _this.$dom.contentEditable = __dom_unwrap(value);
11532 } catch (e) { 11532 } catch (e) {
11533 throw __dom_wrap_exception(e); 11533 throw __dom_wrap_exception(e);
11534 } 11534 }
11535 } 11535 }
11536 11536
11537 function native__HTMLElementWrappingImplementation__get__HTMLElement_dir(_this) { 11537 function native__HTMLElementWrappingImplementation__get_dir(_this) {
11538 try { 11538 try {
11539 return __dom_wrap(_this.$dom.dir); 11539 return __dom_wrap(_this.$dom.dir);
11540 } catch (e) { 11540 } catch (e) {
11541 throw __dom_wrap_exception(e); 11541 throw __dom_wrap_exception(e);
11542 } 11542 }
11543 } 11543 }
11544 11544
11545 function native__HTMLElementWrappingImplementation__set__HTMLElement_dir(_this, value) { 11545 function native__HTMLElementWrappingImplementation__set_dir(_this, value) {
11546 try { 11546 try {
11547 _this.$dom.dir = __dom_unwrap(value); 11547 _this.$dom.dir = __dom_unwrap(value);
11548 } catch (e) { 11548 } catch (e) {
11549 throw __dom_wrap_exception(e); 11549 throw __dom_wrap_exception(e);
11550 } 11550 }
11551 } 11551 }
11552 11552
11553 function native__HTMLElementWrappingImplementation__get__HTMLElement_draggable(_ this) { 11553 function native__HTMLElementWrappingImplementation__get_draggable(_this) {
11554 try { 11554 try {
11555 return __dom_wrap(_this.$dom.draggable); 11555 return __dom_wrap(_this.$dom.draggable);
11556 } catch (e) { 11556 } catch (e) {
11557 throw __dom_wrap_exception(e); 11557 throw __dom_wrap_exception(e);
11558 } 11558 }
11559 } 11559 }
11560 11560
11561 function native__HTMLElementWrappingImplementation__set__HTMLElement_draggable(_ this, value) { 11561 function native__HTMLElementWrappingImplementation__set_draggable(_this, value) {
11562 try { 11562 try {
11563 _this.$dom.draggable = __dom_unwrap(value); 11563 _this.$dom.draggable = __dom_unwrap(value);
11564 } catch (e) { 11564 } catch (e) {
11565 throw __dom_wrap_exception(e); 11565 throw __dom_wrap_exception(e);
11566 } 11566 }
11567 } 11567 }
11568 11568
11569 function native__HTMLElementWrappingImplementation__get__HTMLElement_hidden(_thi s) { 11569 function native__HTMLElementWrappingImplementation__get_hidden(_this) {
11570 try { 11570 try {
11571 return __dom_wrap(_this.$dom.hidden); 11571 return __dom_wrap(_this.$dom.hidden);
11572 } catch (e) { 11572 } catch (e) {
11573 throw __dom_wrap_exception(e); 11573 throw __dom_wrap_exception(e);
11574 } 11574 }
11575 } 11575 }
11576 11576
11577 function native__HTMLElementWrappingImplementation__set__HTMLElement_hidden(_thi s, value) { 11577 function native__HTMLElementWrappingImplementation__set_hidden(_this, value) {
11578 try { 11578 try {
11579 _this.$dom.hidden = __dom_unwrap(value); 11579 _this.$dom.hidden = __dom_unwrap(value);
11580 } catch (e) { 11580 } catch (e) {
11581 throw __dom_wrap_exception(e); 11581 throw __dom_wrap_exception(e);
11582 } 11582 }
11583 } 11583 }
11584 11584
11585 function native__HTMLElementWrappingImplementation__get__HTMLElement_id(_this) { 11585 function native__HTMLElementWrappingImplementation__get_id(_this) {
11586 try { 11586 try {
11587 return __dom_wrap(_this.$dom.id); 11587 return __dom_wrap(_this.$dom.id);
11588 } catch (e) { 11588 } catch (e) {
11589 throw __dom_wrap_exception(e); 11589 throw __dom_wrap_exception(e);
11590 } 11590 }
11591 } 11591 }
11592 11592
11593 function native__HTMLElementWrappingImplementation__set__HTMLElement_id(_this, v alue) { 11593 function native__HTMLElementWrappingImplementation__set_id(_this, value) {
11594 try { 11594 try {
11595 _this.$dom.id = __dom_unwrap(value); 11595 _this.$dom.id = __dom_unwrap(value);
11596 } catch (e) { 11596 } catch (e) {
11597 throw __dom_wrap_exception(e); 11597 throw __dom_wrap_exception(e);
11598 } 11598 }
11599 } 11599 }
11600 11600
11601 function native__HTMLElementWrappingImplementation__get__HTMLElement_innerHTML(_ this) { 11601 function native__HTMLElementWrappingImplementation__get_innerHTML(_this) {
11602 try { 11602 try {
11603 return __dom_wrap(_this.$dom.innerHTML); 11603 return __dom_wrap(_this.$dom.innerHTML);
11604 } catch (e) { 11604 } catch (e) {
11605 throw __dom_wrap_exception(e); 11605 throw __dom_wrap_exception(e);
11606 } 11606 }
11607 } 11607 }
11608 11608
11609 function native__HTMLElementWrappingImplementation__set__HTMLElement_innerHTML(_ this, value) { 11609 function native__HTMLElementWrappingImplementation__set_innerHTML(_this, value) {
11610 try { 11610 try {
11611 _this.$dom.innerHTML = __dom_unwrap(value); 11611 _this.$dom.innerHTML = __dom_unwrap(value);
11612 } catch (e) { 11612 } catch (e) {
11613 throw __dom_wrap_exception(e); 11613 throw __dom_wrap_exception(e);
11614 } 11614 }
11615 } 11615 }
11616 11616
11617 function native__HTMLElementWrappingImplementation__get__HTMLElement_innerText(_ this) { 11617 function native__HTMLElementWrappingImplementation__get_innerText(_this) {
11618 try { 11618 try {
11619 return __dom_wrap(_this.$dom.innerText); 11619 return __dom_wrap(_this.$dom.innerText);
11620 } catch (e) { 11620 } catch (e) {
11621 throw __dom_wrap_exception(e); 11621 throw __dom_wrap_exception(e);
11622 } 11622 }
11623 } 11623 }
11624 11624
11625 function native__HTMLElementWrappingImplementation__set__HTMLElement_innerText(_ this, value) { 11625 function native__HTMLElementWrappingImplementation__set_innerText(_this, value) {
11626 try { 11626 try {
11627 _this.$dom.innerText = __dom_unwrap(value); 11627 _this.$dom.innerText = __dom_unwrap(value);
11628 } catch (e) { 11628 } catch (e) {
11629 throw __dom_wrap_exception(e); 11629 throw __dom_wrap_exception(e);
11630 } 11630 }
11631 } 11631 }
11632 11632
11633 function native__HTMLElementWrappingImplementation__get__HTMLElement_isContentEd itable(_this) { 11633 function native__HTMLElementWrappingImplementation__get_isContentEditable(_this) {
11634 try { 11634 try {
11635 return __dom_wrap(_this.$dom.isContentEditable); 11635 return __dom_wrap(_this.$dom.isContentEditable);
11636 } catch (e) { 11636 } catch (e) {
11637 throw __dom_wrap_exception(e); 11637 throw __dom_wrap_exception(e);
11638 } 11638 }
11639 } 11639 }
11640 11640
11641 function native__HTMLElementWrappingImplementation__get__HTMLElement_itemId(_thi s) { 11641 function native__HTMLElementWrappingImplementation__get_itemId(_this) {
11642 try { 11642 try {
11643 return __dom_wrap(_this.$dom.itemId); 11643 return __dom_wrap(_this.$dom.itemId);
11644 } catch (e) { 11644 } catch (e) {
11645 throw __dom_wrap_exception(e); 11645 throw __dom_wrap_exception(e);
11646 } 11646 }
11647 } 11647 }
11648 11648
11649 function native__HTMLElementWrappingImplementation__set__HTMLElement_itemId(_thi s, value) { 11649 function native__HTMLElementWrappingImplementation__set_itemId(_this, value) {
11650 try { 11650 try {
11651 _this.$dom.itemId = __dom_unwrap(value); 11651 _this.$dom.itemId = __dom_unwrap(value);
11652 } catch (e) { 11652 } catch (e) {
11653 throw __dom_wrap_exception(e); 11653 throw __dom_wrap_exception(e);
11654 } 11654 }
11655 } 11655 }
11656 11656
11657 function native__HTMLElementWrappingImplementation__get__HTMLElement_itemProp(_t his) { 11657 function native__HTMLElementWrappingImplementation__get_itemProp(_this) {
11658 try { 11658 try {
11659 return __dom_wrap(_this.$dom.itemProp); 11659 return __dom_wrap(_this.$dom.itemProp);
11660 } catch (e) { 11660 } catch (e) {
11661 throw __dom_wrap_exception(e); 11661 throw __dom_wrap_exception(e);
11662 } 11662 }
11663 } 11663 }
11664 11664
11665 function native__HTMLElementWrappingImplementation__get__HTMLElement_itemRef(_th is) { 11665 function native__HTMLElementWrappingImplementation__get_itemRef(_this) {
11666 try { 11666 try {
11667 return __dom_wrap(_this.$dom.itemRef); 11667 return __dom_wrap(_this.$dom.itemRef);
11668 } catch (e) { 11668 } catch (e) {
11669 throw __dom_wrap_exception(e); 11669 throw __dom_wrap_exception(e);
11670 } 11670 }
11671 } 11671 }
11672 11672
11673 function native__HTMLElementWrappingImplementation__get__HTMLElement_itemScope(_ this) { 11673 function native__HTMLElementWrappingImplementation__get_itemScope(_this) {
11674 try { 11674 try {
11675 return __dom_wrap(_this.$dom.itemScope); 11675 return __dom_wrap(_this.$dom.itemScope);
11676 } catch (e) { 11676 } catch (e) {
11677 throw __dom_wrap_exception(e); 11677 throw __dom_wrap_exception(e);
11678 } 11678 }
11679 } 11679 }
11680 11680
11681 function native__HTMLElementWrappingImplementation__set__HTMLElement_itemScope(_ this, value) { 11681 function native__HTMLElementWrappingImplementation__set_itemScope(_this, value) {
11682 try { 11682 try {
11683 _this.$dom.itemScope = __dom_unwrap(value); 11683 _this.$dom.itemScope = __dom_unwrap(value);
11684 } catch (e) { 11684 } catch (e) {
11685 throw __dom_wrap_exception(e); 11685 throw __dom_wrap_exception(e);
11686 } 11686 }
11687 } 11687 }
11688 11688
11689 function native__HTMLElementWrappingImplementation__get__HTMLElement_itemType(_t his) { 11689 function native__HTMLElementWrappingImplementation__get_itemType(_this) {
11690 try { 11690 try {
11691 return __dom_wrap(_this.$dom.itemType); 11691 return __dom_wrap(_this.$dom.itemType);
11692 } catch (e) { 11692 } catch (e) {
11693 throw __dom_wrap_exception(e); 11693 throw __dom_wrap_exception(e);
11694 } 11694 }
11695 } 11695 }
11696 11696
11697 function native__HTMLElementWrappingImplementation__get__HTMLElement_itemValue(_ this) { 11697 function native__HTMLElementWrappingImplementation__get_itemValue(_this) {
11698 try { 11698 try {
11699 return __dom_wrap(_this.$dom.itemValue); 11699 return __dom_wrap(_this.$dom.itemValue);
11700 } catch (e) { 11700 } catch (e) {
11701 throw __dom_wrap_exception(e); 11701 throw __dom_wrap_exception(e);
11702 } 11702 }
11703 } 11703 }
11704 11704
11705 function native__HTMLElementWrappingImplementation__set__HTMLElement_itemValue(_ this, value) { 11705 function native__HTMLElementWrappingImplementation__set_itemValue(_this, value) {
11706 try { 11706 try {
11707 _this.$dom.itemValue = __dom_unwrap(value); 11707 _this.$dom.itemValue = __dom_unwrap(value);
11708 } catch (e) { 11708 } catch (e) {
11709 throw __dom_wrap_exception(e); 11709 throw __dom_wrap_exception(e);
11710 } 11710 }
11711 } 11711 }
11712 11712
11713 function native__HTMLElementWrappingImplementation__get__HTMLElement_lang(_this) { 11713 function native__HTMLElementWrappingImplementation__get_lang(_this) {
11714 try { 11714 try {
11715 return __dom_wrap(_this.$dom.lang); 11715 return __dom_wrap(_this.$dom.lang);
11716 } catch (e) { 11716 } catch (e) {
11717 throw __dom_wrap_exception(e); 11717 throw __dom_wrap_exception(e);
11718 } 11718 }
11719 } 11719 }
11720 11720
11721 function native__HTMLElementWrappingImplementation__set__HTMLElement_lang(_this, value) { 11721 function native__HTMLElementWrappingImplementation__set_lang(_this, value) {
11722 try { 11722 try {
11723 _this.$dom.lang = __dom_unwrap(value); 11723 _this.$dom.lang = __dom_unwrap(value);
11724 } catch (e) { 11724 } catch (e) {
11725 throw __dom_wrap_exception(e); 11725 throw __dom_wrap_exception(e);
11726 } 11726 }
11727 } 11727 }
11728 11728
11729 function native__HTMLElementWrappingImplementation__get__HTMLElement_outerHTML(_ this) { 11729 function native__HTMLElementWrappingImplementation__get_outerHTML(_this) {
11730 try { 11730 try {
11731 return __dom_wrap(_this.$dom.outerHTML); 11731 return __dom_wrap(_this.$dom.outerHTML);
11732 } catch (e) { 11732 } catch (e) {
11733 throw __dom_wrap_exception(e); 11733 throw __dom_wrap_exception(e);
11734 } 11734 }
11735 } 11735 }
11736 11736
11737 function native__HTMLElementWrappingImplementation__set__HTMLElement_outerHTML(_ this, value) { 11737 function native__HTMLElementWrappingImplementation__set_outerHTML(_this, value) {
11738 try { 11738 try {
11739 _this.$dom.outerHTML = __dom_unwrap(value); 11739 _this.$dom.outerHTML = __dom_unwrap(value);
11740 } catch (e) { 11740 } catch (e) {
11741 throw __dom_wrap_exception(e); 11741 throw __dom_wrap_exception(e);
11742 } 11742 }
11743 } 11743 }
11744 11744
11745 function native__HTMLElementWrappingImplementation__get__HTMLElement_outerText(_ this) { 11745 function native__HTMLElementWrappingImplementation__get_outerText(_this) {
11746 try { 11746 try {
11747 return __dom_wrap(_this.$dom.outerText); 11747 return __dom_wrap(_this.$dom.outerText);
11748 } catch (e) { 11748 } catch (e) {
11749 throw __dom_wrap_exception(e); 11749 throw __dom_wrap_exception(e);
11750 } 11750 }
11751 } 11751 }
11752 11752
11753 function native__HTMLElementWrappingImplementation__set__HTMLElement_outerText(_ this, value) { 11753 function native__HTMLElementWrappingImplementation__set_outerText(_this, value) {
11754 try { 11754 try {
11755 _this.$dom.outerText = __dom_unwrap(value); 11755 _this.$dom.outerText = __dom_unwrap(value);
11756 } catch (e) { 11756 } catch (e) {
11757 throw __dom_wrap_exception(e); 11757 throw __dom_wrap_exception(e);
11758 } 11758 }
11759 } 11759 }
11760 11760
11761 function native__HTMLElementWrappingImplementation__get__HTMLElement_spellcheck( _this) { 11761 function native__HTMLElementWrappingImplementation__get_spellcheck(_this) {
11762 try { 11762 try {
11763 return __dom_wrap(_this.$dom.spellcheck); 11763 return __dom_wrap(_this.$dom.spellcheck);
11764 } catch (e) { 11764 } catch (e) {
11765 throw __dom_wrap_exception(e); 11765 throw __dom_wrap_exception(e);
11766 } 11766 }
11767 } 11767 }
11768 11768
11769 function native__HTMLElementWrappingImplementation__set__HTMLElement_spellcheck( _this, value) { 11769 function native__HTMLElementWrappingImplementation__set_spellcheck(_this, value) {
11770 try { 11770 try {
11771 _this.$dom.spellcheck = __dom_unwrap(value); 11771 _this.$dom.spellcheck = __dom_unwrap(value);
11772 } catch (e) { 11772 } catch (e) {
11773 throw __dom_wrap_exception(e); 11773 throw __dom_wrap_exception(e);
11774 } 11774 }
11775 } 11775 }
11776 11776
11777 function native__HTMLElementWrappingImplementation__get__HTMLElement_tabIndex(_t his) { 11777 function native__HTMLElementWrappingImplementation__get_tabIndex(_this) {
11778 try { 11778 try {
11779 return __dom_wrap(_this.$dom.tabIndex); 11779 return __dom_wrap(_this.$dom.tabIndex);
11780 } catch (e) { 11780 } catch (e) {
11781 throw __dom_wrap_exception(e); 11781 throw __dom_wrap_exception(e);
11782 } 11782 }
11783 } 11783 }
11784 11784
11785 function native__HTMLElementWrappingImplementation__set__HTMLElement_tabIndex(_t his, value) { 11785 function native__HTMLElementWrappingImplementation__set_tabIndex(_this, value) {
11786 try { 11786 try {
11787 _this.$dom.tabIndex = __dom_unwrap(value); 11787 _this.$dom.tabIndex = __dom_unwrap(value);
11788 } catch (e) { 11788 } catch (e) {
11789 throw __dom_wrap_exception(e); 11789 throw __dom_wrap_exception(e);
11790 } 11790 }
11791 } 11791 }
11792 11792
11793 function native__HTMLElementWrappingImplementation__get__HTMLElement_title(_this ) { 11793 function native__HTMLElementWrappingImplementation__get_title(_this) {
11794 try { 11794 try {
11795 return __dom_wrap(_this.$dom.title); 11795 return __dom_wrap(_this.$dom.title);
11796 } catch (e) { 11796 } catch (e) {
11797 throw __dom_wrap_exception(e); 11797 throw __dom_wrap_exception(e);
11798 } 11798 }
11799 } 11799 }
11800 11800
11801 function native__HTMLElementWrappingImplementation__set__HTMLElement_title(_this , value) { 11801 function native__HTMLElementWrappingImplementation__set_title(_this, value) {
11802 try { 11802 try {
11803 _this.$dom.title = __dom_unwrap(value); 11803 _this.$dom.title = __dom_unwrap(value);
11804 } catch (e) { 11804 } catch (e) {
11805 throw __dom_wrap_exception(e); 11805 throw __dom_wrap_exception(e);
11806 } 11806 }
11807 } 11807 }
11808 11808
11809 function native__HTMLElementWrappingImplementation__get__HTMLElement_webkitdropz one(_this) { 11809 function native__HTMLElementWrappingImplementation__get_webkitdropzone(_this) {
11810 try { 11810 try {
11811 return __dom_wrap(_this.$dom.webkitdropzone); 11811 return __dom_wrap(_this.$dom.webkitdropzone);
11812 } catch (e) { 11812 } catch (e) {
11813 throw __dom_wrap_exception(e); 11813 throw __dom_wrap_exception(e);
11814 } 11814 }
11815 } 11815 }
11816 11816
11817 function native__HTMLElementWrappingImplementation__set__HTMLElement_webkitdropz one(_this, value) { 11817 function native__HTMLElementWrappingImplementation__set_webkitdropzone(_this, va lue) {
11818 try { 11818 try {
11819 _this.$dom.webkitdropzone = __dom_unwrap(value); 11819 _this.$dom.webkitdropzone = __dom_unwrap(value);
11820 } catch (e) { 11820 } catch (e) {
11821 throw __dom_wrap_exception(e); 11821 throw __dom_wrap_exception(e);
11822 } 11822 }
11823 } 11823 }
11824 11824
11825 function native__HTMLElementWrappingImplementation__insertAdjacentElement(_this, where, element) { 11825 function native__HTMLElementWrappingImplementation__insertAdjacentElement(_this, where, element) {
11826 try { 11826 try {
11827 return __dom_wrap(_this.$dom.insertAdjacentElement(__dom_unwrap(where), __do m_unwrap(element))); 11827 return __dom_wrap(_this.$dom.insertAdjacentElement(__dom_unwrap(where), __do m_unwrap(element)));
(...skipping 11 matching lines...) Expand all
11839 } 11839 }
11840 11840
11841 function native__HTMLElementWrappingImplementation__insertAdjacentText(_this, wh ere, text) { 11841 function native__HTMLElementWrappingImplementation__insertAdjacentText(_this, wh ere, text) {
11842 try { 11842 try {
11843 return __dom_wrap(_this.$dom.insertAdjacentText(__dom_unwrap(where), __dom_u nwrap(text))); 11843 return __dom_wrap(_this.$dom.insertAdjacentText(__dom_unwrap(where), __dom_u nwrap(text)));
11844 } catch (e) { 11844 } catch (e) {
11845 throw __dom_wrap_exception(e); 11845 throw __dom_wrap_exception(e);
11846 } 11846 }
11847 } 11847 }
11848 11848
11849 function native__HTMLEmbedElementWrappingImplementation__get__HTMLEmbedElement_a lign(_this) { 11849 function native__HTMLEmbedElementWrappingImplementation__get_align(_this) {
11850 try { 11850 try {
11851 return __dom_wrap(_this.$dom.align); 11851 return __dom_wrap(_this.$dom.align);
11852 } catch (e) { 11852 } catch (e) {
11853 throw __dom_wrap_exception(e); 11853 throw __dom_wrap_exception(e);
11854 } 11854 }
11855 } 11855 }
11856 11856
11857 function native__HTMLEmbedElementWrappingImplementation__set__HTMLEmbedElement_a lign(_this, value) { 11857 function native__HTMLEmbedElementWrappingImplementation__set_align(_this, value) {
11858 try { 11858 try {
11859 _this.$dom.align = __dom_unwrap(value); 11859 _this.$dom.align = __dom_unwrap(value);
11860 } catch (e) { 11860 } catch (e) {
11861 throw __dom_wrap_exception(e); 11861 throw __dom_wrap_exception(e);
11862 } 11862 }
11863 } 11863 }
11864 11864
11865 function native__HTMLEmbedElementWrappingImplementation__get__HTMLEmbedElement_h eight(_this) { 11865 function native__HTMLEmbedElementWrappingImplementation__get_height(_this) {
11866 try { 11866 try {
11867 return __dom_wrap(_this.$dom.height); 11867 return __dom_wrap(_this.$dom.height);
11868 } catch (e) { 11868 } catch (e) {
11869 throw __dom_wrap_exception(e); 11869 throw __dom_wrap_exception(e);
11870 } 11870 }
11871 } 11871 }
11872 11872
11873 function native__HTMLEmbedElementWrappingImplementation__set__HTMLEmbedElement_h eight(_this, value) { 11873 function native__HTMLEmbedElementWrappingImplementation__set_height(_this, value ) {
11874 try { 11874 try {
11875 _this.$dom.height = __dom_unwrap(value); 11875 _this.$dom.height = __dom_unwrap(value);
11876 } catch (e) { 11876 } catch (e) {
11877 throw __dom_wrap_exception(e); 11877 throw __dom_wrap_exception(e);
11878 } 11878 }
11879 } 11879 }
11880 11880
11881 function native__HTMLEmbedElementWrappingImplementation__get__HTMLEmbedElement_n ame(_this) { 11881 function native__HTMLEmbedElementWrappingImplementation__get_name(_this) {
11882 try { 11882 try {
11883 return __dom_wrap(_this.$dom.name); 11883 return __dom_wrap(_this.$dom.name);
11884 } catch (e) { 11884 } catch (e) {
11885 throw __dom_wrap_exception(e); 11885 throw __dom_wrap_exception(e);
11886 } 11886 }
11887 } 11887 }
11888 11888
11889 function native__HTMLEmbedElementWrappingImplementation__set__HTMLEmbedElement_n ame(_this, value) { 11889 function native__HTMLEmbedElementWrappingImplementation__set_name(_this, value) {
11890 try { 11890 try {
11891 _this.$dom.name = __dom_unwrap(value); 11891 _this.$dom.name = __dom_unwrap(value);
11892 } catch (e) { 11892 } catch (e) {
11893 throw __dom_wrap_exception(e); 11893 throw __dom_wrap_exception(e);
11894 } 11894 }
11895 } 11895 }
11896 11896
11897 function native__HTMLEmbedElementWrappingImplementation__get__HTMLEmbedElement_s rc(_this) { 11897 function native__HTMLEmbedElementWrappingImplementation__get_src(_this) {
11898 try { 11898 try {
11899 return __dom_wrap(_this.$dom.src); 11899 return __dom_wrap(_this.$dom.src);
11900 } catch (e) { 11900 } catch (e) {
11901 throw __dom_wrap_exception(e); 11901 throw __dom_wrap_exception(e);
11902 } 11902 }
11903 } 11903 }
11904 11904
11905 function native__HTMLEmbedElementWrappingImplementation__set__HTMLEmbedElement_s rc(_this, value) { 11905 function native__HTMLEmbedElementWrappingImplementation__set_src(_this, value) {
11906 try { 11906 try {
11907 _this.$dom.src = __dom_unwrap(value); 11907 _this.$dom.src = __dom_unwrap(value);
11908 } catch (e) { 11908 } catch (e) {
11909 throw __dom_wrap_exception(e); 11909 throw __dom_wrap_exception(e);
11910 } 11910 }
11911 } 11911 }
11912 11912
11913 function native__HTMLEmbedElementWrappingImplementation__get__HTMLEmbedElement_t ype(_this) { 11913 function native__HTMLEmbedElementWrappingImplementation__get_type(_this) {
11914 try { 11914 try {
11915 return __dom_wrap(_this.$dom.type); 11915 return __dom_wrap(_this.$dom.type);
11916 } catch (e) { 11916 } catch (e) {
11917 throw __dom_wrap_exception(e); 11917 throw __dom_wrap_exception(e);
11918 } 11918 }
11919 } 11919 }
11920 11920
11921 function native__HTMLEmbedElementWrappingImplementation__set__HTMLEmbedElement_t ype(_this, value) { 11921 function native__HTMLEmbedElementWrappingImplementation__set_type(_this, value) {
11922 try { 11922 try {
11923 _this.$dom.type = __dom_unwrap(value); 11923 _this.$dom.type = __dom_unwrap(value);
11924 } catch (e) { 11924 } catch (e) {
11925 throw __dom_wrap_exception(e); 11925 throw __dom_wrap_exception(e);
11926 } 11926 }
11927 } 11927 }
11928 11928
11929 function native__HTMLEmbedElementWrappingImplementation__get__HTMLEmbedElement_w idth(_this) { 11929 function native__HTMLEmbedElementWrappingImplementation__get_width(_this) {
11930 try { 11930 try {
11931 return __dom_wrap(_this.$dom.width); 11931 return __dom_wrap(_this.$dom.width);
11932 } catch (e) { 11932 } catch (e) {
11933 throw __dom_wrap_exception(e); 11933 throw __dom_wrap_exception(e);
11934 } 11934 }
11935 } 11935 }
11936 11936
11937 function native__HTMLEmbedElementWrappingImplementation__set__HTMLEmbedElement_w idth(_this, value) { 11937 function native__HTMLEmbedElementWrappingImplementation__set_width(_this, value) {
11938 try { 11938 try {
11939 _this.$dom.width = __dom_unwrap(value); 11939 _this.$dom.width = __dom_unwrap(value);
11940 } catch (e) { 11940 } catch (e) {
11941 throw __dom_wrap_exception(e); 11941 throw __dom_wrap_exception(e);
11942 } 11942 }
11943 } 11943 }
11944 11944
11945 function native__HTMLFieldSetElementWrappingImplementation__get__HTMLFieldSetEle ment_form(_this) { 11945 function native__HTMLFieldSetElementWrappingImplementation__get_form(_this) {
11946 try { 11946 try {
11947 return __dom_wrap(_this.$dom.form); 11947 return __dom_wrap(_this.$dom.form);
11948 } catch (e) { 11948 } catch (e) {
11949 throw __dom_wrap_exception(e); 11949 throw __dom_wrap_exception(e);
11950 } 11950 }
11951 } 11951 }
11952 11952
11953 function native__HTMLFieldSetElementWrappingImplementation__get__HTMLFieldSetEle ment_validationMessage(_this) { 11953 function native__HTMLFieldSetElementWrappingImplementation__get_validationMessag e(_this) {
11954 try { 11954 try {
11955 return __dom_wrap(_this.$dom.validationMessage); 11955 return __dom_wrap(_this.$dom.validationMessage);
11956 } catch (e) { 11956 } catch (e) {
11957 throw __dom_wrap_exception(e); 11957 throw __dom_wrap_exception(e);
11958 } 11958 }
11959 } 11959 }
11960 11960
11961 function native__HTMLFieldSetElementWrappingImplementation__get__HTMLFieldSetEle ment_validity(_this) { 11961 function native__HTMLFieldSetElementWrappingImplementation__get_validity(_this) {
11962 try { 11962 try {
11963 return __dom_wrap(_this.$dom.validity); 11963 return __dom_wrap(_this.$dom.validity);
11964 } catch (e) { 11964 } catch (e) {
11965 throw __dom_wrap_exception(e); 11965 throw __dom_wrap_exception(e);
11966 } 11966 }
11967 } 11967 }
11968 11968
11969 function native__HTMLFieldSetElementWrappingImplementation__get__HTMLFieldSetEle ment_willValidate(_this) { 11969 function native__HTMLFieldSetElementWrappingImplementation__get_willValidate(_th is) {
11970 try { 11970 try {
11971 return __dom_wrap(_this.$dom.willValidate); 11971 return __dom_wrap(_this.$dom.willValidate);
11972 } catch (e) { 11972 } catch (e) {
11973 throw __dom_wrap_exception(e); 11973 throw __dom_wrap_exception(e);
11974 } 11974 }
11975 } 11975 }
11976 11976
11977 function native__HTMLFieldSetElementWrappingImplementation__checkValidity(_this) { 11977 function native__HTMLFieldSetElementWrappingImplementation__checkValidity(_this) {
11978 try { 11978 try {
11979 return __dom_wrap(_this.$dom.checkValidity()); 11979 return __dom_wrap(_this.$dom.checkValidity());
11980 } catch (e) { 11980 } catch (e) {
11981 throw __dom_wrap_exception(e); 11981 throw __dom_wrap_exception(e);
11982 } 11982 }
11983 } 11983 }
11984 11984
11985 function native__HTMLFieldSetElementWrappingImplementation__setCustomValidity(_t his, error) { 11985 function native__HTMLFieldSetElementWrappingImplementation__setCustomValidity(_t his, error) {
11986 try { 11986 try {
11987 return __dom_wrap(_this.$dom.setCustomValidity(__dom_unwrap(error))); 11987 return __dom_wrap(_this.$dom.setCustomValidity(__dom_unwrap(error)));
11988 } catch (e) { 11988 } catch (e) {
11989 throw __dom_wrap_exception(e); 11989 throw __dom_wrap_exception(e);
11990 } 11990 }
11991 } 11991 }
11992 11992
11993 function native__HTMLFontElementWrappingImplementation__get__HTMLFontElement_col or(_this) { 11993 function native__HTMLFontElementWrappingImplementation__get_color(_this) {
11994 try { 11994 try {
11995 return __dom_wrap(_this.$dom.color); 11995 return __dom_wrap(_this.$dom.color);
11996 } catch (e) { 11996 } catch (e) {
11997 throw __dom_wrap_exception(e); 11997 throw __dom_wrap_exception(e);
11998 } 11998 }
11999 } 11999 }
12000 12000
12001 function native__HTMLFontElementWrappingImplementation__set__HTMLFontElement_col or(_this, value) { 12001 function native__HTMLFontElementWrappingImplementation__set_color(_this, value) {
12002 try { 12002 try {
12003 _this.$dom.color = __dom_unwrap(value); 12003 _this.$dom.color = __dom_unwrap(value);
12004 } catch (e) { 12004 } catch (e) {
12005 throw __dom_wrap_exception(e); 12005 throw __dom_wrap_exception(e);
12006 } 12006 }
12007 } 12007 }
12008 12008
12009 function native__HTMLFontElementWrappingImplementation__get__HTMLFontElement_fac e(_this) { 12009 function native__HTMLFontElementWrappingImplementation__get_face(_this) {
12010 try { 12010 try {
12011 return __dom_wrap(_this.$dom.face); 12011 return __dom_wrap(_this.$dom.face);
12012 } catch (e) { 12012 } catch (e) {
12013 throw __dom_wrap_exception(e); 12013 throw __dom_wrap_exception(e);
12014 } 12014 }
12015 } 12015 }
12016 12016
12017 function native__HTMLFontElementWrappingImplementation__set__HTMLFontElement_fac e(_this, value) { 12017 function native__HTMLFontElementWrappingImplementation__set_face(_this, value) {
12018 try { 12018 try {
12019 _this.$dom.face = __dom_unwrap(value); 12019 _this.$dom.face = __dom_unwrap(value);
12020 } catch (e) { 12020 } catch (e) {
12021 throw __dom_wrap_exception(e); 12021 throw __dom_wrap_exception(e);
12022 } 12022 }
12023 } 12023 }
12024 12024
12025 function native__HTMLFontElementWrappingImplementation__get__HTMLFontElement_siz e(_this) { 12025 function native__HTMLFontElementWrappingImplementation__get_size(_this) {
12026 try { 12026 try {
12027 return __dom_wrap(_this.$dom.size); 12027 return __dom_wrap(_this.$dom.size);
12028 } catch (e) { 12028 } catch (e) {
12029 throw __dom_wrap_exception(e); 12029 throw __dom_wrap_exception(e);
12030 } 12030 }
12031 } 12031 }
12032 12032
12033 function native__HTMLFontElementWrappingImplementation__set__HTMLFontElement_siz e(_this, value) { 12033 function native__HTMLFontElementWrappingImplementation__set_size(_this, value) {
12034 try { 12034 try {
12035 _this.$dom.size = __dom_unwrap(value); 12035 _this.$dom.size = __dom_unwrap(value);
12036 } catch (e) { 12036 } catch (e) {
12037 throw __dom_wrap_exception(e); 12037 throw __dom_wrap_exception(e);
12038 } 12038 }
12039 } 12039 }
12040 12040
12041 function native__HTMLFormElementWrappingImplementation__get__HTMLFormElement_acc eptCharset(_this) { 12041 function native__HTMLFormElementWrappingImplementation__get_acceptCharset(_this) {
12042 try { 12042 try {
12043 return __dom_wrap(_this.$dom.acceptCharset); 12043 return __dom_wrap(_this.$dom.acceptCharset);
12044 } catch (e) { 12044 } catch (e) {
12045 throw __dom_wrap_exception(e); 12045 throw __dom_wrap_exception(e);
12046 } 12046 }
12047 } 12047 }
12048 12048
12049 function native__HTMLFormElementWrappingImplementation__set__HTMLFormElement_acc eptCharset(_this, value) { 12049 function native__HTMLFormElementWrappingImplementation__set_acceptCharset(_this, value) {
12050 try { 12050 try {
12051 _this.$dom.acceptCharset = __dom_unwrap(value); 12051 _this.$dom.acceptCharset = __dom_unwrap(value);
12052 } catch (e) { 12052 } catch (e) {
12053 throw __dom_wrap_exception(e); 12053 throw __dom_wrap_exception(e);
12054 } 12054 }
12055 } 12055 }
12056 12056
12057 function native__HTMLFormElementWrappingImplementation__get__HTMLFormElement_act ion(_this) { 12057 function native__HTMLFormElementWrappingImplementation__get_action(_this) {
12058 try { 12058 try {
12059 return __dom_wrap(_this.$dom.action); 12059 return __dom_wrap(_this.$dom.action);
12060 } catch (e) { 12060 } catch (e) {
12061 throw __dom_wrap_exception(e); 12061 throw __dom_wrap_exception(e);
12062 } 12062 }
12063 } 12063 }
12064 12064
12065 function native__HTMLFormElementWrappingImplementation__set__HTMLFormElement_act ion(_this, value) { 12065 function native__HTMLFormElementWrappingImplementation__set_action(_this, value) {
12066 try { 12066 try {
12067 _this.$dom.action = __dom_unwrap(value); 12067 _this.$dom.action = __dom_unwrap(value);
12068 } catch (e) { 12068 } catch (e) {
12069 throw __dom_wrap_exception(e); 12069 throw __dom_wrap_exception(e);
12070 } 12070 }
12071 } 12071 }
12072 12072
12073 function native__HTMLFormElementWrappingImplementation__get__HTMLFormElement_aut ocomplete(_this) { 12073 function native__HTMLFormElementWrappingImplementation__get_autocomplete(_this) {
12074 try { 12074 try {
12075 return __dom_wrap(_this.$dom.autocomplete); 12075 return __dom_wrap(_this.$dom.autocomplete);
12076 } catch (e) { 12076 } catch (e) {
12077 throw __dom_wrap_exception(e); 12077 throw __dom_wrap_exception(e);
12078 } 12078 }
12079 } 12079 }
12080 12080
12081 function native__HTMLFormElementWrappingImplementation__set__HTMLFormElement_aut ocomplete(_this, value) { 12081 function native__HTMLFormElementWrappingImplementation__set_autocomplete(_this, value) {
12082 try { 12082 try {
12083 _this.$dom.autocomplete = __dom_unwrap(value); 12083 _this.$dom.autocomplete = __dom_unwrap(value);
12084 } catch (e) { 12084 } catch (e) {
12085 throw __dom_wrap_exception(e); 12085 throw __dom_wrap_exception(e);
12086 } 12086 }
12087 } 12087 }
12088 12088
12089 function native__HTMLFormElementWrappingImplementation__get__HTMLFormElement_ele ments(_this) { 12089 function native__HTMLFormElementWrappingImplementation__get_elements(_this) {
12090 try { 12090 try {
12091 return __dom_wrap(_this.$dom.elements); 12091 return __dom_wrap(_this.$dom.elements);
12092 } catch (e) { 12092 } catch (e) {
12093 throw __dom_wrap_exception(e); 12093 throw __dom_wrap_exception(e);
12094 } 12094 }
12095 } 12095 }
12096 12096
12097 function native__HTMLFormElementWrappingImplementation__get__HTMLFormElement_enc oding(_this) { 12097 function native__HTMLFormElementWrappingImplementation__get_encoding(_this) {
12098 try { 12098 try {
12099 return __dom_wrap(_this.$dom.encoding); 12099 return __dom_wrap(_this.$dom.encoding);
12100 } catch (e) { 12100 } catch (e) {
12101 throw __dom_wrap_exception(e); 12101 throw __dom_wrap_exception(e);
12102 } 12102 }
12103 } 12103 }
12104 12104
12105 function native__HTMLFormElementWrappingImplementation__set__HTMLFormElement_enc oding(_this, value) { 12105 function native__HTMLFormElementWrappingImplementation__set_encoding(_this, valu e) {
12106 try { 12106 try {
12107 _this.$dom.encoding = __dom_unwrap(value); 12107 _this.$dom.encoding = __dom_unwrap(value);
12108 } catch (e) { 12108 } catch (e) {
12109 throw __dom_wrap_exception(e); 12109 throw __dom_wrap_exception(e);
12110 } 12110 }
12111 } 12111 }
12112 12112
12113 function native__HTMLFormElementWrappingImplementation__get__HTMLFormElement_enc type(_this) { 12113 function native__HTMLFormElementWrappingImplementation__get_enctype(_this) {
12114 try { 12114 try {
12115 return __dom_wrap(_this.$dom.enctype); 12115 return __dom_wrap(_this.$dom.enctype);
12116 } catch (e) { 12116 } catch (e) {
12117 throw __dom_wrap_exception(e); 12117 throw __dom_wrap_exception(e);
12118 } 12118 }
12119 } 12119 }
12120 12120
12121 function native__HTMLFormElementWrappingImplementation__set__HTMLFormElement_enc type(_this, value) { 12121 function native__HTMLFormElementWrappingImplementation__set_enctype(_this, value ) {
12122 try { 12122 try {
12123 _this.$dom.enctype = __dom_unwrap(value); 12123 _this.$dom.enctype = __dom_unwrap(value);
12124 } catch (e) { 12124 } catch (e) {
12125 throw __dom_wrap_exception(e); 12125 throw __dom_wrap_exception(e);
12126 } 12126 }
12127 } 12127 }
12128 12128
12129 function native__HTMLFormElementWrappingImplementation__get__HTMLFormElement_len gth(_this) { 12129 function native__HTMLFormElementWrappingImplementation__get_length(_this) {
12130 try { 12130 try {
12131 return __dom_wrap(_this.$dom.length); 12131 return __dom_wrap(_this.$dom.length);
12132 } catch (e) { 12132 } catch (e) {
12133 throw __dom_wrap_exception(e); 12133 throw __dom_wrap_exception(e);
12134 } 12134 }
12135 } 12135 }
12136 12136
12137 function native__HTMLFormElementWrappingImplementation__get__HTMLFormElement_met hod(_this) { 12137 function native__HTMLFormElementWrappingImplementation__get_method(_this) {
12138 try { 12138 try {
12139 return __dom_wrap(_this.$dom.method); 12139 return __dom_wrap(_this.$dom.method);
12140 } catch (e) { 12140 } catch (e) {
12141 throw __dom_wrap_exception(e); 12141 throw __dom_wrap_exception(e);
12142 } 12142 }
12143 } 12143 }
12144 12144
12145 function native__HTMLFormElementWrappingImplementation__set__HTMLFormElement_met hod(_this, value) { 12145 function native__HTMLFormElementWrappingImplementation__set_method(_this, value) {
12146 try { 12146 try {
12147 _this.$dom.method = __dom_unwrap(value); 12147 _this.$dom.method = __dom_unwrap(value);
12148 } catch (e) { 12148 } catch (e) {
12149 throw __dom_wrap_exception(e); 12149 throw __dom_wrap_exception(e);
12150 } 12150 }
12151 } 12151 }
12152 12152
12153 function native__HTMLFormElementWrappingImplementation__get__HTMLFormElement_nam e(_this) { 12153 function native__HTMLFormElementWrappingImplementation__get_name(_this) {
12154 try { 12154 try {
12155 return __dom_wrap(_this.$dom.name); 12155 return __dom_wrap(_this.$dom.name);
12156 } catch (e) { 12156 } catch (e) {
12157 throw __dom_wrap_exception(e); 12157 throw __dom_wrap_exception(e);
12158 } 12158 }
12159 } 12159 }
12160 12160
12161 function native__HTMLFormElementWrappingImplementation__set__HTMLFormElement_nam e(_this, value) { 12161 function native__HTMLFormElementWrappingImplementation__set_name(_this, value) {
12162 try { 12162 try {
12163 _this.$dom.name = __dom_unwrap(value); 12163 _this.$dom.name = __dom_unwrap(value);
12164 } catch (e) { 12164 } catch (e) {
12165 throw __dom_wrap_exception(e); 12165 throw __dom_wrap_exception(e);
12166 } 12166 }
12167 } 12167 }
12168 12168
12169 function native__HTMLFormElementWrappingImplementation__get__HTMLFormElement_noV alidate(_this) { 12169 function native__HTMLFormElementWrappingImplementation__get_noValidate(_this) {
12170 try { 12170 try {
12171 return __dom_wrap(_this.$dom.noValidate); 12171 return __dom_wrap(_this.$dom.noValidate);
12172 } catch (e) { 12172 } catch (e) {
12173 throw __dom_wrap_exception(e); 12173 throw __dom_wrap_exception(e);
12174 } 12174 }
12175 } 12175 }
12176 12176
12177 function native__HTMLFormElementWrappingImplementation__set__HTMLFormElement_noV alidate(_this, value) { 12177 function native__HTMLFormElementWrappingImplementation__set_noValidate(_this, va lue) {
12178 try { 12178 try {
12179 _this.$dom.noValidate = __dom_unwrap(value); 12179 _this.$dom.noValidate = __dom_unwrap(value);
12180 } catch (e) { 12180 } catch (e) {
12181 throw __dom_wrap_exception(e); 12181 throw __dom_wrap_exception(e);
12182 } 12182 }
12183 } 12183 }
12184 12184
12185 function native__HTMLFormElementWrappingImplementation__get__HTMLFormElement_tar get(_this) { 12185 function native__HTMLFormElementWrappingImplementation__get_target(_this) {
12186 try { 12186 try {
12187 return __dom_wrap(_this.$dom.target); 12187 return __dom_wrap(_this.$dom.target);
12188 } catch (e) { 12188 } catch (e) {
12189 throw __dom_wrap_exception(e); 12189 throw __dom_wrap_exception(e);
12190 } 12190 }
12191 } 12191 }
12192 12192
12193 function native__HTMLFormElementWrappingImplementation__set__HTMLFormElement_tar get(_this, value) { 12193 function native__HTMLFormElementWrappingImplementation__set_target(_this, value) {
12194 try { 12194 try {
12195 _this.$dom.target = __dom_unwrap(value); 12195 _this.$dom.target = __dom_unwrap(value);
12196 } catch (e) { 12196 } catch (e) {
12197 throw __dom_wrap_exception(e); 12197 throw __dom_wrap_exception(e);
12198 } 12198 }
12199 } 12199 }
12200 12200
12201 function native__HTMLFormElementWrappingImplementation__checkValidity(_this) { 12201 function native__HTMLFormElementWrappingImplementation__checkValidity(_this) {
12202 try { 12202 try {
12203 return __dom_wrap(_this.$dom.checkValidity()); 12203 return __dom_wrap(_this.$dom.checkValidity());
(...skipping 11 matching lines...) Expand all
12215 } 12215 }
12216 12216
12217 function native__HTMLFormElementWrappingImplementation__submit(_this) { 12217 function native__HTMLFormElementWrappingImplementation__submit(_this) {
12218 try { 12218 try {
12219 return __dom_wrap(_this.$dom.submitFromJavaScript()); 12219 return __dom_wrap(_this.$dom.submitFromJavaScript());
12220 } catch (e) { 12220 } catch (e) {
12221 throw __dom_wrap_exception(e); 12221 throw __dom_wrap_exception(e);
12222 } 12222 }
12223 } 12223 }
12224 12224
12225 function native__HTMLFrameElementWrappingImplementation__get__HTMLFrameElement_c ontentDocument(_this) { 12225 function native__HTMLFrameElementWrappingImplementation__get_contentDocument(_th is) {
12226 try { 12226 try {
12227 return __dom_wrap(_this.$dom.contentDocument); 12227 return __dom_wrap(_this.$dom.contentDocument);
12228 } catch (e) { 12228 } catch (e) {
12229 throw __dom_wrap_exception(e); 12229 throw __dom_wrap_exception(e);
12230 } 12230 }
12231 } 12231 }
12232 12232
12233 function native__HTMLFrameElementWrappingImplementation__get__HTMLFrameElement_c ontentWindow(_this) { 12233 function native__HTMLFrameElementWrappingImplementation__get_contentWindow(_this ) {
12234 try { 12234 try {
12235 return __dom_wrap(_this.$dom.contentWindow); 12235 return __dom_wrap(_this.$dom.contentWindow);
12236 } catch (e) { 12236 } catch (e) {
12237 throw __dom_wrap_exception(e); 12237 throw __dom_wrap_exception(e);
12238 } 12238 }
12239 } 12239 }
12240 12240
12241 function native__HTMLFrameElementWrappingImplementation__get__HTMLFrameElement_f rameBorder(_this) { 12241 function native__HTMLFrameElementWrappingImplementation__get_frameBorder(_this) {
12242 try { 12242 try {
12243 return __dom_wrap(_this.$dom.frameBorder); 12243 return __dom_wrap(_this.$dom.frameBorder);
12244 } catch (e) { 12244 } catch (e) {
12245 throw __dom_wrap_exception(e); 12245 throw __dom_wrap_exception(e);
12246 } 12246 }
12247 } 12247 }
12248 12248
12249 function native__HTMLFrameElementWrappingImplementation__set__HTMLFrameElement_f rameBorder(_this, value) { 12249 function native__HTMLFrameElementWrappingImplementation__set_frameBorder(_this, value) {
12250 try { 12250 try {
12251 _this.$dom.frameBorder = __dom_unwrap(value); 12251 _this.$dom.frameBorder = __dom_unwrap(value);
12252 } catch (e) { 12252 } catch (e) {
12253 throw __dom_wrap_exception(e); 12253 throw __dom_wrap_exception(e);
12254 } 12254 }
12255 } 12255 }
12256 12256
12257 function native__HTMLFrameElementWrappingImplementation__get__HTMLFrameElement_h eight(_this) { 12257 function native__HTMLFrameElementWrappingImplementation__get_height(_this) {
12258 try { 12258 try {
12259 return __dom_wrap(_this.$dom.height); 12259 return __dom_wrap(_this.$dom.height);
12260 } catch (e) { 12260 } catch (e) {
12261 throw __dom_wrap_exception(e); 12261 throw __dom_wrap_exception(e);
12262 } 12262 }
12263 } 12263 }
12264 12264
12265 function native__HTMLFrameElementWrappingImplementation__get__HTMLFrameElement_l ocation(_this) { 12265 function native__HTMLFrameElementWrappingImplementation__get_location(_this) {
12266 try { 12266 try {
12267 return __dom_wrap(_this.$dom.location); 12267 return __dom_wrap(_this.$dom.location);
12268 } catch (e) { 12268 } catch (e) {
12269 throw __dom_wrap_exception(e); 12269 throw __dom_wrap_exception(e);
12270 } 12270 }
12271 } 12271 }
12272 12272
12273 function native__HTMLFrameElementWrappingImplementation__set__HTMLFrameElement_l ocation(_this, value) { 12273 function native__HTMLFrameElementWrappingImplementation__set_location(_this, val ue) {
12274 try { 12274 try {
12275 _this.$dom.location = __dom_unwrap(value); 12275 _this.$dom.location = __dom_unwrap(value);
12276 } catch (e) { 12276 } catch (e) {
12277 throw __dom_wrap_exception(e); 12277 throw __dom_wrap_exception(e);
12278 } 12278 }
12279 } 12279 }
12280 12280
12281 function native__HTMLFrameElementWrappingImplementation__get__HTMLFrameElement_l ongDesc(_this) { 12281 function native__HTMLFrameElementWrappingImplementation__get_longDesc(_this) {
12282 try { 12282 try {
12283 return __dom_wrap(_this.$dom.longDesc); 12283 return __dom_wrap(_this.$dom.longDesc);
12284 } catch (e) { 12284 } catch (e) {
12285 throw __dom_wrap_exception(e); 12285 throw __dom_wrap_exception(e);
12286 } 12286 }
12287 } 12287 }
12288 12288
12289 function native__HTMLFrameElementWrappingImplementation__set__HTMLFrameElement_l ongDesc(_this, value) { 12289 function native__HTMLFrameElementWrappingImplementation__set_longDesc(_this, val ue) {
12290 try { 12290 try {
12291 _this.$dom.longDesc = __dom_unwrap(value); 12291 _this.$dom.longDesc = __dom_unwrap(value);
12292 } catch (e) { 12292 } catch (e) {
12293 throw __dom_wrap_exception(e); 12293 throw __dom_wrap_exception(e);
12294 } 12294 }
12295 } 12295 }
12296 12296
12297 function native__HTMLFrameElementWrappingImplementation__get__HTMLFrameElement_m arginHeight(_this) { 12297 function native__HTMLFrameElementWrappingImplementation__get_marginHeight(_this) {
12298 try { 12298 try {
12299 return __dom_wrap(_this.$dom.marginHeight); 12299 return __dom_wrap(_this.$dom.marginHeight);
12300 } catch (e) { 12300 } catch (e) {
12301 throw __dom_wrap_exception(e); 12301 throw __dom_wrap_exception(e);
12302 } 12302 }
12303 } 12303 }
12304 12304
12305 function native__HTMLFrameElementWrappingImplementation__set__HTMLFrameElement_m arginHeight(_this, value) { 12305 function native__HTMLFrameElementWrappingImplementation__set_marginHeight(_this, value) {
12306 try { 12306 try {
12307 _this.$dom.marginHeight = __dom_unwrap(value); 12307 _this.$dom.marginHeight = __dom_unwrap(value);
12308 } catch (e) { 12308 } catch (e) {
12309 throw __dom_wrap_exception(e); 12309 throw __dom_wrap_exception(e);
12310 } 12310 }
12311 } 12311 }
12312 12312
12313 function native__HTMLFrameElementWrappingImplementation__get__HTMLFrameElement_m arginWidth(_this) { 12313 function native__HTMLFrameElementWrappingImplementation__get_marginWidth(_this) {
12314 try { 12314 try {
12315 return __dom_wrap(_this.$dom.marginWidth); 12315 return __dom_wrap(_this.$dom.marginWidth);
12316 } catch (e) { 12316 } catch (e) {
12317 throw __dom_wrap_exception(e); 12317 throw __dom_wrap_exception(e);
12318 } 12318 }
12319 } 12319 }
12320 12320
12321 function native__HTMLFrameElementWrappingImplementation__set__HTMLFrameElement_m arginWidth(_this, value) { 12321 function native__HTMLFrameElementWrappingImplementation__set_marginWidth(_this, value) {
12322 try { 12322 try {
12323 _this.$dom.marginWidth = __dom_unwrap(value); 12323 _this.$dom.marginWidth = __dom_unwrap(value);
12324 } catch (e) { 12324 } catch (e) {
12325 throw __dom_wrap_exception(e); 12325 throw __dom_wrap_exception(e);
12326 } 12326 }
12327 } 12327 }
12328 12328
12329 function native__HTMLFrameElementWrappingImplementation__get__HTMLFrameElement_n ame(_this) { 12329 function native__HTMLFrameElementWrappingImplementation__get_name(_this) {
12330 try { 12330 try {
12331 return __dom_wrap(_this.$dom.name); 12331 return __dom_wrap(_this.$dom.name);
12332 } catch (e) { 12332 } catch (e) {
12333 throw __dom_wrap_exception(e); 12333 throw __dom_wrap_exception(e);
12334 } 12334 }
12335 } 12335 }
12336 12336
12337 function native__HTMLFrameElementWrappingImplementation__set__HTMLFrameElement_n ame(_this, value) { 12337 function native__HTMLFrameElementWrappingImplementation__set_name(_this, value) {
12338 try { 12338 try {
12339 _this.$dom.name = __dom_unwrap(value); 12339 _this.$dom.name = __dom_unwrap(value);
12340 } catch (e) { 12340 } catch (e) {
12341 throw __dom_wrap_exception(e); 12341 throw __dom_wrap_exception(e);
12342 } 12342 }
12343 } 12343 }
12344 12344
12345 function native__HTMLFrameElementWrappingImplementation__get__HTMLFrameElement_n oResize(_this) { 12345 function native__HTMLFrameElementWrappingImplementation__get_noResize(_this) {
12346 try { 12346 try {
12347 return __dom_wrap(_this.$dom.noResize); 12347 return __dom_wrap(_this.$dom.noResize);
12348 } catch (e) { 12348 } catch (e) {
12349 throw __dom_wrap_exception(e); 12349 throw __dom_wrap_exception(e);
12350 } 12350 }
12351 } 12351 }
12352 12352
12353 function native__HTMLFrameElementWrappingImplementation__set__HTMLFrameElement_n oResize(_this, value) { 12353 function native__HTMLFrameElementWrappingImplementation__set_noResize(_this, val ue) {
12354 try { 12354 try {
12355 _this.$dom.noResize = __dom_unwrap(value); 12355 _this.$dom.noResize = __dom_unwrap(value);
12356 } catch (e) { 12356 } catch (e) {
12357 throw __dom_wrap_exception(e); 12357 throw __dom_wrap_exception(e);
12358 } 12358 }
12359 } 12359 }
12360 12360
12361 function native__HTMLFrameElementWrappingImplementation__get__HTMLFrameElement_s crolling(_this) { 12361 function native__HTMLFrameElementWrappingImplementation__get_scrolling(_this) {
12362 try { 12362 try {
12363 return __dom_wrap(_this.$dom.scrolling); 12363 return __dom_wrap(_this.$dom.scrolling);
12364 } catch (e) { 12364 } catch (e) {
12365 throw __dom_wrap_exception(e); 12365 throw __dom_wrap_exception(e);
12366 } 12366 }
12367 } 12367 }
12368 12368
12369 function native__HTMLFrameElementWrappingImplementation__set__HTMLFrameElement_s crolling(_this, value) { 12369 function native__HTMLFrameElementWrappingImplementation__set_scrolling(_this, va lue) {
12370 try { 12370 try {
12371 _this.$dom.scrolling = __dom_unwrap(value); 12371 _this.$dom.scrolling = __dom_unwrap(value);
12372 } catch (e) { 12372 } catch (e) {
12373 throw __dom_wrap_exception(e); 12373 throw __dom_wrap_exception(e);
12374 } 12374 }
12375 } 12375 }
12376 12376
12377 function native__HTMLFrameElementWrappingImplementation__get__HTMLFrameElement_s rc(_this) { 12377 function native__HTMLFrameElementWrappingImplementation__get_src(_this) {
12378 try { 12378 try {
12379 return __dom_wrap(_this.$dom.src); 12379 return __dom_wrap(_this.$dom.src);
12380 } catch (e) { 12380 } catch (e) {
12381 throw __dom_wrap_exception(e); 12381 throw __dom_wrap_exception(e);
12382 } 12382 }
12383 } 12383 }
12384 12384
12385 function native__HTMLFrameElementWrappingImplementation__set__HTMLFrameElement_s rc(_this, value) { 12385 function native__HTMLFrameElementWrappingImplementation__set_src(_this, value) {
12386 try { 12386 try {
12387 _this.$dom.src = __dom_unwrap(value); 12387 _this.$dom.src = __dom_unwrap(value);
12388 } catch (e) { 12388 } catch (e) {
12389 throw __dom_wrap_exception(e); 12389 throw __dom_wrap_exception(e);
12390 } 12390 }
12391 } 12391 }
12392 12392
12393 function native__HTMLFrameElementWrappingImplementation__get__HTMLFrameElement_w idth(_this) { 12393 function native__HTMLFrameElementWrappingImplementation__get_width(_this) {
12394 try { 12394 try {
12395 return __dom_wrap(_this.$dom.width); 12395 return __dom_wrap(_this.$dom.width);
12396 } catch (e) { 12396 } catch (e) {
12397 throw __dom_wrap_exception(e); 12397 throw __dom_wrap_exception(e);
12398 } 12398 }
12399 } 12399 }
12400 12400
12401 function native__HTMLFrameSetElementWrappingImplementation__get__HTMLFrameSetEle ment_cols(_this) { 12401 function native__HTMLFrameSetElementWrappingImplementation__get_cols(_this) {
12402 try { 12402 try {
12403 return __dom_wrap(_this.$dom.cols); 12403 return __dom_wrap(_this.$dom.cols);
12404 } catch (e) { 12404 } catch (e) {
12405 throw __dom_wrap_exception(e); 12405 throw __dom_wrap_exception(e);
12406 } 12406 }
12407 } 12407 }
12408 12408
12409 function native__HTMLFrameSetElementWrappingImplementation__set__HTMLFrameSetEle ment_cols(_this, value) { 12409 function native__HTMLFrameSetElementWrappingImplementation__set_cols(_this, valu e) {
12410 try { 12410 try {
12411 _this.$dom.cols = __dom_unwrap(value); 12411 _this.$dom.cols = __dom_unwrap(value);
12412 } catch (e) { 12412 } catch (e) {
12413 throw __dom_wrap_exception(e); 12413 throw __dom_wrap_exception(e);
12414 } 12414 }
12415 } 12415 }
12416 12416
12417 function native__HTMLFrameSetElementWrappingImplementation__get__HTMLFrameSetEle ment_onbeforeunload(_this) { 12417 function native__HTMLFrameSetElementWrappingImplementation__get_onbeforeunload(_ this) {
12418 try { 12418 try {
12419 return __dom_wrap(_this.$dom.onbeforeunload); 12419 return __dom_wrap(_this.$dom.onbeforeunload);
12420 } catch (e) { 12420 } catch (e) {
12421 throw __dom_wrap_exception(e); 12421 throw __dom_wrap_exception(e);
12422 } 12422 }
12423 } 12423 }
12424 12424
12425 function native__HTMLFrameSetElementWrappingImplementation__set__HTMLFrameSetEle ment_onbeforeunload(_this, value) { 12425 function native__HTMLFrameSetElementWrappingImplementation__set_onbeforeunload(_ this, value) {
12426 try { 12426 try {
12427 _this.$dom.onbeforeunload = __dom_unwrap(value); 12427 _this.$dom.onbeforeunload = __dom_unwrap(value);
12428 } catch (e) { 12428 } catch (e) {
12429 throw __dom_wrap_exception(e); 12429 throw __dom_wrap_exception(e);
12430 } 12430 }
12431 } 12431 }
12432 12432
12433 function native__HTMLFrameSetElementWrappingImplementation__get__HTMLFrameSetEle ment_onblur(_this) { 12433 function native__HTMLFrameSetElementWrappingImplementation__get_onblur_HTMLFrame SetElement(_this) {
12434 try { 12434 try {
12435 return __dom_wrap(_this.$dom.onblur); 12435 return __dom_wrap(_this.$dom.onblur);
12436 } catch (e) { 12436 } catch (e) {
12437 throw __dom_wrap_exception(e); 12437 throw __dom_wrap_exception(e);
12438 } 12438 }
12439 } 12439 }
12440 12440
12441 function native__HTMLFrameSetElementWrappingImplementation__set__HTMLFrameSetEle ment_onblur(_this, value) { 12441 function native__HTMLFrameSetElementWrappingImplementation__set_onblur_HTMLFrame SetElement(_this, value) {
12442 try { 12442 try {
12443 _this.$dom.onblur = __dom_unwrap(value); 12443 _this.$dom.onblur = __dom_unwrap(value);
12444 } catch (e) { 12444 } catch (e) {
12445 throw __dom_wrap_exception(e); 12445 throw __dom_wrap_exception(e);
12446 } 12446 }
12447 } 12447 }
12448 12448
12449 function native__HTMLFrameSetElementWrappingImplementation__get__HTMLFrameSetEle ment_onerror(_this) { 12449 function native__HTMLFrameSetElementWrappingImplementation__get_onerror_HTMLFram eSetElement(_this) {
12450 try { 12450 try {
12451 return __dom_wrap(_this.$dom.onerror); 12451 return __dom_wrap(_this.$dom.onerror);
12452 } catch (e) { 12452 } catch (e) {
12453 throw __dom_wrap_exception(e); 12453 throw __dom_wrap_exception(e);
12454 } 12454 }
12455 } 12455 }
12456 12456
12457 function native__HTMLFrameSetElementWrappingImplementation__set__HTMLFrameSetEle ment_onerror(_this, value) { 12457 function native__HTMLFrameSetElementWrappingImplementation__set_onerror_HTMLFram eSetElement(_this, value) {
12458 try { 12458 try {
12459 _this.$dom.onerror = __dom_unwrap(value); 12459 _this.$dom.onerror = __dom_unwrap(value);
12460 } catch (e) { 12460 } catch (e) {
12461 throw __dom_wrap_exception(e); 12461 throw __dom_wrap_exception(e);
12462 } 12462 }
12463 } 12463 }
12464 12464
12465 function native__HTMLFrameSetElementWrappingImplementation__get__HTMLFrameSetEle ment_onfocus(_this) { 12465 function native__HTMLFrameSetElementWrappingImplementation__get_onfocus_HTMLFram eSetElement(_this) {
12466 try { 12466 try {
12467 return __dom_wrap(_this.$dom.onfocus); 12467 return __dom_wrap(_this.$dom.onfocus);
12468 } catch (e) { 12468 } catch (e) {
12469 throw __dom_wrap_exception(e); 12469 throw __dom_wrap_exception(e);
12470 } 12470 }
12471 } 12471 }
12472 12472
12473 function native__HTMLFrameSetElementWrappingImplementation__set__HTMLFrameSetEle ment_onfocus(_this, value) { 12473 function native__HTMLFrameSetElementWrappingImplementation__set_onfocus_HTMLFram eSetElement(_this, value) {
12474 try { 12474 try {
12475 _this.$dom.onfocus = __dom_unwrap(value); 12475 _this.$dom.onfocus = __dom_unwrap(value);
12476 } catch (e) { 12476 } catch (e) {
12477 throw __dom_wrap_exception(e); 12477 throw __dom_wrap_exception(e);
12478 } 12478 }
12479 } 12479 }
12480 12480
12481 function native__HTMLFrameSetElementWrappingImplementation__get__HTMLFrameSetEle ment_onhashchange(_this) { 12481 function native__HTMLFrameSetElementWrappingImplementation__get_onhashchange(_th is) {
12482 try { 12482 try {
12483 return __dom_wrap(_this.$dom.onhashchange); 12483 return __dom_wrap(_this.$dom.onhashchange);
12484 } catch (e) { 12484 } catch (e) {
12485 throw __dom_wrap_exception(e); 12485 throw __dom_wrap_exception(e);
12486 } 12486 }
12487 } 12487 }
12488 12488
12489 function native__HTMLFrameSetElementWrappingImplementation__set__HTMLFrameSetEle ment_onhashchange(_this, value) { 12489 function native__HTMLFrameSetElementWrappingImplementation__set_onhashchange(_th is, value) {
12490 try { 12490 try {
12491 _this.$dom.onhashchange = __dom_unwrap(value); 12491 _this.$dom.onhashchange = __dom_unwrap(value);
12492 } catch (e) { 12492 } catch (e) {
12493 throw __dom_wrap_exception(e); 12493 throw __dom_wrap_exception(e);
12494 } 12494 }
12495 } 12495 }
12496 12496
12497 function native__HTMLFrameSetElementWrappingImplementation__get__HTMLFrameSetEle ment_onload(_this) { 12497 function native__HTMLFrameSetElementWrappingImplementation__get_onload_HTMLFrame SetElement(_this) {
12498 try { 12498 try {
12499 return __dom_wrap(_this.$dom.onload); 12499 return __dom_wrap(_this.$dom.onload);
12500 } catch (e) { 12500 } catch (e) {
12501 throw __dom_wrap_exception(e); 12501 throw __dom_wrap_exception(e);
12502 } 12502 }
12503 } 12503 }
12504 12504
12505 function native__HTMLFrameSetElementWrappingImplementation__set__HTMLFrameSetEle ment_onload(_this, value) { 12505 function native__HTMLFrameSetElementWrappingImplementation__set_onload_HTMLFrame SetElement(_this, value) {
12506 try { 12506 try {
12507 _this.$dom.onload = __dom_unwrap(value); 12507 _this.$dom.onload = __dom_unwrap(value);
12508 } catch (e) { 12508 } catch (e) {
12509 throw __dom_wrap_exception(e); 12509 throw __dom_wrap_exception(e);
12510 } 12510 }
12511 } 12511 }
12512 12512
12513 function native__HTMLFrameSetElementWrappingImplementation__get__HTMLFrameSetEle ment_onmessage(_this) { 12513 function native__HTMLFrameSetElementWrappingImplementation__get_onmessage(_this) {
12514 try { 12514 try {
12515 return __dom_wrap(_this.$dom.onmessage); 12515 return __dom_wrap(_this.$dom.onmessage);
12516 } catch (e) { 12516 } catch (e) {
12517 throw __dom_wrap_exception(e); 12517 throw __dom_wrap_exception(e);
12518 } 12518 }
12519 } 12519 }
12520 12520
12521 function native__HTMLFrameSetElementWrappingImplementation__set__HTMLFrameSetEle ment_onmessage(_this, value) { 12521 function native__HTMLFrameSetElementWrappingImplementation__set_onmessage(_this, value) {
12522 try { 12522 try {
12523 _this.$dom.onmessage = __dom_unwrap(value); 12523 _this.$dom.onmessage = __dom_unwrap(value);
12524 } catch (e) { 12524 } catch (e) {
12525 throw __dom_wrap_exception(e); 12525 throw __dom_wrap_exception(e);
12526 } 12526 }
12527 } 12527 }
12528 12528
12529 function native__HTMLFrameSetElementWrappingImplementation__get__HTMLFrameSetEle ment_onoffline(_this) { 12529 function native__HTMLFrameSetElementWrappingImplementation__get_onoffline(_this) {
12530 try { 12530 try {
12531 return __dom_wrap(_this.$dom.onoffline); 12531 return __dom_wrap(_this.$dom.onoffline);
12532 } catch (e) { 12532 } catch (e) {
12533 throw __dom_wrap_exception(e); 12533 throw __dom_wrap_exception(e);
12534 } 12534 }
12535 } 12535 }
12536 12536
12537 function native__HTMLFrameSetElementWrappingImplementation__set__HTMLFrameSetEle ment_onoffline(_this, value) { 12537 function native__HTMLFrameSetElementWrappingImplementation__set_onoffline(_this, value) {
12538 try { 12538 try {
12539 _this.$dom.onoffline = __dom_unwrap(value); 12539 _this.$dom.onoffline = __dom_unwrap(value);
12540 } catch (e) { 12540 } catch (e) {
12541 throw __dom_wrap_exception(e); 12541 throw __dom_wrap_exception(e);
12542 } 12542 }
12543 } 12543 }
12544 12544
12545 function native__HTMLFrameSetElementWrappingImplementation__get__HTMLFrameSetEle ment_ononline(_this) { 12545 function native__HTMLFrameSetElementWrappingImplementation__get_ononline(_this) {
12546 try { 12546 try {
12547 return __dom_wrap(_this.$dom.ononline); 12547 return __dom_wrap(_this.$dom.ononline);
12548 } catch (e) { 12548 } catch (e) {
12549 throw __dom_wrap_exception(e); 12549 throw __dom_wrap_exception(e);
12550 } 12550 }
12551 } 12551 }
12552 12552
12553 function native__HTMLFrameSetElementWrappingImplementation__set__HTMLFrameSetEle ment_ononline(_this, value) { 12553 function native__HTMLFrameSetElementWrappingImplementation__set_ononline(_this, value) {
12554 try { 12554 try {
12555 _this.$dom.ononline = __dom_unwrap(value); 12555 _this.$dom.ononline = __dom_unwrap(value);
12556 } catch (e) { 12556 } catch (e) {
12557 throw __dom_wrap_exception(e); 12557 throw __dom_wrap_exception(e);
12558 } 12558 }
12559 } 12559 }
12560 12560
12561 function native__HTMLFrameSetElementWrappingImplementation__get__HTMLFrameSetEle ment_onorientationchange(_this) { 12561 function native__HTMLFrameSetElementWrappingImplementation__get_onorientationcha nge(_this) {
12562 try { 12562 try {
12563 return __dom_wrap(_this.$dom.onorientationchange); 12563 return __dom_wrap(_this.$dom.onorientationchange);
12564 } catch (e) { 12564 } catch (e) {
12565 throw __dom_wrap_exception(e); 12565 throw __dom_wrap_exception(e);
12566 } 12566 }
12567 } 12567 }
12568 12568
12569 function native__HTMLFrameSetElementWrappingImplementation__set__HTMLFrameSetEle ment_onorientationchange(_this, value) { 12569 function native__HTMLFrameSetElementWrappingImplementation__set_onorientationcha nge(_this, value) {
12570 try { 12570 try {
12571 _this.$dom.onorientationchange = __dom_unwrap(value); 12571 _this.$dom.onorientationchange = __dom_unwrap(value);
12572 } catch (e) { 12572 } catch (e) {
12573 throw __dom_wrap_exception(e); 12573 throw __dom_wrap_exception(e);
12574 } 12574 }
12575 } 12575 }
12576 12576
12577 function native__HTMLFrameSetElementWrappingImplementation__get__HTMLFrameSetEle ment_onpopstate(_this) { 12577 function native__HTMLFrameSetElementWrappingImplementation__get_onpopstate(_this ) {
12578 try { 12578 try {
12579 return __dom_wrap(_this.$dom.onpopstate); 12579 return __dom_wrap(_this.$dom.onpopstate);
12580 } catch (e) { 12580 } catch (e) {
12581 throw __dom_wrap_exception(e); 12581 throw __dom_wrap_exception(e);
12582 } 12582 }
12583 } 12583 }
12584 12584
12585 function native__HTMLFrameSetElementWrappingImplementation__set__HTMLFrameSetEle ment_onpopstate(_this, value) { 12585 function native__HTMLFrameSetElementWrappingImplementation__set_onpopstate(_this , value) {
12586 try { 12586 try {
12587 _this.$dom.onpopstate = __dom_unwrap(value); 12587 _this.$dom.onpopstate = __dom_unwrap(value);
12588 } catch (e) { 12588 } catch (e) {
12589 throw __dom_wrap_exception(e); 12589 throw __dom_wrap_exception(e);
12590 } 12590 }
12591 } 12591 }
12592 12592
12593 function native__HTMLFrameSetElementWrappingImplementation__get__HTMLFrameSetEle ment_onresize(_this) { 12593 function native__HTMLFrameSetElementWrappingImplementation__get_onresize(_this) {
12594 try { 12594 try {
12595 return __dom_wrap(_this.$dom.onresize); 12595 return __dom_wrap(_this.$dom.onresize);
12596 } catch (e) { 12596 } catch (e) {
12597 throw __dom_wrap_exception(e); 12597 throw __dom_wrap_exception(e);
12598 } 12598 }
12599 } 12599 }
12600 12600
12601 function native__HTMLFrameSetElementWrappingImplementation__set__HTMLFrameSetEle ment_onresize(_this, value) { 12601 function native__HTMLFrameSetElementWrappingImplementation__set_onresize(_this, value) {
12602 try { 12602 try {
12603 _this.$dom.onresize = __dom_unwrap(value); 12603 _this.$dom.onresize = __dom_unwrap(value);
12604 } catch (e) { 12604 } catch (e) {
12605 throw __dom_wrap_exception(e); 12605 throw __dom_wrap_exception(e);
12606 } 12606 }
12607 } 12607 }
12608 12608
12609 function native__HTMLFrameSetElementWrappingImplementation__get__HTMLFrameSetEle ment_onstorage(_this) { 12609 function native__HTMLFrameSetElementWrappingImplementation__get_onstorage(_this) {
12610 try { 12610 try {
12611 return __dom_wrap(_this.$dom.onstorage); 12611 return __dom_wrap(_this.$dom.onstorage);
12612 } catch (e) { 12612 } catch (e) {
12613 throw __dom_wrap_exception(e); 12613 throw __dom_wrap_exception(e);
12614 } 12614 }
12615 } 12615 }
12616 12616
12617 function native__HTMLFrameSetElementWrappingImplementation__set__HTMLFrameSetEle ment_onstorage(_this, value) { 12617 function native__HTMLFrameSetElementWrappingImplementation__set_onstorage(_this, value) {
12618 try { 12618 try {
12619 _this.$dom.onstorage = __dom_unwrap(value); 12619 _this.$dom.onstorage = __dom_unwrap(value);
12620 } catch (e) { 12620 } catch (e) {
12621 throw __dom_wrap_exception(e); 12621 throw __dom_wrap_exception(e);
12622 } 12622 }
12623 } 12623 }
12624 12624
12625 function native__HTMLFrameSetElementWrappingImplementation__get__HTMLFrameSetEle ment_onunload(_this) { 12625 function native__HTMLFrameSetElementWrappingImplementation__get_onunload(_this) {
12626 try { 12626 try {
12627 return __dom_wrap(_this.$dom.onunload); 12627 return __dom_wrap(_this.$dom.onunload);
12628 } catch (e) { 12628 } catch (e) {
12629 throw __dom_wrap_exception(e); 12629 throw __dom_wrap_exception(e);
12630 } 12630 }
12631 } 12631 }
12632 12632
12633 function native__HTMLFrameSetElementWrappingImplementation__set__HTMLFrameSetEle ment_onunload(_this, value) { 12633 function native__HTMLFrameSetElementWrappingImplementation__set_onunload(_this, value) {
12634 try { 12634 try {
12635 _this.$dom.onunload = __dom_unwrap(value); 12635 _this.$dom.onunload = __dom_unwrap(value);
12636 } catch (e) { 12636 } catch (e) {
12637 throw __dom_wrap_exception(e); 12637 throw __dom_wrap_exception(e);
12638 } 12638 }
12639 } 12639 }
12640 12640
12641 function native__HTMLFrameSetElementWrappingImplementation__get__HTMLFrameSetEle ment_rows(_this) { 12641 function native__HTMLFrameSetElementWrappingImplementation__get_rows(_this) {
12642 try { 12642 try {
12643 return __dom_wrap(_this.$dom.rows); 12643 return __dom_wrap(_this.$dom.rows);
12644 } catch (e) { 12644 } catch (e) {
12645 throw __dom_wrap_exception(e); 12645 throw __dom_wrap_exception(e);
12646 } 12646 }
12647 } 12647 }
12648 12648
12649 function native__HTMLFrameSetElementWrappingImplementation__set__HTMLFrameSetEle ment_rows(_this, value) { 12649 function native__HTMLFrameSetElementWrappingImplementation__set_rows(_this, valu e) {
12650 try { 12650 try {
12651 _this.$dom.rows = __dom_unwrap(value); 12651 _this.$dom.rows = __dom_unwrap(value);
12652 } catch (e) { 12652 } catch (e) {
12653 throw __dom_wrap_exception(e); 12653 throw __dom_wrap_exception(e);
12654 } 12654 }
12655 } 12655 }
12656 12656
12657 function native__HTMLHRElementWrappingImplementation__get__HTMLHRElement_align(_ this) { 12657 function native__HTMLHRElementWrappingImplementation__get_align(_this) {
12658 try { 12658 try {
12659 return __dom_wrap(_this.$dom.align); 12659 return __dom_wrap(_this.$dom.align);
12660 } catch (e) { 12660 } catch (e) {
12661 throw __dom_wrap_exception(e); 12661 throw __dom_wrap_exception(e);
12662 } 12662 }
12663 } 12663 }
12664 12664
12665 function native__HTMLHRElementWrappingImplementation__set__HTMLHRElement_align(_ this, value) { 12665 function native__HTMLHRElementWrappingImplementation__set_align(_this, value) {
12666 try { 12666 try {
12667 _this.$dom.align = __dom_unwrap(value); 12667 _this.$dom.align = __dom_unwrap(value);
12668 } catch (e) { 12668 } catch (e) {
12669 throw __dom_wrap_exception(e); 12669 throw __dom_wrap_exception(e);
12670 } 12670 }
12671 } 12671 }
12672 12672
12673 function native__HTMLHRElementWrappingImplementation__get__HTMLHRElement_noShade (_this) { 12673 function native__HTMLHRElementWrappingImplementation__get_noShade(_this) {
12674 try { 12674 try {
12675 return __dom_wrap(_this.$dom.noShade); 12675 return __dom_wrap(_this.$dom.noShade);
12676 } catch (e) { 12676 } catch (e) {
12677 throw __dom_wrap_exception(e); 12677 throw __dom_wrap_exception(e);
12678 } 12678 }
12679 } 12679 }
12680 12680
12681 function native__HTMLHRElementWrappingImplementation__set__HTMLHRElement_noShade (_this, value) { 12681 function native__HTMLHRElementWrappingImplementation__set_noShade(_this, value) {
12682 try { 12682 try {
12683 _this.$dom.noShade = __dom_unwrap(value); 12683 _this.$dom.noShade = __dom_unwrap(value);
12684 } catch (e) { 12684 } catch (e) {
12685 throw __dom_wrap_exception(e); 12685 throw __dom_wrap_exception(e);
12686 } 12686 }
12687 } 12687 }
12688 12688
12689 function native__HTMLHRElementWrappingImplementation__get__HTMLHRElement_size(_t his) { 12689 function native__HTMLHRElementWrappingImplementation__get_size(_this) {
12690 try { 12690 try {
12691 return __dom_wrap(_this.$dom.size); 12691 return __dom_wrap(_this.$dom.size);
12692 } catch (e) { 12692 } catch (e) {
12693 throw __dom_wrap_exception(e); 12693 throw __dom_wrap_exception(e);
12694 } 12694 }
12695 } 12695 }
12696 12696
12697 function native__HTMLHRElementWrappingImplementation__set__HTMLHRElement_size(_t his, value) { 12697 function native__HTMLHRElementWrappingImplementation__set_size(_this, value) {
12698 try { 12698 try {
12699 _this.$dom.size = __dom_unwrap(value); 12699 _this.$dom.size = __dom_unwrap(value);
12700 } catch (e) { 12700 } catch (e) {
12701 throw __dom_wrap_exception(e); 12701 throw __dom_wrap_exception(e);
12702 } 12702 }
12703 } 12703 }
12704 12704
12705 function native__HTMLHRElementWrappingImplementation__get__HTMLHRElement_width(_ this) { 12705 function native__HTMLHRElementWrappingImplementation__get_width(_this) {
12706 try { 12706 try {
12707 return __dom_wrap(_this.$dom.width); 12707 return __dom_wrap(_this.$dom.width);
12708 } catch (e) { 12708 } catch (e) {
12709 throw __dom_wrap_exception(e); 12709 throw __dom_wrap_exception(e);
12710 } 12710 }
12711 } 12711 }
12712 12712
12713 function native__HTMLHRElementWrappingImplementation__set__HTMLHRElement_width(_ this, value) { 12713 function native__HTMLHRElementWrappingImplementation__set_width(_this, value) {
12714 try { 12714 try {
12715 _this.$dom.width = __dom_unwrap(value); 12715 _this.$dom.width = __dom_unwrap(value);
12716 } catch (e) { 12716 } catch (e) {
12717 throw __dom_wrap_exception(e); 12717 throw __dom_wrap_exception(e);
12718 } 12718 }
12719 } 12719 }
12720 12720
12721 function native__HTMLHeadElementWrappingImplementation__get__HTMLHeadElement_pro file(_this) { 12721 function native__HTMLHeadElementWrappingImplementation__get_profile(_this) {
12722 try { 12722 try {
12723 return __dom_wrap(_this.$dom.profile); 12723 return __dom_wrap(_this.$dom.profile);
12724 } catch (e) { 12724 } catch (e) {
12725 throw __dom_wrap_exception(e); 12725 throw __dom_wrap_exception(e);
12726 } 12726 }
12727 } 12727 }
12728 12728
12729 function native__HTMLHeadElementWrappingImplementation__set__HTMLHeadElement_pro file(_this, value) { 12729 function native__HTMLHeadElementWrappingImplementation__set_profile(_this, value ) {
12730 try { 12730 try {
12731 _this.$dom.profile = __dom_unwrap(value); 12731 _this.$dom.profile = __dom_unwrap(value);
12732 } catch (e) { 12732 } catch (e) {
12733 throw __dom_wrap_exception(e); 12733 throw __dom_wrap_exception(e);
12734 } 12734 }
12735 } 12735 }
12736 12736
12737 function native__HTMLHeadingElementWrappingImplementation__get__HTMLHeadingEleme nt_align(_this) { 12737 function native__HTMLHeadingElementWrappingImplementation__get_align(_this) {
12738 try { 12738 try {
12739 return __dom_wrap(_this.$dom.align); 12739 return __dom_wrap(_this.$dom.align);
12740 } catch (e) { 12740 } catch (e) {
12741 throw __dom_wrap_exception(e); 12741 throw __dom_wrap_exception(e);
12742 } 12742 }
12743 } 12743 }
12744 12744
12745 function native__HTMLHeadingElementWrappingImplementation__set__HTMLHeadingEleme nt_align(_this, value) { 12745 function native__HTMLHeadingElementWrappingImplementation__set_align(_this, valu e) {
12746 try { 12746 try {
12747 _this.$dom.align = __dom_unwrap(value); 12747 _this.$dom.align = __dom_unwrap(value);
12748 } catch (e) { 12748 } catch (e) {
12749 throw __dom_wrap_exception(e); 12749 throw __dom_wrap_exception(e);
12750 } 12750 }
12751 } 12751 }
12752 12752
12753 function native__HTMLHtmlElementWrappingImplementation__get__HTMLHtmlElement_man ifest(_this) { 12753 function native__HTMLHtmlElementWrappingImplementation__get_manifest(_this) {
12754 try { 12754 try {
12755 return __dom_wrap(_this.$dom.manifest); 12755 return __dom_wrap(_this.$dom.manifest);
12756 } catch (e) { 12756 } catch (e) {
12757 throw __dom_wrap_exception(e); 12757 throw __dom_wrap_exception(e);
12758 } 12758 }
12759 } 12759 }
12760 12760
12761 function native__HTMLHtmlElementWrappingImplementation__set__HTMLHtmlElement_man ifest(_this, value) { 12761 function native__HTMLHtmlElementWrappingImplementation__set_manifest(_this, valu e) {
12762 try { 12762 try {
12763 _this.$dom.manifest = __dom_unwrap(value); 12763 _this.$dom.manifest = __dom_unwrap(value);
12764 } catch (e) { 12764 } catch (e) {
12765 throw __dom_wrap_exception(e); 12765 throw __dom_wrap_exception(e);
12766 } 12766 }
12767 } 12767 }
12768 12768
12769 function native__HTMLHtmlElementWrappingImplementation__get__HTMLHtmlElement_ver sion(_this) { 12769 function native__HTMLHtmlElementWrappingImplementation__get_version(_this) {
12770 try { 12770 try {
12771 return __dom_wrap(_this.$dom.version); 12771 return __dom_wrap(_this.$dom.version);
12772 } catch (e) { 12772 } catch (e) {
12773 throw __dom_wrap_exception(e); 12773 throw __dom_wrap_exception(e);
12774 } 12774 }
12775 } 12775 }
12776 12776
12777 function native__HTMLHtmlElementWrappingImplementation__set__HTMLHtmlElement_ver sion(_this, value) { 12777 function native__HTMLHtmlElementWrappingImplementation__set_version(_this, value ) {
12778 try { 12778 try {
12779 _this.$dom.version = __dom_unwrap(value); 12779 _this.$dom.version = __dom_unwrap(value);
12780 } catch (e) { 12780 } catch (e) {
12781 throw __dom_wrap_exception(e); 12781 throw __dom_wrap_exception(e);
12782 } 12782 }
12783 } 12783 }
12784 12784
12785 function native__HTMLIFrameElementWrappingImplementation__get__HTMLIFrameElement _align(_this) { 12785 function native__HTMLIFrameElementWrappingImplementation__get_align(_this) {
12786 try { 12786 try {
12787 return __dom_wrap(_this.$dom.align); 12787 return __dom_wrap(_this.$dom.align);
12788 } catch (e) { 12788 } catch (e) {
12789 throw __dom_wrap_exception(e); 12789 throw __dom_wrap_exception(e);
12790 } 12790 }
12791 } 12791 }
12792 12792
12793 function native__HTMLIFrameElementWrappingImplementation__set__HTMLIFrameElement _align(_this, value) { 12793 function native__HTMLIFrameElementWrappingImplementation__set_align(_this, value ) {
12794 try { 12794 try {
12795 _this.$dom.align = __dom_unwrap(value); 12795 _this.$dom.align = __dom_unwrap(value);
12796 } catch (e) { 12796 } catch (e) {
12797 throw __dom_wrap_exception(e); 12797 throw __dom_wrap_exception(e);
12798 } 12798 }
12799 } 12799 }
12800 12800
12801 function native__HTMLIFrameElementWrappingImplementation__get__HTMLIFrameElement _contentDocument(_this) { 12801 function native__HTMLIFrameElementWrappingImplementation__get_contentDocument(_t his) {
12802 try { 12802 try {
12803 return __dom_wrap(_this.$dom.contentDocument); 12803 return __dom_wrap(_this.$dom.contentDocument);
12804 } catch (e) { 12804 } catch (e) {
12805 throw __dom_wrap_exception(e); 12805 throw __dom_wrap_exception(e);
12806 } 12806 }
12807 } 12807 }
12808 12808
12809 function native__HTMLIFrameElementWrappingImplementation__get__HTMLIFrameElement _contentWindow(_this) { 12809 function native__HTMLIFrameElementWrappingImplementation__get_contentWindow(_thi s) {
12810 try { 12810 try {
12811 return __dom_wrap(_this.$dom.contentWindow); 12811 return __dom_wrap(_this.$dom.contentWindow);
12812 } catch (e) { 12812 } catch (e) {
12813 throw __dom_wrap_exception(e); 12813 throw __dom_wrap_exception(e);
12814 } 12814 }
12815 } 12815 }
12816 12816
12817 function native__HTMLIFrameElementWrappingImplementation__get__HTMLIFrameElement _frameBorder(_this) { 12817 function native__HTMLIFrameElementWrappingImplementation__get_frameBorder(_this) {
12818 try { 12818 try {
12819 return __dom_wrap(_this.$dom.frameBorder); 12819 return __dom_wrap(_this.$dom.frameBorder);
12820 } catch (e) { 12820 } catch (e) {
12821 throw __dom_wrap_exception(e); 12821 throw __dom_wrap_exception(e);
12822 } 12822 }
12823 } 12823 }
12824 12824
12825 function native__HTMLIFrameElementWrappingImplementation__set__HTMLIFrameElement _frameBorder(_this, value) { 12825 function native__HTMLIFrameElementWrappingImplementation__set_frameBorder(_this, value) {
12826 try { 12826 try {
12827 _this.$dom.frameBorder = __dom_unwrap(value); 12827 _this.$dom.frameBorder = __dom_unwrap(value);
12828 } catch (e) { 12828 } catch (e) {
12829 throw __dom_wrap_exception(e); 12829 throw __dom_wrap_exception(e);
12830 } 12830 }
12831 } 12831 }
12832 12832
12833 function native__HTMLIFrameElementWrappingImplementation__get__HTMLIFrameElement _height(_this) { 12833 function native__HTMLIFrameElementWrappingImplementation__get_height(_this) {
12834 try { 12834 try {
12835 return __dom_wrap(_this.$dom.height); 12835 return __dom_wrap(_this.$dom.height);
12836 } catch (e) { 12836 } catch (e) {
12837 throw __dom_wrap_exception(e); 12837 throw __dom_wrap_exception(e);
12838 } 12838 }
12839 } 12839 }
12840 12840
12841 function native__HTMLIFrameElementWrappingImplementation__set__HTMLIFrameElement _height(_this, value) { 12841 function native__HTMLIFrameElementWrappingImplementation__set_height(_this, valu e) {
12842 try { 12842 try {
12843 _this.$dom.height = __dom_unwrap(value); 12843 _this.$dom.height = __dom_unwrap(value);
12844 } catch (e) { 12844 } catch (e) {
12845 throw __dom_wrap_exception(e); 12845 throw __dom_wrap_exception(e);
12846 } 12846 }
12847 } 12847 }
12848 12848
12849 function native__HTMLIFrameElementWrappingImplementation__get__HTMLIFrameElement _longDesc(_this) { 12849 function native__HTMLIFrameElementWrappingImplementation__get_longDesc(_this) {
12850 try { 12850 try {
12851 return __dom_wrap(_this.$dom.longDesc); 12851 return __dom_wrap(_this.$dom.longDesc);
12852 } catch (e) { 12852 } catch (e) {
12853 throw __dom_wrap_exception(e); 12853 throw __dom_wrap_exception(e);
12854 } 12854 }
12855 } 12855 }
12856 12856
12857 function native__HTMLIFrameElementWrappingImplementation__set__HTMLIFrameElement _longDesc(_this, value) { 12857 function native__HTMLIFrameElementWrappingImplementation__set_longDesc(_this, va lue) {
12858 try { 12858 try {
12859 _this.$dom.longDesc = __dom_unwrap(value); 12859 _this.$dom.longDesc = __dom_unwrap(value);
12860 } catch (e) { 12860 } catch (e) {
12861 throw __dom_wrap_exception(e); 12861 throw __dom_wrap_exception(e);
12862 } 12862 }
12863 } 12863 }
12864 12864
12865 function native__HTMLIFrameElementWrappingImplementation__get__HTMLIFrameElement _marginHeight(_this) { 12865 function native__HTMLIFrameElementWrappingImplementation__get_marginHeight(_this ) {
12866 try { 12866 try {
12867 return __dom_wrap(_this.$dom.marginHeight); 12867 return __dom_wrap(_this.$dom.marginHeight);
12868 } catch (e) { 12868 } catch (e) {
12869 throw __dom_wrap_exception(e); 12869 throw __dom_wrap_exception(e);
12870 } 12870 }
12871 } 12871 }
12872 12872
12873 function native__HTMLIFrameElementWrappingImplementation__set__HTMLIFrameElement _marginHeight(_this, value) { 12873 function native__HTMLIFrameElementWrappingImplementation__set_marginHeight(_this , value) {
12874 try { 12874 try {
12875 _this.$dom.marginHeight = __dom_unwrap(value); 12875 _this.$dom.marginHeight = __dom_unwrap(value);
12876 } catch (e) { 12876 } catch (e) {
12877 throw __dom_wrap_exception(e); 12877 throw __dom_wrap_exception(e);
12878 } 12878 }
12879 } 12879 }
12880 12880
12881 function native__HTMLIFrameElementWrappingImplementation__get__HTMLIFrameElement _marginWidth(_this) { 12881 function native__HTMLIFrameElementWrappingImplementation__get_marginWidth(_this) {
12882 try { 12882 try {
12883 return __dom_wrap(_this.$dom.marginWidth); 12883 return __dom_wrap(_this.$dom.marginWidth);
12884 } catch (e) { 12884 } catch (e) {
12885 throw __dom_wrap_exception(e); 12885 throw __dom_wrap_exception(e);
12886 } 12886 }
12887 } 12887 }
12888 12888
12889 function native__HTMLIFrameElementWrappingImplementation__set__HTMLIFrameElement _marginWidth(_this, value) { 12889 function native__HTMLIFrameElementWrappingImplementation__set_marginWidth(_this, value) {
12890 try { 12890 try {
12891 _this.$dom.marginWidth = __dom_unwrap(value); 12891 _this.$dom.marginWidth = __dom_unwrap(value);
12892 } catch (e) { 12892 } catch (e) {
12893 throw __dom_wrap_exception(e); 12893 throw __dom_wrap_exception(e);
12894 } 12894 }
12895 } 12895 }
12896 12896
12897 function native__HTMLIFrameElementWrappingImplementation__get__HTMLIFrameElement _name(_this) { 12897 function native__HTMLIFrameElementWrappingImplementation__get_name(_this) {
12898 try { 12898 try {
12899 return __dom_wrap(_this.$dom.name); 12899 return __dom_wrap(_this.$dom.name);
12900 } catch (e) { 12900 } catch (e) {
12901 throw __dom_wrap_exception(e); 12901 throw __dom_wrap_exception(e);
12902 } 12902 }
12903 } 12903 }
12904 12904
12905 function native__HTMLIFrameElementWrappingImplementation__set__HTMLIFrameElement _name(_this, value) { 12905 function native__HTMLIFrameElementWrappingImplementation__set_name(_this, value) {
12906 try { 12906 try {
12907 _this.$dom.name = __dom_unwrap(value); 12907 _this.$dom.name = __dom_unwrap(value);
12908 } catch (e) { 12908 } catch (e) {
12909 throw __dom_wrap_exception(e); 12909 throw __dom_wrap_exception(e);
12910 } 12910 }
12911 } 12911 }
12912 12912
12913 function native__HTMLIFrameElementWrappingImplementation__get__HTMLIFrameElement _sandbox(_this) { 12913 function native__HTMLIFrameElementWrappingImplementation__get_sandbox(_this) {
12914 try { 12914 try {
12915 return __dom_wrap(_this.$dom.sandbox); 12915 return __dom_wrap(_this.$dom.sandbox);
12916 } catch (e) { 12916 } catch (e) {
12917 throw __dom_wrap_exception(e); 12917 throw __dom_wrap_exception(e);
12918 } 12918 }
12919 } 12919 }
12920 12920
12921 function native__HTMLIFrameElementWrappingImplementation__set__HTMLIFrameElement _sandbox(_this, value) { 12921 function native__HTMLIFrameElementWrappingImplementation__set_sandbox(_this, val ue) {
12922 try { 12922 try {
12923 _this.$dom.sandbox = __dom_unwrap(value); 12923 _this.$dom.sandbox = __dom_unwrap(value);
12924 } catch (e) { 12924 } catch (e) {
12925 throw __dom_wrap_exception(e); 12925 throw __dom_wrap_exception(e);
12926 } 12926 }
12927 } 12927 }
12928 12928
12929 function native__HTMLIFrameElementWrappingImplementation__get__HTMLIFrameElement _scrolling(_this) { 12929 function native__HTMLIFrameElementWrappingImplementation__get_scrolling(_this) {
12930 try { 12930 try {
12931 return __dom_wrap(_this.$dom.scrolling); 12931 return __dom_wrap(_this.$dom.scrolling);
12932 } catch (e) { 12932 } catch (e) {
12933 throw __dom_wrap_exception(e); 12933 throw __dom_wrap_exception(e);
12934 } 12934 }
12935 } 12935 }
12936 12936
12937 function native__HTMLIFrameElementWrappingImplementation__set__HTMLIFrameElement _scrolling(_this, value) { 12937 function native__HTMLIFrameElementWrappingImplementation__set_scrolling(_this, v alue) {
12938 try { 12938 try {
12939 _this.$dom.scrolling = __dom_unwrap(value); 12939 _this.$dom.scrolling = __dom_unwrap(value);
12940 } catch (e) { 12940 } catch (e) {
12941 throw __dom_wrap_exception(e); 12941 throw __dom_wrap_exception(e);
12942 } 12942 }
12943 } 12943 }
12944 12944
12945 function native__HTMLIFrameElementWrappingImplementation__get__HTMLIFrameElement _src(_this) { 12945 function native__HTMLIFrameElementWrappingImplementation__get_src(_this) {
12946 try { 12946 try {
12947 return __dom_wrap(_this.$dom.src); 12947 return __dom_wrap(_this.$dom.src);
12948 } catch (e) { 12948 } catch (e) {
12949 throw __dom_wrap_exception(e); 12949 throw __dom_wrap_exception(e);
12950 } 12950 }
12951 } 12951 }
12952 12952
12953 function native__HTMLIFrameElementWrappingImplementation__set__HTMLIFrameElement _src(_this, value) { 12953 function native__HTMLIFrameElementWrappingImplementation__set_src(_this, value) {
12954 try { 12954 try {
12955 _this.$dom.src = __dom_unwrap(value); 12955 _this.$dom.src = __dom_unwrap(value);
12956 } catch (e) { 12956 } catch (e) {
12957 throw __dom_wrap_exception(e); 12957 throw __dom_wrap_exception(e);
12958 } 12958 }
12959 } 12959 }
12960 12960
12961 function native__HTMLIFrameElementWrappingImplementation__get__HTMLIFrameElement _width(_this) { 12961 function native__HTMLIFrameElementWrappingImplementation__get_width(_this) {
12962 try { 12962 try {
12963 return __dom_wrap(_this.$dom.width); 12963 return __dom_wrap(_this.$dom.width);
12964 } catch (e) { 12964 } catch (e) {
12965 throw __dom_wrap_exception(e); 12965 throw __dom_wrap_exception(e);
12966 } 12966 }
12967 } 12967 }
12968 12968
12969 function native__HTMLIFrameElementWrappingImplementation__set__HTMLIFrameElement _width(_this, value) { 12969 function native__HTMLIFrameElementWrappingImplementation__set_width(_this, value ) {
12970 try { 12970 try {
12971 _this.$dom.width = __dom_unwrap(value); 12971 _this.$dom.width = __dom_unwrap(value);
12972 } catch (e) { 12972 } catch (e) {
12973 throw __dom_wrap_exception(e); 12973 throw __dom_wrap_exception(e);
12974 } 12974 }
12975 } 12975 }
12976 12976
12977 function native__HTMLImageElementWrappingImplementation__get__HTMLImageElement_a lign(_this) { 12977 function native__HTMLImageElementWrappingImplementation__get_align(_this) {
12978 try { 12978 try {
12979 return __dom_wrap(_this.$dom.align); 12979 return __dom_wrap(_this.$dom.align);
12980 } catch (e) { 12980 } catch (e) {
12981 throw __dom_wrap_exception(e); 12981 throw __dom_wrap_exception(e);
12982 } 12982 }
12983 } 12983 }
12984 12984
12985 function native__HTMLImageElementWrappingImplementation__set__HTMLImageElement_a lign(_this, value) { 12985 function native__HTMLImageElementWrappingImplementation__set_align(_this, value) {
12986 try { 12986 try {
12987 _this.$dom.align = __dom_unwrap(value); 12987 _this.$dom.align = __dom_unwrap(value);
12988 } catch (e) { 12988 } catch (e) {
12989 throw __dom_wrap_exception(e); 12989 throw __dom_wrap_exception(e);
12990 } 12990 }
12991 } 12991 }
12992 12992
12993 function native__HTMLImageElementWrappingImplementation__get__HTMLImageElement_a lt(_this) { 12993 function native__HTMLImageElementWrappingImplementation__get_alt(_this) {
12994 try { 12994 try {
12995 return __dom_wrap(_this.$dom.alt); 12995 return __dom_wrap(_this.$dom.alt);
12996 } catch (e) { 12996 } catch (e) {
12997 throw __dom_wrap_exception(e); 12997 throw __dom_wrap_exception(e);
12998 } 12998 }
12999 } 12999 }
13000 13000
13001 function native__HTMLImageElementWrappingImplementation__set__HTMLImageElement_a lt(_this, value) { 13001 function native__HTMLImageElementWrappingImplementation__set_alt(_this, value) {
13002 try { 13002 try {
13003 _this.$dom.alt = __dom_unwrap(value); 13003 _this.$dom.alt = __dom_unwrap(value);
13004 } catch (e) { 13004 } catch (e) {
13005 throw __dom_wrap_exception(e); 13005 throw __dom_wrap_exception(e);
13006 } 13006 }
13007 } 13007 }
13008 13008
13009 function native__HTMLImageElementWrappingImplementation__get__HTMLImageElement_b order(_this) { 13009 function native__HTMLImageElementWrappingImplementation__get_border(_this) {
13010 try { 13010 try {
13011 return __dom_wrap(_this.$dom.border); 13011 return __dom_wrap(_this.$dom.border);
13012 } catch (e) { 13012 } catch (e) {
13013 throw __dom_wrap_exception(e); 13013 throw __dom_wrap_exception(e);
13014 } 13014 }
13015 } 13015 }
13016 13016
13017 function native__HTMLImageElementWrappingImplementation__set__HTMLImageElement_b order(_this, value) { 13017 function native__HTMLImageElementWrappingImplementation__set_border(_this, value ) {
13018 try { 13018 try {
13019 _this.$dom.border = __dom_unwrap(value); 13019 _this.$dom.border = __dom_unwrap(value);
13020 } catch (e) { 13020 } catch (e) {
13021 throw __dom_wrap_exception(e); 13021 throw __dom_wrap_exception(e);
13022 } 13022 }
13023 } 13023 }
13024 13024
13025 function native__HTMLImageElementWrappingImplementation__get__HTMLImageElement_c omplete(_this) { 13025 function native__HTMLImageElementWrappingImplementation__get_complete(_this) {
13026 try { 13026 try {
13027 return __dom_wrap(_this.$dom.complete); 13027 return __dom_wrap(_this.$dom.complete);
13028 } catch (e) { 13028 } catch (e) {
13029 throw __dom_wrap_exception(e); 13029 throw __dom_wrap_exception(e);
13030 } 13030 }
13031 } 13031 }
13032 13032
13033 function native__HTMLImageElementWrappingImplementation__get__HTMLImageElement_c rossOrigin(_this) { 13033 function native__HTMLImageElementWrappingImplementation__get_crossOrigin(_this) {
13034 try { 13034 try {
13035 return __dom_wrap(_this.$dom.crossOrigin); 13035 return __dom_wrap(_this.$dom.crossOrigin);
13036 } catch (e) { 13036 } catch (e) {
13037 throw __dom_wrap_exception(e); 13037 throw __dom_wrap_exception(e);
13038 } 13038 }
13039 } 13039 }
13040 13040
13041 function native__HTMLImageElementWrappingImplementation__set__HTMLImageElement_c rossOrigin(_this, value) { 13041 function native__HTMLImageElementWrappingImplementation__set_crossOrigin(_this, value) {
13042 try { 13042 try {
13043 _this.$dom.crossOrigin = __dom_unwrap(value); 13043 _this.$dom.crossOrigin = __dom_unwrap(value);
13044 } catch (e) { 13044 } catch (e) {
13045 throw __dom_wrap_exception(e); 13045 throw __dom_wrap_exception(e);
13046 } 13046 }
13047 } 13047 }
13048 13048
13049 function native__HTMLImageElementWrappingImplementation__get__HTMLImageElement_h eight(_this) { 13049 function native__HTMLImageElementWrappingImplementation__get_height(_this) {
13050 try { 13050 try {
13051 return __dom_wrap(_this.$dom.height); 13051 return __dom_wrap(_this.$dom.height);
13052 } catch (e) { 13052 } catch (e) {
13053 throw __dom_wrap_exception(e); 13053 throw __dom_wrap_exception(e);
13054 } 13054 }
13055 } 13055 }
13056 13056
13057 function native__HTMLImageElementWrappingImplementation__set__HTMLImageElement_h eight(_this, value) { 13057 function native__HTMLImageElementWrappingImplementation__set_height(_this, value ) {
13058 try { 13058 try {
13059 _this.$dom.height = __dom_unwrap(value); 13059 _this.$dom.height = __dom_unwrap(value);
13060 } catch (e) { 13060 } catch (e) {
13061 throw __dom_wrap_exception(e); 13061 throw __dom_wrap_exception(e);
13062 } 13062 }
13063 } 13063 }
13064 13064
13065 function native__HTMLImageElementWrappingImplementation__get__HTMLImageElement_h space(_this) { 13065 function native__HTMLImageElementWrappingImplementation__get_hspace(_this) {
13066 try { 13066 try {
13067 return __dom_wrap(_this.$dom.hspace); 13067 return __dom_wrap(_this.$dom.hspace);
13068 } catch (e) { 13068 } catch (e) {
13069 throw __dom_wrap_exception(e); 13069 throw __dom_wrap_exception(e);
13070 } 13070 }
13071 } 13071 }
13072 13072
13073 function native__HTMLImageElementWrappingImplementation__set__HTMLImageElement_h space(_this, value) { 13073 function native__HTMLImageElementWrappingImplementation__set_hspace(_this, value ) {
13074 try { 13074 try {
13075 _this.$dom.hspace = __dom_unwrap(value); 13075 _this.$dom.hspace = __dom_unwrap(value);
13076 } catch (e) { 13076 } catch (e) {
13077 throw __dom_wrap_exception(e); 13077 throw __dom_wrap_exception(e);
13078 } 13078 }
13079 } 13079 }
13080 13080
13081 function native__HTMLImageElementWrappingImplementation__get__HTMLImageElement_i sMap(_this) { 13081 function native__HTMLImageElementWrappingImplementation__get_isMap(_this) {
13082 try { 13082 try {
13083 return __dom_wrap(_this.$dom.isMap); 13083 return __dom_wrap(_this.$dom.isMap);
13084 } catch (e) { 13084 } catch (e) {
13085 throw __dom_wrap_exception(e); 13085 throw __dom_wrap_exception(e);
13086 } 13086 }
13087 } 13087 }
13088 13088
13089 function native__HTMLImageElementWrappingImplementation__set__HTMLImageElement_i sMap(_this, value) { 13089 function native__HTMLImageElementWrappingImplementation__set_isMap(_this, value) {
13090 try { 13090 try {
13091 _this.$dom.isMap = __dom_unwrap(value); 13091 _this.$dom.isMap = __dom_unwrap(value);
13092 } catch (e) { 13092 } catch (e) {
13093 throw __dom_wrap_exception(e); 13093 throw __dom_wrap_exception(e);
13094 } 13094 }
13095 } 13095 }
13096 13096
13097 function native__HTMLImageElementWrappingImplementation__get__HTMLImageElement_l ongDesc(_this) { 13097 function native__HTMLImageElementWrappingImplementation__get_longDesc(_this) {
13098 try { 13098 try {
13099 return __dom_wrap(_this.$dom.longDesc); 13099 return __dom_wrap(_this.$dom.longDesc);
13100 } catch (e) { 13100 } catch (e) {
13101 throw __dom_wrap_exception(e); 13101 throw __dom_wrap_exception(e);
13102 } 13102 }
13103 } 13103 }
13104 13104
13105 function native__HTMLImageElementWrappingImplementation__set__HTMLImageElement_l ongDesc(_this, value) { 13105 function native__HTMLImageElementWrappingImplementation__set_longDesc(_this, val ue) {
13106 try { 13106 try {
13107 _this.$dom.longDesc = __dom_unwrap(value); 13107 _this.$dom.longDesc = __dom_unwrap(value);
13108 } catch (e) { 13108 } catch (e) {
13109 throw __dom_wrap_exception(e); 13109 throw __dom_wrap_exception(e);
13110 } 13110 }
13111 } 13111 }
13112 13112
13113 function native__HTMLImageElementWrappingImplementation__get__HTMLImageElement_l owsrc(_this) { 13113 function native__HTMLImageElementWrappingImplementation__get_lowsrc(_this) {
13114 try { 13114 try {
13115 return __dom_wrap(_this.$dom.lowsrc); 13115 return __dom_wrap(_this.$dom.lowsrc);
13116 } catch (e) { 13116 } catch (e) {
13117 throw __dom_wrap_exception(e); 13117 throw __dom_wrap_exception(e);
13118 } 13118 }
13119 } 13119 }
13120 13120
13121 function native__HTMLImageElementWrappingImplementation__set__HTMLImageElement_l owsrc(_this, value) { 13121 function native__HTMLImageElementWrappingImplementation__set_lowsrc(_this, value ) {
13122 try { 13122 try {
13123 _this.$dom.lowsrc = __dom_unwrap(value); 13123 _this.$dom.lowsrc = __dom_unwrap(value);
13124 } catch (e) { 13124 } catch (e) {
13125 throw __dom_wrap_exception(e); 13125 throw __dom_wrap_exception(e);
13126 } 13126 }
13127 } 13127 }
13128 13128
13129 function native__HTMLImageElementWrappingImplementation__get__HTMLImageElement_n ame(_this) { 13129 function native__HTMLImageElementWrappingImplementation__get_name(_this) {
13130 try { 13130 try {
13131 return __dom_wrap(_this.$dom.name); 13131 return __dom_wrap(_this.$dom.name);
13132 } catch (e) { 13132 } catch (e) {
13133 throw __dom_wrap_exception(e); 13133 throw __dom_wrap_exception(e);
13134 } 13134 }
13135 } 13135 }
13136 13136
13137 function native__HTMLImageElementWrappingImplementation__set__HTMLImageElement_n ame(_this, value) { 13137 function native__HTMLImageElementWrappingImplementation__set_name(_this, value) {
13138 try { 13138 try {
13139 _this.$dom.name = __dom_unwrap(value); 13139 _this.$dom.name = __dom_unwrap(value);
13140 } catch (e) { 13140 } catch (e) {
13141 throw __dom_wrap_exception(e); 13141 throw __dom_wrap_exception(e);
13142 } 13142 }
13143 } 13143 }
13144 13144
13145 function native__HTMLImageElementWrappingImplementation__get__HTMLImageElement_n aturalHeight(_this) { 13145 function native__HTMLImageElementWrappingImplementation__get_naturalHeight(_this ) {
13146 try { 13146 try {
13147 return __dom_wrap(_this.$dom.naturalHeight); 13147 return __dom_wrap(_this.$dom.naturalHeight);
13148 } catch (e) { 13148 } catch (e) {
13149 throw __dom_wrap_exception(e); 13149 throw __dom_wrap_exception(e);
13150 } 13150 }
13151 } 13151 }
13152 13152
13153 function native__HTMLImageElementWrappingImplementation__get__HTMLImageElement_n aturalWidth(_this) { 13153 function native__HTMLImageElementWrappingImplementation__get_naturalWidth(_this) {
13154 try { 13154 try {
13155 return __dom_wrap(_this.$dom.naturalWidth); 13155 return __dom_wrap(_this.$dom.naturalWidth);
13156 } catch (e) { 13156 } catch (e) {
13157 throw __dom_wrap_exception(e); 13157 throw __dom_wrap_exception(e);
13158 } 13158 }
13159 } 13159 }
13160 13160
13161 function native__HTMLImageElementWrappingImplementation__get__HTMLImageElement_s rc(_this) { 13161 function native__HTMLImageElementWrappingImplementation__get_src(_this) {
13162 try { 13162 try {
13163 return __dom_wrap(_this.$dom.src); 13163 return __dom_wrap(_this.$dom.src);
13164 } catch (e) { 13164 } catch (e) {
13165 throw __dom_wrap_exception(e); 13165 throw __dom_wrap_exception(e);
13166 } 13166 }
13167 } 13167 }
13168 13168
13169 function native__HTMLImageElementWrappingImplementation__set__HTMLImageElement_s rc(_this, value) { 13169 function native__HTMLImageElementWrappingImplementation__set_src(_this, value) {
13170 try { 13170 try {
13171 _this.$dom.src = __dom_unwrap(value); 13171 _this.$dom.src = __dom_unwrap(value);
13172 } catch (e) { 13172 } catch (e) {
13173 throw __dom_wrap_exception(e); 13173 throw __dom_wrap_exception(e);
13174 } 13174 }
13175 } 13175 }
13176 13176
13177 function native__HTMLImageElementWrappingImplementation__get__HTMLImageElement_u seMap(_this) { 13177 function native__HTMLImageElementWrappingImplementation__get_useMap(_this) {
13178 try { 13178 try {
13179 return __dom_wrap(_this.$dom.useMap); 13179 return __dom_wrap(_this.$dom.useMap);
13180 } catch (e) { 13180 } catch (e) {
13181 throw __dom_wrap_exception(e); 13181 throw __dom_wrap_exception(e);
13182 } 13182 }
13183 } 13183 }
13184 13184
13185 function native__HTMLImageElementWrappingImplementation__set__HTMLImageElement_u seMap(_this, value) { 13185 function native__HTMLImageElementWrappingImplementation__set_useMap(_this, value ) {
13186 try { 13186 try {
13187 _this.$dom.useMap = __dom_unwrap(value); 13187 _this.$dom.useMap = __dom_unwrap(value);
13188 } catch (e) { 13188 } catch (e) {
13189 throw __dom_wrap_exception(e); 13189 throw __dom_wrap_exception(e);
13190 } 13190 }
13191 } 13191 }
13192 13192
13193 function native__HTMLImageElementWrappingImplementation__get__HTMLImageElement_v space(_this) { 13193 function native__HTMLImageElementWrappingImplementation__get_vspace(_this) {
13194 try { 13194 try {
13195 return __dom_wrap(_this.$dom.vspace); 13195 return __dom_wrap(_this.$dom.vspace);
13196 } catch (e) { 13196 } catch (e) {
13197 throw __dom_wrap_exception(e); 13197 throw __dom_wrap_exception(e);
13198 } 13198 }
13199 } 13199 }
13200 13200
13201 function native__HTMLImageElementWrappingImplementation__set__HTMLImageElement_v space(_this, value) { 13201 function native__HTMLImageElementWrappingImplementation__set_vspace(_this, value ) {
13202 try { 13202 try {
13203 _this.$dom.vspace = __dom_unwrap(value); 13203 _this.$dom.vspace = __dom_unwrap(value);
13204 } catch (e) { 13204 } catch (e) {
13205 throw __dom_wrap_exception(e); 13205 throw __dom_wrap_exception(e);
13206 } 13206 }
13207 } 13207 }
13208 13208
13209 function native__HTMLImageElementWrappingImplementation__get__HTMLImageElement_w idth(_this) { 13209 function native__HTMLImageElementWrappingImplementation__get_width(_this) {
13210 try { 13210 try {
13211 return __dom_wrap(_this.$dom.width); 13211 return __dom_wrap(_this.$dom.width);
13212 } catch (e) { 13212 } catch (e) {
13213 throw __dom_wrap_exception(e); 13213 throw __dom_wrap_exception(e);
13214 } 13214 }
13215 } 13215 }
13216 13216
13217 function native__HTMLImageElementWrappingImplementation__set__HTMLImageElement_w idth(_this, value) { 13217 function native__HTMLImageElementWrappingImplementation__set_width(_this, value) {
13218 try { 13218 try {
13219 _this.$dom.width = __dom_unwrap(value); 13219 _this.$dom.width = __dom_unwrap(value);
13220 } catch (e) { 13220 } catch (e) {
13221 throw __dom_wrap_exception(e); 13221 throw __dom_wrap_exception(e);
13222 } 13222 }
13223 } 13223 }
13224 13224
13225 function native__HTMLImageElementWrappingImplementation__get__HTMLImageElement_x (_this) { 13225 function native__HTMLImageElementWrappingImplementation__get_x(_this) {
13226 try { 13226 try {
13227 return __dom_wrap(_this.$dom.x); 13227 return __dom_wrap(_this.$dom.x);
13228 } catch (e) { 13228 } catch (e) {
13229 throw __dom_wrap_exception(e); 13229 throw __dom_wrap_exception(e);
13230 } 13230 }
13231 } 13231 }
13232 13232
13233 function native__HTMLImageElementWrappingImplementation__get__HTMLImageElement_y (_this) { 13233 function native__HTMLImageElementWrappingImplementation__get_y(_this) {
13234 try { 13234 try {
13235 return __dom_wrap(_this.$dom.y); 13235 return __dom_wrap(_this.$dom.y);
13236 } catch (e) { 13236 } catch (e) {
13237 throw __dom_wrap_exception(e); 13237 throw __dom_wrap_exception(e);
13238 } 13238 }
13239 } 13239 }
13240 13240
13241 function native__HTMLInputElementWrappingImplementation__get__HTMLInputElement_a ccept(_this) { 13241 function native__HTMLInputElementWrappingImplementation__get_accept(_this) {
13242 try { 13242 try {
13243 return __dom_wrap(_this.$dom.accept); 13243 return __dom_wrap(_this.$dom.accept);
13244 } catch (e) { 13244 } catch (e) {
13245 throw __dom_wrap_exception(e); 13245 throw __dom_wrap_exception(e);
13246 } 13246 }
13247 } 13247 }
13248 13248
13249 function native__HTMLInputElementWrappingImplementation__set__HTMLInputElement_a ccept(_this, value) { 13249 function native__HTMLInputElementWrappingImplementation__set_accept(_this, value ) {
13250 try { 13250 try {
13251 _this.$dom.accept = __dom_unwrap(value); 13251 _this.$dom.accept = __dom_unwrap(value);
13252 } catch (e) { 13252 } catch (e) {
13253 throw __dom_wrap_exception(e); 13253 throw __dom_wrap_exception(e);
13254 } 13254 }
13255 } 13255 }
13256 13256
13257 function native__HTMLInputElementWrappingImplementation__get__HTMLInputElement_a ccessKey(_this) { 13257 function native__HTMLInputElementWrappingImplementation__get_accessKey(_this) {
13258 try { 13258 try {
13259 return __dom_wrap(_this.$dom.accessKey); 13259 return __dom_wrap(_this.$dom.accessKey);
13260 } catch (e) { 13260 } catch (e) {
13261 throw __dom_wrap_exception(e); 13261 throw __dom_wrap_exception(e);
13262 } 13262 }
13263 } 13263 }
13264 13264
13265 function native__HTMLInputElementWrappingImplementation__set__HTMLInputElement_a ccessKey(_this, value) { 13265 function native__HTMLInputElementWrappingImplementation__set_accessKey(_this, va lue) {
13266 try { 13266 try {
13267 _this.$dom.accessKey = __dom_unwrap(value); 13267 _this.$dom.accessKey = __dom_unwrap(value);
13268 } catch (e) { 13268 } catch (e) {
13269 throw __dom_wrap_exception(e); 13269 throw __dom_wrap_exception(e);
13270 } 13270 }
13271 } 13271 }
13272 13272
13273 function native__HTMLInputElementWrappingImplementation__get__HTMLInputElement_a lign(_this) { 13273 function native__HTMLInputElementWrappingImplementation__get_align(_this) {
13274 try { 13274 try {
13275 return __dom_wrap(_this.$dom.align); 13275 return __dom_wrap(_this.$dom.align);
13276 } catch (e) { 13276 } catch (e) {
13277 throw __dom_wrap_exception(e); 13277 throw __dom_wrap_exception(e);
13278 } 13278 }
13279 } 13279 }
13280 13280
13281 function native__HTMLInputElementWrappingImplementation__set__HTMLInputElement_a lign(_this, value) { 13281 function native__HTMLInputElementWrappingImplementation__set_align(_this, value) {
13282 try { 13282 try {
13283 _this.$dom.align = __dom_unwrap(value); 13283 _this.$dom.align = __dom_unwrap(value);
13284 } catch (e) { 13284 } catch (e) {
13285 throw __dom_wrap_exception(e); 13285 throw __dom_wrap_exception(e);
13286 } 13286 }
13287 } 13287 }
13288 13288
13289 function native__HTMLInputElementWrappingImplementation__get__HTMLInputElement_a lt(_this) { 13289 function native__HTMLInputElementWrappingImplementation__get_alt(_this) {
13290 try { 13290 try {
13291 return __dom_wrap(_this.$dom.alt); 13291 return __dom_wrap(_this.$dom.alt);
13292 } catch (e) { 13292 } catch (e) {
13293 throw __dom_wrap_exception(e); 13293 throw __dom_wrap_exception(e);
13294 } 13294 }
13295 } 13295 }
13296 13296
13297 function native__HTMLInputElementWrappingImplementation__set__HTMLInputElement_a lt(_this, value) { 13297 function native__HTMLInputElementWrappingImplementation__set_alt(_this, value) {
13298 try { 13298 try {
13299 _this.$dom.alt = __dom_unwrap(value); 13299 _this.$dom.alt = __dom_unwrap(value);
13300 } catch (e) { 13300 } catch (e) {
13301 throw __dom_wrap_exception(e); 13301 throw __dom_wrap_exception(e);
13302 } 13302 }
13303 } 13303 }
13304 13304
13305 function native__HTMLInputElementWrappingImplementation__get__HTMLInputElement_a utocomplete(_this) { 13305 function native__HTMLInputElementWrappingImplementation__get_autocomplete(_this) {
13306 try { 13306 try {
13307 return __dom_wrap(_this.$dom.autocomplete); 13307 return __dom_wrap(_this.$dom.autocomplete);
13308 } catch (e) { 13308 } catch (e) {
13309 throw __dom_wrap_exception(e); 13309 throw __dom_wrap_exception(e);
13310 } 13310 }
13311 } 13311 }
13312 13312
13313 function native__HTMLInputElementWrappingImplementation__set__HTMLInputElement_a utocomplete(_this, value) { 13313 function native__HTMLInputElementWrappingImplementation__set_autocomplete(_this, value) {
13314 try { 13314 try {
13315 _this.$dom.autocomplete = __dom_unwrap(value); 13315 _this.$dom.autocomplete = __dom_unwrap(value);
13316 } catch (e) { 13316 } catch (e) {
13317 throw __dom_wrap_exception(e); 13317 throw __dom_wrap_exception(e);
13318 } 13318 }
13319 } 13319 }
13320 13320
13321 function native__HTMLInputElementWrappingImplementation__get__HTMLInputElement_a utofocus(_this) { 13321 function native__HTMLInputElementWrappingImplementation__get_autofocus(_this) {
13322 try { 13322 try {
13323 return __dom_wrap(_this.$dom.autofocus); 13323 return __dom_wrap(_this.$dom.autofocus);
13324 } catch (e) { 13324 } catch (e) {
13325 throw __dom_wrap_exception(e); 13325 throw __dom_wrap_exception(e);
13326 } 13326 }
13327 } 13327 }
13328 13328
13329 function native__HTMLInputElementWrappingImplementation__set__HTMLInputElement_a utofocus(_this, value) { 13329 function native__HTMLInputElementWrappingImplementation__set_autofocus(_this, va lue) {
13330 try { 13330 try {
13331 _this.$dom.autofocus = __dom_unwrap(value); 13331 _this.$dom.autofocus = __dom_unwrap(value);
13332 } catch (e) { 13332 } catch (e) {
13333 throw __dom_wrap_exception(e); 13333 throw __dom_wrap_exception(e);
13334 } 13334 }
13335 } 13335 }
13336 13336
13337 function native__HTMLInputElementWrappingImplementation__get__HTMLInputElement_c hecked(_this) { 13337 function native__HTMLInputElementWrappingImplementation__get_checked(_this) {
13338 try { 13338 try {
13339 return __dom_wrap(_this.$dom.checked); 13339 return __dom_wrap(_this.$dom.checked);
13340 } catch (e) { 13340 } catch (e) {
13341 throw __dom_wrap_exception(e); 13341 throw __dom_wrap_exception(e);
13342 } 13342 }
13343 } 13343 }
13344 13344
13345 function native__HTMLInputElementWrappingImplementation__set__HTMLInputElement_c hecked(_this, value) { 13345 function native__HTMLInputElementWrappingImplementation__set_checked(_this, valu e) {
13346 try { 13346 try {
13347 _this.$dom.checked = __dom_unwrap(value); 13347 _this.$dom.checked = __dom_unwrap(value);
13348 } catch (e) { 13348 } catch (e) {
13349 throw __dom_wrap_exception(e); 13349 throw __dom_wrap_exception(e);
13350 } 13350 }
13351 } 13351 }
13352 13352
13353 function native__HTMLInputElementWrappingImplementation__get__HTMLInputElement_d efaultChecked(_this) { 13353 function native__HTMLInputElementWrappingImplementation__get_defaultChecked(_thi s) {
13354 try { 13354 try {
13355 return __dom_wrap(_this.$dom.defaultChecked); 13355 return __dom_wrap(_this.$dom.defaultChecked);
13356 } catch (e) { 13356 } catch (e) {
13357 throw __dom_wrap_exception(e); 13357 throw __dom_wrap_exception(e);
13358 } 13358 }
13359 } 13359 }
13360 13360
13361 function native__HTMLInputElementWrappingImplementation__set__HTMLInputElement_d efaultChecked(_this, value) { 13361 function native__HTMLInputElementWrappingImplementation__set_defaultChecked(_thi s, value) {
13362 try { 13362 try {
13363 _this.$dom.defaultChecked = __dom_unwrap(value); 13363 _this.$dom.defaultChecked = __dom_unwrap(value);
13364 } catch (e) { 13364 } catch (e) {
13365 throw __dom_wrap_exception(e); 13365 throw __dom_wrap_exception(e);
13366 } 13366 }
13367 } 13367 }
13368 13368
13369 function native__HTMLInputElementWrappingImplementation__get__HTMLInputElement_d efaultValue(_this) { 13369 function native__HTMLInputElementWrappingImplementation__get_defaultValue(_this) {
13370 try { 13370 try {
13371 return __dom_wrap(_this.$dom.defaultValue); 13371 return __dom_wrap(_this.$dom.defaultValue);
13372 } catch (e) { 13372 } catch (e) {
13373 throw __dom_wrap_exception(e); 13373 throw __dom_wrap_exception(e);
13374 } 13374 }
13375 } 13375 }
13376 13376
13377 function native__HTMLInputElementWrappingImplementation__set__HTMLInputElement_d efaultValue(_this, value) { 13377 function native__HTMLInputElementWrappingImplementation__set_defaultValue(_this, value) {
13378 try { 13378 try {
13379 _this.$dom.defaultValue = __dom_unwrap(value); 13379 _this.$dom.defaultValue = __dom_unwrap(value);
13380 } catch (e) { 13380 } catch (e) {
13381 throw __dom_wrap_exception(e); 13381 throw __dom_wrap_exception(e);
13382 } 13382 }
13383 } 13383 }
13384 13384
13385 function native__HTMLInputElementWrappingImplementation__get__HTMLInputElement_d isabled(_this) { 13385 function native__HTMLInputElementWrappingImplementation__get_disabled(_this) {
13386 try { 13386 try {
13387 return __dom_wrap(_this.$dom.disabled); 13387 return __dom_wrap(_this.$dom.disabled);
13388 } catch (e) { 13388 } catch (e) {
13389 throw __dom_wrap_exception(e); 13389 throw __dom_wrap_exception(e);
13390 } 13390 }
13391 } 13391 }
13392 13392
13393 function native__HTMLInputElementWrappingImplementation__set__HTMLInputElement_d isabled(_this, value) { 13393 function native__HTMLInputElementWrappingImplementation__set_disabled(_this, val ue) {
13394 try { 13394 try {
13395 _this.$dom.disabled = __dom_unwrap(value); 13395 _this.$dom.disabled = __dom_unwrap(value);
13396 } catch (e) { 13396 } catch (e) {
13397 throw __dom_wrap_exception(e); 13397 throw __dom_wrap_exception(e);
13398 } 13398 }
13399 } 13399 }
13400 13400
13401 function native__HTMLInputElementWrappingImplementation__get__HTMLInputElement_f iles(_this) { 13401 function native__HTMLInputElementWrappingImplementation__get_files(_this) {
13402 try { 13402 try {
13403 return __dom_wrap(_this.$dom.files); 13403 return __dom_wrap(_this.$dom.files);
13404 } catch (e) { 13404 } catch (e) {
13405 throw __dom_wrap_exception(e); 13405 throw __dom_wrap_exception(e);
13406 } 13406 }
13407 } 13407 }
13408 13408
13409 function native__HTMLInputElementWrappingImplementation__get__HTMLInputElement_f orm(_this) { 13409 function native__HTMLInputElementWrappingImplementation__get_form(_this) {
13410 try { 13410 try {
13411 return __dom_wrap(_this.$dom.form); 13411 return __dom_wrap(_this.$dom.form);
13412 } catch (e) { 13412 } catch (e) {
13413 throw __dom_wrap_exception(e); 13413 throw __dom_wrap_exception(e);
13414 } 13414 }
13415 } 13415 }
13416 13416
13417 function native__HTMLInputElementWrappingImplementation__get__HTMLInputElement_f ormAction(_this) { 13417 function native__HTMLInputElementWrappingImplementation__get_formAction(_this) {
13418 try { 13418 try {
13419 return __dom_wrap(_this.$dom.formAction); 13419 return __dom_wrap(_this.$dom.formAction);
13420 } catch (e) { 13420 } catch (e) {
13421 throw __dom_wrap_exception(e); 13421 throw __dom_wrap_exception(e);
13422 } 13422 }
13423 } 13423 }
13424 13424
13425 function native__HTMLInputElementWrappingImplementation__set__HTMLInputElement_f ormAction(_this, value) { 13425 function native__HTMLInputElementWrappingImplementation__set_formAction(_this, v alue) {
13426 try { 13426 try {
13427 _this.$dom.formAction = __dom_unwrap(value); 13427 _this.$dom.formAction = __dom_unwrap(value);
13428 } catch (e) { 13428 } catch (e) {
13429 throw __dom_wrap_exception(e); 13429 throw __dom_wrap_exception(e);
13430 } 13430 }
13431 } 13431 }
13432 13432
13433 function native__HTMLInputElementWrappingImplementation__get__HTMLInputElement_f ormEnctype(_this) { 13433 function native__HTMLInputElementWrappingImplementation__get_formEnctype(_this) {
13434 try { 13434 try {
13435 return __dom_wrap(_this.$dom.formEnctype); 13435 return __dom_wrap(_this.$dom.formEnctype);
13436 } catch (e) { 13436 } catch (e) {
13437 throw __dom_wrap_exception(e); 13437 throw __dom_wrap_exception(e);
13438 } 13438 }
13439 } 13439 }
13440 13440
13441 function native__HTMLInputElementWrappingImplementation__set__HTMLInputElement_f ormEnctype(_this, value) { 13441 function native__HTMLInputElementWrappingImplementation__set_formEnctype(_this, value) {
13442 try { 13442 try {
13443 _this.$dom.formEnctype = __dom_unwrap(value); 13443 _this.$dom.formEnctype = __dom_unwrap(value);
13444 } catch (e) { 13444 } catch (e) {
13445 throw __dom_wrap_exception(e); 13445 throw __dom_wrap_exception(e);
13446 } 13446 }
13447 } 13447 }
13448 13448
13449 function native__HTMLInputElementWrappingImplementation__get__HTMLInputElement_f ormMethod(_this) { 13449 function native__HTMLInputElementWrappingImplementation__get_formMethod(_this) {
13450 try { 13450 try {
13451 return __dom_wrap(_this.$dom.formMethod); 13451 return __dom_wrap(_this.$dom.formMethod);
13452 } catch (e) { 13452 } catch (e) {
13453 throw __dom_wrap_exception(e); 13453 throw __dom_wrap_exception(e);
13454 } 13454 }
13455 } 13455 }
13456 13456
13457 function native__HTMLInputElementWrappingImplementation__set__HTMLInputElement_f ormMethod(_this, value) { 13457 function native__HTMLInputElementWrappingImplementation__set_formMethod(_this, v alue) {
13458 try { 13458 try {
13459 _this.$dom.formMethod = __dom_unwrap(value); 13459 _this.$dom.formMethod = __dom_unwrap(value);
13460 } catch (e) { 13460 } catch (e) {
13461 throw __dom_wrap_exception(e); 13461 throw __dom_wrap_exception(e);
13462 } 13462 }
13463 } 13463 }
13464 13464
13465 function native__HTMLInputElementWrappingImplementation__get__HTMLInputElement_f ormNoValidate(_this) { 13465 function native__HTMLInputElementWrappingImplementation__get_formNoValidate(_thi s) {
13466 try { 13466 try {
13467 return __dom_wrap(_this.$dom.formNoValidate); 13467 return __dom_wrap(_this.$dom.formNoValidate);
13468 } catch (e) { 13468 } catch (e) {
13469 throw __dom_wrap_exception(e); 13469 throw __dom_wrap_exception(e);
13470 } 13470 }
13471 } 13471 }
13472 13472
13473 function native__HTMLInputElementWrappingImplementation__set__HTMLInputElement_f ormNoValidate(_this, value) { 13473 function native__HTMLInputElementWrappingImplementation__set_formNoValidate(_thi s, value) {
13474 try { 13474 try {
13475 _this.$dom.formNoValidate = __dom_unwrap(value); 13475 _this.$dom.formNoValidate = __dom_unwrap(value);
13476 } catch (e) { 13476 } catch (e) {
13477 throw __dom_wrap_exception(e); 13477 throw __dom_wrap_exception(e);
13478 } 13478 }
13479 } 13479 }
13480 13480
13481 function native__HTMLInputElementWrappingImplementation__get__HTMLInputElement_f ormTarget(_this) { 13481 function native__HTMLInputElementWrappingImplementation__get_formTarget(_this) {
13482 try { 13482 try {
13483 return __dom_wrap(_this.$dom.formTarget); 13483 return __dom_wrap(_this.$dom.formTarget);
13484 } catch (e) { 13484 } catch (e) {
13485 throw __dom_wrap_exception(e); 13485 throw __dom_wrap_exception(e);
13486 } 13486 }
13487 } 13487 }
13488 13488
13489 function native__HTMLInputElementWrappingImplementation__set__HTMLInputElement_f ormTarget(_this, value) { 13489 function native__HTMLInputElementWrappingImplementation__set_formTarget(_this, v alue) {
13490 try { 13490 try {
13491 _this.$dom.formTarget = __dom_unwrap(value); 13491 _this.$dom.formTarget = __dom_unwrap(value);
13492 } catch (e) { 13492 } catch (e) {
13493 throw __dom_wrap_exception(e); 13493 throw __dom_wrap_exception(e);
13494 } 13494 }
13495 } 13495 }
13496 13496
13497 function native__HTMLInputElementWrappingImplementation__get__HTMLInputElement_i ncremental(_this) { 13497 function native__HTMLInputElementWrappingImplementation__get_incremental(_this) {
13498 try { 13498 try {
13499 return __dom_wrap(_this.$dom.incremental); 13499 return __dom_wrap(_this.$dom.incremental);
13500 } catch (e) { 13500 } catch (e) {
13501 throw __dom_wrap_exception(e); 13501 throw __dom_wrap_exception(e);
13502 } 13502 }
13503 } 13503 }
13504 13504
13505 function native__HTMLInputElementWrappingImplementation__set__HTMLInputElement_i ncremental(_this, value) { 13505 function native__HTMLInputElementWrappingImplementation__set_incremental(_this, value) {
13506 try { 13506 try {
13507 _this.$dom.incremental = __dom_unwrap(value); 13507 _this.$dom.incremental = __dom_unwrap(value);
13508 } catch (e) { 13508 } catch (e) {
13509 throw __dom_wrap_exception(e); 13509 throw __dom_wrap_exception(e);
13510 } 13510 }
13511 } 13511 }
13512 13512
13513 function native__HTMLInputElementWrappingImplementation__get__HTMLInputElement_i ndeterminate(_this) { 13513 function native__HTMLInputElementWrappingImplementation__get_indeterminate(_this ) {
13514 try { 13514 try {
13515 return __dom_wrap(_this.$dom.indeterminate); 13515 return __dom_wrap(_this.$dom.indeterminate);
13516 } catch (e) { 13516 } catch (e) {
13517 throw __dom_wrap_exception(e); 13517 throw __dom_wrap_exception(e);
13518 } 13518 }
13519 } 13519 }
13520 13520
13521 function native__HTMLInputElementWrappingImplementation__set__HTMLInputElement_i ndeterminate(_this, value) { 13521 function native__HTMLInputElementWrappingImplementation__set_indeterminate(_this , value) {
13522 try { 13522 try {
13523 _this.$dom.indeterminate = __dom_unwrap(value); 13523 _this.$dom.indeterminate = __dom_unwrap(value);
13524 } catch (e) { 13524 } catch (e) {
13525 throw __dom_wrap_exception(e); 13525 throw __dom_wrap_exception(e);
13526 } 13526 }
13527 } 13527 }
13528 13528
13529 function native__HTMLInputElementWrappingImplementation__get__HTMLInputElement_l abels(_this) { 13529 function native__HTMLInputElementWrappingImplementation__get_labels(_this) {
13530 try { 13530 try {
13531 return __dom_wrap(_this.$dom.labels); 13531 return __dom_wrap(_this.$dom.labels);
13532 } catch (e) { 13532 } catch (e) {
13533 throw __dom_wrap_exception(e); 13533 throw __dom_wrap_exception(e);
13534 } 13534 }
13535 } 13535 }
13536 13536
13537 function native__HTMLInputElementWrappingImplementation__get__HTMLInputElement_l ist(_this) { 13537 function native__HTMLInputElementWrappingImplementation__get_list(_this) {
13538 try { 13538 try {
13539 return __dom_wrap(_this.$dom.list); 13539 return __dom_wrap(_this.$dom.list);
13540 } catch (e) { 13540 } catch (e) {
13541 throw __dom_wrap_exception(e); 13541 throw __dom_wrap_exception(e);
13542 } 13542 }
13543 } 13543 }
13544 13544
13545 function native__HTMLInputElementWrappingImplementation__get__HTMLInputElement_m ax(_this) { 13545 function native__HTMLInputElementWrappingImplementation__get_max(_this) {
13546 try { 13546 try {
13547 return __dom_wrap(_this.$dom.max); 13547 return __dom_wrap(_this.$dom.max);
13548 } catch (e) { 13548 } catch (e) {
13549 throw __dom_wrap_exception(e); 13549 throw __dom_wrap_exception(e);
13550 } 13550 }
13551 } 13551 }
13552 13552
13553 function native__HTMLInputElementWrappingImplementation__set__HTMLInputElement_m ax(_this, value) { 13553 function native__HTMLInputElementWrappingImplementation__set_max(_this, value) {
13554 try { 13554 try {
13555 _this.$dom.max = __dom_unwrap(value); 13555 _this.$dom.max = __dom_unwrap(value);
13556 } catch (e) { 13556 } catch (e) {
13557 throw __dom_wrap_exception(e); 13557 throw __dom_wrap_exception(e);
13558 } 13558 }
13559 } 13559 }
13560 13560
13561 function native__HTMLInputElementWrappingImplementation__get__HTMLInputElement_m axLength(_this) { 13561 function native__HTMLInputElementWrappingImplementation__get_maxLength(_this) {
13562 try { 13562 try {
13563 return __dom_wrap(_this.$dom.maxLength); 13563 return __dom_wrap(_this.$dom.maxLength);
13564 } catch (e) { 13564 } catch (e) {
13565 throw __dom_wrap_exception(e); 13565 throw __dom_wrap_exception(e);
13566 } 13566 }
13567 } 13567 }
13568 13568
13569 function native__HTMLInputElementWrappingImplementation__set__HTMLInputElement_m axLength(_this, value) { 13569 function native__HTMLInputElementWrappingImplementation__set_maxLength(_this, va lue) {
13570 try { 13570 try {
13571 _this.$dom.maxLength = __dom_unwrap(value); 13571 _this.$dom.maxLength = __dom_unwrap(value);
13572 } catch (e) { 13572 } catch (e) {
13573 throw __dom_wrap_exception(e); 13573 throw __dom_wrap_exception(e);
13574 } 13574 }
13575 } 13575 }
13576 13576
13577 function native__HTMLInputElementWrappingImplementation__get__HTMLInputElement_m in(_this) { 13577 function native__HTMLInputElementWrappingImplementation__get_min(_this) {
13578 try { 13578 try {
13579 return __dom_wrap(_this.$dom.min); 13579 return __dom_wrap(_this.$dom.min);
13580 } catch (e) { 13580 } catch (e) {
13581 throw __dom_wrap_exception(e); 13581 throw __dom_wrap_exception(e);
13582 } 13582 }
13583 } 13583 }
13584 13584
13585 function native__HTMLInputElementWrappingImplementation__set__HTMLInputElement_m in(_this, value) { 13585 function native__HTMLInputElementWrappingImplementation__set_min(_this, value) {
13586 try { 13586 try {
13587 _this.$dom.min = __dom_unwrap(value); 13587 _this.$dom.min = __dom_unwrap(value);
13588 } catch (e) { 13588 } catch (e) {
13589 throw __dom_wrap_exception(e); 13589 throw __dom_wrap_exception(e);
13590 } 13590 }
13591 } 13591 }
13592 13592
13593 function native__HTMLInputElementWrappingImplementation__get__HTMLInputElement_m ultiple(_this) { 13593 function native__HTMLInputElementWrappingImplementation__get_multiple(_this) {
13594 try { 13594 try {
13595 return __dom_wrap(_this.$dom.multiple); 13595 return __dom_wrap(_this.$dom.multiple);
13596 } catch (e) { 13596 } catch (e) {
13597 throw __dom_wrap_exception(e); 13597 throw __dom_wrap_exception(e);
13598 } 13598 }
13599 } 13599 }
13600 13600
13601 function native__HTMLInputElementWrappingImplementation__set__HTMLInputElement_m ultiple(_this, value) { 13601 function native__HTMLInputElementWrappingImplementation__set_multiple(_this, val ue) {
13602 try { 13602 try {
13603 _this.$dom.multiple = __dom_unwrap(value); 13603 _this.$dom.multiple = __dom_unwrap(value);
13604 } catch (e) { 13604 } catch (e) {
13605 throw __dom_wrap_exception(e); 13605 throw __dom_wrap_exception(e);
13606 } 13606 }
13607 } 13607 }
13608 13608
13609 function native__HTMLInputElementWrappingImplementation__get__HTMLInputElement_n ame(_this) { 13609 function native__HTMLInputElementWrappingImplementation__get_name(_this) {
13610 try { 13610 try {
13611 return __dom_wrap(_this.$dom.name); 13611 return __dom_wrap(_this.$dom.name);
13612 } catch (e) { 13612 } catch (e) {
13613 throw __dom_wrap_exception(e); 13613 throw __dom_wrap_exception(e);
13614 } 13614 }
13615 } 13615 }
13616 13616
13617 function native__HTMLInputElementWrappingImplementation__set__HTMLInputElement_n ame(_this, value) { 13617 function native__HTMLInputElementWrappingImplementation__set_name(_this, value) {
13618 try { 13618 try {
13619 _this.$dom.name = __dom_unwrap(value); 13619 _this.$dom.name = __dom_unwrap(value);
13620 } catch (e) { 13620 } catch (e) {
13621 throw __dom_wrap_exception(e); 13621 throw __dom_wrap_exception(e);
13622 } 13622 }
13623 } 13623 }
13624 13624
13625 function native__HTMLInputElementWrappingImplementation__get__HTMLInputElement_o nwebkitspeechchange(_this) { 13625 function native__HTMLInputElementWrappingImplementation__get_onwebkitspeechchang e(_this) {
13626 try { 13626 try {
13627 return __dom_wrap(_this.$dom.onwebkitspeechchange); 13627 return __dom_wrap(_this.$dom.onwebkitspeechchange);
13628 } catch (e) { 13628 } catch (e) {
13629 throw __dom_wrap_exception(e); 13629 throw __dom_wrap_exception(e);
13630 } 13630 }
13631 } 13631 }
13632 13632
13633 function native__HTMLInputElementWrappingImplementation__set__HTMLInputElement_o nwebkitspeechchange(_this, value) { 13633 function native__HTMLInputElementWrappingImplementation__set_onwebkitspeechchang e(_this, value) {
13634 try { 13634 try {
13635 _this.$dom.onwebkitspeechchange = __dom_unwrap(value); 13635 _this.$dom.onwebkitspeechchange = __dom_unwrap(value);
13636 } catch (e) { 13636 } catch (e) {
13637 throw __dom_wrap_exception(e); 13637 throw __dom_wrap_exception(e);
13638 } 13638 }
13639 } 13639 }
13640 13640
13641 function native__HTMLInputElementWrappingImplementation__get__HTMLInputElement_p attern(_this) { 13641 function native__HTMLInputElementWrappingImplementation__get_pattern(_this) {
13642 try { 13642 try {
13643 return __dom_wrap(_this.$dom.pattern); 13643 return __dom_wrap(_this.$dom.pattern);
13644 } catch (e) { 13644 } catch (e) {
13645 throw __dom_wrap_exception(e); 13645 throw __dom_wrap_exception(e);
13646 } 13646 }
13647 } 13647 }
13648 13648
13649 function native__HTMLInputElementWrappingImplementation__set__HTMLInputElement_p attern(_this, value) { 13649 function native__HTMLInputElementWrappingImplementation__set_pattern(_this, valu e) {
13650 try { 13650 try {
13651 _this.$dom.pattern = __dom_unwrap(value); 13651 _this.$dom.pattern = __dom_unwrap(value);
13652 } catch (e) { 13652 } catch (e) {
13653 throw __dom_wrap_exception(e); 13653 throw __dom_wrap_exception(e);
13654 } 13654 }
13655 } 13655 }
13656 13656
13657 function native__HTMLInputElementWrappingImplementation__get__HTMLInputElement_p laceholder(_this) { 13657 function native__HTMLInputElementWrappingImplementation__get_placeholder(_this) {
13658 try { 13658 try {
13659 return __dom_wrap(_this.$dom.placeholder); 13659 return __dom_wrap(_this.$dom.placeholder);
13660 } catch (e) { 13660 } catch (e) {
13661 throw __dom_wrap_exception(e); 13661 throw __dom_wrap_exception(e);
13662 } 13662 }
13663 } 13663 }
13664 13664
13665 function native__HTMLInputElementWrappingImplementation__set__HTMLInputElement_p laceholder(_this, value) { 13665 function native__HTMLInputElementWrappingImplementation__set_placeholder(_this, value) {
13666 try { 13666 try {
13667 _this.$dom.placeholder = __dom_unwrap(value); 13667 _this.$dom.placeholder = __dom_unwrap(value);
13668 } catch (e) { 13668 } catch (e) {
13669 throw __dom_wrap_exception(e); 13669 throw __dom_wrap_exception(e);
13670 } 13670 }
13671 } 13671 }
13672 13672
13673 function native__HTMLInputElementWrappingImplementation__get__HTMLInputElement_r eadOnly(_this) { 13673 function native__HTMLInputElementWrappingImplementation__get_readOnly(_this) {
13674 try { 13674 try {
13675 return __dom_wrap(_this.$dom.readOnly); 13675 return __dom_wrap(_this.$dom.readOnly);
13676 } catch (e) { 13676 } catch (e) {
13677 throw __dom_wrap_exception(e); 13677 throw __dom_wrap_exception(e);
13678 } 13678 }
13679 } 13679 }
13680 13680
13681 function native__HTMLInputElementWrappingImplementation__set__HTMLInputElement_r eadOnly(_this, value) { 13681 function native__HTMLInputElementWrappingImplementation__set_readOnly(_this, val ue) {
13682 try { 13682 try {
13683 _this.$dom.readOnly = __dom_unwrap(value); 13683 _this.$dom.readOnly = __dom_unwrap(value);
13684 } catch (e) { 13684 } catch (e) {
13685 throw __dom_wrap_exception(e); 13685 throw __dom_wrap_exception(e);
13686 } 13686 }
13687 } 13687 }
13688 13688
13689 function native__HTMLInputElementWrappingImplementation__get__HTMLInputElement_r equired(_this) { 13689 function native__HTMLInputElementWrappingImplementation__get_required(_this) {
13690 try { 13690 try {
13691 return __dom_wrap(_this.$dom.required); 13691 return __dom_wrap(_this.$dom.required);
13692 } catch (e) { 13692 } catch (e) {
13693 throw __dom_wrap_exception(e); 13693 throw __dom_wrap_exception(e);
13694 } 13694 }
13695 } 13695 }
13696 13696
13697 function native__HTMLInputElementWrappingImplementation__set__HTMLInputElement_r equired(_this, value) { 13697 function native__HTMLInputElementWrappingImplementation__set_required(_this, val ue) {
13698 try { 13698 try {
13699 _this.$dom.required = __dom_unwrap(value); 13699 _this.$dom.required = __dom_unwrap(value);
13700 } catch (e) { 13700 } catch (e) {
13701 throw __dom_wrap_exception(e); 13701 throw __dom_wrap_exception(e);
13702 } 13702 }
13703 } 13703 }
13704 13704
13705 function native__HTMLInputElementWrappingImplementation__get__HTMLInputElement_s electedOption(_this) { 13705 function native__HTMLInputElementWrappingImplementation__get_selectedOption(_thi s) {
13706 try { 13706 try {
13707 return __dom_wrap(_this.$dom.selectedOption); 13707 return __dom_wrap(_this.$dom.selectedOption);
13708 } catch (e) { 13708 } catch (e) {
13709 throw __dom_wrap_exception(e); 13709 throw __dom_wrap_exception(e);
13710 } 13710 }
13711 } 13711 }
13712 13712
13713 function native__HTMLInputElementWrappingImplementation__get__HTMLInputElement_s electionDirection(_this) { 13713 function native__HTMLInputElementWrappingImplementation__get_selectionDirection( _this) {
13714 try { 13714 try {
13715 return __dom_wrap(_this.$dom.selectionDirection); 13715 return __dom_wrap(_this.$dom.selectionDirection);
13716 } catch (e) { 13716 } catch (e) {
13717 throw __dom_wrap_exception(e); 13717 throw __dom_wrap_exception(e);
13718 } 13718 }
13719 } 13719 }
13720 13720
13721 function native__HTMLInputElementWrappingImplementation__set__HTMLInputElement_s electionDirection(_this, value) { 13721 function native__HTMLInputElementWrappingImplementation__set_selectionDirection( _this, value) {
13722 try { 13722 try {
13723 _this.$dom.selectionDirection = __dom_unwrap(value); 13723 _this.$dom.selectionDirection = __dom_unwrap(value);
13724 } catch (e) { 13724 } catch (e) {
13725 throw __dom_wrap_exception(e); 13725 throw __dom_wrap_exception(e);
13726 } 13726 }
13727 } 13727 }
13728 13728
13729 function native__HTMLInputElementWrappingImplementation__get__HTMLInputElement_s electionEnd(_this) { 13729 function native__HTMLInputElementWrappingImplementation__get_selectionEnd(_this) {
13730 try { 13730 try {
13731 return __dom_wrap(_this.$dom.selectionEnd); 13731 return __dom_wrap(_this.$dom.selectionEnd);
13732 } catch (e) { 13732 } catch (e) {
13733 throw __dom_wrap_exception(e); 13733 throw __dom_wrap_exception(e);
13734 } 13734 }
13735 } 13735 }
13736 13736
13737 function native__HTMLInputElementWrappingImplementation__set__HTMLInputElement_s electionEnd(_this, value) { 13737 function native__HTMLInputElementWrappingImplementation__set_selectionEnd(_this, value) {
13738 try { 13738 try {
13739 _this.$dom.selectionEnd = __dom_unwrap(value); 13739 _this.$dom.selectionEnd = __dom_unwrap(value);
13740 } catch (e) { 13740 } catch (e) {
13741 throw __dom_wrap_exception(e); 13741 throw __dom_wrap_exception(e);
13742 } 13742 }
13743 } 13743 }
13744 13744
13745 function native__HTMLInputElementWrappingImplementation__get__HTMLInputElement_s electionStart(_this) { 13745 function native__HTMLInputElementWrappingImplementation__get_selectionStart(_thi s) {
13746 try { 13746 try {
13747 return __dom_wrap(_this.$dom.selectionStart); 13747 return __dom_wrap(_this.$dom.selectionStart);
13748 } catch (e) { 13748 } catch (e) {
13749 throw __dom_wrap_exception(e); 13749 throw __dom_wrap_exception(e);
13750 } 13750 }
13751 } 13751 }
13752 13752
13753 function native__HTMLInputElementWrappingImplementation__set__HTMLInputElement_s electionStart(_this, value) { 13753 function native__HTMLInputElementWrappingImplementation__set_selectionStart(_thi s, value) {
13754 try { 13754 try {
13755 _this.$dom.selectionStart = __dom_unwrap(value); 13755 _this.$dom.selectionStart = __dom_unwrap(value);
13756 } catch (e) { 13756 } catch (e) {
13757 throw __dom_wrap_exception(e); 13757 throw __dom_wrap_exception(e);
13758 } 13758 }
13759 } 13759 }
13760 13760
13761 function native__HTMLInputElementWrappingImplementation__get__HTMLInputElement_s ize(_this) { 13761 function native__HTMLInputElementWrappingImplementation__get_size(_this) {
13762 try { 13762 try {
13763 return __dom_wrap(_this.$dom.size); 13763 return __dom_wrap(_this.$dom.size);
13764 } catch (e) { 13764 } catch (e) {
13765 throw __dom_wrap_exception(e); 13765 throw __dom_wrap_exception(e);
13766 } 13766 }
13767 } 13767 }
13768 13768
13769 function native__HTMLInputElementWrappingImplementation__set__HTMLInputElement_s ize(_this, value) { 13769 function native__HTMLInputElementWrappingImplementation__set_size(_this, value) {
13770 try { 13770 try {
13771 _this.$dom.size = __dom_unwrap(value); 13771 _this.$dom.size = __dom_unwrap(value);
13772 } catch (e) { 13772 } catch (e) {
13773 throw __dom_wrap_exception(e); 13773 throw __dom_wrap_exception(e);
13774 } 13774 }
13775 } 13775 }
13776 13776
13777 function native__HTMLInputElementWrappingImplementation__get__HTMLInputElement_s rc(_this) { 13777 function native__HTMLInputElementWrappingImplementation__get_src(_this) {
13778 try { 13778 try {
13779 return __dom_wrap(_this.$dom.src); 13779 return __dom_wrap(_this.$dom.src);
13780 } catch (e) { 13780 } catch (e) {
13781 throw __dom_wrap_exception(e); 13781 throw __dom_wrap_exception(e);
13782 } 13782 }
13783 } 13783 }
13784 13784
13785 function native__HTMLInputElementWrappingImplementation__set__HTMLInputElement_s rc(_this, value) { 13785 function native__HTMLInputElementWrappingImplementation__set_src(_this, value) {
13786 try { 13786 try {
13787 _this.$dom.src = __dom_unwrap(value); 13787 _this.$dom.src = __dom_unwrap(value);
13788 } catch (e) { 13788 } catch (e) {
13789 throw __dom_wrap_exception(e); 13789 throw __dom_wrap_exception(e);
13790 } 13790 }
13791 } 13791 }
13792 13792
13793 function native__HTMLInputElementWrappingImplementation__get__HTMLInputElement_s tep(_this) { 13793 function native__HTMLInputElementWrappingImplementation__get_step(_this) {
13794 try { 13794 try {
13795 return __dom_wrap(_this.$dom.step); 13795 return __dom_wrap(_this.$dom.step);
13796 } catch (e) { 13796 } catch (e) {
13797 throw __dom_wrap_exception(e); 13797 throw __dom_wrap_exception(e);
13798 } 13798 }
13799 } 13799 }
13800 13800
13801 function native__HTMLInputElementWrappingImplementation__set__HTMLInputElement_s tep(_this, value) { 13801 function native__HTMLInputElementWrappingImplementation__set_step(_this, value) {
13802 try { 13802 try {
13803 _this.$dom.step = __dom_unwrap(value); 13803 _this.$dom.step = __dom_unwrap(value);
13804 } catch (e) { 13804 } catch (e) {
13805 throw __dom_wrap_exception(e); 13805 throw __dom_wrap_exception(e);
13806 } 13806 }
13807 } 13807 }
13808 13808
13809 function native__HTMLInputElementWrappingImplementation__get__HTMLInputElement_t ype(_this) { 13809 function native__HTMLInputElementWrappingImplementation__get_type(_this) {
13810 try { 13810 try {
13811 return __dom_wrap(_this.$dom.type); 13811 return __dom_wrap(_this.$dom.type);
13812 } catch (e) { 13812 } catch (e) {
13813 throw __dom_wrap_exception(e); 13813 throw __dom_wrap_exception(e);
13814 } 13814 }
13815 } 13815 }
13816 13816
13817 function native__HTMLInputElementWrappingImplementation__set__HTMLInputElement_t ype(_this, value) { 13817 function native__HTMLInputElementWrappingImplementation__set_type(_this, value) {
13818 try { 13818 try {
13819 _this.$dom.type = __dom_unwrap(value); 13819 _this.$dom.type = __dom_unwrap(value);
13820 } catch (e) { 13820 } catch (e) {
13821 throw __dom_wrap_exception(e); 13821 throw __dom_wrap_exception(e);
13822 } 13822 }
13823 } 13823 }
13824 13824
13825 function native__HTMLInputElementWrappingImplementation__get__HTMLInputElement_u seMap(_this) { 13825 function native__HTMLInputElementWrappingImplementation__get_useMap(_this) {
13826 try { 13826 try {
13827 return __dom_wrap(_this.$dom.useMap); 13827 return __dom_wrap(_this.$dom.useMap);
13828 } catch (e) { 13828 } catch (e) {
13829 throw __dom_wrap_exception(e); 13829 throw __dom_wrap_exception(e);
13830 } 13830 }
13831 } 13831 }
13832 13832
13833 function native__HTMLInputElementWrappingImplementation__set__HTMLInputElement_u seMap(_this, value) { 13833 function native__HTMLInputElementWrappingImplementation__set_useMap(_this, value ) {
13834 try { 13834 try {
13835 _this.$dom.useMap = __dom_unwrap(value); 13835 _this.$dom.useMap = __dom_unwrap(value);
13836 } catch (e) { 13836 } catch (e) {
13837 throw __dom_wrap_exception(e); 13837 throw __dom_wrap_exception(e);
13838 } 13838 }
13839 } 13839 }
13840 13840
13841 function native__HTMLInputElementWrappingImplementation__get__HTMLInputElement_v alidationMessage(_this) { 13841 function native__HTMLInputElementWrappingImplementation__get_validationMessage(_ this) {
13842 try { 13842 try {
13843 return __dom_wrap(_this.$dom.validationMessage); 13843 return __dom_wrap(_this.$dom.validationMessage);
13844 } catch (e) { 13844 } catch (e) {
13845 throw __dom_wrap_exception(e); 13845 throw __dom_wrap_exception(e);
13846 } 13846 }
13847 } 13847 }
13848 13848
13849 function native__HTMLInputElementWrappingImplementation__get__HTMLInputElement_v alidity(_this) { 13849 function native__HTMLInputElementWrappingImplementation__get_validity(_this) {
13850 try { 13850 try {
13851 return __dom_wrap(_this.$dom.validity); 13851 return __dom_wrap(_this.$dom.validity);
13852 } catch (e) { 13852 } catch (e) {
13853 throw __dom_wrap_exception(e); 13853 throw __dom_wrap_exception(e);
13854 } 13854 }
13855 } 13855 }
13856 13856
13857 function native__HTMLInputElementWrappingImplementation__get__HTMLInputElement_v alue(_this) { 13857 function native__HTMLInputElementWrappingImplementation__get_value(_this) {
13858 try { 13858 try {
13859 return __dom_wrap(_this.$dom.value); 13859 return __dom_wrap(_this.$dom.value);
13860 } catch (e) { 13860 } catch (e) {
13861 throw __dom_wrap_exception(e); 13861 throw __dom_wrap_exception(e);
13862 } 13862 }
13863 } 13863 }
13864 13864
13865 function native__HTMLInputElementWrappingImplementation__set__HTMLInputElement_v alue(_this, value) { 13865 function native__HTMLInputElementWrappingImplementation__set_value(_this, value) {
13866 try { 13866 try {
13867 _this.$dom.value = __dom_unwrap(value); 13867 _this.$dom.value = __dom_unwrap(value);
13868 } catch (e) { 13868 } catch (e) {
13869 throw __dom_wrap_exception(e); 13869 throw __dom_wrap_exception(e);
13870 } 13870 }
13871 } 13871 }
13872 13872
13873 function native__HTMLInputElementWrappingImplementation__get__HTMLInputElement_v alueAsDate(_this) { 13873 function native__HTMLInputElementWrappingImplementation__get_valueAsDate(_this) {
13874 try { 13874 try {
13875 return __dom_wrap(_this.$dom.valueAsDate); 13875 return __dom_wrap(_this.$dom.valueAsDate);
13876 } catch (e) { 13876 } catch (e) {
13877 throw __dom_wrap_exception(e); 13877 throw __dom_wrap_exception(e);
13878 } 13878 }
13879 } 13879 }
13880 13880
13881 function native__HTMLInputElementWrappingImplementation__set__HTMLInputElement_v alueAsDate(_this, value) { 13881 function native__HTMLInputElementWrappingImplementation__set_valueAsDate(_this, value) {
13882 try { 13882 try {
13883 _this.$dom.valueAsDate = __dom_unwrap(value); 13883 _this.$dom.valueAsDate = __dom_unwrap(value);
13884 } catch (e) { 13884 } catch (e) {
13885 throw __dom_wrap_exception(e); 13885 throw __dom_wrap_exception(e);
13886 } 13886 }
13887 } 13887 }
13888 13888
13889 function native__HTMLInputElementWrappingImplementation__get__HTMLInputElement_v alueAsNumber(_this) { 13889 function native__HTMLInputElementWrappingImplementation__get_valueAsNumber(_this ) {
13890 try { 13890 try {
13891 return __dom_wrap(_this.$dom.valueAsNumber); 13891 return __dom_wrap(_this.$dom.valueAsNumber);
13892 } catch (e) { 13892 } catch (e) {
13893 throw __dom_wrap_exception(e); 13893 throw __dom_wrap_exception(e);
13894 } 13894 }
13895 } 13895 }
13896 13896
13897 function native__HTMLInputElementWrappingImplementation__set__HTMLInputElement_v alueAsNumber(_this, value) { 13897 function native__HTMLInputElementWrappingImplementation__set_valueAsNumber(_this , value) {
13898 try { 13898 try {
13899 _this.$dom.valueAsNumber = __dom_unwrap(value); 13899 _this.$dom.valueAsNumber = __dom_unwrap(value);
13900 } catch (e) { 13900 } catch (e) {
13901 throw __dom_wrap_exception(e); 13901 throw __dom_wrap_exception(e);
13902 } 13902 }
13903 } 13903 }
13904 13904
13905 function native__HTMLInputElementWrappingImplementation__get__HTMLInputElement_w ebkitGrammar(_this) { 13905 function native__HTMLInputElementWrappingImplementation__get_webkitGrammar(_this ) {
13906 try { 13906 try {
13907 return __dom_wrap(_this.$dom.webkitGrammar); 13907 return __dom_wrap(_this.$dom.webkitGrammar);
13908 } catch (e) { 13908 } catch (e) {
13909 throw __dom_wrap_exception(e); 13909 throw __dom_wrap_exception(e);
13910 } 13910 }
13911 } 13911 }
13912 13912
13913 function native__HTMLInputElementWrappingImplementation__set__HTMLInputElement_w ebkitGrammar(_this, value) { 13913 function native__HTMLInputElementWrappingImplementation__set_webkitGrammar(_this , value) {
13914 try { 13914 try {
13915 _this.$dom.webkitGrammar = __dom_unwrap(value); 13915 _this.$dom.webkitGrammar = __dom_unwrap(value);
13916 } catch (e) { 13916 } catch (e) {
13917 throw __dom_wrap_exception(e); 13917 throw __dom_wrap_exception(e);
13918 } 13918 }
13919 } 13919 }
13920 13920
13921 function native__HTMLInputElementWrappingImplementation__get__HTMLInputElement_w ebkitSpeech(_this) { 13921 function native__HTMLInputElementWrappingImplementation__get_webkitSpeech(_this) {
13922 try { 13922 try {
13923 return __dom_wrap(_this.$dom.webkitSpeech); 13923 return __dom_wrap(_this.$dom.webkitSpeech);
13924 } catch (e) { 13924 } catch (e) {
13925 throw __dom_wrap_exception(e); 13925 throw __dom_wrap_exception(e);
13926 } 13926 }
13927 } 13927 }
13928 13928
13929 function native__HTMLInputElementWrappingImplementation__set__HTMLInputElement_w ebkitSpeech(_this, value) { 13929 function native__HTMLInputElementWrappingImplementation__set_webkitSpeech(_this, value) {
13930 try { 13930 try {
13931 _this.$dom.webkitSpeech = __dom_unwrap(value); 13931 _this.$dom.webkitSpeech = __dom_unwrap(value);
13932 } catch (e) { 13932 } catch (e) {
13933 throw __dom_wrap_exception(e); 13933 throw __dom_wrap_exception(e);
13934 } 13934 }
13935 } 13935 }
13936 13936
13937 function native__HTMLInputElementWrappingImplementation__get__HTMLInputElement_w ebkitdirectory(_this) { 13937 function native__HTMLInputElementWrappingImplementation__get_webkitdirectory(_th is) {
13938 try { 13938 try {
13939 return __dom_wrap(_this.$dom.webkitdirectory); 13939 return __dom_wrap(_this.$dom.webkitdirectory);
13940 } catch (e) { 13940 } catch (e) {
13941 throw __dom_wrap_exception(e); 13941 throw __dom_wrap_exception(e);
13942 } 13942 }
13943 } 13943 }
13944 13944
13945 function native__HTMLInputElementWrappingImplementation__set__HTMLInputElement_w ebkitdirectory(_this, value) { 13945 function native__HTMLInputElementWrappingImplementation__set_webkitdirectory(_th is, value) {
13946 try { 13946 try {
13947 _this.$dom.webkitdirectory = __dom_unwrap(value); 13947 _this.$dom.webkitdirectory = __dom_unwrap(value);
13948 } catch (e) { 13948 } catch (e) {
13949 throw __dom_wrap_exception(e); 13949 throw __dom_wrap_exception(e);
13950 } 13950 }
13951 } 13951 }
13952 13952
13953 function native__HTMLInputElementWrappingImplementation__get__HTMLInputElement_w illValidate(_this) { 13953 function native__HTMLInputElementWrappingImplementation__get_willValidate(_this) {
13954 try { 13954 try {
13955 return __dom_wrap(_this.$dom.willValidate); 13955 return __dom_wrap(_this.$dom.willValidate);
13956 } catch (e) { 13956 } catch (e) {
13957 throw __dom_wrap_exception(e); 13957 throw __dom_wrap_exception(e);
13958 } 13958 }
13959 } 13959 }
13960 13960
13961 function native__HTMLInputElementWrappingImplementation__checkValidity(_this) { 13961 function native__HTMLInputElementWrappingImplementation__checkValidity(_this) {
13962 try { 13962 try {
13963 return __dom_wrap(_this.$dom.checkValidity()); 13963 return __dom_wrap(_this.$dom.checkValidity());
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
14031 } 14031 }
14032 14032
14033 function native__HTMLInputElementWrappingImplementation__stepUp_2(_this, n) { 14033 function native__HTMLInputElementWrappingImplementation__stepUp_2(_this, n) {
14034 try { 14034 try {
14035 return __dom_wrap(_this.$dom.stepUp(__dom_unwrap(n))); 14035 return __dom_wrap(_this.$dom.stepUp(__dom_unwrap(n)));
14036 } catch (e) { 14036 } catch (e) {
14037 throw __dom_wrap_exception(e); 14037 throw __dom_wrap_exception(e);
14038 } 14038 }
14039 } 14039 }
14040 14040
14041 function native__HTMLIsIndexElementWrappingImplementation__get__HTMLIsIndexEleme nt_form(_this) { 14041 function native__HTMLIsIndexElementWrappingImplementation__get_form_HTMLIsIndexE lement(_this) {
14042 try { 14042 try {
14043 return __dom_wrap(_this.$dom.form); 14043 return __dom_wrap(_this.$dom.form);
14044 } catch (e) { 14044 } catch (e) {
14045 throw __dom_wrap_exception(e); 14045 throw __dom_wrap_exception(e);
14046 } 14046 }
14047 } 14047 }
14048 14048
14049 function native__HTMLIsIndexElementWrappingImplementation__get__HTMLIsIndexEleme nt_prompt(_this) { 14049 function native__HTMLIsIndexElementWrappingImplementation__get_prompt(_this) {
14050 try { 14050 try {
14051 return __dom_wrap(_this.$dom.prompt); 14051 return __dom_wrap(_this.$dom.prompt);
14052 } catch (e) { 14052 } catch (e) {
14053 throw __dom_wrap_exception(e); 14053 throw __dom_wrap_exception(e);
14054 } 14054 }
14055 } 14055 }
14056 14056
14057 function native__HTMLIsIndexElementWrappingImplementation__set__HTMLIsIndexEleme nt_prompt(_this, value) { 14057 function native__HTMLIsIndexElementWrappingImplementation__set_prompt(_this, val ue) {
14058 try { 14058 try {
14059 _this.$dom.prompt = __dom_unwrap(value); 14059 _this.$dom.prompt = __dom_unwrap(value);
14060 } catch (e) { 14060 } catch (e) {
14061 throw __dom_wrap_exception(e); 14061 throw __dom_wrap_exception(e);
14062 } 14062 }
14063 } 14063 }
14064 14064
14065 function native__HTMLKeygenElementWrappingImplementation__get__HTMLKeygenElement _autofocus(_this) { 14065 function native__HTMLKeygenElementWrappingImplementation__get_autofocus(_this) {
14066 try { 14066 try {
14067 return __dom_wrap(_this.$dom.autofocus); 14067 return __dom_wrap(_this.$dom.autofocus);
14068 } catch (e) { 14068 } catch (e) {
14069 throw __dom_wrap_exception(e); 14069 throw __dom_wrap_exception(e);
14070 } 14070 }
14071 } 14071 }
14072 14072
14073 function native__HTMLKeygenElementWrappingImplementation__set__HTMLKeygenElement _autofocus(_this, value) { 14073 function native__HTMLKeygenElementWrappingImplementation__set_autofocus(_this, v alue) {
14074 try { 14074 try {
14075 _this.$dom.autofocus = __dom_unwrap(value); 14075 _this.$dom.autofocus = __dom_unwrap(value);
14076 } catch (e) { 14076 } catch (e) {
14077 throw __dom_wrap_exception(e); 14077 throw __dom_wrap_exception(e);
14078 } 14078 }
14079 } 14079 }
14080 14080
14081 function native__HTMLKeygenElementWrappingImplementation__get__HTMLKeygenElement _challenge(_this) { 14081 function native__HTMLKeygenElementWrappingImplementation__get_challenge(_this) {
14082 try { 14082 try {
14083 return __dom_wrap(_this.$dom.challenge); 14083 return __dom_wrap(_this.$dom.challenge);
14084 } catch (e) { 14084 } catch (e) {
14085 throw __dom_wrap_exception(e); 14085 throw __dom_wrap_exception(e);
14086 } 14086 }
14087 } 14087 }
14088 14088
14089 function native__HTMLKeygenElementWrappingImplementation__set__HTMLKeygenElement _challenge(_this, value) { 14089 function native__HTMLKeygenElementWrappingImplementation__set_challenge(_this, v alue) {
14090 try { 14090 try {
14091 _this.$dom.challenge = __dom_unwrap(value); 14091 _this.$dom.challenge = __dom_unwrap(value);
14092 } catch (e) { 14092 } catch (e) {
14093 throw __dom_wrap_exception(e); 14093 throw __dom_wrap_exception(e);
14094 } 14094 }
14095 } 14095 }
14096 14096
14097 function native__HTMLKeygenElementWrappingImplementation__get__HTMLKeygenElement _disabled(_this) { 14097 function native__HTMLKeygenElementWrappingImplementation__get_disabled(_this) {
14098 try { 14098 try {
14099 return __dom_wrap(_this.$dom.disabled); 14099 return __dom_wrap(_this.$dom.disabled);
14100 } catch (e) { 14100 } catch (e) {
14101 throw __dom_wrap_exception(e); 14101 throw __dom_wrap_exception(e);
14102 } 14102 }
14103 } 14103 }
14104 14104
14105 function native__HTMLKeygenElementWrappingImplementation__set__HTMLKeygenElement _disabled(_this, value) { 14105 function native__HTMLKeygenElementWrappingImplementation__set_disabled(_this, va lue) {
14106 try { 14106 try {
14107 _this.$dom.disabled = __dom_unwrap(value); 14107 _this.$dom.disabled = __dom_unwrap(value);
14108 } catch (e) { 14108 } catch (e) {
14109 throw __dom_wrap_exception(e); 14109 throw __dom_wrap_exception(e);
14110 } 14110 }
14111 } 14111 }
14112 14112
14113 function native__HTMLKeygenElementWrappingImplementation__get__HTMLKeygenElement _form(_this) { 14113 function native__HTMLKeygenElementWrappingImplementation__get_form(_this) {
14114 try { 14114 try {
14115 return __dom_wrap(_this.$dom.form); 14115 return __dom_wrap(_this.$dom.form);
14116 } catch (e) { 14116 } catch (e) {
14117 throw __dom_wrap_exception(e); 14117 throw __dom_wrap_exception(e);
14118 } 14118 }
14119 } 14119 }
14120 14120
14121 function native__HTMLKeygenElementWrappingImplementation__get__HTMLKeygenElement _keytype(_this) { 14121 function native__HTMLKeygenElementWrappingImplementation__get_keytype(_this) {
14122 try { 14122 try {
14123 return __dom_wrap(_this.$dom.keytype); 14123 return __dom_wrap(_this.$dom.keytype);
14124 } catch (e) { 14124 } catch (e) {
14125 throw __dom_wrap_exception(e); 14125 throw __dom_wrap_exception(e);
14126 } 14126 }
14127 } 14127 }
14128 14128
14129 function native__HTMLKeygenElementWrappingImplementation__set__HTMLKeygenElement _keytype(_this, value) { 14129 function native__HTMLKeygenElementWrappingImplementation__set_keytype(_this, val ue) {
14130 try { 14130 try {
14131 _this.$dom.keytype = __dom_unwrap(value); 14131 _this.$dom.keytype = __dom_unwrap(value);
14132 } catch (e) { 14132 } catch (e) {
14133 throw __dom_wrap_exception(e); 14133 throw __dom_wrap_exception(e);
14134 } 14134 }
14135 } 14135 }
14136 14136
14137 function native__HTMLKeygenElementWrappingImplementation__get__HTMLKeygenElement _labels(_this) { 14137 function native__HTMLKeygenElementWrappingImplementation__get_labels(_this) {
14138 try { 14138 try {
14139 return __dom_wrap(_this.$dom.labels); 14139 return __dom_wrap(_this.$dom.labels);
14140 } catch (e) { 14140 } catch (e) {
14141 throw __dom_wrap_exception(e); 14141 throw __dom_wrap_exception(e);
14142 } 14142 }
14143 } 14143 }
14144 14144
14145 function native__HTMLKeygenElementWrappingImplementation__get__HTMLKeygenElement _name(_this) { 14145 function native__HTMLKeygenElementWrappingImplementation__get_name(_this) {
14146 try { 14146 try {
14147 return __dom_wrap(_this.$dom.name); 14147 return __dom_wrap(_this.$dom.name);
14148 } catch (e) { 14148 } catch (e) {
14149 throw __dom_wrap_exception(e); 14149 throw __dom_wrap_exception(e);
14150 } 14150 }
14151 } 14151 }
14152 14152
14153 function native__HTMLKeygenElementWrappingImplementation__set__HTMLKeygenElement _name(_this, value) { 14153 function native__HTMLKeygenElementWrappingImplementation__set_name(_this, value) {
14154 try { 14154 try {
14155 _this.$dom.name = __dom_unwrap(value); 14155 _this.$dom.name = __dom_unwrap(value);
14156 } catch (e) { 14156 } catch (e) {
14157 throw __dom_wrap_exception(e); 14157 throw __dom_wrap_exception(e);
14158 } 14158 }
14159 } 14159 }
14160 14160
14161 function native__HTMLKeygenElementWrappingImplementation__get__HTMLKeygenElement _type(_this) { 14161 function native__HTMLKeygenElementWrappingImplementation__get_type(_this) {
14162 try { 14162 try {
14163 return __dom_wrap(_this.$dom.type); 14163 return __dom_wrap(_this.$dom.type);
14164 } catch (e) { 14164 } catch (e) {
14165 throw __dom_wrap_exception(e); 14165 throw __dom_wrap_exception(e);
14166 } 14166 }
14167 } 14167 }
14168 14168
14169 function native__HTMLKeygenElementWrappingImplementation__get__HTMLKeygenElement _validationMessage(_this) { 14169 function native__HTMLKeygenElementWrappingImplementation__get_validationMessage( _this) {
14170 try { 14170 try {
14171 return __dom_wrap(_this.$dom.validationMessage); 14171 return __dom_wrap(_this.$dom.validationMessage);
14172 } catch (e) { 14172 } catch (e) {
14173 throw __dom_wrap_exception(e); 14173 throw __dom_wrap_exception(e);
14174 } 14174 }
14175 } 14175 }
14176 14176
14177 function native__HTMLKeygenElementWrappingImplementation__get__HTMLKeygenElement _validity(_this) { 14177 function native__HTMLKeygenElementWrappingImplementation__get_validity(_this) {
14178 try { 14178 try {
14179 return __dom_wrap(_this.$dom.validity); 14179 return __dom_wrap(_this.$dom.validity);
14180 } catch (e) { 14180 } catch (e) {
14181 throw __dom_wrap_exception(e); 14181 throw __dom_wrap_exception(e);
14182 } 14182 }
14183 } 14183 }
14184 14184
14185 function native__HTMLKeygenElementWrappingImplementation__get__HTMLKeygenElement _willValidate(_this) { 14185 function native__HTMLKeygenElementWrappingImplementation__get_willValidate(_this ) {
14186 try { 14186 try {
14187 return __dom_wrap(_this.$dom.willValidate); 14187 return __dom_wrap(_this.$dom.willValidate);
14188 } catch (e) { 14188 } catch (e) {
14189 throw __dom_wrap_exception(e); 14189 throw __dom_wrap_exception(e);
14190 } 14190 }
14191 } 14191 }
14192 14192
14193 function native__HTMLKeygenElementWrappingImplementation__checkValidity(_this) { 14193 function native__HTMLKeygenElementWrappingImplementation__checkValidity(_this) {
14194 try { 14194 try {
14195 return __dom_wrap(_this.$dom.checkValidity()); 14195 return __dom_wrap(_this.$dom.checkValidity());
14196 } catch (e) { 14196 } catch (e) {
14197 throw __dom_wrap_exception(e); 14197 throw __dom_wrap_exception(e);
14198 } 14198 }
14199 } 14199 }
14200 14200
14201 function native__HTMLKeygenElementWrappingImplementation__setCustomValidity(_thi s, error) { 14201 function native__HTMLKeygenElementWrappingImplementation__setCustomValidity(_thi s, error) {
14202 try { 14202 try {
14203 return __dom_wrap(_this.$dom.setCustomValidity(__dom_unwrap(error))); 14203 return __dom_wrap(_this.$dom.setCustomValidity(__dom_unwrap(error)));
14204 } catch (e) { 14204 } catch (e) {
14205 throw __dom_wrap_exception(e); 14205 throw __dom_wrap_exception(e);
14206 } 14206 }
14207 } 14207 }
14208 14208
14209 function native__HTMLLIElementWrappingImplementation__get__HTMLLIElement_type(_t his) { 14209 function native__HTMLLIElementWrappingImplementation__get_type(_this) {
14210 try { 14210 try {
14211 return __dom_wrap(_this.$dom.type); 14211 return __dom_wrap(_this.$dom.type);
14212 } catch (e) { 14212 } catch (e) {
14213 throw __dom_wrap_exception(e); 14213 throw __dom_wrap_exception(e);
14214 } 14214 }
14215 } 14215 }
14216 14216
14217 function native__HTMLLIElementWrappingImplementation__set__HTMLLIElement_type(_t his, value) { 14217 function native__HTMLLIElementWrappingImplementation__set_type(_this, value) {
14218 try { 14218 try {
14219 _this.$dom.type = __dom_unwrap(value); 14219 _this.$dom.type = __dom_unwrap(value);
14220 } catch (e) { 14220 } catch (e) {
14221 throw __dom_wrap_exception(e); 14221 throw __dom_wrap_exception(e);
14222 } 14222 }
14223 } 14223 }
14224 14224
14225 function native__HTMLLIElementWrappingImplementation__get__HTMLLIElement_value(_ this) { 14225 function native__HTMLLIElementWrappingImplementation__get_value(_this) {
14226 try { 14226 try {
14227 return __dom_wrap(_this.$dom.value); 14227 return __dom_wrap(_this.$dom.value);
14228 } catch (e) { 14228 } catch (e) {
14229 throw __dom_wrap_exception(e); 14229 throw __dom_wrap_exception(e);
14230 } 14230 }
14231 } 14231 }
14232 14232
14233 function native__HTMLLIElementWrappingImplementation__set__HTMLLIElement_value(_ this, value) { 14233 function native__HTMLLIElementWrappingImplementation__set_value(_this, value) {
14234 try { 14234 try {
14235 _this.$dom.value = __dom_unwrap(value); 14235 _this.$dom.value = __dom_unwrap(value);
14236 } catch (e) { 14236 } catch (e) {
14237 throw __dom_wrap_exception(e); 14237 throw __dom_wrap_exception(e);
14238 } 14238 }
14239 } 14239 }
14240 14240
14241 function native__HTMLLabelElementWrappingImplementation__get__HTMLLabelElement_a ccessKey(_this) { 14241 function native__HTMLLabelElementWrappingImplementation__get_accessKey(_this) {
14242 try { 14242 try {
14243 return __dom_wrap(_this.$dom.accessKey); 14243 return __dom_wrap(_this.$dom.accessKey);
14244 } catch (e) { 14244 } catch (e) {
14245 throw __dom_wrap_exception(e); 14245 throw __dom_wrap_exception(e);
14246 } 14246 }
14247 } 14247 }
14248 14248
14249 function native__HTMLLabelElementWrappingImplementation__set__HTMLLabelElement_a ccessKey(_this, value) { 14249 function native__HTMLLabelElementWrappingImplementation__set_accessKey(_this, va lue) {
14250 try { 14250 try {
14251 _this.$dom.accessKey = __dom_unwrap(value); 14251 _this.$dom.accessKey = __dom_unwrap(value);
14252 } catch (e) { 14252 } catch (e) {
14253 throw __dom_wrap_exception(e); 14253 throw __dom_wrap_exception(e);
14254 } 14254 }
14255 } 14255 }
14256 14256
14257 function native__HTMLLabelElementWrappingImplementation__get__HTMLLabelElement_c ontrol(_this) { 14257 function native__HTMLLabelElementWrappingImplementation__get_control(_this) {
14258 try { 14258 try {
14259 return __dom_wrap(_this.$dom.control); 14259 return __dom_wrap(_this.$dom.control);
14260 } catch (e) { 14260 } catch (e) {
14261 throw __dom_wrap_exception(e); 14261 throw __dom_wrap_exception(e);
14262 } 14262 }
14263 } 14263 }
14264 14264
14265 function native__HTMLLabelElementWrappingImplementation__get__HTMLLabelElement_f orm(_this) { 14265 function native__HTMLLabelElementWrappingImplementation__get_form(_this) {
14266 try { 14266 try {
14267 return __dom_wrap(_this.$dom.form); 14267 return __dom_wrap(_this.$dom.form);
14268 } catch (e) { 14268 } catch (e) {
14269 throw __dom_wrap_exception(e); 14269 throw __dom_wrap_exception(e);
14270 } 14270 }
14271 } 14271 }
14272 14272
14273 function native__HTMLLabelElementWrappingImplementation__get__HTMLLabelElement_h tmlFor(_this) { 14273 function native__HTMLLabelElementWrappingImplementation__get_htmlFor(_this) {
14274 try { 14274 try {
14275 return __dom_wrap(_this.$dom.htmlFor); 14275 return __dom_wrap(_this.$dom.htmlFor);
14276 } catch (e) { 14276 } catch (e) {
14277 throw __dom_wrap_exception(e); 14277 throw __dom_wrap_exception(e);
14278 } 14278 }
14279 } 14279 }
14280 14280
14281 function native__HTMLLabelElementWrappingImplementation__set__HTMLLabelElement_h tmlFor(_this, value) { 14281 function native__HTMLLabelElementWrappingImplementation__set_htmlFor(_this, valu e) {
14282 try { 14282 try {
14283 _this.$dom.htmlFor = __dom_unwrap(value); 14283 _this.$dom.htmlFor = __dom_unwrap(value);
14284 } catch (e) { 14284 } catch (e) {
14285 throw __dom_wrap_exception(e); 14285 throw __dom_wrap_exception(e);
14286 } 14286 }
14287 } 14287 }
14288 14288
14289 function native__HTMLLegendElementWrappingImplementation__get__HTMLLegendElement _accessKey(_this) { 14289 function native__HTMLLegendElementWrappingImplementation__get_accessKey(_this) {
14290 try { 14290 try {
14291 return __dom_wrap(_this.$dom.accessKey); 14291 return __dom_wrap(_this.$dom.accessKey);
14292 } catch (e) { 14292 } catch (e) {
14293 throw __dom_wrap_exception(e); 14293 throw __dom_wrap_exception(e);
14294 } 14294 }
14295 } 14295 }
14296 14296
14297 function native__HTMLLegendElementWrappingImplementation__set__HTMLLegendElement _accessKey(_this, value) { 14297 function native__HTMLLegendElementWrappingImplementation__set_accessKey(_this, v alue) {
14298 try { 14298 try {
14299 _this.$dom.accessKey = __dom_unwrap(value); 14299 _this.$dom.accessKey = __dom_unwrap(value);
14300 } catch (e) { 14300 } catch (e) {
14301 throw __dom_wrap_exception(e); 14301 throw __dom_wrap_exception(e);
14302 } 14302 }
14303 } 14303 }
14304 14304
14305 function native__HTMLLegendElementWrappingImplementation__get__HTMLLegendElement _align(_this) { 14305 function native__HTMLLegendElementWrappingImplementation__get_align(_this) {
14306 try { 14306 try {
14307 return __dom_wrap(_this.$dom.align); 14307 return __dom_wrap(_this.$dom.align);
14308 } catch (e) { 14308 } catch (e) {
14309 throw __dom_wrap_exception(e); 14309 throw __dom_wrap_exception(e);
14310 } 14310 }
14311 } 14311 }
14312 14312
14313 function native__HTMLLegendElementWrappingImplementation__set__HTMLLegendElement _align(_this, value) { 14313 function native__HTMLLegendElementWrappingImplementation__set_align(_this, value ) {
14314 try { 14314 try {
14315 _this.$dom.align = __dom_unwrap(value); 14315 _this.$dom.align = __dom_unwrap(value);
14316 } catch (e) { 14316 } catch (e) {
14317 throw __dom_wrap_exception(e); 14317 throw __dom_wrap_exception(e);
14318 } 14318 }
14319 } 14319 }
14320 14320
14321 function native__HTMLLegendElementWrappingImplementation__get__HTMLLegendElement _form(_this) { 14321 function native__HTMLLegendElementWrappingImplementation__get_form(_this) {
14322 try { 14322 try {
14323 return __dom_wrap(_this.$dom.form); 14323 return __dom_wrap(_this.$dom.form);
14324 } catch (e) { 14324 } catch (e) {
14325 throw __dom_wrap_exception(e); 14325 throw __dom_wrap_exception(e);
14326 } 14326 }
14327 } 14327 }
14328 14328
14329 function native__HTMLLinkElementWrappingImplementation__get__HTMLLinkElement_cha rset(_this) { 14329 function native__HTMLLinkElementWrappingImplementation__get_charset(_this) {
14330 try { 14330 try {
14331 return __dom_wrap(_this.$dom.charset); 14331 return __dom_wrap(_this.$dom.charset);
14332 } catch (e) { 14332 } catch (e) {
14333 throw __dom_wrap_exception(e); 14333 throw __dom_wrap_exception(e);
14334 } 14334 }
14335 } 14335 }
14336 14336
14337 function native__HTMLLinkElementWrappingImplementation__set__HTMLLinkElement_cha rset(_this, value) { 14337 function native__HTMLLinkElementWrappingImplementation__set_charset(_this, value ) {
14338 try { 14338 try {
14339 _this.$dom.charset = __dom_unwrap(value); 14339 _this.$dom.charset = __dom_unwrap(value);
14340 } catch (e) { 14340 } catch (e) {
14341 throw __dom_wrap_exception(e); 14341 throw __dom_wrap_exception(e);
14342 } 14342 }
14343 } 14343 }
14344 14344
14345 function native__HTMLLinkElementWrappingImplementation__get__HTMLLinkElement_dis abled(_this) { 14345 function native__HTMLLinkElementWrappingImplementation__get_disabled(_this) {
14346 try { 14346 try {
14347 return __dom_wrap(_this.$dom.disabled); 14347 return __dom_wrap(_this.$dom.disabled);
14348 } catch (e) { 14348 } catch (e) {
14349 throw __dom_wrap_exception(e); 14349 throw __dom_wrap_exception(e);
14350 } 14350 }
14351 } 14351 }
14352 14352
14353 function native__HTMLLinkElementWrappingImplementation__set__HTMLLinkElement_dis abled(_this, value) { 14353 function native__HTMLLinkElementWrappingImplementation__set_disabled(_this, valu e) {
14354 try { 14354 try {
14355 _this.$dom.disabled = __dom_unwrap(value); 14355 _this.$dom.disabled = __dom_unwrap(value);
14356 } catch (e) { 14356 } catch (e) {
14357 throw __dom_wrap_exception(e); 14357 throw __dom_wrap_exception(e);
14358 } 14358 }
14359 } 14359 }
14360 14360
14361 function native__HTMLLinkElementWrappingImplementation__get__HTMLLinkElement_hre f(_this) { 14361 function native__HTMLLinkElementWrappingImplementation__get_href(_this) {
14362 try { 14362 try {
14363 return __dom_wrap(_this.$dom.href); 14363 return __dom_wrap(_this.$dom.href);
14364 } catch (e) { 14364 } catch (e) {
14365 throw __dom_wrap_exception(e); 14365 throw __dom_wrap_exception(e);
14366 } 14366 }
14367 } 14367 }
14368 14368
14369 function native__HTMLLinkElementWrappingImplementation__set__HTMLLinkElement_hre f(_this, value) { 14369 function native__HTMLLinkElementWrappingImplementation__set_href(_this, value) {
14370 try { 14370 try {
14371 _this.$dom.href = __dom_unwrap(value); 14371 _this.$dom.href = __dom_unwrap(value);
14372 } catch (e) { 14372 } catch (e) {
14373 throw __dom_wrap_exception(e); 14373 throw __dom_wrap_exception(e);
14374 } 14374 }
14375 } 14375 }
14376 14376
14377 function native__HTMLLinkElementWrappingImplementation__get__HTMLLinkElement_hre flang(_this) { 14377 function native__HTMLLinkElementWrappingImplementation__get_hreflang(_this) {
14378 try { 14378 try {
14379 return __dom_wrap(_this.$dom.hreflang); 14379 return __dom_wrap(_this.$dom.hreflang);
14380 } catch (e) { 14380 } catch (e) {
14381 throw __dom_wrap_exception(e); 14381 throw __dom_wrap_exception(e);
14382 } 14382 }
14383 } 14383 }
14384 14384
14385 function native__HTMLLinkElementWrappingImplementation__set__HTMLLinkElement_hre flang(_this, value) { 14385 function native__HTMLLinkElementWrappingImplementation__set_hreflang(_this, valu e) {
14386 try { 14386 try {
14387 _this.$dom.hreflang = __dom_unwrap(value); 14387 _this.$dom.hreflang = __dom_unwrap(value);
14388 } catch (e) { 14388 } catch (e) {
14389 throw __dom_wrap_exception(e); 14389 throw __dom_wrap_exception(e);
14390 } 14390 }
14391 } 14391 }
14392 14392
14393 function native__HTMLLinkElementWrappingImplementation__get__HTMLLinkElement_med ia(_this) { 14393 function native__HTMLLinkElementWrappingImplementation__get_media(_this) {
14394 try { 14394 try {
14395 return __dom_wrap(_this.$dom.media); 14395 return __dom_wrap(_this.$dom.media);
14396 } catch (e) { 14396 } catch (e) {
14397 throw __dom_wrap_exception(e); 14397 throw __dom_wrap_exception(e);
14398 } 14398 }
14399 } 14399 }
14400 14400
14401 function native__HTMLLinkElementWrappingImplementation__set__HTMLLinkElement_med ia(_this, value) { 14401 function native__HTMLLinkElementWrappingImplementation__set_media(_this, value) {
14402 try { 14402 try {
14403 _this.$dom.media = __dom_unwrap(value); 14403 _this.$dom.media = __dom_unwrap(value);
14404 } catch (e) { 14404 } catch (e) {
14405 throw __dom_wrap_exception(e); 14405 throw __dom_wrap_exception(e);
14406 } 14406 }
14407 } 14407 }
14408 14408
14409 function native__HTMLLinkElementWrappingImplementation__get__HTMLLinkElement_rel (_this) { 14409 function native__HTMLLinkElementWrappingImplementation__get_rel(_this) {
14410 try { 14410 try {
14411 return __dom_wrap(_this.$dom.rel); 14411 return __dom_wrap(_this.$dom.rel);
14412 } catch (e) { 14412 } catch (e) {
14413 throw __dom_wrap_exception(e); 14413 throw __dom_wrap_exception(e);
14414 } 14414 }
14415 } 14415 }
14416 14416
14417 function native__HTMLLinkElementWrappingImplementation__set__HTMLLinkElement_rel (_this, value) { 14417 function native__HTMLLinkElementWrappingImplementation__set_rel(_this, value) {
14418 try { 14418 try {
14419 _this.$dom.rel = __dom_unwrap(value); 14419 _this.$dom.rel = __dom_unwrap(value);
14420 } catch (e) { 14420 } catch (e) {
14421 throw __dom_wrap_exception(e); 14421 throw __dom_wrap_exception(e);
14422 } 14422 }
14423 } 14423 }
14424 14424
14425 function native__HTMLLinkElementWrappingImplementation__get__HTMLLinkElement_rev (_this) { 14425 function native__HTMLLinkElementWrappingImplementation__get_rev(_this) {
14426 try { 14426 try {
14427 return __dom_wrap(_this.$dom.rev); 14427 return __dom_wrap(_this.$dom.rev);
14428 } catch (e) { 14428 } catch (e) {
14429 throw __dom_wrap_exception(e); 14429 throw __dom_wrap_exception(e);
14430 } 14430 }
14431 } 14431 }
14432 14432
14433 function native__HTMLLinkElementWrappingImplementation__set__HTMLLinkElement_rev (_this, value) { 14433 function native__HTMLLinkElementWrappingImplementation__set_rev(_this, value) {
14434 try { 14434 try {
14435 _this.$dom.rev = __dom_unwrap(value); 14435 _this.$dom.rev = __dom_unwrap(value);
14436 } catch (e) { 14436 } catch (e) {
14437 throw __dom_wrap_exception(e); 14437 throw __dom_wrap_exception(e);
14438 } 14438 }
14439 } 14439 }
14440 14440
14441 function native__HTMLLinkElementWrappingImplementation__get__HTMLLinkElement_she et(_this) { 14441 function native__HTMLLinkElementWrappingImplementation__get_sheet(_this) {
14442 try { 14442 try {
14443 return __dom_wrap(_this.$dom.sheet); 14443 return __dom_wrap(_this.$dom.sheet);
14444 } catch (e) { 14444 } catch (e) {
14445 throw __dom_wrap_exception(e); 14445 throw __dom_wrap_exception(e);
14446 } 14446 }
14447 } 14447 }
14448 14448
14449 function native__HTMLLinkElementWrappingImplementation__get__HTMLLinkElement_siz es(_this) { 14449 function native__HTMLLinkElementWrappingImplementation__get_sizes(_this) {
14450 try { 14450 try {
14451 return __dom_wrap(_this.$dom.sizes); 14451 return __dom_wrap(_this.$dom.sizes);
14452 } catch (e) { 14452 } catch (e) {
14453 throw __dom_wrap_exception(e); 14453 throw __dom_wrap_exception(e);
14454 } 14454 }
14455 } 14455 }
14456 14456
14457 function native__HTMLLinkElementWrappingImplementation__set__HTMLLinkElement_siz es(_this, value) { 14457 function native__HTMLLinkElementWrappingImplementation__set_sizes(_this, value) {
14458 try { 14458 try {
14459 _this.$dom.sizes = __dom_unwrap(value); 14459 _this.$dom.sizes = __dom_unwrap(value);
14460 } catch (e) { 14460 } catch (e) {
14461 throw __dom_wrap_exception(e); 14461 throw __dom_wrap_exception(e);
14462 } 14462 }
14463 } 14463 }
14464 14464
14465 function native__HTMLLinkElementWrappingImplementation__get__HTMLLinkElement_tar get(_this) { 14465 function native__HTMLLinkElementWrappingImplementation__get_target(_this) {
14466 try { 14466 try {
14467 return __dom_wrap(_this.$dom.target); 14467 return __dom_wrap(_this.$dom.target);
14468 } catch (e) { 14468 } catch (e) {
14469 throw __dom_wrap_exception(e); 14469 throw __dom_wrap_exception(e);
14470 } 14470 }
14471 } 14471 }
14472 14472
14473 function native__HTMLLinkElementWrappingImplementation__set__HTMLLinkElement_tar get(_this, value) { 14473 function native__HTMLLinkElementWrappingImplementation__set_target(_this, value) {
14474 try { 14474 try {
14475 _this.$dom.target = __dom_unwrap(value); 14475 _this.$dom.target = __dom_unwrap(value);
14476 } catch (e) { 14476 } catch (e) {
14477 throw __dom_wrap_exception(e); 14477 throw __dom_wrap_exception(e);
14478 } 14478 }
14479 } 14479 }
14480 14480
14481 function native__HTMLLinkElementWrappingImplementation__get__HTMLLinkElement_typ e(_this) { 14481 function native__HTMLLinkElementWrappingImplementation__get_type(_this) {
14482 try { 14482 try {
14483 return __dom_wrap(_this.$dom.type); 14483 return __dom_wrap(_this.$dom.type);
14484 } catch (e) { 14484 } catch (e) {
14485 throw __dom_wrap_exception(e); 14485 throw __dom_wrap_exception(e);
14486 } 14486 }
14487 } 14487 }
14488 14488
14489 function native__HTMLLinkElementWrappingImplementation__set__HTMLLinkElement_typ e(_this, value) { 14489 function native__HTMLLinkElementWrappingImplementation__set_type(_this, value) {
14490 try { 14490 try {
14491 _this.$dom.type = __dom_unwrap(value); 14491 _this.$dom.type = __dom_unwrap(value);
14492 } catch (e) { 14492 } catch (e) {
14493 throw __dom_wrap_exception(e); 14493 throw __dom_wrap_exception(e);
14494 } 14494 }
14495 } 14495 }
14496 14496
14497 function native__HTMLMapElementWrappingImplementation__get__HTMLMapElement_areas (_this) { 14497 function native__HTMLMapElementWrappingImplementation__get_areas(_this) {
14498 try { 14498 try {
14499 return __dom_wrap(_this.$dom.areas); 14499 return __dom_wrap(_this.$dom.areas);
14500 } catch (e) { 14500 } catch (e) {
14501 throw __dom_wrap_exception(e); 14501 throw __dom_wrap_exception(e);
14502 } 14502 }
14503 } 14503 }
14504 14504
14505 function native__HTMLMapElementWrappingImplementation__get__HTMLMapElement_name( _this) { 14505 function native__HTMLMapElementWrappingImplementation__get_name(_this) {
14506 try { 14506 try {
14507 return __dom_wrap(_this.$dom.name); 14507 return __dom_wrap(_this.$dom.name);
14508 } catch (e) { 14508 } catch (e) {
14509 throw __dom_wrap_exception(e); 14509 throw __dom_wrap_exception(e);
14510 } 14510 }
14511 } 14511 }
14512 14512
14513 function native__HTMLMapElementWrappingImplementation__set__HTMLMapElement_name( _this, value) { 14513 function native__HTMLMapElementWrappingImplementation__set_name(_this, value) {
14514 try { 14514 try {
14515 _this.$dom.name = __dom_unwrap(value); 14515 _this.$dom.name = __dom_unwrap(value);
14516 } catch (e) { 14516 } catch (e) {
14517 throw __dom_wrap_exception(e); 14517 throw __dom_wrap_exception(e);
14518 } 14518 }
14519 } 14519 }
14520 14520
14521 function native__HTMLMarqueeElementWrappingImplementation__get__HTMLMarqueeEleme nt_behavior(_this) { 14521 function native__HTMLMarqueeElementWrappingImplementation__get_behavior(_this) {
14522 try { 14522 try {
14523 return __dom_wrap(_this.$dom.behavior); 14523 return __dom_wrap(_this.$dom.behavior);
14524 } catch (e) { 14524 } catch (e) {
14525 throw __dom_wrap_exception(e); 14525 throw __dom_wrap_exception(e);
14526 } 14526 }
14527 } 14527 }
14528 14528
14529 function native__HTMLMarqueeElementWrappingImplementation__set__HTMLMarqueeEleme nt_behavior(_this, value) { 14529 function native__HTMLMarqueeElementWrappingImplementation__set_behavior(_this, v alue) {
14530 try { 14530 try {
14531 _this.$dom.behavior = __dom_unwrap(value); 14531 _this.$dom.behavior = __dom_unwrap(value);
14532 } catch (e) { 14532 } catch (e) {
14533 throw __dom_wrap_exception(e); 14533 throw __dom_wrap_exception(e);
14534 } 14534 }
14535 } 14535 }
14536 14536
14537 function native__HTMLMarqueeElementWrappingImplementation__get__HTMLMarqueeEleme nt_bgColor(_this) { 14537 function native__HTMLMarqueeElementWrappingImplementation__get_bgColor(_this) {
14538 try { 14538 try {
14539 return __dom_wrap(_this.$dom.bgColor); 14539 return __dom_wrap(_this.$dom.bgColor);
14540 } catch (e) { 14540 } catch (e) {
14541 throw __dom_wrap_exception(e); 14541 throw __dom_wrap_exception(e);
14542 } 14542 }
14543 } 14543 }
14544 14544
14545 function native__HTMLMarqueeElementWrappingImplementation__set__HTMLMarqueeEleme nt_bgColor(_this, value) { 14545 function native__HTMLMarqueeElementWrappingImplementation__set_bgColor(_this, va lue) {
14546 try { 14546 try {
14547 _this.$dom.bgColor = __dom_unwrap(value); 14547 _this.$dom.bgColor = __dom_unwrap(value);
14548 } catch (e) { 14548 } catch (e) {
14549 throw __dom_wrap_exception(e); 14549 throw __dom_wrap_exception(e);
14550 } 14550 }
14551 } 14551 }
14552 14552
14553 function native__HTMLMarqueeElementWrappingImplementation__get__HTMLMarqueeEleme nt_direction(_this) { 14553 function native__HTMLMarqueeElementWrappingImplementation__get_direction(_this) {
14554 try { 14554 try {
14555 return __dom_wrap(_this.$dom.direction); 14555 return __dom_wrap(_this.$dom.direction);
14556 } catch (e) { 14556 } catch (e) {
14557 throw __dom_wrap_exception(e); 14557 throw __dom_wrap_exception(e);
14558 } 14558 }
14559 } 14559 }
14560 14560
14561 function native__HTMLMarqueeElementWrappingImplementation__set__HTMLMarqueeEleme nt_direction(_this, value) { 14561 function native__HTMLMarqueeElementWrappingImplementation__set_direction(_this, value) {
14562 try { 14562 try {
14563 _this.$dom.direction = __dom_unwrap(value); 14563 _this.$dom.direction = __dom_unwrap(value);
14564 } catch (e) { 14564 } catch (e) {
14565 throw __dom_wrap_exception(e); 14565 throw __dom_wrap_exception(e);
14566 } 14566 }
14567 } 14567 }
14568 14568
14569 function native__HTMLMarqueeElementWrappingImplementation__get__HTMLMarqueeEleme nt_height(_this) { 14569 function native__HTMLMarqueeElementWrappingImplementation__get_height(_this) {
14570 try { 14570 try {
14571 return __dom_wrap(_this.$dom.height); 14571 return __dom_wrap(_this.$dom.height);
14572 } catch (e) { 14572 } catch (e) {
14573 throw __dom_wrap_exception(e); 14573 throw __dom_wrap_exception(e);
14574 } 14574 }
14575 } 14575 }
14576 14576
14577 function native__HTMLMarqueeElementWrappingImplementation__set__HTMLMarqueeEleme nt_height(_this, value) { 14577 function native__HTMLMarqueeElementWrappingImplementation__set_height(_this, val ue) {
14578 try { 14578 try {
14579 _this.$dom.height = __dom_unwrap(value); 14579 _this.$dom.height = __dom_unwrap(value);
14580 } catch (e) { 14580 } catch (e) {
14581 throw __dom_wrap_exception(e); 14581 throw __dom_wrap_exception(e);
14582 } 14582 }
14583 } 14583 }
14584 14584
14585 function native__HTMLMarqueeElementWrappingImplementation__get__HTMLMarqueeEleme nt_hspace(_this) { 14585 function native__HTMLMarqueeElementWrappingImplementation__get_hspace(_this) {
14586 try { 14586 try {
14587 return __dom_wrap(_this.$dom.hspace); 14587 return __dom_wrap(_this.$dom.hspace);
14588 } catch (e) { 14588 } catch (e) {
14589 throw __dom_wrap_exception(e); 14589 throw __dom_wrap_exception(e);
14590 } 14590 }
14591 } 14591 }
14592 14592
14593 function native__HTMLMarqueeElementWrappingImplementation__set__HTMLMarqueeEleme nt_hspace(_this, value) { 14593 function native__HTMLMarqueeElementWrappingImplementation__set_hspace(_this, val ue) {
14594 try { 14594 try {
14595 _this.$dom.hspace = __dom_unwrap(value); 14595 _this.$dom.hspace = __dom_unwrap(value);
14596 } catch (e) { 14596 } catch (e) {
14597 throw __dom_wrap_exception(e); 14597 throw __dom_wrap_exception(e);
14598 } 14598 }
14599 } 14599 }
14600 14600
14601 function native__HTMLMarqueeElementWrappingImplementation__get__HTMLMarqueeEleme nt_loop(_this) { 14601 function native__HTMLMarqueeElementWrappingImplementation__get_loop(_this) {
14602 try { 14602 try {
14603 return __dom_wrap(_this.$dom.loop); 14603 return __dom_wrap(_this.$dom.loop);
14604 } catch (e) { 14604 } catch (e) {
14605 throw __dom_wrap_exception(e); 14605 throw __dom_wrap_exception(e);
14606 } 14606 }
14607 } 14607 }
14608 14608
14609 function native__HTMLMarqueeElementWrappingImplementation__set__HTMLMarqueeEleme nt_loop(_this, value) { 14609 function native__HTMLMarqueeElementWrappingImplementation__set_loop(_this, value ) {
14610 try { 14610 try {
14611 _this.$dom.loop = __dom_unwrap(value); 14611 _this.$dom.loop = __dom_unwrap(value);
14612 } catch (e) { 14612 } catch (e) {
14613 throw __dom_wrap_exception(e); 14613 throw __dom_wrap_exception(e);
14614 } 14614 }
14615 } 14615 }
14616 14616
14617 function native__HTMLMarqueeElementWrappingImplementation__get__HTMLMarqueeEleme nt_scrollAmount(_this) { 14617 function native__HTMLMarqueeElementWrappingImplementation__get_scrollAmount(_thi s) {
14618 try { 14618 try {
14619 return __dom_wrap(_this.$dom.scrollAmount); 14619 return __dom_wrap(_this.$dom.scrollAmount);
14620 } catch (e) { 14620 } catch (e) {
14621 throw __dom_wrap_exception(e); 14621 throw __dom_wrap_exception(e);
14622 } 14622 }
14623 } 14623 }
14624 14624
14625 function native__HTMLMarqueeElementWrappingImplementation__set__HTMLMarqueeEleme nt_scrollAmount(_this, value) { 14625 function native__HTMLMarqueeElementWrappingImplementation__set_scrollAmount(_thi s, value) {
14626 try { 14626 try {
14627 _this.$dom.scrollAmount = __dom_unwrap(value); 14627 _this.$dom.scrollAmount = __dom_unwrap(value);
14628 } catch (e) { 14628 } catch (e) {
14629 throw __dom_wrap_exception(e); 14629 throw __dom_wrap_exception(e);
14630 } 14630 }
14631 } 14631 }
14632 14632
14633 function native__HTMLMarqueeElementWrappingImplementation__get__HTMLMarqueeEleme nt_scrollDelay(_this) { 14633 function native__HTMLMarqueeElementWrappingImplementation__get_scrollDelay(_this ) {
14634 try { 14634 try {
14635 return __dom_wrap(_this.$dom.scrollDelay); 14635 return __dom_wrap(_this.$dom.scrollDelay);
14636 } catch (e) { 14636 } catch (e) {
14637 throw __dom_wrap_exception(e); 14637 throw __dom_wrap_exception(e);
14638 } 14638 }
14639 } 14639 }
14640 14640
14641 function native__HTMLMarqueeElementWrappingImplementation__set__HTMLMarqueeEleme nt_scrollDelay(_this, value) { 14641 function native__HTMLMarqueeElementWrappingImplementation__set_scrollDelay(_this , value) {
14642 try { 14642 try {
14643 _this.$dom.scrollDelay = __dom_unwrap(value); 14643 _this.$dom.scrollDelay = __dom_unwrap(value);
14644 } catch (e) { 14644 } catch (e) {
14645 throw __dom_wrap_exception(e); 14645 throw __dom_wrap_exception(e);
14646 } 14646 }
14647 } 14647 }
14648 14648
14649 function native__HTMLMarqueeElementWrappingImplementation__get__HTMLMarqueeEleme nt_trueSpeed(_this) { 14649 function native__HTMLMarqueeElementWrappingImplementation__get_trueSpeed(_this) {
14650 try { 14650 try {
14651 return __dom_wrap(_this.$dom.trueSpeed); 14651 return __dom_wrap(_this.$dom.trueSpeed);
14652 } catch (e) { 14652 } catch (e) {
14653 throw __dom_wrap_exception(e); 14653 throw __dom_wrap_exception(e);
14654 } 14654 }
14655 } 14655 }
14656 14656
14657 function native__HTMLMarqueeElementWrappingImplementation__set__HTMLMarqueeEleme nt_trueSpeed(_this, value) { 14657 function native__HTMLMarqueeElementWrappingImplementation__set_trueSpeed(_this, value) {
14658 try { 14658 try {
14659 _this.$dom.trueSpeed = __dom_unwrap(value); 14659 _this.$dom.trueSpeed = __dom_unwrap(value);
14660 } catch (e) { 14660 } catch (e) {
14661 throw __dom_wrap_exception(e); 14661 throw __dom_wrap_exception(e);
14662 } 14662 }
14663 } 14663 }
14664 14664
14665 function native__HTMLMarqueeElementWrappingImplementation__get__HTMLMarqueeEleme nt_vspace(_this) { 14665 function native__HTMLMarqueeElementWrappingImplementation__get_vspace(_this) {
14666 try { 14666 try {
14667 return __dom_wrap(_this.$dom.vspace); 14667 return __dom_wrap(_this.$dom.vspace);
14668 } catch (e) { 14668 } catch (e) {
14669 throw __dom_wrap_exception(e); 14669 throw __dom_wrap_exception(e);
14670 } 14670 }
14671 } 14671 }
14672 14672
14673 function native__HTMLMarqueeElementWrappingImplementation__set__HTMLMarqueeEleme nt_vspace(_this, value) { 14673 function native__HTMLMarqueeElementWrappingImplementation__set_vspace(_this, val ue) {
14674 try { 14674 try {
14675 _this.$dom.vspace = __dom_unwrap(value); 14675 _this.$dom.vspace = __dom_unwrap(value);
14676 } catch (e) { 14676 } catch (e) {
14677 throw __dom_wrap_exception(e); 14677 throw __dom_wrap_exception(e);
14678 } 14678 }
14679 } 14679 }
14680 14680
14681 function native__HTMLMarqueeElementWrappingImplementation__get__HTMLMarqueeEleme nt_width(_this) { 14681 function native__HTMLMarqueeElementWrappingImplementation__get_width(_this) {
14682 try { 14682 try {
14683 return __dom_wrap(_this.$dom.width); 14683 return __dom_wrap(_this.$dom.width);
14684 } catch (e) { 14684 } catch (e) {
14685 throw __dom_wrap_exception(e); 14685 throw __dom_wrap_exception(e);
14686 } 14686 }
14687 } 14687 }
14688 14688
14689 function native__HTMLMarqueeElementWrappingImplementation__set__HTMLMarqueeEleme nt_width(_this, value) { 14689 function native__HTMLMarqueeElementWrappingImplementation__set_width(_this, valu e) {
14690 try { 14690 try {
14691 _this.$dom.width = __dom_unwrap(value); 14691 _this.$dom.width = __dom_unwrap(value);
14692 } catch (e) { 14692 } catch (e) {
14693 throw __dom_wrap_exception(e); 14693 throw __dom_wrap_exception(e);
14694 } 14694 }
14695 } 14695 }
14696 14696
14697 function native__HTMLMarqueeElementWrappingImplementation__start(_this) { 14697 function native__HTMLMarqueeElementWrappingImplementation__start(_this) {
14698 try { 14698 try {
14699 return __dom_wrap(_this.$dom.start()); 14699 return __dom_wrap(_this.$dom.start());
14700 } catch (e) { 14700 } catch (e) {
14701 throw __dom_wrap_exception(e); 14701 throw __dom_wrap_exception(e);
14702 } 14702 }
14703 } 14703 }
14704 14704
14705 function native__HTMLMarqueeElementWrappingImplementation__stop(_this) { 14705 function native__HTMLMarqueeElementWrappingImplementation__stop(_this) {
14706 try { 14706 try {
14707 return __dom_wrap(_this.$dom.stop()); 14707 return __dom_wrap(_this.$dom.stop());
14708 } catch (e) { 14708 } catch (e) {
14709 throw __dom_wrap_exception(e); 14709 throw __dom_wrap_exception(e);
14710 } 14710 }
14711 } 14711 }
14712 14712
14713 function native__HTMLMediaElementWrappingImplementation__get__HTMLMediaElement_a utoplay(_this) { 14713 function native__HTMLMediaElementWrappingImplementation__get_autoplay(_this) {
14714 try { 14714 try {
14715 return __dom_wrap(_this.$dom.autoplay); 14715 return __dom_wrap(_this.$dom.autoplay);
14716 } catch (e) { 14716 } catch (e) {
14717 throw __dom_wrap_exception(e); 14717 throw __dom_wrap_exception(e);
14718 } 14718 }
14719 } 14719 }
14720 14720
14721 function native__HTMLMediaElementWrappingImplementation__set__HTMLMediaElement_a utoplay(_this, value) { 14721 function native__HTMLMediaElementWrappingImplementation__set_autoplay(_this, val ue) {
14722 try { 14722 try {
14723 _this.$dom.autoplay = __dom_unwrap(value); 14723 _this.$dom.autoplay = __dom_unwrap(value);
14724 } catch (e) { 14724 } catch (e) {
14725 throw __dom_wrap_exception(e); 14725 throw __dom_wrap_exception(e);
14726 } 14726 }
14727 } 14727 }
14728 14728
14729 function native__HTMLMediaElementWrappingImplementation__get__HTMLMediaElement_b uffered(_this) { 14729 function native__HTMLMediaElementWrappingImplementation__get_buffered(_this) {
14730 try { 14730 try {
14731 return __dom_wrap(_this.$dom.buffered); 14731 return __dom_wrap(_this.$dom.buffered);
14732 } catch (e) { 14732 } catch (e) {
14733 throw __dom_wrap_exception(e); 14733 throw __dom_wrap_exception(e);
14734 } 14734 }
14735 } 14735 }
14736 14736
14737 function native__HTMLMediaElementWrappingImplementation__get__HTMLMediaElement_c ontrols(_this) { 14737 function native__HTMLMediaElementWrappingImplementation__get_controls(_this) {
14738 try { 14738 try {
14739 return __dom_wrap(_this.$dom.controls); 14739 return __dom_wrap(_this.$dom.controls);
14740 } catch (e) { 14740 } catch (e) {
14741 throw __dom_wrap_exception(e); 14741 throw __dom_wrap_exception(e);
14742 } 14742 }
14743 } 14743 }
14744 14744
14745 function native__HTMLMediaElementWrappingImplementation__set__HTMLMediaElement_c ontrols(_this, value) { 14745 function native__HTMLMediaElementWrappingImplementation__set_controls(_this, val ue) {
14746 try { 14746 try {
14747 _this.$dom.controls = __dom_unwrap(value); 14747 _this.$dom.controls = __dom_unwrap(value);
14748 } catch (e) { 14748 } catch (e) {
14749 throw __dom_wrap_exception(e); 14749 throw __dom_wrap_exception(e);
14750 } 14750 }
14751 } 14751 }
14752 14752
14753 function native__HTMLMediaElementWrappingImplementation__get__HTMLMediaElement_c urrentSrc(_this) { 14753 function native__HTMLMediaElementWrappingImplementation__get_currentSrc(_this) {
14754 try { 14754 try {
14755 return __dom_wrap(_this.$dom.currentSrc); 14755 return __dom_wrap(_this.$dom.currentSrc);
14756 } catch (e) { 14756 } catch (e) {
14757 throw __dom_wrap_exception(e); 14757 throw __dom_wrap_exception(e);
14758 } 14758 }
14759 } 14759 }
14760 14760
14761 function native__HTMLMediaElementWrappingImplementation__get__HTMLMediaElement_c urrentTime(_this) { 14761 function native__HTMLMediaElementWrappingImplementation__get_currentTime(_this) {
14762 try { 14762 try {
14763 return __dom_wrap(_this.$dom.currentTime); 14763 return __dom_wrap(_this.$dom.currentTime);
14764 } catch (e) { 14764 } catch (e) {
14765 throw __dom_wrap_exception(e); 14765 throw __dom_wrap_exception(e);
14766 } 14766 }
14767 } 14767 }
14768 14768
14769 function native__HTMLMediaElementWrappingImplementation__set__HTMLMediaElement_c urrentTime(_this, value) { 14769 function native__HTMLMediaElementWrappingImplementation__set_currentTime(_this, value) {
14770 try { 14770 try {
14771 _this.$dom.currentTime = __dom_unwrap(value); 14771 _this.$dom.currentTime = __dom_unwrap(value);
14772 } catch (e) { 14772 } catch (e) {
14773 throw __dom_wrap_exception(e); 14773 throw __dom_wrap_exception(e);
14774 } 14774 }
14775 } 14775 }
14776 14776
14777 function native__HTMLMediaElementWrappingImplementation__get__HTMLMediaElement_d efaultMuted(_this) { 14777 function native__HTMLMediaElementWrappingImplementation__get_defaultMuted(_this) {
14778 try { 14778 try {
14779 return __dom_wrap(_this.$dom.defaultMuted); 14779 return __dom_wrap(_this.$dom.defaultMuted);
14780 } catch (e) { 14780 } catch (e) {
14781 throw __dom_wrap_exception(e); 14781 throw __dom_wrap_exception(e);
14782 } 14782 }
14783 } 14783 }
14784 14784
14785 function native__HTMLMediaElementWrappingImplementation__set__HTMLMediaElement_d efaultMuted(_this, value) { 14785 function native__HTMLMediaElementWrappingImplementation__set_defaultMuted(_this, value) {
14786 try { 14786 try {
14787 _this.$dom.defaultMuted = __dom_unwrap(value); 14787 _this.$dom.defaultMuted = __dom_unwrap(value);
14788 } catch (e) { 14788 } catch (e) {
14789 throw __dom_wrap_exception(e); 14789 throw __dom_wrap_exception(e);
14790 } 14790 }
14791 } 14791 }
14792 14792
14793 function native__HTMLMediaElementWrappingImplementation__get__HTMLMediaElement_d efaultPlaybackRate(_this) { 14793 function native__HTMLMediaElementWrappingImplementation__get_defaultPlaybackRate (_this) {
14794 try { 14794 try {
14795 return __dom_wrap(_this.$dom.defaultPlaybackRate); 14795 return __dom_wrap(_this.$dom.defaultPlaybackRate);
14796 } catch (e) { 14796 } catch (e) {
14797 throw __dom_wrap_exception(e); 14797 throw __dom_wrap_exception(e);
14798 } 14798 }
14799 } 14799 }
14800 14800
14801 function native__HTMLMediaElementWrappingImplementation__set__HTMLMediaElement_d efaultPlaybackRate(_this, value) { 14801 function native__HTMLMediaElementWrappingImplementation__set_defaultPlaybackRate (_this, value) {
14802 try { 14802 try {
14803 _this.$dom.defaultPlaybackRate = __dom_unwrap(value); 14803 _this.$dom.defaultPlaybackRate = __dom_unwrap(value);
14804 } catch (e) { 14804 } catch (e) {
14805 throw __dom_wrap_exception(e); 14805 throw __dom_wrap_exception(e);
14806 } 14806 }
14807 } 14807 }
14808 14808
14809 function native__HTMLMediaElementWrappingImplementation__get__HTMLMediaElement_d uration(_this) { 14809 function native__HTMLMediaElementWrappingImplementation__get_duration(_this) {
14810 try { 14810 try {
14811 return __dom_wrap(_this.$dom.duration); 14811 return __dom_wrap(_this.$dom.duration);
14812 } catch (e) { 14812 } catch (e) {
14813 throw __dom_wrap_exception(e); 14813 throw __dom_wrap_exception(e);
14814 } 14814 }
14815 } 14815 }
14816 14816
14817 function native__HTMLMediaElementWrappingImplementation__get__HTMLMediaElement_e nded(_this) { 14817 function native__HTMLMediaElementWrappingImplementation__get_ended(_this) {
14818 try { 14818 try {
14819 return __dom_wrap(_this.$dom.ended); 14819 return __dom_wrap(_this.$dom.ended);
14820 } catch (e) { 14820 } catch (e) {
14821 throw __dom_wrap_exception(e); 14821 throw __dom_wrap_exception(e);
14822 } 14822 }
14823 } 14823 }
14824 14824
14825 function native__HTMLMediaElementWrappingImplementation__get__HTMLMediaElement_e rror(_this) { 14825 function native__HTMLMediaElementWrappingImplementation__get_error(_this) {
14826 try { 14826 try {
14827 return __dom_wrap(_this.$dom.error); 14827 return __dom_wrap(_this.$dom.error);
14828 } catch (e) { 14828 } catch (e) {
14829 throw __dom_wrap_exception(e); 14829 throw __dom_wrap_exception(e);
14830 } 14830 }
14831 } 14831 }
14832 14832
14833 function native__HTMLMediaElementWrappingImplementation__get__HTMLMediaElement_i nitialTime(_this) { 14833 function native__HTMLMediaElementWrappingImplementation__get_initialTime(_this) {
14834 try { 14834 try {
14835 return __dom_wrap(_this.$dom.initialTime); 14835 return __dom_wrap(_this.$dom.initialTime);
14836 } catch (e) { 14836 } catch (e) {
14837 throw __dom_wrap_exception(e); 14837 throw __dom_wrap_exception(e);
14838 } 14838 }
14839 } 14839 }
14840 14840
14841 function native__HTMLMediaElementWrappingImplementation__get__HTMLMediaElement_l oop(_this) { 14841 function native__HTMLMediaElementWrappingImplementation__get_loop(_this) {
14842 try { 14842 try {
14843 return __dom_wrap(_this.$dom.loop); 14843 return __dom_wrap(_this.$dom.loop);
14844 } catch (e) { 14844 } catch (e) {
14845 throw __dom_wrap_exception(e); 14845 throw __dom_wrap_exception(e);
14846 } 14846 }
14847 } 14847 }
14848 14848
14849 function native__HTMLMediaElementWrappingImplementation__set__HTMLMediaElement_l oop(_this, value) { 14849 function native__HTMLMediaElementWrappingImplementation__set_loop(_this, value) {
14850 try { 14850 try {
14851 _this.$dom.loop = __dom_unwrap(value); 14851 _this.$dom.loop = __dom_unwrap(value);
14852 } catch (e) { 14852 } catch (e) {
14853 throw __dom_wrap_exception(e); 14853 throw __dom_wrap_exception(e);
14854 } 14854 }
14855 } 14855 }
14856 14856
14857 function native__HTMLMediaElementWrappingImplementation__get__HTMLMediaElement_m uted(_this) { 14857 function native__HTMLMediaElementWrappingImplementation__get_muted(_this) {
14858 try { 14858 try {
14859 return __dom_wrap(_this.$dom.muted); 14859 return __dom_wrap(_this.$dom.muted);
14860 } catch (e) { 14860 } catch (e) {
14861 throw __dom_wrap_exception(e); 14861 throw __dom_wrap_exception(e);
14862 } 14862 }
14863 } 14863 }
14864 14864
14865 function native__HTMLMediaElementWrappingImplementation__set__HTMLMediaElement_m uted(_this, value) { 14865 function native__HTMLMediaElementWrappingImplementation__set_muted(_this, value) {
14866 try { 14866 try {
14867 _this.$dom.muted = __dom_unwrap(value); 14867 _this.$dom.muted = __dom_unwrap(value);
14868 } catch (e) { 14868 } catch (e) {
14869 throw __dom_wrap_exception(e); 14869 throw __dom_wrap_exception(e);
14870 } 14870 }
14871 } 14871 }
14872 14872
14873 function native__HTMLMediaElementWrappingImplementation__get__HTMLMediaElement_n etworkState(_this) { 14873 function native__HTMLMediaElementWrappingImplementation__get_networkState(_this) {
14874 try { 14874 try {
14875 return __dom_wrap(_this.$dom.networkState); 14875 return __dom_wrap(_this.$dom.networkState);
14876 } catch (e) { 14876 } catch (e) {
14877 throw __dom_wrap_exception(e); 14877 throw __dom_wrap_exception(e);
14878 } 14878 }
14879 } 14879 }
14880 14880
14881 function native__HTMLMediaElementWrappingImplementation__get__HTMLMediaElement_p aused(_this) { 14881 function native__HTMLMediaElementWrappingImplementation__get_paused(_this) {
14882 try { 14882 try {
14883 return __dom_wrap(_this.$dom.paused); 14883 return __dom_wrap(_this.$dom.paused);
14884 } catch (e) { 14884 } catch (e) {
14885 throw __dom_wrap_exception(e); 14885 throw __dom_wrap_exception(e);
14886 } 14886 }
14887 } 14887 }
14888 14888
14889 function native__HTMLMediaElementWrappingImplementation__get__HTMLMediaElement_p laybackRate(_this) { 14889 function native__HTMLMediaElementWrappingImplementation__get_playbackRate(_this) {
14890 try { 14890 try {
14891 return __dom_wrap(_this.$dom.playbackRate); 14891 return __dom_wrap(_this.$dom.playbackRate);
14892 } catch (e) { 14892 } catch (e) {
14893 throw __dom_wrap_exception(e); 14893 throw __dom_wrap_exception(e);
14894 } 14894 }
14895 } 14895 }
14896 14896
14897 function native__HTMLMediaElementWrappingImplementation__set__HTMLMediaElement_p laybackRate(_this, value) { 14897 function native__HTMLMediaElementWrappingImplementation__set_playbackRate(_this, value) {
14898 try { 14898 try {
14899 _this.$dom.playbackRate = __dom_unwrap(value); 14899 _this.$dom.playbackRate = __dom_unwrap(value);
14900 } catch (e) { 14900 } catch (e) {
14901 throw __dom_wrap_exception(e); 14901 throw __dom_wrap_exception(e);
14902 } 14902 }
14903 } 14903 }
14904 14904
14905 function native__HTMLMediaElementWrappingImplementation__get__HTMLMediaElement_p layed(_this) { 14905 function native__HTMLMediaElementWrappingImplementation__get_played(_this) {
14906 try { 14906 try {
14907 return __dom_wrap(_this.$dom.played); 14907 return __dom_wrap(_this.$dom.played);
14908 } catch (e) { 14908 } catch (e) {
14909 throw __dom_wrap_exception(e); 14909 throw __dom_wrap_exception(e);
14910 } 14910 }
14911 } 14911 }
14912 14912
14913 function native__HTMLMediaElementWrappingImplementation__get__HTMLMediaElement_p reload(_this) { 14913 function native__HTMLMediaElementWrappingImplementation__get_preload(_this) {
14914 try { 14914 try {
14915 return __dom_wrap(_this.$dom.preload); 14915 return __dom_wrap(_this.$dom.preload);
14916 } catch (e) { 14916 } catch (e) {
14917 throw __dom_wrap_exception(e); 14917 throw __dom_wrap_exception(e);
14918 } 14918 }
14919 } 14919 }
14920 14920
14921 function native__HTMLMediaElementWrappingImplementation__set__HTMLMediaElement_p reload(_this, value) { 14921 function native__HTMLMediaElementWrappingImplementation__set_preload(_this, valu e) {
14922 try { 14922 try {
14923 _this.$dom.preload = __dom_unwrap(value); 14923 _this.$dom.preload = __dom_unwrap(value);
14924 } catch (e) { 14924 } catch (e) {
14925 throw __dom_wrap_exception(e); 14925 throw __dom_wrap_exception(e);
14926 } 14926 }
14927 } 14927 }
14928 14928
14929 function native__HTMLMediaElementWrappingImplementation__get__HTMLMediaElement_r eadyState(_this) { 14929 function native__HTMLMediaElementWrappingImplementation__get_readyState(_this) {
14930 try { 14930 try {
14931 return __dom_wrap(_this.$dom.readyState); 14931 return __dom_wrap(_this.$dom.readyState);
14932 } catch (e) { 14932 } catch (e) {
14933 throw __dom_wrap_exception(e); 14933 throw __dom_wrap_exception(e);
14934 } 14934 }
14935 } 14935 }
14936 14936
14937 function native__HTMLMediaElementWrappingImplementation__get__HTMLMediaElement_s eekable(_this) { 14937 function native__HTMLMediaElementWrappingImplementation__get_seekable(_this) {
14938 try { 14938 try {
14939 return __dom_wrap(_this.$dom.seekable); 14939 return __dom_wrap(_this.$dom.seekable);
14940 } catch (e) { 14940 } catch (e) {
14941 throw __dom_wrap_exception(e); 14941 throw __dom_wrap_exception(e);
14942 } 14942 }
14943 } 14943 }
14944 14944
14945 function native__HTMLMediaElementWrappingImplementation__get__HTMLMediaElement_s eeking(_this) { 14945 function native__HTMLMediaElementWrappingImplementation__get_seeking(_this) {
14946 try { 14946 try {
14947 return __dom_wrap(_this.$dom.seeking); 14947 return __dom_wrap(_this.$dom.seeking);
14948 } catch (e) { 14948 } catch (e) {
14949 throw __dom_wrap_exception(e); 14949 throw __dom_wrap_exception(e);
14950 } 14950 }
14951 } 14951 }
14952 14952
14953 function native__HTMLMediaElementWrappingImplementation__get__HTMLMediaElement_s rc(_this) { 14953 function native__HTMLMediaElementWrappingImplementation__get_src(_this) {
14954 try { 14954 try {
14955 return __dom_wrap(_this.$dom.src); 14955 return __dom_wrap(_this.$dom.src);
14956 } catch (e) { 14956 } catch (e) {
14957 throw __dom_wrap_exception(e); 14957 throw __dom_wrap_exception(e);
14958 } 14958 }
14959 } 14959 }
14960 14960
14961 function native__HTMLMediaElementWrappingImplementation__set__HTMLMediaElement_s rc(_this, value) { 14961 function native__HTMLMediaElementWrappingImplementation__set_src(_this, value) {
14962 try { 14962 try {
14963 _this.$dom.src = __dom_unwrap(value); 14963 _this.$dom.src = __dom_unwrap(value);
14964 } catch (e) { 14964 } catch (e) {
14965 throw __dom_wrap_exception(e); 14965 throw __dom_wrap_exception(e);
14966 } 14966 }
14967 } 14967 }
14968 14968
14969 function native__HTMLMediaElementWrappingImplementation__get__HTMLMediaElement_s tartTime(_this) { 14969 function native__HTMLMediaElementWrappingImplementation__get_startTime(_this) {
14970 try { 14970 try {
14971 return __dom_wrap(_this.$dom.startTime); 14971 return __dom_wrap(_this.$dom.startTime);
14972 } catch (e) { 14972 } catch (e) {
14973 throw __dom_wrap_exception(e); 14973 throw __dom_wrap_exception(e);
14974 } 14974 }
14975 } 14975 }
14976 14976
14977 function native__HTMLMediaElementWrappingImplementation__get__HTMLMediaElement_v olume(_this) { 14977 function native__HTMLMediaElementWrappingImplementation__get_volume(_this) {
14978 try { 14978 try {
14979 return __dom_wrap(_this.$dom.volume); 14979 return __dom_wrap(_this.$dom.volume);
14980 } catch (e) { 14980 } catch (e) {
14981 throw __dom_wrap_exception(e); 14981 throw __dom_wrap_exception(e);
14982 } 14982 }
14983 } 14983 }
14984 14984
14985 function native__HTMLMediaElementWrappingImplementation__set__HTMLMediaElement_v olume(_this, value) { 14985 function native__HTMLMediaElementWrappingImplementation__set_volume(_this, value ) {
14986 try { 14986 try {
14987 _this.$dom.volume = __dom_unwrap(value); 14987 _this.$dom.volume = __dom_unwrap(value);
14988 } catch (e) { 14988 } catch (e) {
14989 throw __dom_wrap_exception(e); 14989 throw __dom_wrap_exception(e);
14990 } 14990 }
14991 } 14991 }
14992 14992
14993 function native__HTMLMediaElementWrappingImplementation__get__HTMLMediaElement_w ebkitAudioDecodedByteCount(_this) { 14993 function native__HTMLMediaElementWrappingImplementation__get_webkitAudioDecodedB yteCount(_this) {
14994 try { 14994 try {
14995 return __dom_wrap(_this.$dom.webkitAudioDecodedByteCount); 14995 return __dom_wrap(_this.$dom.webkitAudioDecodedByteCount);
14996 } catch (e) { 14996 } catch (e) {
14997 throw __dom_wrap_exception(e); 14997 throw __dom_wrap_exception(e);
14998 } 14998 }
14999 } 14999 }
15000 15000
15001 function native__HTMLMediaElementWrappingImplementation__get__HTMLMediaElement_w ebkitClosedCaptionsVisible(_this) { 15001 function native__HTMLMediaElementWrappingImplementation__get_webkitClosedCaption sVisible(_this) {
15002 try { 15002 try {
15003 return __dom_wrap(_this.$dom.webkitClosedCaptionsVisible); 15003 return __dom_wrap(_this.$dom.webkitClosedCaptionsVisible);
15004 } catch (e) { 15004 } catch (e) {
15005 throw __dom_wrap_exception(e); 15005 throw __dom_wrap_exception(e);
15006 } 15006 }
15007 } 15007 }
15008 15008
15009 function native__HTMLMediaElementWrappingImplementation__set__HTMLMediaElement_w ebkitClosedCaptionsVisible(_this, value) { 15009 function native__HTMLMediaElementWrappingImplementation__set_webkitClosedCaption sVisible(_this, value) {
15010 try { 15010 try {
15011 _this.$dom.webkitClosedCaptionsVisible = __dom_unwrap(value); 15011 _this.$dom.webkitClosedCaptionsVisible = __dom_unwrap(value);
15012 } catch (e) { 15012 } catch (e) {
15013 throw __dom_wrap_exception(e); 15013 throw __dom_wrap_exception(e);
15014 } 15014 }
15015 } 15015 }
15016 15016
15017 function native__HTMLMediaElementWrappingImplementation__get__HTMLMediaElement_w ebkitHasClosedCaptions(_this) { 15017 function native__HTMLMediaElementWrappingImplementation__get_webkitHasClosedCapt ions(_this) {
15018 try { 15018 try {
15019 return __dom_wrap(_this.$dom.webkitHasClosedCaptions); 15019 return __dom_wrap(_this.$dom.webkitHasClosedCaptions);
15020 } catch (e) { 15020 } catch (e) {
15021 throw __dom_wrap_exception(e); 15021 throw __dom_wrap_exception(e);
15022 } 15022 }
15023 } 15023 }
15024 15024
15025 function native__HTMLMediaElementWrappingImplementation__get__HTMLMediaElement_w ebkitPreservesPitch(_this) { 15025 function native__HTMLMediaElementWrappingImplementation__get_webkitPreservesPitc h(_this) {
15026 try { 15026 try {
15027 return __dom_wrap(_this.$dom.webkitPreservesPitch); 15027 return __dom_wrap(_this.$dom.webkitPreservesPitch);
15028 } catch (e) { 15028 } catch (e) {
15029 throw __dom_wrap_exception(e); 15029 throw __dom_wrap_exception(e);
15030 } 15030 }
15031 } 15031 }
15032 15032
15033 function native__HTMLMediaElementWrappingImplementation__set__HTMLMediaElement_w ebkitPreservesPitch(_this, value) { 15033 function native__HTMLMediaElementWrappingImplementation__set_webkitPreservesPitc h(_this, value) {
15034 try { 15034 try {
15035 _this.$dom.webkitPreservesPitch = __dom_unwrap(value); 15035 _this.$dom.webkitPreservesPitch = __dom_unwrap(value);
15036 } catch (e) { 15036 } catch (e) {
15037 throw __dom_wrap_exception(e); 15037 throw __dom_wrap_exception(e);
15038 } 15038 }
15039 } 15039 }
15040 15040
15041 function native__HTMLMediaElementWrappingImplementation__get__HTMLMediaElement_w ebkitVideoDecodedByteCount(_this) { 15041 function native__HTMLMediaElementWrappingImplementation__get_webkitVideoDecodedB yteCount(_this) {
15042 try { 15042 try {
15043 return __dom_wrap(_this.$dom.webkitVideoDecodedByteCount); 15043 return __dom_wrap(_this.$dom.webkitVideoDecodedByteCount);
15044 } catch (e) { 15044 } catch (e) {
15045 throw __dom_wrap_exception(e); 15045 throw __dom_wrap_exception(e);
15046 } 15046 }
15047 } 15047 }
15048 15048
15049 function native__HTMLMediaElementWrappingImplementation__canPlayType(_this, type ) { 15049 function native__HTMLMediaElementWrappingImplementation__canPlayType(_this, type ) {
15050 try { 15050 try {
15051 return __dom_wrap(_this.$dom.canPlayType(__dom_unwrap(type))); 15051 return __dom_wrap(_this.$dom.canPlayType(__dom_unwrap(type)));
(...skipping 19 matching lines...) Expand all
15071 } 15071 }
15072 15072
15073 function native__HTMLMediaElementWrappingImplementation__play(_this) { 15073 function native__HTMLMediaElementWrappingImplementation__play(_this) {
15074 try { 15074 try {
15075 return __dom_wrap(_this.$dom.play()); 15075 return __dom_wrap(_this.$dom.play());
15076 } catch (e) { 15076 } catch (e) {
15077 throw __dom_wrap_exception(e); 15077 throw __dom_wrap_exception(e);
15078 } 15078 }
15079 } 15079 }
15080 15080
15081 function native__HTMLMenuElementWrappingImplementation__get__HTMLMenuElement_com pact(_this) { 15081 function native__HTMLMenuElementWrappingImplementation__get_compact(_this) {
15082 try { 15082 try {
15083 return __dom_wrap(_this.$dom.compact); 15083 return __dom_wrap(_this.$dom.compact);
15084 } catch (e) { 15084 } catch (e) {
15085 throw __dom_wrap_exception(e); 15085 throw __dom_wrap_exception(e);
15086 } 15086 }
15087 } 15087 }
15088 15088
15089 function native__HTMLMenuElementWrappingImplementation__set__HTMLMenuElement_com pact(_this, value) { 15089 function native__HTMLMenuElementWrappingImplementation__set_compact(_this, value ) {
15090 try { 15090 try {
15091 _this.$dom.compact = __dom_unwrap(value); 15091 _this.$dom.compact = __dom_unwrap(value);
15092 } catch (e) { 15092 } catch (e) {
15093 throw __dom_wrap_exception(e); 15093 throw __dom_wrap_exception(e);
15094 } 15094 }
15095 } 15095 }
15096 15096
15097 function native__HTMLMetaElementWrappingImplementation__get__HTMLMetaElement_con tent(_this) { 15097 function native__HTMLMetaElementWrappingImplementation__get_content(_this) {
15098 try { 15098 try {
15099 return __dom_wrap(_this.$dom.content); 15099 return __dom_wrap(_this.$dom.content);
15100 } catch (e) { 15100 } catch (e) {
15101 throw __dom_wrap_exception(e); 15101 throw __dom_wrap_exception(e);
15102 } 15102 }
15103 } 15103 }
15104 15104
15105 function native__HTMLMetaElementWrappingImplementation__set__HTMLMetaElement_con tent(_this, value) { 15105 function native__HTMLMetaElementWrappingImplementation__set_content(_this, value ) {
15106 try { 15106 try {
15107 _this.$dom.content = __dom_unwrap(value); 15107 _this.$dom.content = __dom_unwrap(value);
15108 } catch (e) { 15108 } catch (e) {
15109 throw __dom_wrap_exception(e); 15109 throw __dom_wrap_exception(e);
15110 } 15110 }
15111 } 15111 }
15112 15112
15113 function native__HTMLMetaElementWrappingImplementation__get__HTMLMetaElement_htt pEquiv(_this) { 15113 function native__HTMLMetaElementWrappingImplementation__get_httpEquiv(_this) {
15114 try { 15114 try {
15115 return __dom_wrap(_this.$dom.httpEquiv); 15115 return __dom_wrap(_this.$dom.httpEquiv);
15116 } catch (e) { 15116 } catch (e) {
15117 throw __dom_wrap_exception(e); 15117 throw __dom_wrap_exception(e);
15118 } 15118 }
15119 } 15119 }
15120 15120
15121 function native__HTMLMetaElementWrappingImplementation__set__HTMLMetaElement_htt pEquiv(_this, value) { 15121 function native__HTMLMetaElementWrappingImplementation__set_httpEquiv(_this, val ue) {
15122 try { 15122 try {
15123 _this.$dom.httpEquiv = __dom_unwrap(value); 15123 _this.$dom.httpEquiv = __dom_unwrap(value);
15124 } catch (e) { 15124 } catch (e) {
15125 throw __dom_wrap_exception(e); 15125 throw __dom_wrap_exception(e);
15126 } 15126 }
15127 } 15127 }
15128 15128
15129 function native__HTMLMetaElementWrappingImplementation__get__HTMLMetaElement_nam e(_this) { 15129 function native__HTMLMetaElementWrappingImplementation__get_name(_this) {
15130 try { 15130 try {
15131 return __dom_wrap(_this.$dom.name); 15131 return __dom_wrap(_this.$dom.name);
15132 } catch (e) { 15132 } catch (e) {
15133 throw __dom_wrap_exception(e); 15133 throw __dom_wrap_exception(e);
15134 } 15134 }
15135 } 15135 }
15136 15136
15137 function native__HTMLMetaElementWrappingImplementation__set__HTMLMetaElement_nam e(_this, value) { 15137 function native__HTMLMetaElementWrappingImplementation__set_name(_this, value) {
15138 try { 15138 try {
15139 _this.$dom.name = __dom_unwrap(value); 15139 _this.$dom.name = __dom_unwrap(value);
15140 } catch (e) { 15140 } catch (e) {
15141 throw __dom_wrap_exception(e); 15141 throw __dom_wrap_exception(e);
15142 } 15142 }
15143 } 15143 }
15144 15144
15145 function native__HTMLMetaElementWrappingImplementation__get__HTMLMetaElement_sch eme(_this) { 15145 function native__HTMLMetaElementWrappingImplementation__get_scheme(_this) {
15146 try { 15146 try {
15147 return __dom_wrap(_this.$dom.scheme); 15147 return __dom_wrap(_this.$dom.scheme);
15148 } catch (e) { 15148 } catch (e) {
15149 throw __dom_wrap_exception(e); 15149 throw __dom_wrap_exception(e);
15150 } 15150 }
15151 } 15151 }
15152 15152
15153 function native__HTMLMetaElementWrappingImplementation__set__HTMLMetaElement_sch eme(_this, value) { 15153 function native__HTMLMetaElementWrappingImplementation__set_scheme(_this, value) {
15154 try { 15154 try {
15155 _this.$dom.scheme = __dom_unwrap(value); 15155 _this.$dom.scheme = __dom_unwrap(value);
15156 } catch (e) { 15156 } catch (e) {
15157 throw __dom_wrap_exception(e); 15157 throw __dom_wrap_exception(e);
15158 } 15158 }
15159 } 15159 }
15160 15160
15161 function native__HTMLMeterElementWrappingImplementation__get__HTMLMeterElement_f orm(_this) { 15161 function native__HTMLMeterElementWrappingImplementation__get_form(_this) {
15162 try { 15162 try {
15163 return __dom_wrap(_this.$dom.form); 15163 return __dom_wrap(_this.$dom.form);
15164 } catch (e) { 15164 } catch (e) {
15165 throw __dom_wrap_exception(e); 15165 throw __dom_wrap_exception(e);
15166 } 15166 }
15167 } 15167 }
15168 15168
15169 function native__HTMLMeterElementWrappingImplementation__get__HTMLMeterElement_h igh(_this) { 15169 function native__HTMLMeterElementWrappingImplementation__get_high(_this) {
15170 try { 15170 try {
15171 return __dom_wrap(_this.$dom.high); 15171 return __dom_wrap(_this.$dom.high);
15172 } catch (e) { 15172 } catch (e) {
15173 throw __dom_wrap_exception(e); 15173 throw __dom_wrap_exception(e);
15174 } 15174 }
15175 } 15175 }
15176 15176
15177 function native__HTMLMeterElementWrappingImplementation__set__HTMLMeterElement_h igh(_this, value) { 15177 function native__HTMLMeterElementWrappingImplementation__set_high(_this, value) {
15178 try { 15178 try {
15179 _this.$dom.high = __dom_unwrap(value); 15179 _this.$dom.high = __dom_unwrap(value);
15180 } catch (e) { 15180 } catch (e) {
15181 throw __dom_wrap_exception(e); 15181 throw __dom_wrap_exception(e);
15182 } 15182 }
15183 } 15183 }
15184 15184
15185 function native__HTMLMeterElementWrappingImplementation__get__HTMLMeterElement_l abels(_this) { 15185 function native__HTMLMeterElementWrappingImplementation__get_labels(_this) {
15186 try { 15186 try {
15187 return __dom_wrap(_this.$dom.labels); 15187 return __dom_wrap(_this.$dom.labels);
15188 } catch (e) { 15188 } catch (e) {
15189 throw __dom_wrap_exception(e); 15189 throw __dom_wrap_exception(e);
15190 } 15190 }
15191 } 15191 }
15192 15192
15193 function native__HTMLMeterElementWrappingImplementation__get__HTMLMeterElement_l ow(_this) { 15193 function native__HTMLMeterElementWrappingImplementation__get_low(_this) {
15194 try { 15194 try {
15195 return __dom_wrap(_this.$dom.low); 15195 return __dom_wrap(_this.$dom.low);
15196 } catch (e) { 15196 } catch (e) {
15197 throw __dom_wrap_exception(e); 15197 throw __dom_wrap_exception(e);
15198 } 15198 }
15199 } 15199 }
15200 15200
15201 function native__HTMLMeterElementWrappingImplementation__set__HTMLMeterElement_l ow(_this, value) { 15201 function native__HTMLMeterElementWrappingImplementation__set_low(_this, value) {
15202 try { 15202 try {
15203 _this.$dom.low = __dom_unwrap(value); 15203 _this.$dom.low = __dom_unwrap(value);
15204 } catch (e) { 15204 } catch (e) {
15205 throw __dom_wrap_exception(e); 15205 throw __dom_wrap_exception(e);
15206 } 15206 }
15207 } 15207 }
15208 15208
15209 function native__HTMLMeterElementWrappingImplementation__get__HTMLMeterElement_m ax(_this) { 15209 function native__HTMLMeterElementWrappingImplementation__get_max(_this) {
15210 try { 15210 try {
15211 return __dom_wrap(_this.$dom.max); 15211 return __dom_wrap(_this.$dom.max);
15212 } catch (e) { 15212 } catch (e) {
15213 throw __dom_wrap_exception(e); 15213 throw __dom_wrap_exception(e);
15214 } 15214 }
15215 } 15215 }
15216 15216
15217 function native__HTMLMeterElementWrappingImplementation__set__HTMLMeterElement_m ax(_this, value) { 15217 function native__HTMLMeterElementWrappingImplementation__set_max(_this, value) {
15218 try { 15218 try {
15219 _this.$dom.max = __dom_unwrap(value); 15219 _this.$dom.max = __dom_unwrap(value);
15220 } catch (e) { 15220 } catch (e) {
15221 throw __dom_wrap_exception(e); 15221 throw __dom_wrap_exception(e);
15222 } 15222 }
15223 } 15223 }
15224 15224
15225 function native__HTMLMeterElementWrappingImplementation__get__HTMLMeterElement_m in(_this) { 15225 function native__HTMLMeterElementWrappingImplementation__get_min(_this) {
15226 try { 15226 try {
15227 return __dom_wrap(_this.$dom.min); 15227 return __dom_wrap(_this.$dom.min);
15228 } catch (e) { 15228 } catch (e) {
15229 throw __dom_wrap_exception(e); 15229 throw __dom_wrap_exception(e);
15230 } 15230 }
15231 } 15231 }
15232 15232
15233 function native__HTMLMeterElementWrappingImplementation__set__HTMLMeterElement_m in(_this, value) { 15233 function native__HTMLMeterElementWrappingImplementation__set_min(_this, value) {
15234 try { 15234 try {
15235 _this.$dom.min = __dom_unwrap(value); 15235 _this.$dom.min = __dom_unwrap(value);
15236 } catch (e) { 15236 } catch (e) {
15237 throw __dom_wrap_exception(e); 15237 throw __dom_wrap_exception(e);
15238 } 15238 }
15239 } 15239 }
15240 15240
15241 function native__HTMLMeterElementWrappingImplementation__get__HTMLMeterElement_o ptimum(_this) { 15241 function native__HTMLMeterElementWrappingImplementation__get_optimum(_this) {
15242 try { 15242 try {
15243 return __dom_wrap(_this.$dom.optimum); 15243 return __dom_wrap(_this.$dom.optimum);
15244 } catch (e) { 15244 } catch (e) {
15245 throw __dom_wrap_exception(e); 15245 throw __dom_wrap_exception(e);
15246 } 15246 }
15247 } 15247 }
15248 15248
15249 function native__HTMLMeterElementWrappingImplementation__set__HTMLMeterElement_o ptimum(_this, value) { 15249 function native__HTMLMeterElementWrappingImplementation__set_optimum(_this, valu e) {
15250 try { 15250 try {
15251 _this.$dom.optimum = __dom_unwrap(value); 15251 _this.$dom.optimum = __dom_unwrap(value);
15252 } catch (e) { 15252 } catch (e) {
15253 throw __dom_wrap_exception(e); 15253 throw __dom_wrap_exception(e);
15254 } 15254 }
15255 } 15255 }
15256 15256
15257 function native__HTMLMeterElementWrappingImplementation__get__HTMLMeterElement_v alue(_this) { 15257 function native__HTMLMeterElementWrappingImplementation__get_value(_this) {
15258 try { 15258 try {
15259 return __dom_wrap(_this.$dom.value); 15259 return __dom_wrap(_this.$dom.value);
15260 } catch (e) { 15260 } catch (e) {
15261 throw __dom_wrap_exception(e); 15261 throw __dom_wrap_exception(e);
15262 } 15262 }
15263 } 15263 }
15264 15264
15265 function native__HTMLMeterElementWrappingImplementation__set__HTMLMeterElement_v alue(_this, value) { 15265 function native__HTMLMeterElementWrappingImplementation__set_value(_this, value) {
15266 try { 15266 try {
15267 _this.$dom.value = __dom_unwrap(value); 15267 _this.$dom.value = __dom_unwrap(value);
15268 } catch (e) { 15268 } catch (e) {
15269 throw __dom_wrap_exception(e); 15269 throw __dom_wrap_exception(e);
15270 } 15270 }
15271 } 15271 }
15272 15272
15273 function native__HTMLModElementWrappingImplementation__get__HTMLModElement_cite( _this) { 15273 function native__HTMLModElementWrappingImplementation__get_cite(_this) {
15274 try { 15274 try {
15275 return __dom_wrap(_this.$dom.cite); 15275 return __dom_wrap(_this.$dom.cite);
15276 } catch (e) { 15276 } catch (e) {
15277 throw __dom_wrap_exception(e); 15277 throw __dom_wrap_exception(e);
15278 } 15278 }
15279 } 15279 }
15280 15280
15281 function native__HTMLModElementWrappingImplementation__set__HTMLModElement_cite( _this, value) { 15281 function native__HTMLModElementWrappingImplementation__set_cite(_this, value) {
15282 try { 15282 try {
15283 _this.$dom.cite = __dom_unwrap(value); 15283 _this.$dom.cite = __dom_unwrap(value);
15284 } catch (e) { 15284 } catch (e) {
15285 throw __dom_wrap_exception(e); 15285 throw __dom_wrap_exception(e);
15286 } 15286 }
15287 } 15287 }
15288 15288
15289 function native__HTMLModElementWrappingImplementation__get__HTMLModElement_dateT ime(_this) { 15289 function native__HTMLModElementWrappingImplementation__get_dateTime(_this) {
15290 try { 15290 try {
15291 return __dom_wrap(_this.$dom.dateTime); 15291 return __dom_wrap(_this.$dom.dateTime);
15292 } catch (e) { 15292 } catch (e) {
15293 throw __dom_wrap_exception(e); 15293 throw __dom_wrap_exception(e);
15294 } 15294 }
15295 } 15295 }
15296 15296
15297 function native__HTMLModElementWrappingImplementation__set__HTMLModElement_dateT ime(_this, value) { 15297 function native__HTMLModElementWrappingImplementation__set_dateTime(_this, value ) {
15298 try { 15298 try {
15299 _this.$dom.dateTime = __dom_unwrap(value); 15299 _this.$dom.dateTime = __dom_unwrap(value);
15300 } catch (e) { 15300 } catch (e) {
15301 throw __dom_wrap_exception(e); 15301 throw __dom_wrap_exception(e);
15302 } 15302 }
15303 } 15303 }
15304 15304
15305 function native__HTMLOListElementWrappingImplementation__get__HTMLOListElement_c ompact(_this) { 15305 function native__HTMLOListElementWrappingImplementation__get_compact(_this) {
15306 try { 15306 try {
15307 return __dom_wrap(_this.$dom.compact); 15307 return __dom_wrap(_this.$dom.compact);
15308 } catch (e) { 15308 } catch (e) {
15309 throw __dom_wrap_exception(e); 15309 throw __dom_wrap_exception(e);
15310 } 15310 }
15311 } 15311 }
15312 15312
15313 function native__HTMLOListElementWrappingImplementation__set__HTMLOListElement_c ompact(_this, value) { 15313 function native__HTMLOListElementWrappingImplementation__set_compact(_this, valu e) {
15314 try { 15314 try {
15315 _this.$dom.compact = __dom_unwrap(value); 15315 _this.$dom.compact = __dom_unwrap(value);
15316 } catch (e) { 15316 } catch (e) {
15317 throw __dom_wrap_exception(e); 15317 throw __dom_wrap_exception(e);
15318 } 15318 }
15319 } 15319 }
15320 15320
15321 function native__HTMLOListElementWrappingImplementation__get__HTMLOListElement_s tart(_this) { 15321 function native__HTMLOListElementWrappingImplementation__get_start(_this) {
15322 try { 15322 try {
15323 return __dom_wrap(_this.$dom.start); 15323 return __dom_wrap(_this.$dom.start);
15324 } catch (e) { 15324 } catch (e) {
15325 throw __dom_wrap_exception(e); 15325 throw __dom_wrap_exception(e);
15326 } 15326 }
15327 } 15327 }
15328 15328
15329 function native__HTMLOListElementWrappingImplementation__set__HTMLOListElement_s tart(_this, value) { 15329 function native__HTMLOListElementWrappingImplementation__set_start(_this, value) {
15330 try { 15330 try {
15331 _this.$dom.start = __dom_unwrap(value); 15331 _this.$dom.start = __dom_unwrap(value);
15332 } catch (e) { 15332 } catch (e) {
15333 throw __dom_wrap_exception(e); 15333 throw __dom_wrap_exception(e);
15334 } 15334 }
15335 } 15335 }
15336 15336
15337 function native__HTMLOListElementWrappingImplementation__get__HTMLOListElement_t ype(_this) { 15337 function native__HTMLOListElementWrappingImplementation__get_type(_this) {
15338 try { 15338 try {
15339 return __dom_wrap(_this.$dom.type); 15339 return __dom_wrap(_this.$dom.type);
15340 } catch (e) { 15340 } catch (e) {
15341 throw __dom_wrap_exception(e); 15341 throw __dom_wrap_exception(e);
15342 } 15342 }
15343 } 15343 }
15344 15344
15345 function native__HTMLOListElementWrappingImplementation__set__HTMLOListElement_t ype(_this, value) { 15345 function native__HTMLOListElementWrappingImplementation__set_type(_this, value) {
15346 try { 15346 try {
15347 _this.$dom.type = __dom_unwrap(value); 15347 _this.$dom.type = __dom_unwrap(value);
15348 } catch (e) { 15348 } catch (e) {
15349 throw __dom_wrap_exception(e); 15349 throw __dom_wrap_exception(e);
15350 } 15350 }
15351 } 15351 }
15352 15352
15353 function native__HTMLObjectElementWrappingImplementation__get__HTMLObjectElement _align(_this) { 15353 function native__HTMLObjectElementWrappingImplementation__get_align(_this) {
15354 try { 15354 try {
15355 return __dom_wrap(_this.$dom.align); 15355 return __dom_wrap(_this.$dom.align);
15356 } catch (e) { 15356 } catch (e) {
15357 throw __dom_wrap_exception(e); 15357 throw __dom_wrap_exception(e);
15358 } 15358 }
15359 } 15359 }
15360 15360
15361 function native__HTMLObjectElementWrappingImplementation__set__HTMLObjectElement _align(_this, value) { 15361 function native__HTMLObjectElementWrappingImplementation__set_align(_this, value ) {
15362 try { 15362 try {
15363 _this.$dom.align = __dom_unwrap(value); 15363 _this.$dom.align = __dom_unwrap(value);
15364 } catch (e) { 15364 } catch (e) {
15365 throw __dom_wrap_exception(e); 15365 throw __dom_wrap_exception(e);
15366 } 15366 }
15367 } 15367 }
15368 15368
15369 function native__HTMLObjectElementWrappingImplementation__get__HTMLObjectElement _archive(_this) { 15369 function native__HTMLObjectElementWrappingImplementation__get_archive(_this) {
15370 try { 15370 try {
15371 return __dom_wrap(_this.$dom.archive); 15371 return __dom_wrap(_this.$dom.archive);
15372 } catch (e) { 15372 } catch (e) {
15373 throw __dom_wrap_exception(e); 15373 throw __dom_wrap_exception(e);
15374 } 15374 }
15375 } 15375 }
15376 15376
15377 function native__HTMLObjectElementWrappingImplementation__set__HTMLObjectElement _archive(_this, value) { 15377 function native__HTMLObjectElementWrappingImplementation__set_archive(_this, val ue) {
15378 try { 15378 try {
15379 _this.$dom.archive = __dom_unwrap(value); 15379 _this.$dom.archive = __dom_unwrap(value);
15380 } catch (e) { 15380 } catch (e) {
15381 throw __dom_wrap_exception(e); 15381 throw __dom_wrap_exception(e);
15382 } 15382 }
15383 } 15383 }
15384 15384
15385 function native__HTMLObjectElementWrappingImplementation__get__HTMLObjectElement _border(_this) { 15385 function native__HTMLObjectElementWrappingImplementation__get_border(_this) {
15386 try { 15386 try {
15387 return __dom_wrap(_this.$dom.border); 15387 return __dom_wrap(_this.$dom.border);
15388 } catch (e) { 15388 } catch (e) {
15389 throw __dom_wrap_exception(e); 15389 throw __dom_wrap_exception(e);
15390 } 15390 }
15391 } 15391 }
15392 15392
15393 function native__HTMLObjectElementWrappingImplementation__set__HTMLObjectElement _border(_this, value) { 15393 function native__HTMLObjectElementWrappingImplementation__set_border(_this, valu e) {
15394 try { 15394 try {
15395 _this.$dom.border = __dom_unwrap(value); 15395 _this.$dom.border = __dom_unwrap(value);
15396 } catch (e) { 15396 } catch (e) {
15397 throw __dom_wrap_exception(e); 15397 throw __dom_wrap_exception(e);
15398 } 15398 }
15399 } 15399 }
15400 15400
15401 function native__HTMLObjectElementWrappingImplementation__get__HTMLObjectElement _code(_this) { 15401 function native__HTMLObjectElementWrappingImplementation__get_code(_this) {
15402 try { 15402 try {
15403 return __dom_wrap(_this.$dom.code); 15403 return __dom_wrap(_this.$dom.code);
15404 } catch (e) { 15404 } catch (e) {
15405 throw __dom_wrap_exception(e); 15405 throw __dom_wrap_exception(e);
15406 } 15406 }
15407 } 15407 }
15408 15408
15409 function native__HTMLObjectElementWrappingImplementation__set__HTMLObjectElement _code(_this, value) { 15409 function native__HTMLObjectElementWrappingImplementation__set_code(_this, value) {
15410 try { 15410 try {
15411 _this.$dom.code = __dom_unwrap(value); 15411 _this.$dom.code = __dom_unwrap(value);
15412 } catch (e) { 15412 } catch (e) {
15413 throw __dom_wrap_exception(e); 15413 throw __dom_wrap_exception(e);
15414 } 15414 }
15415 } 15415 }
15416 15416
15417 function native__HTMLObjectElementWrappingImplementation__get__HTMLObjectElement _codeBase(_this) { 15417 function native__HTMLObjectElementWrappingImplementation__get_codeBase(_this) {
15418 try { 15418 try {
15419 return __dom_wrap(_this.$dom.codeBase); 15419 return __dom_wrap(_this.$dom.codeBase);
15420 } catch (e) { 15420 } catch (e) {
15421 throw __dom_wrap_exception(e); 15421 throw __dom_wrap_exception(e);
15422 } 15422 }
15423 } 15423 }
15424 15424
15425 function native__HTMLObjectElementWrappingImplementation__set__HTMLObjectElement _codeBase(_this, value) { 15425 function native__HTMLObjectElementWrappingImplementation__set_codeBase(_this, va lue) {
15426 try { 15426 try {
15427 _this.$dom.codeBase = __dom_unwrap(value); 15427 _this.$dom.codeBase = __dom_unwrap(value);
15428 } catch (e) { 15428 } catch (e) {
15429 throw __dom_wrap_exception(e); 15429 throw __dom_wrap_exception(e);
15430 } 15430 }
15431 } 15431 }
15432 15432
15433 function native__HTMLObjectElementWrappingImplementation__get__HTMLObjectElement _codeType(_this) { 15433 function native__HTMLObjectElementWrappingImplementation__get_codeType(_this) {
15434 try { 15434 try {
15435 return __dom_wrap(_this.$dom.codeType); 15435 return __dom_wrap(_this.$dom.codeType);
15436 } catch (e) { 15436 } catch (e) {
15437 throw __dom_wrap_exception(e); 15437 throw __dom_wrap_exception(e);
15438 } 15438 }
15439 } 15439 }
15440 15440
15441 function native__HTMLObjectElementWrappingImplementation__set__HTMLObjectElement _codeType(_this, value) { 15441 function native__HTMLObjectElementWrappingImplementation__set_codeType(_this, va lue) {
15442 try { 15442 try {
15443 _this.$dom.codeType = __dom_unwrap(value); 15443 _this.$dom.codeType = __dom_unwrap(value);
15444 } catch (e) { 15444 } catch (e) {
15445 throw __dom_wrap_exception(e); 15445 throw __dom_wrap_exception(e);
15446 } 15446 }
15447 } 15447 }
15448 15448
15449 function native__HTMLObjectElementWrappingImplementation__get__HTMLObjectElement _contentDocument(_this) { 15449 function native__HTMLObjectElementWrappingImplementation__get_contentDocument(_t his) {
15450 try { 15450 try {
15451 return __dom_wrap(_this.$dom.contentDocument); 15451 return __dom_wrap(_this.$dom.contentDocument);
15452 } catch (e) { 15452 } catch (e) {
15453 throw __dom_wrap_exception(e); 15453 throw __dom_wrap_exception(e);
15454 } 15454 }
15455 } 15455 }
15456 15456
15457 function native__HTMLObjectElementWrappingImplementation__get__HTMLObjectElement _data(_this) { 15457 function native__HTMLObjectElementWrappingImplementation__get_data(_this) {
15458 try { 15458 try {
15459 return __dom_wrap(_this.$dom.data); 15459 return __dom_wrap(_this.$dom.data);
15460 } catch (e) { 15460 } catch (e) {
15461 throw __dom_wrap_exception(e); 15461 throw __dom_wrap_exception(e);
15462 } 15462 }
15463 } 15463 }
15464 15464
15465 function native__HTMLObjectElementWrappingImplementation__set__HTMLObjectElement _data(_this, value) { 15465 function native__HTMLObjectElementWrappingImplementation__set_data(_this, value) {
15466 try { 15466 try {
15467 _this.$dom.data = __dom_unwrap(value); 15467 _this.$dom.data = __dom_unwrap(value);
15468 } catch (e) { 15468 } catch (e) {
15469 throw __dom_wrap_exception(e); 15469 throw __dom_wrap_exception(e);
15470 } 15470 }
15471 } 15471 }
15472 15472
15473 function native__HTMLObjectElementWrappingImplementation__get__HTMLObjectElement _declare(_this) { 15473 function native__HTMLObjectElementWrappingImplementation__get_declare(_this) {
15474 try { 15474 try {
15475 return __dom_wrap(_this.$dom.declare); 15475 return __dom_wrap(_this.$dom.declare);
15476 } catch (e) { 15476 } catch (e) {
15477 throw __dom_wrap_exception(e); 15477 throw __dom_wrap_exception(e);
15478 } 15478 }
15479 } 15479 }
15480 15480
15481 function native__HTMLObjectElementWrappingImplementation__set__HTMLObjectElement _declare(_this, value) { 15481 function native__HTMLObjectElementWrappingImplementation__set_declare(_this, val ue) {
15482 try { 15482 try {
15483 _this.$dom.declare = __dom_unwrap(value); 15483 _this.$dom.declare = __dom_unwrap(value);
15484 } catch (e) { 15484 } catch (e) {
15485 throw __dom_wrap_exception(e); 15485 throw __dom_wrap_exception(e);
15486 } 15486 }
15487 } 15487 }
15488 15488
15489 function native__HTMLObjectElementWrappingImplementation__get__HTMLObjectElement _form(_this) { 15489 function native__HTMLObjectElementWrappingImplementation__get_form(_this) {
15490 try { 15490 try {
15491 return __dom_wrap(_this.$dom.form); 15491 return __dom_wrap(_this.$dom.form);
15492 } catch (e) { 15492 } catch (e) {
15493 throw __dom_wrap_exception(e); 15493 throw __dom_wrap_exception(e);
15494 } 15494 }
15495 } 15495 }
15496 15496
15497 function native__HTMLObjectElementWrappingImplementation__get__HTMLObjectElement _height(_this) { 15497 function native__HTMLObjectElementWrappingImplementation__get_height(_this) {
15498 try { 15498 try {
15499 return __dom_wrap(_this.$dom.height); 15499 return __dom_wrap(_this.$dom.height);
15500 } catch (e) { 15500 } catch (e) {
15501 throw __dom_wrap_exception(e); 15501 throw __dom_wrap_exception(e);
15502 } 15502 }
15503 } 15503 }
15504 15504
15505 function native__HTMLObjectElementWrappingImplementation__set__HTMLObjectElement _height(_this, value) { 15505 function native__HTMLObjectElementWrappingImplementation__set_height(_this, valu e) {
15506 try { 15506 try {
15507 _this.$dom.height = __dom_unwrap(value); 15507 _this.$dom.height = __dom_unwrap(value);
15508 } catch (e) { 15508 } catch (e) {
15509 throw __dom_wrap_exception(e); 15509 throw __dom_wrap_exception(e);
15510 } 15510 }
15511 } 15511 }
15512 15512
15513 function native__HTMLObjectElementWrappingImplementation__get__HTMLObjectElement _hspace(_this) { 15513 function native__HTMLObjectElementWrappingImplementation__get_hspace(_this) {
15514 try { 15514 try {
15515 return __dom_wrap(_this.$dom.hspace); 15515 return __dom_wrap(_this.$dom.hspace);
15516 } catch (e) { 15516 } catch (e) {
15517 throw __dom_wrap_exception(e); 15517 throw __dom_wrap_exception(e);
15518 } 15518 }
15519 } 15519 }
15520 15520
15521 function native__HTMLObjectElementWrappingImplementation__set__HTMLObjectElement _hspace(_this, value) { 15521 function native__HTMLObjectElementWrappingImplementation__set_hspace(_this, valu e) {
15522 try { 15522 try {
15523 _this.$dom.hspace = __dom_unwrap(value); 15523 _this.$dom.hspace = __dom_unwrap(value);
15524 } catch (e) { 15524 } catch (e) {
15525 throw __dom_wrap_exception(e); 15525 throw __dom_wrap_exception(e);
15526 } 15526 }
15527 } 15527 }
15528 15528
15529 function native__HTMLObjectElementWrappingImplementation__get__HTMLObjectElement _name(_this) { 15529 function native__HTMLObjectElementWrappingImplementation__get_name(_this) {
15530 try { 15530 try {
15531 return __dom_wrap(_this.$dom.name); 15531 return __dom_wrap(_this.$dom.name);
15532 } catch (e) { 15532 } catch (e) {
15533 throw __dom_wrap_exception(e); 15533 throw __dom_wrap_exception(e);
15534 } 15534 }
15535 } 15535 }
15536 15536
15537 function native__HTMLObjectElementWrappingImplementation__set__HTMLObjectElement _name(_this, value) { 15537 function native__HTMLObjectElementWrappingImplementation__set_name(_this, value) {
15538 try { 15538 try {
15539 _this.$dom.name = __dom_unwrap(value); 15539 _this.$dom.name = __dom_unwrap(value);
15540 } catch (e) { 15540 } catch (e) {
15541 throw __dom_wrap_exception(e); 15541 throw __dom_wrap_exception(e);
15542 } 15542 }
15543 } 15543 }
15544 15544
15545 function native__HTMLObjectElementWrappingImplementation__get__HTMLObjectElement _standby(_this) { 15545 function native__HTMLObjectElementWrappingImplementation__get_standby(_this) {
15546 try { 15546 try {
15547 return __dom_wrap(_this.$dom.standby); 15547 return __dom_wrap(_this.$dom.standby);
15548 } catch (e) { 15548 } catch (e) {
15549 throw __dom_wrap_exception(e); 15549 throw __dom_wrap_exception(e);
15550 } 15550 }
15551 } 15551 }
15552 15552
15553 function native__HTMLObjectElementWrappingImplementation__set__HTMLObjectElement _standby(_this, value) { 15553 function native__HTMLObjectElementWrappingImplementation__set_standby(_this, val ue) {
15554 try { 15554 try {
15555 _this.$dom.standby = __dom_unwrap(value); 15555 _this.$dom.standby = __dom_unwrap(value);
15556 } catch (e) { 15556 } catch (e) {
15557 throw __dom_wrap_exception(e); 15557 throw __dom_wrap_exception(e);
15558 } 15558 }
15559 } 15559 }
15560 15560
15561 function native__HTMLObjectElementWrappingImplementation__get__HTMLObjectElement _type(_this) { 15561 function native__HTMLObjectElementWrappingImplementation__get_type(_this) {
15562 try { 15562 try {
15563 return __dom_wrap(_this.$dom.type); 15563 return __dom_wrap(_this.$dom.type);
15564 } catch (e) { 15564 } catch (e) {
15565 throw __dom_wrap_exception(e); 15565 throw __dom_wrap_exception(e);
15566 } 15566 }
15567 } 15567 }
15568 15568
15569 function native__HTMLObjectElementWrappingImplementation__set__HTMLObjectElement _type(_this, value) { 15569 function native__HTMLObjectElementWrappingImplementation__set_type(_this, value) {
15570 try { 15570 try {
15571 _this.$dom.type = __dom_unwrap(value); 15571 _this.$dom.type = __dom_unwrap(value);
15572 } catch (e) { 15572 } catch (e) {
15573 throw __dom_wrap_exception(e); 15573 throw __dom_wrap_exception(e);
15574 } 15574 }
15575 } 15575 }
15576 15576
15577 function native__HTMLObjectElementWrappingImplementation__get__HTMLObjectElement _useMap(_this) { 15577 function native__HTMLObjectElementWrappingImplementation__get_useMap(_this) {
15578 try { 15578 try {
15579 return __dom_wrap(_this.$dom.useMap); 15579 return __dom_wrap(_this.$dom.useMap);
15580 } catch (e) { 15580 } catch (e) {
15581 throw __dom_wrap_exception(e); 15581 throw __dom_wrap_exception(e);
15582 } 15582 }
15583 } 15583 }
15584 15584
15585 function native__HTMLObjectElementWrappingImplementation__set__HTMLObjectElement _useMap(_this, value) { 15585 function native__HTMLObjectElementWrappingImplementation__set_useMap(_this, valu e) {
15586 try { 15586 try {
15587 _this.$dom.useMap = __dom_unwrap(value); 15587 _this.$dom.useMap = __dom_unwrap(value);
15588 } catch (e) { 15588 } catch (e) {
15589 throw __dom_wrap_exception(e); 15589 throw __dom_wrap_exception(e);
15590 } 15590 }
15591 } 15591 }
15592 15592
15593 function native__HTMLObjectElementWrappingImplementation__get__HTMLObjectElement _validationMessage(_this) { 15593 function native__HTMLObjectElementWrappingImplementation__get_validationMessage( _this) {
15594 try { 15594 try {
15595 return __dom_wrap(_this.$dom.validationMessage); 15595 return __dom_wrap(_this.$dom.validationMessage);
15596 } catch (e) { 15596 } catch (e) {
15597 throw __dom_wrap_exception(e); 15597 throw __dom_wrap_exception(e);
15598 } 15598 }
15599 } 15599 }
15600 15600
15601 function native__HTMLObjectElementWrappingImplementation__get__HTMLObjectElement _validity(_this) { 15601 function native__HTMLObjectElementWrappingImplementation__get_validity(_this) {
15602 try { 15602 try {
15603 return __dom_wrap(_this.$dom.validity); 15603 return __dom_wrap(_this.$dom.validity);
15604 } catch (e) { 15604 } catch (e) {
15605 throw __dom_wrap_exception(e); 15605 throw __dom_wrap_exception(e);
15606 } 15606 }
15607 } 15607 }
15608 15608
15609 function native__HTMLObjectElementWrappingImplementation__get__HTMLObjectElement _vspace(_this) { 15609 function native__HTMLObjectElementWrappingImplementation__get_vspace(_this) {
15610 try { 15610 try {
15611 return __dom_wrap(_this.$dom.vspace); 15611 return __dom_wrap(_this.$dom.vspace);
15612 } catch (e) { 15612 } catch (e) {
15613 throw __dom_wrap_exception(e); 15613 throw __dom_wrap_exception(e);
15614 } 15614 }
15615 } 15615 }
15616 15616
15617 function native__HTMLObjectElementWrappingImplementation__set__HTMLObjectElement _vspace(_this, value) { 15617 function native__HTMLObjectElementWrappingImplementation__set_vspace(_this, valu e) {
15618 try { 15618 try {
15619 _this.$dom.vspace = __dom_unwrap(value); 15619 _this.$dom.vspace = __dom_unwrap(value);
15620 } catch (e) { 15620 } catch (e) {
15621 throw __dom_wrap_exception(e); 15621 throw __dom_wrap_exception(e);
15622 } 15622 }
15623 } 15623 }
15624 15624
15625 function native__HTMLObjectElementWrappingImplementation__get__HTMLObjectElement _width(_this) { 15625 function native__HTMLObjectElementWrappingImplementation__get_width(_this) {
15626 try { 15626 try {
15627 return __dom_wrap(_this.$dom.width); 15627 return __dom_wrap(_this.$dom.width);
15628 } catch (e) { 15628 } catch (e) {
15629 throw __dom_wrap_exception(e); 15629 throw __dom_wrap_exception(e);
15630 } 15630 }
15631 } 15631 }
15632 15632
15633 function native__HTMLObjectElementWrappingImplementation__set__HTMLObjectElement _width(_this, value) { 15633 function native__HTMLObjectElementWrappingImplementation__set_width(_this, value ) {
15634 try { 15634 try {
15635 _this.$dom.width = __dom_unwrap(value); 15635 _this.$dom.width = __dom_unwrap(value);
15636 } catch (e) { 15636 } catch (e) {
15637 throw __dom_wrap_exception(e); 15637 throw __dom_wrap_exception(e);
15638 } 15638 }
15639 } 15639 }
15640 15640
15641 function native__HTMLObjectElementWrappingImplementation__get__HTMLObjectElement _willValidate(_this) { 15641 function native__HTMLObjectElementWrappingImplementation__get_willValidate(_this ) {
15642 try { 15642 try {
15643 return __dom_wrap(_this.$dom.willValidate); 15643 return __dom_wrap(_this.$dom.willValidate);
15644 } catch (e) { 15644 } catch (e) {
15645 throw __dom_wrap_exception(e); 15645 throw __dom_wrap_exception(e);
15646 } 15646 }
15647 } 15647 }
15648 15648
15649 function native__HTMLObjectElementWrappingImplementation__checkValidity(_this) { 15649 function native__HTMLObjectElementWrappingImplementation__checkValidity(_this) {
15650 try { 15650 try {
15651 return __dom_wrap(_this.$dom.checkValidity()); 15651 return __dom_wrap(_this.$dom.checkValidity());
15652 } catch (e) { 15652 } catch (e) {
15653 throw __dom_wrap_exception(e); 15653 throw __dom_wrap_exception(e);
15654 } 15654 }
15655 } 15655 }
15656 15656
15657 function native__HTMLObjectElementWrappingImplementation__setCustomValidity(_thi s, error) { 15657 function native__HTMLObjectElementWrappingImplementation__setCustomValidity(_thi s, error) {
15658 try { 15658 try {
15659 return __dom_wrap(_this.$dom.setCustomValidity(__dom_unwrap(error))); 15659 return __dom_wrap(_this.$dom.setCustomValidity(__dom_unwrap(error)));
15660 } catch (e) { 15660 } catch (e) {
15661 throw __dom_wrap_exception(e); 15661 throw __dom_wrap_exception(e);
15662 } 15662 }
15663 } 15663 }
15664 15664
15665 function native__HTMLOptGroupElementWrappingImplementation__get__HTMLOptGroupEle ment_disabled(_this) { 15665 function native__HTMLOptGroupElementWrappingImplementation__get_disabled(_this) {
15666 try { 15666 try {
15667 return __dom_wrap(_this.$dom.disabled); 15667 return __dom_wrap(_this.$dom.disabled);
15668 } catch (e) { 15668 } catch (e) {
15669 throw __dom_wrap_exception(e); 15669 throw __dom_wrap_exception(e);
15670 } 15670 }
15671 } 15671 }
15672 15672
15673 function native__HTMLOptGroupElementWrappingImplementation__set__HTMLOptGroupEle ment_disabled(_this, value) { 15673 function native__HTMLOptGroupElementWrappingImplementation__set_disabled(_this, value) {
15674 try { 15674 try {
15675 _this.$dom.disabled = __dom_unwrap(value); 15675 _this.$dom.disabled = __dom_unwrap(value);
15676 } catch (e) { 15676 } catch (e) {
15677 throw __dom_wrap_exception(e); 15677 throw __dom_wrap_exception(e);
15678 } 15678 }
15679 } 15679 }
15680 15680
15681 function native__HTMLOptGroupElementWrappingImplementation__get__HTMLOptGroupEle ment_label(_this) { 15681 function native__HTMLOptGroupElementWrappingImplementation__get_label(_this) {
15682 try { 15682 try {
15683 return __dom_wrap(_this.$dom.label); 15683 return __dom_wrap(_this.$dom.label);
15684 } catch (e) { 15684 } catch (e) {
15685 throw __dom_wrap_exception(e); 15685 throw __dom_wrap_exception(e);
15686 } 15686 }
15687 } 15687 }
15688 15688
15689 function native__HTMLOptGroupElementWrappingImplementation__set__HTMLOptGroupEle ment_label(_this, value) { 15689 function native__HTMLOptGroupElementWrappingImplementation__set_label(_this, val ue) {
15690 try { 15690 try {
15691 _this.$dom.label = __dom_unwrap(value); 15691 _this.$dom.label = __dom_unwrap(value);
15692 } catch (e) { 15692 } catch (e) {
15693 throw __dom_wrap_exception(e); 15693 throw __dom_wrap_exception(e);
15694 } 15694 }
15695 } 15695 }
15696 15696
15697 function native__HTMLOptionElementWrappingImplementation__get__HTMLOptionElement _defaultSelected(_this) { 15697 function native__HTMLOptionElementWrappingImplementation__get_defaultSelected(_t his) {
15698 try { 15698 try {
15699 return __dom_wrap(_this.$dom.defaultSelected); 15699 return __dom_wrap(_this.$dom.defaultSelected);
15700 } catch (e) { 15700 } catch (e) {
15701 throw __dom_wrap_exception(e); 15701 throw __dom_wrap_exception(e);
15702 } 15702 }
15703 } 15703 }
15704 15704
15705 function native__HTMLOptionElementWrappingImplementation__set__HTMLOptionElement _defaultSelected(_this, value) { 15705 function native__HTMLOptionElementWrappingImplementation__set_defaultSelected(_t his, value) {
15706 try { 15706 try {
15707 _this.$dom.defaultSelected = __dom_unwrap(value); 15707 _this.$dom.defaultSelected = __dom_unwrap(value);
15708 } catch (e) { 15708 } catch (e) {
15709 throw __dom_wrap_exception(e); 15709 throw __dom_wrap_exception(e);
15710 } 15710 }
15711 } 15711 }
15712 15712
15713 function native__HTMLOptionElementWrappingImplementation__get__HTMLOptionElement _disabled(_this) { 15713 function native__HTMLOptionElementWrappingImplementation__get_disabled(_this) {
15714 try { 15714 try {
15715 return __dom_wrap(_this.$dom.disabled); 15715 return __dom_wrap(_this.$dom.disabled);
15716 } catch (e) { 15716 } catch (e) {
15717 throw __dom_wrap_exception(e); 15717 throw __dom_wrap_exception(e);
15718 } 15718 }
15719 } 15719 }
15720 15720
15721 function native__HTMLOptionElementWrappingImplementation__set__HTMLOptionElement _disabled(_this, value) { 15721 function native__HTMLOptionElementWrappingImplementation__set_disabled(_this, va lue) {
15722 try { 15722 try {
15723 _this.$dom.disabled = __dom_unwrap(value); 15723 _this.$dom.disabled = __dom_unwrap(value);
15724 } catch (e) { 15724 } catch (e) {
15725 throw __dom_wrap_exception(e); 15725 throw __dom_wrap_exception(e);
15726 } 15726 }
15727 } 15727 }
15728 15728
15729 function native__HTMLOptionElementWrappingImplementation__get__HTMLOptionElement _form(_this) { 15729 function native__HTMLOptionElementWrappingImplementation__get_form(_this) {
15730 try { 15730 try {
15731 return __dom_wrap(_this.$dom.form); 15731 return __dom_wrap(_this.$dom.form);
15732 } catch (e) { 15732 } catch (e) {
15733 throw __dom_wrap_exception(e); 15733 throw __dom_wrap_exception(e);
15734 } 15734 }
15735 } 15735 }
15736 15736
15737 function native__HTMLOptionElementWrappingImplementation__get__HTMLOptionElement _index(_this) { 15737 function native__HTMLOptionElementWrappingImplementation__get_index(_this) {
15738 try { 15738 try {
15739 return __dom_wrap(_this.$dom.index); 15739 return __dom_wrap(_this.$dom.index);
15740 } catch (e) { 15740 } catch (e) {
15741 throw __dom_wrap_exception(e); 15741 throw __dom_wrap_exception(e);
15742 } 15742 }
15743 } 15743 }
15744 15744
15745 function native__HTMLOptionElementWrappingImplementation__get__HTMLOptionElement _label(_this) { 15745 function native__HTMLOptionElementWrappingImplementation__get_label(_this) {
15746 try { 15746 try {
15747 return __dom_wrap(_this.$dom.label); 15747 return __dom_wrap(_this.$dom.label);
15748 } catch (e) { 15748 } catch (e) {
15749 throw __dom_wrap_exception(e); 15749 throw __dom_wrap_exception(e);
15750 } 15750 }
15751 } 15751 }
15752 15752
15753 function native__HTMLOptionElementWrappingImplementation__set__HTMLOptionElement _label(_this, value) { 15753 function native__HTMLOptionElementWrappingImplementation__set_label(_this, value ) {
15754 try { 15754 try {
15755 _this.$dom.label = __dom_unwrap(value); 15755 _this.$dom.label = __dom_unwrap(value);
15756 } catch (e) { 15756 } catch (e) {
15757 throw __dom_wrap_exception(e); 15757 throw __dom_wrap_exception(e);
15758 } 15758 }
15759 } 15759 }
15760 15760
15761 function native__HTMLOptionElementWrappingImplementation__get__HTMLOptionElement _selected(_this) { 15761 function native__HTMLOptionElementWrappingImplementation__get_selected(_this) {
15762 try { 15762 try {
15763 return __dom_wrap(_this.$dom.selected); 15763 return __dom_wrap(_this.$dom.selected);
15764 } catch (e) { 15764 } catch (e) {
15765 throw __dom_wrap_exception(e); 15765 throw __dom_wrap_exception(e);
15766 } 15766 }
15767 } 15767 }
15768 15768
15769 function native__HTMLOptionElementWrappingImplementation__set__HTMLOptionElement _selected(_this, value) { 15769 function native__HTMLOptionElementWrappingImplementation__set_selected(_this, va lue) {
15770 try { 15770 try {
15771 _this.$dom.selected = __dom_unwrap(value); 15771 _this.$dom.selected = __dom_unwrap(value);
15772 } catch (e) { 15772 } catch (e) {
15773 throw __dom_wrap_exception(e); 15773 throw __dom_wrap_exception(e);
15774 } 15774 }
15775 } 15775 }
15776 15776
15777 function native__HTMLOptionElementWrappingImplementation__get__HTMLOptionElement _text(_this) { 15777 function native__HTMLOptionElementWrappingImplementation__get_text(_this) {
15778 try { 15778 try {
15779 return __dom_wrap(_this.$dom.text); 15779 return __dom_wrap(_this.$dom.text);
15780 } catch (e) { 15780 } catch (e) {
15781 throw __dom_wrap_exception(e); 15781 throw __dom_wrap_exception(e);
15782 } 15782 }
15783 } 15783 }
15784 15784
15785 function native__HTMLOptionElementWrappingImplementation__set__HTMLOptionElement _text(_this, value) { 15785 function native__HTMLOptionElementWrappingImplementation__set_text(_this, value) {
15786 try { 15786 try {
15787 _this.$dom.text = __dom_unwrap(value); 15787 _this.$dom.text = __dom_unwrap(value);
15788 } catch (e) { 15788 } catch (e) {
15789 throw __dom_wrap_exception(e); 15789 throw __dom_wrap_exception(e);
15790 } 15790 }
15791 } 15791 }
15792 15792
15793 function native__HTMLOptionElementWrappingImplementation__get__HTMLOptionElement _value(_this) { 15793 function native__HTMLOptionElementWrappingImplementation__get_value(_this) {
15794 try { 15794 try {
15795 return __dom_wrap(_this.$dom.value); 15795 return __dom_wrap(_this.$dom.value);
15796 } catch (e) { 15796 } catch (e) {
15797 throw __dom_wrap_exception(e); 15797 throw __dom_wrap_exception(e);
15798 } 15798 }
15799 } 15799 }
15800 15800
15801 function native__HTMLOptionElementWrappingImplementation__set__HTMLOptionElement _value(_this, value) { 15801 function native__HTMLOptionElementWrappingImplementation__set_value(_this, value ) {
15802 try { 15802 try {
15803 _this.$dom.value = __dom_unwrap(value); 15803 _this.$dom.value = __dom_unwrap(value);
15804 } catch (e) { 15804 } catch (e) {
15805 throw __dom_wrap_exception(e); 15805 throw __dom_wrap_exception(e);
15806 } 15806 }
15807 } 15807 }
15808 15808
15809 function native__HTMLOptionsCollectionWrappingImplementation__get__HTMLOptionsCo llection_length(_this) { 15809 function native__HTMLOptionsCollectionWrappingImplementation__get_length_HTMLOpt ionsCollection(_this) {
15810 try { 15810 try {
15811 return __dom_wrap(_this.$dom.length); 15811 return __dom_wrap(_this.$dom.length);
15812 } catch (e) { 15812 } catch (e) {
15813 throw __dom_wrap_exception(e); 15813 throw __dom_wrap_exception(e);
15814 } 15814 }
15815 } 15815 }
15816 15816
15817 function native__HTMLOptionsCollectionWrappingImplementation__set__HTMLOptionsCo llection_length(_this, value) { 15817 function native__HTMLOptionsCollectionWrappingImplementation__set_length_HTMLOpt ionsCollection(_this, value) {
15818 try { 15818 try {
15819 _this.$dom.length = __dom_unwrap(value); 15819 _this.$dom.length = __dom_unwrap(value);
15820 } catch (e) { 15820 } catch (e) {
15821 throw __dom_wrap_exception(e); 15821 throw __dom_wrap_exception(e);
15822 } 15822 }
15823 } 15823 }
15824 15824
15825 function native__HTMLOptionsCollectionWrappingImplementation__get__HTMLOptionsCo llection_selectedIndex(_this) { 15825 function native__HTMLOptionsCollectionWrappingImplementation__get_selectedIndex( _this) {
15826 try { 15826 try {
15827 return __dom_wrap(_this.$dom.selectedIndex); 15827 return __dom_wrap(_this.$dom.selectedIndex);
15828 } catch (e) { 15828 } catch (e) {
15829 throw __dom_wrap_exception(e); 15829 throw __dom_wrap_exception(e);
15830 } 15830 }
15831 } 15831 }
15832 15832
15833 function native__HTMLOptionsCollectionWrappingImplementation__set__HTMLOptionsCo llection_selectedIndex(_this, value) { 15833 function native__HTMLOptionsCollectionWrappingImplementation__set_selectedIndex( _this, value) {
15834 try { 15834 try {
15835 _this.$dom.selectedIndex = __dom_unwrap(value); 15835 _this.$dom.selectedIndex = __dom_unwrap(value);
15836 } catch (e) { 15836 } catch (e) {
15837 throw __dom_wrap_exception(e); 15837 throw __dom_wrap_exception(e);
15838 } 15838 }
15839 } 15839 }
15840 15840
15841 function native__HTMLOptionsCollectionWrappingImplementation__remove(_this, inde x) { 15841 function native__HTMLOptionsCollectionWrappingImplementation__remove(_this, inde x) {
15842 try { 15842 try {
15843 return __dom_wrap(_this.$dom.remove(__dom_unwrap(index))); 15843 return __dom_wrap(_this.$dom.remove(__dom_unwrap(index)));
15844 } catch (e) { 15844 } catch (e) {
15845 throw __dom_wrap_exception(e); 15845 throw __dom_wrap_exception(e);
15846 } 15846 }
15847 } 15847 }
15848 15848
15849 function native__HTMLOutputElementWrappingImplementation__get__HTMLOutputElement _defaultValue(_this) { 15849 function native__HTMLOutputElementWrappingImplementation__get_defaultValue(_this ) {
15850 try { 15850 try {
15851 return __dom_wrap(_this.$dom.defaultValue); 15851 return __dom_wrap(_this.$dom.defaultValue);
15852 } catch (e) { 15852 } catch (e) {
15853 throw __dom_wrap_exception(e); 15853 throw __dom_wrap_exception(e);
15854 } 15854 }
15855 } 15855 }
15856 15856
15857 function native__HTMLOutputElementWrappingImplementation__set__HTMLOutputElement _defaultValue(_this, value) { 15857 function native__HTMLOutputElementWrappingImplementation__set_defaultValue(_this , value) {
15858 try { 15858 try {
15859 _this.$dom.defaultValue = __dom_unwrap(value); 15859 _this.$dom.defaultValue = __dom_unwrap(value);
15860 } catch (e) { 15860 } catch (e) {
15861 throw __dom_wrap_exception(e); 15861 throw __dom_wrap_exception(e);
15862 } 15862 }
15863 } 15863 }
15864 15864
15865 function native__HTMLOutputElementWrappingImplementation__get__HTMLOutputElement _form(_this) { 15865 function native__HTMLOutputElementWrappingImplementation__get_form(_this) {
15866 try { 15866 try {
15867 return __dom_wrap(_this.$dom.form); 15867 return __dom_wrap(_this.$dom.form);
15868 } catch (e) { 15868 } catch (e) {
15869 throw __dom_wrap_exception(e); 15869 throw __dom_wrap_exception(e);
15870 } 15870 }
15871 } 15871 }
15872 15872
15873 function native__HTMLOutputElementWrappingImplementation__get__HTMLOutputElement _htmlFor(_this) { 15873 function native__HTMLOutputElementWrappingImplementation__get_htmlFor(_this) {
15874 try { 15874 try {
15875 return __dom_wrap(_this.$dom.htmlFor); 15875 return __dom_wrap(_this.$dom.htmlFor);
15876 } catch (e) { 15876 } catch (e) {
15877 throw __dom_wrap_exception(e); 15877 throw __dom_wrap_exception(e);
15878 } 15878 }
15879 } 15879 }
15880 15880
15881 function native__HTMLOutputElementWrappingImplementation__set__HTMLOutputElement _htmlFor(_this, value) { 15881 function native__HTMLOutputElementWrappingImplementation__set_htmlFor(_this, val ue) {
15882 try { 15882 try {
15883 _this.$dom.htmlFor = __dom_unwrap(value); 15883 _this.$dom.htmlFor = __dom_unwrap(value);
15884 } catch (e) { 15884 } catch (e) {
15885 throw __dom_wrap_exception(e); 15885 throw __dom_wrap_exception(e);
15886 } 15886 }
15887 } 15887 }
15888 15888
15889 function native__HTMLOutputElementWrappingImplementation__get__HTMLOutputElement _labels(_this) { 15889 function native__HTMLOutputElementWrappingImplementation__get_labels(_this) {
15890 try { 15890 try {
15891 return __dom_wrap(_this.$dom.labels); 15891 return __dom_wrap(_this.$dom.labels);
15892 } catch (e) { 15892 } catch (e) {
15893 throw __dom_wrap_exception(e); 15893 throw __dom_wrap_exception(e);
15894 } 15894 }
15895 } 15895 }
15896 15896
15897 function native__HTMLOutputElementWrappingImplementation__get__HTMLOutputElement _name(_this) { 15897 function native__HTMLOutputElementWrappingImplementation__get_name(_this) {
15898 try { 15898 try {
15899 return __dom_wrap(_this.$dom.name); 15899 return __dom_wrap(_this.$dom.name);
15900 } catch (e) { 15900 } catch (e) {
15901 throw __dom_wrap_exception(e); 15901 throw __dom_wrap_exception(e);
15902 } 15902 }
15903 } 15903 }
15904 15904
15905 function native__HTMLOutputElementWrappingImplementation__set__HTMLOutputElement _name(_this, value) { 15905 function native__HTMLOutputElementWrappingImplementation__set_name(_this, value) {
15906 try { 15906 try {
15907 _this.$dom.name = __dom_unwrap(value); 15907 _this.$dom.name = __dom_unwrap(value);
15908 } catch (e) { 15908 } catch (e) {
15909 throw __dom_wrap_exception(e); 15909 throw __dom_wrap_exception(e);
15910 } 15910 }
15911 } 15911 }
15912 15912
15913 function native__HTMLOutputElementWrappingImplementation__get__HTMLOutputElement _type(_this) { 15913 function native__HTMLOutputElementWrappingImplementation__get_type(_this) {
15914 try { 15914 try {
15915 return __dom_wrap(_this.$dom.type); 15915 return __dom_wrap(_this.$dom.type);
15916 } catch (e) { 15916 } catch (e) {
15917 throw __dom_wrap_exception(e); 15917 throw __dom_wrap_exception(e);
15918 } 15918 }
15919 } 15919 }
15920 15920
15921 function native__HTMLOutputElementWrappingImplementation__get__HTMLOutputElement _validationMessage(_this) { 15921 function native__HTMLOutputElementWrappingImplementation__get_validationMessage( _this) {
15922 try { 15922 try {
15923 return __dom_wrap(_this.$dom.validationMessage); 15923 return __dom_wrap(_this.$dom.validationMessage);
15924 } catch (e) { 15924 } catch (e) {
15925 throw __dom_wrap_exception(e); 15925 throw __dom_wrap_exception(e);
15926 } 15926 }
15927 } 15927 }
15928 15928
15929 function native__HTMLOutputElementWrappingImplementation__get__HTMLOutputElement _validity(_this) { 15929 function native__HTMLOutputElementWrappingImplementation__get_validity(_this) {
15930 try { 15930 try {
15931 return __dom_wrap(_this.$dom.validity); 15931 return __dom_wrap(_this.$dom.validity);
15932 } catch (e) { 15932 } catch (e) {
15933 throw __dom_wrap_exception(e); 15933 throw __dom_wrap_exception(e);
15934 } 15934 }
15935 } 15935 }
15936 15936
15937 function native__HTMLOutputElementWrappingImplementation__get__HTMLOutputElement _value(_this) { 15937 function native__HTMLOutputElementWrappingImplementation__get_value(_this) {
15938 try { 15938 try {
15939 return __dom_wrap(_this.$dom.value); 15939 return __dom_wrap(_this.$dom.value);
15940 } catch (e) { 15940 } catch (e) {
15941 throw __dom_wrap_exception(e); 15941 throw __dom_wrap_exception(e);
15942 } 15942 }
15943 } 15943 }
15944 15944
15945 function native__HTMLOutputElementWrappingImplementation__set__HTMLOutputElement _value(_this, value) { 15945 function native__HTMLOutputElementWrappingImplementation__set_value(_this, value ) {
15946 try { 15946 try {
15947 _this.$dom.value = __dom_unwrap(value); 15947 _this.$dom.value = __dom_unwrap(value);
15948 } catch (e) { 15948 } catch (e) {
15949 throw __dom_wrap_exception(e); 15949 throw __dom_wrap_exception(e);
15950 } 15950 }
15951 } 15951 }
15952 15952
15953 function native__HTMLOutputElementWrappingImplementation__get__HTMLOutputElement _willValidate(_this) { 15953 function native__HTMLOutputElementWrappingImplementation__get_willValidate(_this ) {
15954 try { 15954 try {
15955 return __dom_wrap(_this.$dom.willValidate); 15955 return __dom_wrap(_this.$dom.willValidate);
15956 } catch (e) { 15956 } catch (e) {
15957 throw __dom_wrap_exception(e); 15957 throw __dom_wrap_exception(e);
15958 } 15958 }
15959 } 15959 }
15960 15960
15961 function native__HTMLOutputElementWrappingImplementation__checkValidity(_this) { 15961 function native__HTMLOutputElementWrappingImplementation__checkValidity(_this) {
15962 try { 15962 try {
15963 return __dom_wrap(_this.$dom.checkValidity()); 15963 return __dom_wrap(_this.$dom.checkValidity());
15964 } catch (e) { 15964 } catch (e) {
15965 throw __dom_wrap_exception(e); 15965 throw __dom_wrap_exception(e);
15966 } 15966 }
15967 } 15967 }
15968 15968
15969 function native__HTMLOutputElementWrappingImplementation__setCustomValidity(_thi s, error) { 15969 function native__HTMLOutputElementWrappingImplementation__setCustomValidity(_thi s, error) {
15970 try { 15970 try {
15971 return __dom_wrap(_this.$dom.setCustomValidity(__dom_unwrap(error))); 15971 return __dom_wrap(_this.$dom.setCustomValidity(__dom_unwrap(error)));
15972 } catch (e) { 15972 } catch (e) {
15973 throw __dom_wrap_exception(e); 15973 throw __dom_wrap_exception(e);
15974 } 15974 }
15975 } 15975 }
15976 15976
15977 function native__HTMLParagraphElementWrappingImplementation__get__HTMLParagraphE lement_align(_this) { 15977 function native__HTMLParagraphElementWrappingImplementation__get_align(_this) {
15978 try { 15978 try {
15979 return __dom_wrap(_this.$dom.align); 15979 return __dom_wrap(_this.$dom.align);
15980 } catch (e) { 15980 } catch (e) {
15981 throw __dom_wrap_exception(e); 15981 throw __dom_wrap_exception(e);
15982 } 15982 }
15983 } 15983 }
15984 15984
15985 function native__HTMLParagraphElementWrappingImplementation__set__HTMLParagraphE lement_align(_this, value) { 15985 function native__HTMLParagraphElementWrappingImplementation__set_align(_this, va lue) {
15986 try { 15986 try {
15987 _this.$dom.align = __dom_unwrap(value); 15987 _this.$dom.align = __dom_unwrap(value);
15988 } catch (e) { 15988 } catch (e) {
15989 throw __dom_wrap_exception(e); 15989 throw __dom_wrap_exception(e);
15990 } 15990 }
15991 } 15991 }
15992 15992
15993 function native__HTMLParamElementWrappingImplementation__get__HTMLParamElement_n ame(_this) { 15993 function native__HTMLParamElementWrappingImplementation__get_name(_this) {
15994 try { 15994 try {
15995 return __dom_wrap(_this.$dom.name); 15995 return __dom_wrap(_this.$dom.name);
15996 } catch (e) { 15996 } catch (e) {
15997 throw __dom_wrap_exception(e); 15997 throw __dom_wrap_exception(e);
15998 } 15998 }
15999 } 15999 }
16000 16000
16001 function native__HTMLParamElementWrappingImplementation__set__HTMLParamElement_n ame(_this, value) { 16001 function native__HTMLParamElementWrappingImplementation__set_name(_this, value) {
16002 try { 16002 try {
16003 _this.$dom.name = __dom_unwrap(value); 16003 _this.$dom.name = __dom_unwrap(value);
16004 } catch (e) { 16004 } catch (e) {
16005 throw __dom_wrap_exception(e); 16005 throw __dom_wrap_exception(e);
16006 } 16006 }
16007 } 16007 }
16008 16008
16009 function native__HTMLParamElementWrappingImplementation__get__HTMLParamElement_t ype(_this) { 16009 function native__HTMLParamElementWrappingImplementation__get_type(_this) {
16010 try { 16010 try {
16011 return __dom_wrap(_this.$dom.type); 16011 return __dom_wrap(_this.$dom.type);
16012 } catch (e) { 16012 } catch (e) {
16013 throw __dom_wrap_exception(e); 16013 throw __dom_wrap_exception(e);
16014 } 16014 }
16015 } 16015 }
16016 16016
16017 function native__HTMLParamElementWrappingImplementation__set__HTMLParamElement_t ype(_this, value) { 16017 function native__HTMLParamElementWrappingImplementation__set_type(_this, value) {
16018 try { 16018 try {
16019 _this.$dom.type = __dom_unwrap(value); 16019 _this.$dom.type = __dom_unwrap(value);
16020 } catch (e) { 16020 } catch (e) {
16021 throw __dom_wrap_exception(e); 16021 throw __dom_wrap_exception(e);
16022 } 16022 }
16023 } 16023 }
16024 16024
16025 function native__HTMLParamElementWrappingImplementation__get__HTMLParamElement_v alue(_this) { 16025 function native__HTMLParamElementWrappingImplementation__get_value(_this) {
16026 try { 16026 try {
16027 return __dom_wrap(_this.$dom.value); 16027 return __dom_wrap(_this.$dom.value);
16028 } catch (e) { 16028 } catch (e) {
16029 throw __dom_wrap_exception(e); 16029 throw __dom_wrap_exception(e);
16030 } 16030 }
16031 } 16031 }
16032 16032
16033 function native__HTMLParamElementWrappingImplementation__set__HTMLParamElement_v alue(_this, value) { 16033 function native__HTMLParamElementWrappingImplementation__set_value(_this, value) {
16034 try { 16034 try {
16035 _this.$dom.value = __dom_unwrap(value); 16035 _this.$dom.value = __dom_unwrap(value);
16036 } catch (e) { 16036 } catch (e) {
16037 throw __dom_wrap_exception(e); 16037 throw __dom_wrap_exception(e);
16038 } 16038 }
16039 } 16039 }
16040 16040
16041 function native__HTMLParamElementWrappingImplementation__get__HTMLParamElement_v alueType(_this) { 16041 function native__HTMLParamElementWrappingImplementation__get_valueType(_this) {
16042 try { 16042 try {
16043 return __dom_wrap(_this.$dom.valueType); 16043 return __dom_wrap(_this.$dom.valueType);
16044 } catch (e) { 16044 } catch (e) {
16045 throw __dom_wrap_exception(e); 16045 throw __dom_wrap_exception(e);
16046 } 16046 }
16047 } 16047 }
16048 16048
16049 function native__HTMLParamElementWrappingImplementation__set__HTMLParamElement_v alueType(_this, value) { 16049 function native__HTMLParamElementWrappingImplementation__set_valueType(_this, va lue) {
16050 try { 16050 try {
16051 _this.$dom.valueType = __dom_unwrap(value); 16051 _this.$dom.valueType = __dom_unwrap(value);
16052 } catch (e) { 16052 } catch (e) {
16053 throw __dom_wrap_exception(e); 16053 throw __dom_wrap_exception(e);
16054 } 16054 }
16055 } 16055 }
16056 16056
16057 function native__HTMLPreElementWrappingImplementation__get__HTMLPreElement_width (_this) { 16057 function native__HTMLPreElementWrappingImplementation__get_width(_this) {
16058 try { 16058 try {
16059 return __dom_wrap(_this.$dom.width); 16059 return __dom_wrap(_this.$dom.width);
16060 } catch (e) { 16060 } catch (e) {
16061 throw __dom_wrap_exception(e); 16061 throw __dom_wrap_exception(e);
16062 } 16062 }
16063 } 16063 }
16064 16064
16065 function native__HTMLPreElementWrappingImplementation__set__HTMLPreElement_width (_this, value) { 16065 function native__HTMLPreElementWrappingImplementation__set_width(_this, value) {
16066 try { 16066 try {
16067 _this.$dom.width = __dom_unwrap(value); 16067 _this.$dom.width = __dom_unwrap(value);
16068 } catch (e) { 16068 } catch (e) {
16069 throw __dom_wrap_exception(e); 16069 throw __dom_wrap_exception(e);
16070 } 16070 }
16071 } 16071 }
16072 16072
16073 function native__HTMLPreElementWrappingImplementation__get__HTMLPreElement_wrap( _this) { 16073 function native__HTMLPreElementWrappingImplementation__get_wrap(_this) {
16074 try { 16074 try {
16075 return __dom_wrap(_this.$dom.wrap); 16075 return __dom_wrap(_this.$dom.wrap);
16076 } catch (e) { 16076 } catch (e) {
16077 throw __dom_wrap_exception(e); 16077 throw __dom_wrap_exception(e);
16078 } 16078 }
16079 } 16079 }
16080 16080
16081 function native__HTMLPreElementWrappingImplementation__set__HTMLPreElement_wrap( _this, value) { 16081 function native__HTMLPreElementWrappingImplementation__set_wrap(_this, value) {
16082 try { 16082 try {
16083 _this.$dom.wrap = __dom_unwrap(value); 16083 _this.$dom.wrap = __dom_unwrap(value);
16084 } catch (e) { 16084 } catch (e) {
16085 throw __dom_wrap_exception(e); 16085 throw __dom_wrap_exception(e);
16086 } 16086 }
16087 } 16087 }
16088 16088
16089 function native__HTMLProgressElementWrappingImplementation__get__HTMLProgressEle ment_form(_this) { 16089 function native__HTMLProgressElementWrappingImplementation__get_form(_this) {
16090 try { 16090 try {
16091 return __dom_wrap(_this.$dom.form); 16091 return __dom_wrap(_this.$dom.form);
16092 } catch (e) { 16092 } catch (e) {
16093 throw __dom_wrap_exception(e); 16093 throw __dom_wrap_exception(e);
16094 } 16094 }
16095 } 16095 }
16096 16096
16097 function native__HTMLProgressElementWrappingImplementation__get__HTMLProgressEle ment_labels(_this) { 16097 function native__HTMLProgressElementWrappingImplementation__get_labels(_this) {
16098 try { 16098 try {
16099 return __dom_wrap(_this.$dom.labels); 16099 return __dom_wrap(_this.$dom.labels);
16100 } catch (e) { 16100 } catch (e) {
16101 throw __dom_wrap_exception(e); 16101 throw __dom_wrap_exception(e);
16102 } 16102 }
16103 } 16103 }
16104 16104
16105 function native__HTMLProgressElementWrappingImplementation__get__HTMLProgressEle ment_max(_this) { 16105 function native__HTMLProgressElementWrappingImplementation__get_max(_this) {
16106 try { 16106 try {
16107 return __dom_wrap(_this.$dom.max); 16107 return __dom_wrap(_this.$dom.max);
16108 } catch (e) { 16108 } catch (e) {
16109 throw __dom_wrap_exception(e); 16109 throw __dom_wrap_exception(e);
16110 } 16110 }
16111 } 16111 }
16112 16112
16113 function native__HTMLProgressElementWrappingImplementation__set__HTMLProgressEle ment_max(_this, value) { 16113 function native__HTMLProgressElementWrappingImplementation__set_max(_this, value ) {
16114 try { 16114 try {
16115 _this.$dom.max = __dom_unwrap(value); 16115 _this.$dom.max = __dom_unwrap(value);
16116 } catch (e) { 16116 } catch (e) {
16117 throw __dom_wrap_exception(e); 16117 throw __dom_wrap_exception(e);
16118 } 16118 }
16119 } 16119 }
16120 16120
16121 function native__HTMLProgressElementWrappingImplementation__get__HTMLProgressEle ment_position(_this) { 16121 function native__HTMLProgressElementWrappingImplementation__get_position(_this) {
16122 try { 16122 try {
16123 return __dom_wrap(_this.$dom.position); 16123 return __dom_wrap(_this.$dom.position);
16124 } catch (e) { 16124 } catch (e) {
16125 throw __dom_wrap_exception(e); 16125 throw __dom_wrap_exception(e);
16126 } 16126 }
16127 } 16127 }
16128 16128
16129 function native__HTMLProgressElementWrappingImplementation__get__HTMLProgressEle ment_value(_this) { 16129 function native__HTMLProgressElementWrappingImplementation__get_value(_this) {
16130 try { 16130 try {
16131 return __dom_wrap(_this.$dom.value); 16131 return __dom_wrap(_this.$dom.value);
16132 } catch (e) { 16132 } catch (e) {
16133 throw __dom_wrap_exception(e); 16133 throw __dom_wrap_exception(e);
16134 } 16134 }
16135 } 16135 }
16136 16136
16137 function native__HTMLProgressElementWrappingImplementation__set__HTMLProgressEle ment_value(_this, value) { 16137 function native__HTMLProgressElementWrappingImplementation__set_value(_this, val ue) {
16138 try { 16138 try {
16139 _this.$dom.value = __dom_unwrap(value); 16139 _this.$dom.value = __dom_unwrap(value);
16140 } catch (e) { 16140 } catch (e) {
16141 throw __dom_wrap_exception(e); 16141 throw __dom_wrap_exception(e);
16142 } 16142 }
16143 } 16143 }
16144 16144
16145 function native__HTMLQuoteElementWrappingImplementation__get__HTMLQuoteElement_c ite(_this) { 16145 function native__HTMLQuoteElementWrappingImplementation__get_cite(_this) {
16146 try { 16146 try {
16147 return __dom_wrap(_this.$dom.cite); 16147 return __dom_wrap(_this.$dom.cite);
16148 } catch (e) { 16148 } catch (e) {
16149 throw __dom_wrap_exception(e); 16149 throw __dom_wrap_exception(e);
16150 } 16150 }
16151 } 16151 }
16152 16152
16153 function native__HTMLQuoteElementWrappingImplementation__set__HTMLQuoteElement_c ite(_this, value) { 16153 function native__HTMLQuoteElementWrappingImplementation__set_cite(_this, value) {
16154 try { 16154 try {
16155 _this.$dom.cite = __dom_unwrap(value); 16155 _this.$dom.cite = __dom_unwrap(value);
16156 } catch (e) { 16156 } catch (e) {
16157 throw __dom_wrap_exception(e); 16157 throw __dom_wrap_exception(e);
16158 } 16158 }
16159 } 16159 }
16160 16160
16161 function native__HTMLScriptElementWrappingImplementation__get__HTMLScriptElement _async(_this) { 16161 function native__HTMLScriptElementWrappingImplementation__get_async(_this) {
16162 try { 16162 try {
16163 return __dom_wrap(_this.$dom.async); 16163 return __dom_wrap(_this.$dom.async);
16164 } catch (e) { 16164 } catch (e) {
16165 throw __dom_wrap_exception(e); 16165 throw __dom_wrap_exception(e);
16166 } 16166 }
16167 } 16167 }
16168 16168
16169 function native__HTMLScriptElementWrappingImplementation__set__HTMLScriptElement _async(_this, value) { 16169 function native__HTMLScriptElementWrappingImplementation__set_async(_this, value ) {
16170 try { 16170 try {
16171 _this.$dom.async = __dom_unwrap(value); 16171 _this.$dom.async = __dom_unwrap(value);
16172 } catch (e) { 16172 } catch (e) {
16173 throw __dom_wrap_exception(e); 16173 throw __dom_wrap_exception(e);
16174 } 16174 }
16175 } 16175 }
16176 16176
16177 function native__HTMLScriptElementWrappingImplementation__get__HTMLScriptElement _charset(_this) { 16177 function native__HTMLScriptElementWrappingImplementation__get_charset(_this) {
16178 try { 16178 try {
16179 return __dom_wrap(_this.$dom.charset); 16179 return __dom_wrap(_this.$dom.charset);
16180 } catch (e) { 16180 } catch (e) {
16181 throw __dom_wrap_exception(e); 16181 throw __dom_wrap_exception(e);
16182 } 16182 }
16183 } 16183 }
16184 16184
16185 function native__HTMLScriptElementWrappingImplementation__set__HTMLScriptElement _charset(_this, value) { 16185 function native__HTMLScriptElementWrappingImplementation__set_charset(_this, val ue) {
16186 try { 16186 try {
16187 _this.$dom.charset = __dom_unwrap(value); 16187 _this.$dom.charset = __dom_unwrap(value);
16188 } catch (e) { 16188 } catch (e) {
16189 throw __dom_wrap_exception(e); 16189 throw __dom_wrap_exception(e);
16190 } 16190 }
16191 } 16191 }
16192 16192
16193 function native__HTMLScriptElementWrappingImplementation__get__HTMLScriptElement _defer(_this) { 16193 function native__HTMLScriptElementWrappingImplementation__get_defer(_this) {
16194 try { 16194 try {
16195 return __dom_wrap(_this.$dom.defer); 16195 return __dom_wrap(_this.$dom.defer);
16196 } catch (e) { 16196 } catch (e) {
16197 throw __dom_wrap_exception(e); 16197 throw __dom_wrap_exception(e);
16198 } 16198 }
16199 } 16199 }
16200 16200
16201 function native__HTMLScriptElementWrappingImplementation__set__HTMLScriptElement _defer(_this, value) { 16201 function native__HTMLScriptElementWrappingImplementation__set_defer(_this, value ) {
16202 try { 16202 try {
16203 _this.$dom.defer = __dom_unwrap(value); 16203 _this.$dom.defer = __dom_unwrap(value);
16204 } catch (e) { 16204 } catch (e) {
16205 throw __dom_wrap_exception(e); 16205 throw __dom_wrap_exception(e);
16206 } 16206 }
16207 } 16207 }
16208 16208
16209 function native__HTMLScriptElementWrappingImplementation__get__HTMLScriptElement _event(_this) { 16209 function native__HTMLScriptElementWrappingImplementation__get_event(_this) {
16210 try { 16210 try {
16211 return __dom_wrap(_this.$dom.event); 16211 return __dom_wrap(_this.$dom.event);
16212 } catch (e) { 16212 } catch (e) {
16213 throw __dom_wrap_exception(e); 16213 throw __dom_wrap_exception(e);
16214 } 16214 }
16215 } 16215 }
16216 16216
16217 function native__HTMLScriptElementWrappingImplementation__set__HTMLScriptElement _event(_this, value) { 16217 function native__HTMLScriptElementWrappingImplementation__set_event(_this, value ) {
16218 try { 16218 try {
16219 _this.$dom.event = __dom_unwrap(value); 16219 _this.$dom.event = __dom_unwrap(value);
16220 } catch (e) { 16220 } catch (e) {
16221 throw __dom_wrap_exception(e); 16221 throw __dom_wrap_exception(e);
16222 } 16222 }
16223 } 16223 }
16224 16224
16225 function native__HTMLScriptElementWrappingImplementation__get__HTMLScriptElement _htmlFor(_this) { 16225 function native__HTMLScriptElementWrappingImplementation__get_htmlFor(_this) {
16226 try { 16226 try {
16227 return __dom_wrap(_this.$dom.htmlFor); 16227 return __dom_wrap(_this.$dom.htmlFor);
16228 } catch (e) { 16228 } catch (e) {
16229 throw __dom_wrap_exception(e); 16229 throw __dom_wrap_exception(e);
16230 } 16230 }
16231 } 16231 }
16232 16232
16233 function native__HTMLScriptElementWrappingImplementation__set__HTMLScriptElement _htmlFor(_this, value) { 16233 function native__HTMLScriptElementWrappingImplementation__set_htmlFor(_this, val ue) {
16234 try { 16234 try {
16235 _this.$dom.htmlFor = __dom_unwrap(value); 16235 _this.$dom.htmlFor = __dom_unwrap(value);
16236 } catch (e) { 16236 } catch (e) {
16237 throw __dom_wrap_exception(e); 16237 throw __dom_wrap_exception(e);
16238 } 16238 }
16239 } 16239 }
16240 16240
16241 function native__HTMLScriptElementWrappingImplementation__get__HTMLScriptElement _src(_this) { 16241 function native__HTMLScriptElementWrappingImplementation__get_src(_this) {
16242 try { 16242 try {
16243 return __dom_wrap(_this.$dom.src); 16243 return __dom_wrap(_this.$dom.src);
16244 } catch (e) { 16244 } catch (e) {
16245 throw __dom_wrap_exception(e); 16245 throw __dom_wrap_exception(e);
16246 } 16246 }
16247 } 16247 }
16248 16248
16249 function native__HTMLScriptElementWrappingImplementation__set__HTMLScriptElement _src(_this, value) { 16249 function native__HTMLScriptElementWrappingImplementation__set_src(_this, value) {
16250 try { 16250 try {
16251 _this.$dom.src = __dom_unwrap(value); 16251 _this.$dom.src = __dom_unwrap(value);
16252 } catch (e) { 16252 } catch (e) {
16253 throw __dom_wrap_exception(e); 16253 throw __dom_wrap_exception(e);
16254 } 16254 }
16255 } 16255 }
16256 16256
16257 function native__HTMLScriptElementWrappingImplementation__get__HTMLScriptElement _text(_this) { 16257 function native__HTMLScriptElementWrappingImplementation__get_text(_this) {
16258 try { 16258 try {
16259 return __dom_wrap(_this.$dom.text); 16259 return __dom_wrap(_this.$dom.text);
16260 } catch (e) { 16260 } catch (e) {
16261 throw __dom_wrap_exception(e); 16261 throw __dom_wrap_exception(e);
16262 } 16262 }
16263 } 16263 }
16264 16264
16265 function native__HTMLScriptElementWrappingImplementation__set__HTMLScriptElement _text(_this, value) { 16265 function native__HTMLScriptElementWrappingImplementation__set_text(_this, value) {
16266 try { 16266 try {
16267 _this.$dom.text = __dom_unwrap(value); 16267 _this.$dom.text = __dom_unwrap(value);
16268 } catch (e) { 16268 } catch (e) {
16269 throw __dom_wrap_exception(e); 16269 throw __dom_wrap_exception(e);
16270 } 16270 }
16271 } 16271 }
16272 16272
16273 function native__HTMLScriptElementWrappingImplementation__get__HTMLScriptElement _type(_this) { 16273 function native__HTMLScriptElementWrappingImplementation__get_type(_this) {
16274 try { 16274 try {
16275 return __dom_wrap(_this.$dom.type); 16275 return __dom_wrap(_this.$dom.type);
16276 } catch (e) { 16276 } catch (e) {
16277 throw __dom_wrap_exception(e); 16277 throw __dom_wrap_exception(e);
16278 } 16278 }
16279 } 16279 }
16280 16280
16281 function native__HTMLScriptElementWrappingImplementation__set__HTMLScriptElement _type(_this, value) { 16281 function native__HTMLScriptElementWrappingImplementation__set_type(_this, value) {
16282 try { 16282 try {
16283 _this.$dom.type = __dom_unwrap(value); 16283 _this.$dom.type = __dom_unwrap(value);
16284 } catch (e) { 16284 } catch (e) {
16285 throw __dom_wrap_exception(e); 16285 throw __dom_wrap_exception(e);
16286 } 16286 }
16287 } 16287 }
16288 16288
16289 function native__HTMLSelectElementWrappingImplementation__get__HTMLSelectElement _autofocus(_this) { 16289 function native__HTMLSelectElementWrappingImplementation__get_autofocus(_this) {
16290 try { 16290 try {
16291 return __dom_wrap(_this.$dom.autofocus); 16291 return __dom_wrap(_this.$dom.autofocus);
16292 } catch (e) { 16292 } catch (e) {
16293 throw __dom_wrap_exception(e); 16293 throw __dom_wrap_exception(e);
16294 } 16294 }
16295 } 16295 }
16296 16296
16297 function native__HTMLSelectElementWrappingImplementation__set__HTMLSelectElement _autofocus(_this, value) { 16297 function native__HTMLSelectElementWrappingImplementation__set_autofocus(_this, v alue) {
16298 try { 16298 try {
16299 _this.$dom.autofocus = __dom_unwrap(value); 16299 _this.$dom.autofocus = __dom_unwrap(value);
16300 } catch (e) { 16300 } catch (e) {
16301 throw __dom_wrap_exception(e); 16301 throw __dom_wrap_exception(e);
16302 } 16302 }
16303 } 16303 }
16304 16304
16305 function native__HTMLSelectElementWrappingImplementation__get__HTMLSelectElement _disabled(_this) { 16305 function native__HTMLSelectElementWrappingImplementation__get_disabled(_this) {
16306 try { 16306 try {
16307 return __dom_wrap(_this.$dom.disabled); 16307 return __dom_wrap(_this.$dom.disabled);
16308 } catch (e) { 16308 } catch (e) {
16309 throw __dom_wrap_exception(e); 16309 throw __dom_wrap_exception(e);
16310 } 16310 }
16311 } 16311 }
16312 16312
16313 function native__HTMLSelectElementWrappingImplementation__set__HTMLSelectElement _disabled(_this, value) { 16313 function native__HTMLSelectElementWrappingImplementation__set_disabled(_this, va lue) {
16314 try { 16314 try {
16315 _this.$dom.disabled = __dom_unwrap(value); 16315 _this.$dom.disabled = __dom_unwrap(value);
16316 } catch (e) { 16316 } catch (e) {
16317 throw __dom_wrap_exception(e); 16317 throw __dom_wrap_exception(e);
16318 } 16318 }
16319 } 16319 }
16320 16320
16321 function native__HTMLSelectElementWrappingImplementation__get__HTMLSelectElement _form(_this) { 16321 function native__HTMLSelectElementWrappingImplementation__get_form(_this) {
16322 try { 16322 try {
16323 return __dom_wrap(_this.$dom.form); 16323 return __dom_wrap(_this.$dom.form);
16324 } catch (e) { 16324 } catch (e) {
16325 throw __dom_wrap_exception(e); 16325 throw __dom_wrap_exception(e);
16326 } 16326 }
16327 } 16327 }
16328 16328
16329 function native__HTMLSelectElementWrappingImplementation__get__HTMLSelectElement _labels(_this) { 16329 function native__HTMLSelectElementWrappingImplementation__get_labels(_this) {
16330 try { 16330 try {
16331 return __dom_wrap(_this.$dom.labels); 16331 return __dom_wrap(_this.$dom.labels);
16332 } catch (e) { 16332 } catch (e) {
16333 throw __dom_wrap_exception(e); 16333 throw __dom_wrap_exception(e);
16334 } 16334 }
16335 } 16335 }
16336 16336
16337 function native__HTMLSelectElementWrappingImplementation__get__HTMLSelectElement _length(_this) { 16337 function native__HTMLSelectElementWrappingImplementation__get_length(_this) {
16338 try { 16338 try {
16339 return __dom_wrap(_this.$dom.length); 16339 return __dom_wrap(_this.$dom.length);
16340 } catch (e) { 16340 } catch (e) {
16341 throw __dom_wrap_exception(e); 16341 throw __dom_wrap_exception(e);
16342 } 16342 }
16343 } 16343 }
16344 16344
16345 function native__HTMLSelectElementWrappingImplementation__set__HTMLSelectElement _length(_this, value) { 16345 function native__HTMLSelectElementWrappingImplementation__set_length(_this, valu e) {
16346 try { 16346 try {
16347 _this.$dom.length = __dom_unwrap(value); 16347 _this.$dom.length = __dom_unwrap(value);
16348 } catch (e) { 16348 } catch (e) {
16349 throw __dom_wrap_exception(e); 16349 throw __dom_wrap_exception(e);
16350 } 16350 }
16351 } 16351 }
16352 16352
16353 function native__HTMLSelectElementWrappingImplementation__get__HTMLSelectElement _multiple(_this) { 16353 function native__HTMLSelectElementWrappingImplementation__get_multiple(_this) {
16354 try { 16354 try {
16355 return __dom_wrap(_this.$dom.multiple); 16355 return __dom_wrap(_this.$dom.multiple);
16356 } catch (e) { 16356 } catch (e) {
16357 throw __dom_wrap_exception(e); 16357 throw __dom_wrap_exception(e);
16358 } 16358 }
16359 } 16359 }
16360 16360
16361 function native__HTMLSelectElementWrappingImplementation__set__HTMLSelectElement _multiple(_this, value) { 16361 function native__HTMLSelectElementWrappingImplementation__set_multiple(_this, va lue) {
16362 try { 16362 try {
16363 _this.$dom.multiple = __dom_unwrap(value); 16363 _this.$dom.multiple = __dom_unwrap(value);
16364 } catch (e) { 16364 } catch (e) {
16365 throw __dom_wrap_exception(e); 16365 throw __dom_wrap_exception(e);
16366 } 16366 }
16367 } 16367 }
16368 16368
16369 function native__HTMLSelectElementWrappingImplementation__get__HTMLSelectElement _name(_this) { 16369 function native__HTMLSelectElementWrappingImplementation__get_name(_this) {
16370 try { 16370 try {
16371 return __dom_wrap(_this.$dom.name); 16371 return __dom_wrap(_this.$dom.name);
16372 } catch (e) { 16372 } catch (e) {
16373 throw __dom_wrap_exception(e); 16373 throw __dom_wrap_exception(e);
16374 } 16374 }
16375 } 16375 }
16376 16376
16377 function native__HTMLSelectElementWrappingImplementation__set__HTMLSelectElement _name(_this, value) { 16377 function native__HTMLSelectElementWrappingImplementation__set_name(_this, value) {
16378 try { 16378 try {
16379 _this.$dom.name = __dom_unwrap(value); 16379 _this.$dom.name = __dom_unwrap(value);
16380 } catch (e) { 16380 } catch (e) {
16381 throw __dom_wrap_exception(e); 16381 throw __dom_wrap_exception(e);
16382 } 16382 }
16383 } 16383 }
16384 16384
16385 function native__HTMLSelectElementWrappingImplementation__get__HTMLSelectElement _options(_this) { 16385 function native__HTMLSelectElementWrappingImplementation__get_options(_this) {
16386 try { 16386 try {
16387 return __dom_wrap(_this.$dom.options); 16387 return __dom_wrap(_this.$dom.options);
16388 } catch (e) { 16388 } catch (e) {
16389 throw __dom_wrap_exception(e); 16389 throw __dom_wrap_exception(e);
16390 } 16390 }
16391 } 16391 }
16392 16392
16393 function native__HTMLSelectElementWrappingImplementation__get__HTMLSelectElement _required(_this) { 16393 function native__HTMLSelectElementWrappingImplementation__get_required(_this) {
16394 try { 16394 try {
16395 return __dom_wrap(_this.$dom.required); 16395 return __dom_wrap(_this.$dom.required);
16396 } catch (e) { 16396 } catch (e) {
16397 throw __dom_wrap_exception(e); 16397 throw __dom_wrap_exception(e);
16398 } 16398 }
16399 } 16399 }
16400 16400
16401 function native__HTMLSelectElementWrappingImplementation__set__HTMLSelectElement _required(_this, value) { 16401 function native__HTMLSelectElementWrappingImplementation__set_required(_this, va lue) {
16402 try { 16402 try {
16403 _this.$dom.required = __dom_unwrap(value); 16403 _this.$dom.required = __dom_unwrap(value);
16404 } catch (e) { 16404 } catch (e) {
16405 throw __dom_wrap_exception(e); 16405 throw __dom_wrap_exception(e);
16406 } 16406 }
16407 } 16407 }
16408 16408
16409 function native__HTMLSelectElementWrappingImplementation__get__HTMLSelectElement _selectedIndex(_this) { 16409 function native__HTMLSelectElementWrappingImplementation__get_selectedIndex(_thi s) {
16410 try { 16410 try {
16411 return __dom_wrap(_this.$dom.selectedIndex); 16411 return __dom_wrap(_this.$dom.selectedIndex);
16412 } catch (e) { 16412 } catch (e) {
16413 throw __dom_wrap_exception(e); 16413 throw __dom_wrap_exception(e);
16414 } 16414 }
16415 } 16415 }
16416 16416
16417 function native__HTMLSelectElementWrappingImplementation__set__HTMLSelectElement _selectedIndex(_this, value) { 16417 function native__HTMLSelectElementWrappingImplementation__set_selectedIndex(_thi s, value) {
16418 try { 16418 try {
16419 _this.$dom.selectedIndex = __dom_unwrap(value); 16419 _this.$dom.selectedIndex = __dom_unwrap(value);
16420 } catch (e) { 16420 } catch (e) {
16421 throw __dom_wrap_exception(e); 16421 throw __dom_wrap_exception(e);
16422 } 16422 }
16423 } 16423 }
16424 16424
16425 function native__HTMLSelectElementWrappingImplementation__get__HTMLSelectElement _size(_this) { 16425 function native__HTMLSelectElementWrappingImplementation__get_size(_this) {
16426 try { 16426 try {
16427 return __dom_wrap(_this.$dom.size); 16427 return __dom_wrap(_this.$dom.size);
16428 } catch (e) { 16428 } catch (e) {
16429 throw __dom_wrap_exception(e); 16429 throw __dom_wrap_exception(e);
16430 } 16430 }
16431 } 16431 }
16432 16432
16433 function native__HTMLSelectElementWrappingImplementation__set__HTMLSelectElement _size(_this, value) { 16433 function native__HTMLSelectElementWrappingImplementation__set_size(_this, value) {
16434 try { 16434 try {
16435 _this.$dom.size = __dom_unwrap(value); 16435 _this.$dom.size = __dom_unwrap(value);
16436 } catch (e) { 16436 } catch (e) {
16437 throw __dom_wrap_exception(e); 16437 throw __dom_wrap_exception(e);
16438 } 16438 }
16439 } 16439 }
16440 16440
16441 function native__HTMLSelectElementWrappingImplementation__get__HTMLSelectElement _type(_this) { 16441 function native__HTMLSelectElementWrappingImplementation__get_type(_this) {
16442 try { 16442 try {
16443 return __dom_wrap(_this.$dom.type); 16443 return __dom_wrap(_this.$dom.type);
16444 } catch (e) { 16444 } catch (e) {
16445 throw __dom_wrap_exception(e); 16445 throw __dom_wrap_exception(e);
16446 } 16446 }
16447 } 16447 }
16448 16448
16449 function native__HTMLSelectElementWrappingImplementation__get__HTMLSelectElement _validationMessage(_this) { 16449 function native__HTMLSelectElementWrappingImplementation__get_validationMessage( _this) {
16450 try { 16450 try {
16451 return __dom_wrap(_this.$dom.validationMessage); 16451 return __dom_wrap(_this.$dom.validationMessage);
16452 } catch (e) { 16452 } catch (e) {
16453 throw __dom_wrap_exception(e); 16453 throw __dom_wrap_exception(e);
16454 } 16454 }
16455 } 16455 }
16456 16456
16457 function native__HTMLSelectElementWrappingImplementation__get__HTMLSelectElement _validity(_this) { 16457 function native__HTMLSelectElementWrappingImplementation__get_validity(_this) {
16458 try { 16458 try {
16459 return __dom_wrap(_this.$dom.validity); 16459 return __dom_wrap(_this.$dom.validity);
16460 } catch (e) { 16460 } catch (e) {
16461 throw __dom_wrap_exception(e); 16461 throw __dom_wrap_exception(e);
16462 } 16462 }
16463 } 16463 }
16464 16464
16465 function native__HTMLSelectElementWrappingImplementation__get__HTMLSelectElement _value(_this) { 16465 function native__HTMLSelectElementWrappingImplementation__get_value(_this) {
16466 try { 16466 try {
16467 return __dom_wrap(_this.$dom.value); 16467 return __dom_wrap(_this.$dom.value);
16468 } catch (e) { 16468 } catch (e) {
16469 throw __dom_wrap_exception(e); 16469 throw __dom_wrap_exception(e);
16470 } 16470 }
16471 } 16471 }
16472 16472
16473 function native__HTMLSelectElementWrappingImplementation__set__HTMLSelectElement _value(_this, value) { 16473 function native__HTMLSelectElementWrappingImplementation__set_value(_this, value ) {
16474 try { 16474 try {
16475 _this.$dom.value = __dom_unwrap(value); 16475 _this.$dom.value = __dom_unwrap(value);
16476 } catch (e) { 16476 } catch (e) {
16477 throw __dom_wrap_exception(e); 16477 throw __dom_wrap_exception(e);
16478 } 16478 }
16479 } 16479 }
16480 16480
16481 function native__HTMLSelectElementWrappingImplementation__get__HTMLSelectElement _willValidate(_this) { 16481 function native__HTMLSelectElementWrappingImplementation__get_willValidate(_this ) {
16482 try { 16482 try {
16483 return __dom_wrap(_this.$dom.willValidate); 16483 return __dom_wrap(_this.$dom.willValidate);
16484 } catch (e) { 16484 } catch (e) {
16485 throw __dom_wrap_exception(e); 16485 throw __dom_wrap_exception(e);
16486 } 16486 }
16487 } 16487 }
16488 16488
16489 function native__HTMLSelectElementWrappingImplementation__add(_this, element, be fore) { 16489 function native__HTMLSelectElementWrappingImplementation__add(_this, element, be fore) {
16490 try { 16490 try {
16491 return __dom_wrap(_this.$dom.add(__dom_unwrap(element), __dom_unwrap(before) )); 16491 return __dom_wrap(_this.$dom.add(__dom_unwrap(element), __dom_unwrap(before) ));
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
16535 } 16535 }
16536 16536
16537 function native__HTMLSelectElementWrappingImplementation__setCustomValidity(_thi s, error) { 16537 function native__HTMLSelectElementWrappingImplementation__setCustomValidity(_thi s, error) {
16538 try { 16538 try {
16539 return __dom_wrap(_this.$dom.setCustomValidity(__dom_unwrap(error))); 16539 return __dom_wrap(_this.$dom.setCustomValidity(__dom_unwrap(error)));
16540 } catch (e) { 16540 } catch (e) {
16541 throw __dom_wrap_exception(e); 16541 throw __dom_wrap_exception(e);
16542 } 16542 }
16543 } 16543 }
16544 16544
16545 function native__HTMLSourceElementWrappingImplementation__get__HTMLSourceElement _media(_this) { 16545 function native__HTMLSourceElementWrappingImplementation__get_media(_this) {
16546 try { 16546 try {
16547 return __dom_wrap(_this.$dom.media); 16547 return __dom_wrap(_this.$dom.media);
16548 } catch (e) { 16548 } catch (e) {
16549 throw __dom_wrap_exception(e); 16549 throw __dom_wrap_exception(e);
16550 } 16550 }
16551 } 16551 }
16552 16552
16553 function native__HTMLSourceElementWrappingImplementation__set__HTMLSourceElement _media(_this, value) { 16553 function native__HTMLSourceElementWrappingImplementation__set_media(_this, value ) {
16554 try { 16554 try {
16555 _this.$dom.media = __dom_unwrap(value); 16555 _this.$dom.media = __dom_unwrap(value);
16556 } catch (e) { 16556 } catch (e) {
16557 throw __dom_wrap_exception(e); 16557 throw __dom_wrap_exception(e);
16558 } 16558 }
16559 } 16559 }
16560 16560
16561 function native__HTMLSourceElementWrappingImplementation__get__HTMLSourceElement _src(_this) { 16561 function native__HTMLSourceElementWrappingImplementation__get_src(_this) {
16562 try { 16562 try {
16563 return __dom_wrap(_this.$dom.src); 16563 return __dom_wrap(_this.$dom.src);
16564 } catch (e) { 16564 } catch (e) {
16565 throw __dom_wrap_exception(e); 16565 throw __dom_wrap_exception(e);
16566 } 16566 }
16567 } 16567 }
16568 16568
16569 function native__HTMLSourceElementWrappingImplementation__set__HTMLSourceElement _src(_this, value) { 16569 function native__HTMLSourceElementWrappingImplementation__set_src(_this, value) {
16570 try { 16570 try {
16571 _this.$dom.src = __dom_unwrap(value); 16571 _this.$dom.src = __dom_unwrap(value);
16572 } catch (e) { 16572 } catch (e) {
16573 throw __dom_wrap_exception(e); 16573 throw __dom_wrap_exception(e);
16574 } 16574 }
16575 } 16575 }
16576 16576
16577 function native__HTMLSourceElementWrappingImplementation__get__HTMLSourceElement _type(_this) { 16577 function native__HTMLSourceElementWrappingImplementation__get_type(_this) {
16578 try { 16578 try {
16579 return __dom_wrap(_this.$dom.type); 16579 return __dom_wrap(_this.$dom.type);
16580 } catch (e) { 16580 } catch (e) {
16581 throw __dom_wrap_exception(e); 16581 throw __dom_wrap_exception(e);
16582 } 16582 }
16583 } 16583 }
16584 16584
16585 function native__HTMLSourceElementWrappingImplementation__set__HTMLSourceElement _type(_this, value) { 16585 function native__HTMLSourceElementWrappingImplementation__set_type(_this, value) {
16586 try { 16586 try {
16587 _this.$dom.type = __dom_unwrap(value); 16587 _this.$dom.type = __dom_unwrap(value);
16588 } catch (e) { 16588 } catch (e) {
16589 throw __dom_wrap_exception(e); 16589 throw __dom_wrap_exception(e);
16590 } 16590 }
16591 } 16591 }
16592 16592
16593 function native__HTMLStyleElementWrappingImplementation__get__HTMLStyleElement_d isabled(_this) { 16593 function native__HTMLStyleElementWrappingImplementation__get_disabled(_this) {
16594 try { 16594 try {
16595 return __dom_wrap(_this.$dom.disabled); 16595 return __dom_wrap(_this.$dom.disabled);
16596 } catch (e) { 16596 } catch (e) {
16597 throw __dom_wrap_exception(e); 16597 throw __dom_wrap_exception(e);
16598 } 16598 }
16599 } 16599 }
16600 16600
16601 function native__HTMLStyleElementWrappingImplementation__set__HTMLStyleElement_d isabled(_this, value) { 16601 function native__HTMLStyleElementWrappingImplementation__set_disabled(_this, val ue) {
16602 try { 16602 try {
16603 _this.$dom.disabled = __dom_unwrap(value); 16603 _this.$dom.disabled = __dom_unwrap(value);
16604 } catch (e) { 16604 } catch (e) {
16605 throw __dom_wrap_exception(e); 16605 throw __dom_wrap_exception(e);
16606 } 16606 }
16607 } 16607 }
16608 16608
16609 function native__HTMLStyleElementWrappingImplementation__get__HTMLStyleElement_m edia(_this) { 16609 function native__HTMLStyleElementWrappingImplementation__get_media(_this) {
16610 try { 16610 try {
16611 return __dom_wrap(_this.$dom.media); 16611 return __dom_wrap(_this.$dom.media);
16612 } catch (e) { 16612 } catch (e) {
16613 throw __dom_wrap_exception(e); 16613 throw __dom_wrap_exception(e);
16614 } 16614 }
16615 } 16615 }
16616 16616
16617 function native__HTMLStyleElementWrappingImplementation__set__HTMLStyleElement_m edia(_this, value) { 16617 function native__HTMLStyleElementWrappingImplementation__set_media(_this, value) {
16618 try { 16618 try {
16619 _this.$dom.media = __dom_unwrap(value); 16619 _this.$dom.media = __dom_unwrap(value);
16620 } catch (e) { 16620 } catch (e) {
16621 throw __dom_wrap_exception(e); 16621 throw __dom_wrap_exception(e);
16622 } 16622 }
16623 } 16623 }
16624 16624
16625 function native__HTMLStyleElementWrappingImplementation__get__HTMLStyleElement_s heet(_this) { 16625 function native__HTMLStyleElementWrappingImplementation__get_sheet(_this) {
16626 try { 16626 try {
16627 return __dom_wrap(_this.$dom.sheet); 16627 return __dom_wrap(_this.$dom.sheet);
16628 } catch (e) { 16628 } catch (e) {
16629 throw __dom_wrap_exception(e); 16629 throw __dom_wrap_exception(e);
16630 } 16630 }
16631 } 16631 }
16632 16632
16633 function native__HTMLStyleElementWrappingImplementation__get__HTMLStyleElement_t ype(_this) { 16633 function native__HTMLStyleElementWrappingImplementation__get_type(_this) {
16634 try { 16634 try {
16635 return __dom_wrap(_this.$dom.type); 16635 return __dom_wrap(_this.$dom.type);
16636 } catch (e) { 16636 } catch (e) {
16637 throw __dom_wrap_exception(e); 16637 throw __dom_wrap_exception(e);
16638 } 16638 }
16639 } 16639 }
16640 16640
16641 function native__HTMLStyleElementWrappingImplementation__set__HTMLStyleElement_t ype(_this, value) { 16641 function native__HTMLStyleElementWrappingImplementation__set_type(_this, value) {
16642 try { 16642 try {
16643 _this.$dom.type = __dom_unwrap(value); 16643 _this.$dom.type = __dom_unwrap(value);
16644 } catch (e) { 16644 } catch (e) {
16645 throw __dom_wrap_exception(e); 16645 throw __dom_wrap_exception(e);
16646 } 16646 }
16647 } 16647 }
16648 16648
16649 function native__HTMLTableCaptionElementWrappingImplementation__get__HTMLTableCa ptionElement_align(_this) { 16649 function native__HTMLTableCaptionElementWrappingImplementation__get_align(_this) {
16650 try { 16650 try {
16651 return __dom_wrap(_this.$dom.align); 16651 return __dom_wrap(_this.$dom.align);
16652 } catch (e) { 16652 } catch (e) {
16653 throw __dom_wrap_exception(e); 16653 throw __dom_wrap_exception(e);
16654 } 16654 }
16655 } 16655 }
16656 16656
16657 function native__HTMLTableCaptionElementWrappingImplementation__set__HTMLTableCa ptionElement_align(_this, value) { 16657 function native__HTMLTableCaptionElementWrappingImplementation__set_align(_this, value) {
16658 try { 16658 try {
16659 _this.$dom.align = __dom_unwrap(value); 16659 _this.$dom.align = __dom_unwrap(value);
16660 } catch (e) { 16660 } catch (e) {
16661 throw __dom_wrap_exception(e); 16661 throw __dom_wrap_exception(e);
16662 } 16662 }
16663 } 16663 }
16664 16664
16665 function native__HTMLTableCellElementWrappingImplementation__get__HTMLTableCellE lement_abbr(_this) { 16665 function native__HTMLTableCellElementWrappingImplementation__get_abbr(_this) {
16666 try { 16666 try {
16667 return __dom_wrap(_this.$dom.abbr); 16667 return __dom_wrap(_this.$dom.abbr);
16668 } catch (e) { 16668 } catch (e) {
16669 throw __dom_wrap_exception(e); 16669 throw __dom_wrap_exception(e);
16670 } 16670 }
16671 } 16671 }
16672 16672
16673 function native__HTMLTableCellElementWrappingImplementation__set__HTMLTableCellE lement_abbr(_this, value) { 16673 function native__HTMLTableCellElementWrappingImplementation__set_abbr(_this, val ue) {
16674 try { 16674 try {
16675 _this.$dom.abbr = __dom_unwrap(value); 16675 _this.$dom.abbr = __dom_unwrap(value);
16676 } catch (e) { 16676 } catch (e) {
16677 throw __dom_wrap_exception(e); 16677 throw __dom_wrap_exception(e);
16678 } 16678 }
16679 } 16679 }
16680 16680
16681 function native__HTMLTableCellElementWrappingImplementation__get__HTMLTableCellE lement_align(_this) { 16681 function native__HTMLTableCellElementWrappingImplementation__get_align(_this) {
16682 try { 16682 try {
16683 return __dom_wrap(_this.$dom.align); 16683 return __dom_wrap(_this.$dom.align);
16684 } catch (e) { 16684 } catch (e) {
16685 throw __dom_wrap_exception(e); 16685 throw __dom_wrap_exception(e);
16686 } 16686 }
16687 } 16687 }
16688 16688
16689 function native__HTMLTableCellElementWrappingImplementation__set__HTMLTableCellE lement_align(_this, value) { 16689 function native__HTMLTableCellElementWrappingImplementation__set_align(_this, va lue) {
16690 try { 16690 try {
16691 _this.$dom.align = __dom_unwrap(value); 16691 _this.$dom.align = __dom_unwrap(value);
16692 } catch (e) { 16692 } catch (e) {
16693 throw __dom_wrap_exception(e); 16693 throw __dom_wrap_exception(e);
16694 } 16694 }
16695 } 16695 }
16696 16696
16697 function native__HTMLTableCellElementWrappingImplementation__get__HTMLTableCellE lement_axis(_this) { 16697 function native__HTMLTableCellElementWrappingImplementation__get_axis(_this) {
16698 try { 16698 try {
16699 return __dom_wrap(_this.$dom.axis); 16699 return __dom_wrap(_this.$dom.axis);
16700 } catch (e) { 16700 } catch (e) {
16701 throw __dom_wrap_exception(e); 16701 throw __dom_wrap_exception(e);
16702 } 16702 }
16703 } 16703 }
16704 16704
16705 function native__HTMLTableCellElementWrappingImplementation__set__HTMLTableCellE lement_axis(_this, value) { 16705 function native__HTMLTableCellElementWrappingImplementation__set_axis(_this, val ue) {
16706 try { 16706 try {
16707 _this.$dom.axis = __dom_unwrap(value); 16707 _this.$dom.axis = __dom_unwrap(value);
16708 } catch (e) { 16708 } catch (e) {
16709 throw __dom_wrap_exception(e); 16709 throw __dom_wrap_exception(e);
16710 } 16710 }
16711 } 16711 }
16712 16712
16713 function native__HTMLTableCellElementWrappingImplementation__get__HTMLTableCellE lement_bgColor(_this) { 16713 function native__HTMLTableCellElementWrappingImplementation__get_bgColor(_this) {
16714 try { 16714 try {
16715 return __dom_wrap(_this.$dom.bgColor); 16715 return __dom_wrap(_this.$dom.bgColor);
16716 } catch (e) { 16716 } catch (e) {
16717 throw __dom_wrap_exception(e); 16717 throw __dom_wrap_exception(e);
16718 } 16718 }
16719 } 16719 }
16720 16720
16721 function native__HTMLTableCellElementWrappingImplementation__set__HTMLTableCellE lement_bgColor(_this, value) { 16721 function native__HTMLTableCellElementWrappingImplementation__set_bgColor(_this, value) {
16722 try { 16722 try {
16723 _this.$dom.bgColor = __dom_unwrap(value); 16723 _this.$dom.bgColor = __dom_unwrap(value);
16724 } catch (e) { 16724 } catch (e) {
16725 throw __dom_wrap_exception(e); 16725 throw __dom_wrap_exception(e);
16726 } 16726 }
16727 } 16727 }
16728 16728
16729 function native__HTMLTableCellElementWrappingImplementation__get__HTMLTableCellE lement_cellIndex(_this) { 16729 function native__HTMLTableCellElementWrappingImplementation__get_cellIndex(_this ) {
16730 try { 16730 try {
16731 return __dom_wrap(_this.$dom.cellIndex); 16731 return __dom_wrap(_this.$dom.cellIndex);
16732 } catch (e) { 16732 } catch (e) {
16733 throw __dom_wrap_exception(e); 16733 throw __dom_wrap_exception(e);
16734 } 16734 }
16735 } 16735 }
16736 16736
16737 function native__HTMLTableCellElementWrappingImplementation__get__HTMLTableCellE lement_ch(_this) { 16737 function native__HTMLTableCellElementWrappingImplementation__get_ch(_this) {
16738 try { 16738 try {
16739 return __dom_wrap(_this.$dom.ch); 16739 return __dom_wrap(_this.$dom.ch);
16740 } catch (e) { 16740 } catch (e) {
16741 throw __dom_wrap_exception(e); 16741 throw __dom_wrap_exception(e);
16742 } 16742 }
16743 } 16743 }
16744 16744
16745 function native__HTMLTableCellElementWrappingImplementation__set__HTMLTableCellE lement_ch(_this, value) { 16745 function native__HTMLTableCellElementWrappingImplementation__set_ch(_this, value ) {
16746 try { 16746 try {
16747 _this.$dom.ch = __dom_unwrap(value); 16747 _this.$dom.ch = __dom_unwrap(value);
16748 } catch (e) { 16748 } catch (e) {
16749 throw __dom_wrap_exception(e); 16749 throw __dom_wrap_exception(e);
16750 } 16750 }
16751 } 16751 }
16752 16752
16753 function native__HTMLTableCellElementWrappingImplementation__get__HTMLTableCellE lement_chOff(_this) { 16753 function native__HTMLTableCellElementWrappingImplementation__get_chOff(_this) {
16754 try { 16754 try {
16755 return __dom_wrap(_this.$dom.chOff); 16755 return __dom_wrap(_this.$dom.chOff);
16756 } catch (e) { 16756 } catch (e) {
16757 throw __dom_wrap_exception(e); 16757 throw __dom_wrap_exception(e);
16758 } 16758 }
16759 } 16759 }
16760 16760
16761 function native__HTMLTableCellElementWrappingImplementation__set__HTMLTableCellE lement_chOff(_this, value) { 16761 function native__HTMLTableCellElementWrappingImplementation__set_chOff(_this, va lue) {
16762 try { 16762 try {
16763 _this.$dom.chOff = __dom_unwrap(value); 16763 _this.$dom.chOff = __dom_unwrap(value);
16764 } catch (e) { 16764 } catch (e) {
16765 throw __dom_wrap_exception(e); 16765 throw __dom_wrap_exception(e);
16766 } 16766 }
16767 } 16767 }
16768 16768
16769 function native__HTMLTableCellElementWrappingImplementation__get__HTMLTableCellE lement_colSpan(_this) { 16769 function native__HTMLTableCellElementWrappingImplementation__get_colSpan(_this) {
16770 try { 16770 try {
16771 return __dom_wrap(_this.$dom.colSpan); 16771 return __dom_wrap(_this.$dom.colSpan);
16772 } catch (e) { 16772 } catch (e) {
16773 throw __dom_wrap_exception(e); 16773 throw __dom_wrap_exception(e);
16774 } 16774 }
16775 } 16775 }
16776 16776
16777 function native__HTMLTableCellElementWrappingImplementation__set__HTMLTableCellE lement_colSpan(_this, value) { 16777 function native__HTMLTableCellElementWrappingImplementation__set_colSpan(_this, value) {
16778 try { 16778 try {
16779 _this.$dom.colSpan = __dom_unwrap(value); 16779 _this.$dom.colSpan = __dom_unwrap(value);
16780 } catch (e) { 16780 } catch (e) {
16781 throw __dom_wrap_exception(e); 16781 throw __dom_wrap_exception(e);
16782 } 16782 }
16783 } 16783 }
16784 16784
16785 function native__HTMLTableCellElementWrappingImplementation__get__HTMLTableCellE lement_headers(_this) { 16785 function native__HTMLTableCellElementWrappingImplementation__get_headers(_this) {
16786 try { 16786 try {
16787 return __dom_wrap(_this.$dom.headers); 16787 return __dom_wrap(_this.$dom.headers);
16788 } catch (e) { 16788 } catch (e) {
16789 throw __dom_wrap_exception(e); 16789 throw __dom_wrap_exception(e);
16790 } 16790 }
16791 } 16791 }
16792 16792
16793 function native__HTMLTableCellElementWrappingImplementation__set__HTMLTableCellE lement_headers(_this, value) { 16793 function native__HTMLTableCellElementWrappingImplementation__set_headers(_this, value) {
16794 try { 16794 try {
16795 _this.$dom.headers = __dom_unwrap(value); 16795 _this.$dom.headers = __dom_unwrap(value);
16796 } catch (e) { 16796 } catch (e) {
16797 throw __dom_wrap_exception(e); 16797 throw __dom_wrap_exception(e);
16798 } 16798 }
16799 } 16799 }
16800 16800
16801 function native__HTMLTableCellElementWrappingImplementation__get__HTMLTableCellE lement_height(_this) { 16801 function native__HTMLTableCellElementWrappingImplementation__get_height(_this) {
16802 try { 16802 try {
16803 return __dom_wrap(_this.$dom.height); 16803 return __dom_wrap(_this.$dom.height);
16804 } catch (e) { 16804 } catch (e) {
16805 throw __dom_wrap_exception(e); 16805 throw __dom_wrap_exception(e);
16806 } 16806 }
16807 } 16807 }
16808 16808
16809 function native__HTMLTableCellElementWrappingImplementation__set__HTMLTableCellE lement_height(_this, value) { 16809 function native__HTMLTableCellElementWrappingImplementation__set_height(_this, v alue) {
16810 try { 16810 try {
16811 _this.$dom.height = __dom_unwrap(value); 16811 _this.$dom.height = __dom_unwrap(value);
16812 } catch (e) { 16812 } catch (e) {
16813 throw __dom_wrap_exception(e); 16813 throw __dom_wrap_exception(e);
16814 } 16814 }
16815 } 16815 }
16816 16816
16817 function native__HTMLTableCellElementWrappingImplementation__get__HTMLTableCellE lement_noWrap(_this) { 16817 function native__HTMLTableCellElementWrappingImplementation__get_noWrap(_this) {
16818 try { 16818 try {
16819 return __dom_wrap(_this.$dom.noWrap); 16819 return __dom_wrap(_this.$dom.noWrap);
16820 } catch (e) { 16820 } catch (e) {
16821 throw __dom_wrap_exception(e); 16821 throw __dom_wrap_exception(e);
16822 } 16822 }
16823 } 16823 }
16824 16824
16825 function native__HTMLTableCellElementWrappingImplementation__set__HTMLTableCellE lement_noWrap(_this, value) { 16825 function native__HTMLTableCellElementWrappingImplementation__set_noWrap(_this, v alue) {
16826 try { 16826 try {
16827 _this.$dom.noWrap = __dom_unwrap(value); 16827 _this.$dom.noWrap = __dom_unwrap(value);
16828 } catch (e) { 16828 } catch (e) {
16829 throw __dom_wrap_exception(e); 16829 throw __dom_wrap_exception(e);
16830 } 16830 }
16831 } 16831 }
16832 16832
16833 function native__HTMLTableCellElementWrappingImplementation__get__HTMLTableCellE lement_rowSpan(_this) { 16833 function native__HTMLTableCellElementWrappingImplementation__get_rowSpan(_this) {
16834 try { 16834 try {
16835 return __dom_wrap(_this.$dom.rowSpan); 16835 return __dom_wrap(_this.$dom.rowSpan);
16836 } catch (e) { 16836 } catch (e) {
16837 throw __dom_wrap_exception(e); 16837 throw __dom_wrap_exception(e);
16838 } 16838 }
16839 } 16839 }
16840 16840
16841 function native__HTMLTableCellElementWrappingImplementation__set__HTMLTableCellE lement_rowSpan(_this, value) { 16841 function native__HTMLTableCellElementWrappingImplementation__set_rowSpan(_this, value) {
16842 try { 16842 try {
16843 _this.$dom.rowSpan = __dom_unwrap(value); 16843 _this.$dom.rowSpan = __dom_unwrap(value);
16844 } catch (e) { 16844 } catch (e) {
16845 throw __dom_wrap_exception(e); 16845 throw __dom_wrap_exception(e);
16846 } 16846 }
16847 } 16847 }
16848 16848
16849 function native__HTMLTableCellElementWrappingImplementation__get__HTMLTableCellE lement_scope(_this) { 16849 function native__HTMLTableCellElementWrappingImplementation__get_scope(_this) {
16850 try { 16850 try {
16851 return __dom_wrap(_this.$dom.scope); 16851 return __dom_wrap(_this.$dom.scope);
16852 } catch (e) { 16852 } catch (e) {
16853 throw __dom_wrap_exception(e); 16853 throw __dom_wrap_exception(e);
16854 } 16854 }
16855 } 16855 }
16856 16856
16857 function native__HTMLTableCellElementWrappingImplementation__set__HTMLTableCellE lement_scope(_this, value) { 16857 function native__HTMLTableCellElementWrappingImplementation__set_scope(_this, va lue) {
16858 try { 16858 try {
16859 _this.$dom.scope = __dom_unwrap(value); 16859 _this.$dom.scope = __dom_unwrap(value);
16860 } catch (e) { 16860 } catch (e) {
16861 throw __dom_wrap_exception(e); 16861 throw __dom_wrap_exception(e);
16862 } 16862 }
16863 } 16863 }
16864 16864
16865 function native__HTMLTableCellElementWrappingImplementation__get__HTMLTableCellE lement_vAlign(_this) { 16865 function native__HTMLTableCellElementWrappingImplementation__get_vAlign(_this) {
16866 try { 16866 try {
16867 return __dom_wrap(_this.$dom.vAlign); 16867 return __dom_wrap(_this.$dom.vAlign);
16868 } catch (e) { 16868 } catch (e) {
16869 throw __dom_wrap_exception(e); 16869 throw __dom_wrap_exception(e);
16870 } 16870 }
16871 } 16871 }
16872 16872
16873 function native__HTMLTableCellElementWrappingImplementation__set__HTMLTableCellE lement_vAlign(_this, value) { 16873 function native__HTMLTableCellElementWrappingImplementation__set_vAlign(_this, v alue) {
16874 try { 16874 try {
16875 _this.$dom.vAlign = __dom_unwrap(value); 16875 _this.$dom.vAlign = __dom_unwrap(value);
16876 } catch (e) { 16876 } catch (e) {
16877 throw __dom_wrap_exception(e); 16877 throw __dom_wrap_exception(e);
16878 } 16878 }
16879 } 16879 }
16880 16880
16881 function native__HTMLTableCellElementWrappingImplementation__get__HTMLTableCellE lement_width(_this) { 16881 function native__HTMLTableCellElementWrappingImplementation__get_width(_this) {
16882 try { 16882 try {
16883 return __dom_wrap(_this.$dom.width); 16883 return __dom_wrap(_this.$dom.width);
16884 } catch (e) { 16884 } catch (e) {
16885 throw __dom_wrap_exception(e); 16885 throw __dom_wrap_exception(e);
16886 } 16886 }
16887 } 16887 }
16888 16888
16889 function native__HTMLTableCellElementWrappingImplementation__set__HTMLTableCellE lement_width(_this, value) { 16889 function native__HTMLTableCellElementWrappingImplementation__set_width(_this, va lue) {
16890 try { 16890 try {
16891 _this.$dom.width = __dom_unwrap(value); 16891 _this.$dom.width = __dom_unwrap(value);
16892 } catch (e) { 16892 } catch (e) {
16893 throw __dom_wrap_exception(e); 16893 throw __dom_wrap_exception(e);
16894 } 16894 }
16895 } 16895 }
16896 16896
16897 function native__HTMLTableColElementWrappingImplementation__get__HTMLTableColEle ment_align(_this) { 16897 function native__HTMLTableColElementWrappingImplementation__get_align(_this) {
16898 try { 16898 try {
16899 return __dom_wrap(_this.$dom.align); 16899 return __dom_wrap(_this.$dom.align);
16900 } catch (e) { 16900 } catch (e) {
16901 throw __dom_wrap_exception(e); 16901 throw __dom_wrap_exception(e);
16902 } 16902 }
16903 } 16903 }
16904 16904
16905 function native__HTMLTableColElementWrappingImplementation__set__HTMLTableColEle ment_align(_this, value) { 16905 function native__HTMLTableColElementWrappingImplementation__set_align(_this, val ue) {
16906 try { 16906 try {
16907 _this.$dom.align = __dom_unwrap(value); 16907 _this.$dom.align = __dom_unwrap(value);
16908 } catch (e) { 16908 } catch (e) {
16909 throw __dom_wrap_exception(e); 16909 throw __dom_wrap_exception(e);
16910 } 16910 }
16911 } 16911 }
16912 16912
16913 function native__HTMLTableColElementWrappingImplementation__get__HTMLTableColEle ment_ch(_this) { 16913 function native__HTMLTableColElementWrappingImplementation__get_ch(_this) {
16914 try { 16914 try {
16915 return __dom_wrap(_this.$dom.ch); 16915 return __dom_wrap(_this.$dom.ch);
16916 } catch (e) { 16916 } catch (e) {
16917 throw __dom_wrap_exception(e); 16917 throw __dom_wrap_exception(e);
16918 } 16918 }
16919 } 16919 }
16920 16920
16921 function native__HTMLTableColElementWrappingImplementation__set__HTMLTableColEle ment_ch(_this, value) { 16921 function native__HTMLTableColElementWrappingImplementation__set_ch(_this, value) {
16922 try { 16922 try {
16923 _this.$dom.ch = __dom_unwrap(value); 16923 _this.$dom.ch = __dom_unwrap(value);
16924 } catch (e) { 16924 } catch (e) {
16925 throw __dom_wrap_exception(e); 16925 throw __dom_wrap_exception(e);
16926 } 16926 }
16927 } 16927 }
16928 16928
16929 function native__HTMLTableColElementWrappingImplementation__get__HTMLTableColEle ment_chOff(_this) { 16929 function native__HTMLTableColElementWrappingImplementation__get_chOff(_this) {
16930 try { 16930 try {
16931 return __dom_wrap(_this.$dom.chOff); 16931 return __dom_wrap(_this.$dom.chOff);
16932 } catch (e) { 16932 } catch (e) {
16933 throw __dom_wrap_exception(e); 16933 throw __dom_wrap_exception(e);
16934 } 16934 }
16935 } 16935 }
16936 16936
16937 function native__HTMLTableColElementWrappingImplementation__set__HTMLTableColEle ment_chOff(_this, value) { 16937 function native__HTMLTableColElementWrappingImplementation__set_chOff(_this, val ue) {
16938 try { 16938 try {
16939 _this.$dom.chOff = __dom_unwrap(value); 16939 _this.$dom.chOff = __dom_unwrap(value);
16940 } catch (e) { 16940 } catch (e) {
16941 throw __dom_wrap_exception(e); 16941 throw __dom_wrap_exception(e);
16942 } 16942 }
16943 } 16943 }
16944 16944
16945 function native__HTMLTableColElementWrappingImplementation__get__HTMLTableColEle ment_span(_this) { 16945 function native__HTMLTableColElementWrappingImplementation__get_span(_this) {
16946 try { 16946 try {
16947 return __dom_wrap(_this.$dom.span); 16947 return __dom_wrap(_this.$dom.span);
16948 } catch (e) { 16948 } catch (e) {
16949 throw __dom_wrap_exception(e); 16949 throw __dom_wrap_exception(e);
16950 } 16950 }
16951 } 16951 }
16952 16952
16953 function native__HTMLTableColElementWrappingImplementation__set__HTMLTableColEle ment_span(_this, value) { 16953 function native__HTMLTableColElementWrappingImplementation__set_span(_this, valu e) {
16954 try { 16954 try {
16955 _this.$dom.span = __dom_unwrap(value); 16955 _this.$dom.span = __dom_unwrap(value);
16956 } catch (e) { 16956 } catch (e) {
16957 throw __dom_wrap_exception(e); 16957 throw __dom_wrap_exception(e);
16958 } 16958 }
16959 } 16959 }
16960 16960
16961 function native__HTMLTableColElementWrappingImplementation__get__HTMLTableColEle ment_vAlign(_this) { 16961 function native__HTMLTableColElementWrappingImplementation__get_vAlign(_this) {
16962 try { 16962 try {
16963 return __dom_wrap(_this.$dom.vAlign); 16963 return __dom_wrap(_this.$dom.vAlign);
16964 } catch (e) { 16964 } catch (e) {
16965 throw __dom_wrap_exception(e); 16965 throw __dom_wrap_exception(e);
16966 } 16966 }
16967 } 16967 }
16968 16968
16969 function native__HTMLTableColElementWrappingImplementation__set__HTMLTableColEle ment_vAlign(_this, value) { 16969 function native__HTMLTableColElementWrappingImplementation__set_vAlign(_this, va lue) {
16970 try { 16970 try {
16971 _this.$dom.vAlign = __dom_unwrap(value); 16971 _this.$dom.vAlign = __dom_unwrap(value);
16972 } catch (e) { 16972 } catch (e) {
16973 throw __dom_wrap_exception(e); 16973 throw __dom_wrap_exception(e);
16974 } 16974 }
16975 } 16975 }
16976 16976
16977 function native__HTMLTableColElementWrappingImplementation__get__HTMLTableColEle ment_width(_this) { 16977 function native__HTMLTableColElementWrappingImplementation__get_width(_this) {
16978 try { 16978 try {
16979 return __dom_wrap(_this.$dom.width); 16979 return __dom_wrap(_this.$dom.width);
16980 } catch (e) { 16980 } catch (e) {
16981 throw __dom_wrap_exception(e); 16981 throw __dom_wrap_exception(e);
16982 } 16982 }
16983 } 16983 }
16984 16984
16985 function native__HTMLTableColElementWrappingImplementation__set__HTMLTableColEle ment_width(_this, value) { 16985 function native__HTMLTableColElementWrappingImplementation__set_width(_this, val ue) {
16986 try { 16986 try {
16987 _this.$dom.width = __dom_unwrap(value); 16987 _this.$dom.width = __dom_unwrap(value);
16988 } catch (e) { 16988 } catch (e) {
16989 throw __dom_wrap_exception(e); 16989 throw __dom_wrap_exception(e);
16990 } 16990 }
16991 } 16991 }
16992 16992
16993 function native__HTMLTableElementWrappingImplementation__get__HTMLTableElement_a lign(_this) { 16993 function native__HTMLTableElementWrappingImplementation__get_align(_this) {
16994 try { 16994 try {
16995 return __dom_wrap(_this.$dom.align); 16995 return __dom_wrap(_this.$dom.align);
16996 } catch (e) { 16996 } catch (e) {
16997 throw __dom_wrap_exception(e); 16997 throw __dom_wrap_exception(e);
16998 } 16998 }
16999 } 16999 }
17000 17000
17001 function native__HTMLTableElementWrappingImplementation__set__HTMLTableElement_a lign(_this, value) { 17001 function native__HTMLTableElementWrappingImplementation__set_align(_this, value) {
17002 try { 17002 try {
17003 _this.$dom.align = __dom_unwrap(value); 17003 _this.$dom.align = __dom_unwrap(value);
17004 } catch (e) { 17004 } catch (e) {
17005 throw __dom_wrap_exception(e); 17005 throw __dom_wrap_exception(e);
17006 } 17006 }
17007 } 17007 }
17008 17008
17009 function native__HTMLTableElementWrappingImplementation__get__HTMLTableElement_b gColor(_this) { 17009 function native__HTMLTableElementWrappingImplementation__get_bgColor(_this) {
17010 try { 17010 try {
17011 return __dom_wrap(_this.$dom.bgColor); 17011 return __dom_wrap(_this.$dom.bgColor);
17012 } catch (e) { 17012 } catch (e) {
17013 throw __dom_wrap_exception(e); 17013 throw __dom_wrap_exception(e);
17014 } 17014 }
17015 } 17015 }
17016 17016
17017 function native__HTMLTableElementWrappingImplementation__set__HTMLTableElement_b gColor(_this, value) { 17017 function native__HTMLTableElementWrappingImplementation__set_bgColor(_this, valu e) {
17018 try { 17018 try {
17019 _this.$dom.bgColor = __dom_unwrap(value); 17019 _this.$dom.bgColor = __dom_unwrap(value);
17020 } catch (e) { 17020 } catch (e) {
17021 throw __dom_wrap_exception(e); 17021 throw __dom_wrap_exception(e);
17022 } 17022 }
17023 } 17023 }
17024 17024
17025 function native__HTMLTableElementWrappingImplementation__get__HTMLTableElement_b order(_this) { 17025 function native__HTMLTableElementWrappingImplementation__get_border(_this) {
17026 try { 17026 try {
17027 return __dom_wrap(_this.$dom.border); 17027 return __dom_wrap(_this.$dom.border);
17028 } catch (e) { 17028 } catch (e) {
17029 throw __dom_wrap_exception(e); 17029 throw __dom_wrap_exception(e);
17030 } 17030 }
17031 } 17031 }
17032 17032
17033 function native__HTMLTableElementWrappingImplementation__set__HTMLTableElement_b order(_this, value) { 17033 function native__HTMLTableElementWrappingImplementation__set_border(_this, value ) {
17034 try { 17034 try {
17035 _this.$dom.border = __dom_unwrap(value); 17035 _this.$dom.border = __dom_unwrap(value);
17036 } catch (e) { 17036 } catch (e) {
17037 throw __dom_wrap_exception(e); 17037 throw __dom_wrap_exception(e);
17038 } 17038 }
17039 } 17039 }
17040 17040
17041 function native__HTMLTableElementWrappingImplementation__get__HTMLTableElement_c aption(_this) { 17041 function native__HTMLTableElementWrappingImplementation__get_caption(_this) {
17042 try { 17042 try {
17043 return __dom_wrap(_this.$dom.caption); 17043 return __dom_wrap(_this.$dom.caption);
17044 } catch (e) { 17044 } catch (e) {
17045 throw __dom_wrap_exception(e); 17045 throw __dom_wrap_exception(e);
17046 } 17046 }
17047 } 17047 }
17048 17048
17049 function native__HTMLTableElementWrappingImplementation__set__HTMLTableElement_c aption(_this, value) { 17049 function native__HTMLTableElementWrappingImplementation__set_caption(_this, valu e) {
17050 try { 17050 try {
17051 _this.$dom.caption = __dom_unwrap(value); 17051 _this.$dom.caption = __dom_unwrap(value);
17052 } catch (e) { 17052 } catch (e) {
17053 throw __dom_wrap_exception(e); 17053 throw __dom_wrap_exception(e);
17054 } 17054 }
17055 } 17055 }
17056 17056
17057 function native__HTMLTableElementWrappingImplementation__get__HTMLTableElement_c ellPadding(_this) { 17057 function native__HTMLTableElementWrappingImplementation__get_cellPadding(_this) {
17058 try { 17058 try {
17059 return __dom_wrap(_this.$dom.cellPadding); 17059 return __dom_wrap(_this.$dom.cellPadding);
17060 } catch (e) { 17060 } catch (e) {
17061 throw __dom_wrap_exception(e); 17061 throw __dom_wrap_exception(e);
17062 } 17062 }
17063 } 17063 }
17064 17064
17065 function native__HTMLTableElementWrappingImplementation__set__HTMLTableElement_c ellPadding(_this, value) { 17065 function native__HTMLTableElementWrappingImplementation__set_cellPadding(_this, value) {
17066 try { 17066 try {
17067 _this.$dom.cellPadding = __dom_unwrap(value); 17067 _this.$dom.cellPadding = __dom_unwrap(value);
17068 } catch (e) { 17068 } catch (e) {
17069 throw __dom_wrap_exception(e); 17069 throw __dom_wrap_exception(e);
17070 } 17070 }
17071 } 17071 }
17072 17072
17073 function native__HTMLTableElementWrappingImplementation__get__HTMLTableElement_c ellSpacing(_this) { 17073 function native__HTMLTableElementWrappingImplementation__get_cellSpacing(_this) {
17074 try { 17074 try {
17075 return __dom_wrap(_this.$dom.cellSpacing); 17075 return __dom_wrap(_this.$dom.cellSpacing);
17076 } catch (e) { 17076 } catch (e) {
17077 throw __dom_wrap_exception(e); 17077 throw __dom_wrap_exception(e);
17078 } 17078 }
17079 } 17079 }
17080 17080
17081 function native__HTMLTableElementWrappingImplementation__set__HTMLTableElement_c ellSpacing(_this, value) { 17081 function native__HTMLTableElementWrappingImplementation__set_cellSpacing(_this, value) {
17082 try { 17082 try {
17083 _this.$dom.cellSpacing = __dom_unwrap(value); 17083 _this.$dom.cellSpacing = __dom_unwrap(value);
17084 } catch (e) { 17084 } catch (e) {
17085 throw __dom_wrap_exception(e); 17085 throw __dom_wrap_exception(e);
17086 } 17086 }
17087 } 17087 }
17088 17088
17089 function native__HTMLTableElementWrappingImplementation__get__HTMLTableElement_f rame(_this) { 17089 function native__HTMLTableElementWrappingImplementation__get_frame(_this) {
17090 try { 17090 try {
17091 return __dom_wrap(_this.$dom.frame); 17091 return __dom_wrap(_this.$dom.frame);
17092 } catch (e) { 17092 } catch (e) {
17093 throw __dom_wrap_exception(e); 17093 throw __dom_wrap_exception(e);
17094 } 17094 }
17095 } 17095 }
17096 17096
17097 function native__HTMLTableElementWrappingImplementation__set__HTMLTableElement_f rame(_this, value) { 17097 function native__HTMLTableElementWrappingImplementation__set_frame(_this, value) {
17098 try { 17098 try {
17099 _this.$dom.frame = __dom_unwrap(value); 17099 _this.$dom.frame = __dom_unwrap(value);
17100 } catch (e) { 17100 } catch (e) {
17101 throw __dom_wrap_exception(e); 17101 throw __dom_wrap_exception(e);
17102 } 17102 }
17103 } 17103 }
17104 17104
17105 function native__HTMLTableElementWrappingImplementation__get__HTMLTableElement_r ows(_this) { 17105 function native__HTMLTableElementWrappingImplementation__get_rows(_this) {
17106 try { 17106 try {
17107 return __dom_wrap(_this.$dom.rows); 17107 return __dom_wrap(_this.$dom.rows);
17108 } catch (e) { 17108 } catch (e) {
17109 throw __dom_wrap_exception(e); 17109 throw __dom_wrap_exception(e);
17110 } 17110 }
17111 } 17111 }
17112 17112
17113 function native__HTMLTableElementWrappingImplementation__get__HTMLTableElement_r ules(_this) { 17113 function native__HTMLTableElementWrappingImplementation__get_rules(_this) {
17114 try { 17114 try {
17115 return __dom_wrap(_this.$dom.rules); 17115 return __dom_wrap(_this.$dom.rules);
17116 } catch (e) { 17116 } catch (e) {
17117 throw __dom_wrap_exception(e); 17117 throw __dom_wrap_exception(e);
17118 } 17118 }
17119 } 17119 }
17120 17120
17121 function native__HTMLTableElementWrappingImplementation__set__HTMLTableElement_r ules(_this, value) { 17121 function native__HTMLTableElementWrappingImplementation__set_rules(_this, value) {
17122 try { 17122 try {
17123 _this.$dom.rules = __dom_unwrap(value); 17123 _this.$dom.rules = __dom_unwrap(value);
17124 } catch (e) { 17124 } catch (e) {
17125 throw __dom_wrap_exception(e); 17125 throw __dom_wrap_exception(e);
17126 } 17126 }
17127 } 17127 }
17128 17128
17129 function native__HTMLTableElementWrappingImplementation__get__HTMLTableElement_s ummary(_this) { 17129 function native__HTMLTableElementWrappingImplementation__get_summary(_this) {
17130 try { 17130 try {
17131 return __dom_wrap(_this.$dom.summary); 17131 return __dom_wrap(_this.$dom.summary);
17132 } catch (e) { 17132 } catch (e) {
17133 throw __dom_wrap_exception(e); 17133 throw __dom_wrap_exception(e);
17134 } 17134 }
17135 } 17135 }
17136 17136
17137 function native__HTMLTableElementWrappingImplementation__set__HTMLTableElement_s ummary(_this, value) { 17137 function native__HTMLTableElementWrappingImplementation__set_summary(_this, valu e) {
17138 try { 17138 try {
17139 _this.$dom.summary = __dom_unwrap(value); 17139 _this.$dom.summary = __dom_unwrap(value);
17140 } catch (e) { 17140 } catch (e) {
17141 throw __dom_wrap_exception(e); 17141 throw __dom_wrap_exception(e);
17142 } 17142 }
17143 } 17143 }
17144 17144
17145 function native__HTMLTableElementWrappingImplementation__get__HTMLTableElement_t Bodies(_this) { 17145 function native__HTMLTableElementWrappingImplementation__get_tBodies(_this) {
17146 try { 17146 try {
17147 return __dom_wrap(_this.$dom.tBodies); 17147 return __dom_wrap(_this.$dom.tBodies);
17148 } catch (e) { 17148 } catch (e) {
17149 throw __dom_wrap_exception(e); 17149 throw __dom_wrap_exception(e);
17150 } 17150 }
17151 } 17151 }
17152 17152
17153 function native__HTMLTableElementWrappingImplementation__get__HTMLTableElement_t Foot(_this) { 17153 function native__HTMLTableElementWrappingImplementation__get_tFoot(_this) {
17154 try { 17154 try {
17155 return __dom_wrap(_this.$dom.tFoot); 17155 return __dom_wrap(_this.$dom.tFoot);
17156 } catch (e) { 17156 } catch (e) {
17157 throw __dom_wrap_exception(e); 17157 throw __dom_wrap_exception(e);
17158 } 17158 }
17159 } 17159 }
17160 17160
17161 function native__HTMLTableElementWrappingImplementation__set__HTMLTableElement_t Foot(_this, value) { 17161 function native__HTMLTableElementWrappingImplementation__set_tFoot(_this, value) {
17162 try { 17162 try {
17163 _this.$dom.tFoot = __dom_unwrap(value); 17163 _this.$dom.tFoot = __dom_unwrap(value);
17164 } catch (e) { 17164 } catch (e) {
17165 throw __dom_wrap_exception(e); 17165 throw __dom_wrap_exception(e);
17166 } 17166 }
17167 } 17167 }
17168 17168
17169 function native__HTMLTableElementWrappingImplementation__get__HTMLTableElement_t Head(_this) { 17169 function native__HTMLTableElementWrappingImplementation__get_tHead(_this) {
17170 try { 17170 try {
17171 return __dom_wrap(_this.$dom.tHead); 17171 return __dom_wrap(_this.$dom.tHead);
17172 } catch (e) { 17172 } catch (e) {
17173 throw __dom_wrap_exception(e); 17173 throw __dom_wrap_exception(e);
17174 } 17174 }
17175 } 17175 }
17176 17176
17177 function native__HTMLTableElementWrappingImplementation__set__HTMLTableElement_t Head(_this, value) { 17177 function native__HTMLTableElementWrappingImplementation__set_tHead(_this, value) {
17178 try { 17178 try {
17179 _this.$dom.tHead = __dom_unwrap(value); 17179 _this.$dom.tHead = __dom_unwrap(value);
17180 } catch (e) { 17180 } catch (e) {
17181 throw __dom_wrap_exception(e); 17181 throw __dom_wrap_exception(e);
17182 } 17182 }
17183 } 17183 }
17184 17184
17185 function native__HTMLTableElementWrappingImplementation__get__HTMLTableElement_w idth(_this) { 17185 function native__HTMLTableElementWrappingImplementation__get_width(_this) {
17186 try { 17186 try {
17187 return __dom_wrap(_this.$dom.width); 17187 return __dom_wrap(_this.$dom.width);
17188 } catch (e) { 17188 } catch (e) {
17189 throw __dom_wrap_exception(e); 17189 throw __dom_wrap_exception(e);
17190 } 17190 }
17191 } 17191 }
17192 17192
17193 function native__HTMLTableElementWrappingImplementation__set__HTMLTableElement_w idth(_this, value) { 17193 function native__HTMLTableElementWrappingImplementation__set_width(_this, value) {
17194 try { 17194 try {
17195 _this.$dom.width = __dom_unwrap(value); 17195 _this.$dom.width = __dom_unwrap(value);
17196 } catch (e) { 17196 } catch (e) {
17197 throw __dom_wrap_exception(e); 17197 throw __dom_wrap_exception(e);
17198 } 17198 }
17199 } 17199 }
17200 17200
17201 function native__HTMLTableElementWrappingImplementation__createCaption(_this) { 17201 function native__HTMLTableElementWrappingImplementation__createCaption(_this) {
17202 try { 17202 try {
17203 return __dom_wrap(_this.$dom.createCaption()); 17203 return __dom_wrap(_this.$dom.createCaption());
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
17255 } 17255 }
17256 17256
17257 function native__HTMLTableElementWrappingImplementation__insertRow(_this, index) { 17257 function native__HTMLTableElementWrappingImplementation__insertRow(_this, index) {
17258 try { 17258 try {
17259 return __dom_wrap(_this.$dom.insertRow(__dom_unwrap(index))); 17259 return __dom_wrap(_this.$dom.insertRow(__dom_unwrap(index)));
17260 } catch (e) { 17260 } catch (e) {
17261 throw __dom_wrap_exception(e); 17261 throw __dom_wrap_exception(e);
17262 } 17262 }
17263 } 17263 }
17264 17264
17265 function native__HTMLTableRowElementWrappingImplementation__get__HTMLTableRowEle ment_align(_this) { 17265 function native__HTMLTableRowElementWrappingImplementation__get_align(_this) {
17266 try { 17266 try {
17267 return __dom_wrap(_this.$dom.align); 17267 return __dom_wrap(_this.$dom.align);
17268 } catch (e) { 17268 } catch (e) {
17269 throw __dom_wrap_exception(e); 17269 throw __dom_wrap_exception(e);
17270 } 17270 }
17271 } 17271 }
17272 17272
17273 function native__HTMLTableRowElementWrappingImplementation__set__HTMLTableRowEle ment_align(_this, value) { 17273 function native__HTMLTableRowElementWrappingImplementation__set_align(_this, val ue) {
17274 try { 17274 try {
17275 _this.$dom.align = __dom_unwrap(value); 17275 _this.$dom.align = __dom_unwrap(value);
17276 } catch (e) { 17276 } catch (e) {
17277 throw __dom_wrap_exception(e); 17277 throw __dom_wrap_exception(e);
17278 } 17278 }
17279 } 17279 }
17280 17280
17281 function native__HTMLTableRowElementWrappingImplementation__get__HTMLTableRowEle ment_bgColor(_this) { 17281 function native__HTMLTableRowElementWrappingImplementation__get_bgColor(_this) {
17282 try { 17282 try {
17283 return __dom_wrap(_this.$dom.bgColor); 17283 return __dom_wrap(_this.$dom.bgColor);
17284 } catch (e) { 17284 } catch (e) {
17285 throw __dom_wrap_exception(e); 17285 throw __dom_wrap_exception(e);
17286 } 17286 }
17287 } 17287 }
17288 17288
17289 function native__HTMLTableRowElementWrappingImplementation__set__HTMLTableRowEle ment_bgColor(_this, value) { 17289 function native__HTMLTableRowElementWrappingImplementation__set_bgColor(_this, v alue) {
17290 try { 17290 try {
17291 _this.$dom.bgColor = __dom_unwrap(value); 17291 _this.$dom.bgColor = __dom_unwrap(value);
17292 } catch (e) { 17292 } catch (e) {
17293 throw __dom_wrap_exception(e); 17293 throw __dom_wrap_exception(e);
17294 } 17294 }
17295 } 17295 }
17296 17296
17297 function native__HTMLTableRowElementWrappingImplementation__get__HTMLTableRowEle ment_cells(_this) { 17297 function native__HTMLTableRowElementWrappingImplementation__get_cells(_this) {
17298 try { 17298 try {
17299 return __dom_wrap(_this.$dom.cells); 17299 return __dom_wrap(_this.$dom.cells);
17300 } catch (e) { 17300 } catch (e) {
17301 throw __dom_wrap_exception(e); 17301 throw __dom_wrap_exception(e);
17302 } 17302 }
17303 } 17303 }
17304 17304
17305 function native__HTMLTableRowElementWrappingImplementation__get__HTMLTableRowEle ment_ch(_this) { 17305 function native__HTMLTableRowElementWrappingImplementation__get_ch(_this) {
17306 try { 17306 try {
17307 return __dom_wrap(_this.$dom.ch); 17307 return __dom_wrap(_this.$dom.ch);
17308 } catch (e) { 17308 } catch (e) {
17309 throw __dom_wrap_exception(e); 17309 throw __dom_wrap_exception(e);
17310 } 17310 }
17311 } 17311 }
17312 17312
17313 function native__HTMLTableRowElementWrappingImplementation__set__HTMLTableRowEle ment_ch(_this, value) { 17313 function native__HTMLTableRowElementWrappingImplementation__set_ch(_this, value) {
17314 try { 17314 try {
17315 _this.$dom.ch = __dom_unwrap(value); 17315 _this.$dom.ch = __dom_unwrap(value);
17316 } catch (e) { 17316 } catch (e) {
17317 throw __dom_wrap_exception(e); 17317 throw __dom_wrap_exception(e);
17318 } 17318 }
17319 } 17319 }
17320 17320
17321 function native__HTMLTableRowElementWrappingImplementation__get__HTMLTableRowEle ment_chOff(_this) { 17321 function native__HTMLTableRowElementWrappingImplementation__get_chOff(_this) {
17322 try { 17322 try {
17323 return __dom_wrap(_this.$dom.chOff); 17323 return __dom_wrap(_this.$dom.chOff);
17324 } catch (e) { 17324 } catch (e) {
17325 throw __dom_wrap_exception(e); 17325 throw __dom_wrap_exception(e);
17326 } 17326 }
17327 } 17327 }
17328 17328
17329 function native__HTMLTableRowElementWrappingImplementation__set__HTMLTableRowEle ment_chOff(_this, value) { 17329 function native__HTMLTableRowElementWrappingImplementation__set_chOff(_this, val ue) {
17330 try { 17330 try {
17331 _this.$dom.chOff = __dom_unwrap(value); 17331 _this.$dom.chOff = __dom_unwrap(value);
17332 } catch (e) { 17332 } catch (e) {
17333 throw __dom_wrap_exception(e); 17333 throw __dom_wrap_exception(e);
17334 } 17334 }
17335 } 17335 }
17336 17336
17337 function native__HTMLTableRowElementWrappingImplementation__get__HTMLTableRowEle ment_rowIndex(_this) { 17337 function native__HTMLTableRowElementWrappingImplementation__get_rowIndex(_this) {
17338 try { 17338 try {
17339 return __dom_wrap(_this.$dom.rowIndex); 17339 return __dom_wrap(_this.$dom.rowIndex);
17340 } catch (e) { 17340 } catch (e) {
17341 throw __dom_wrap_exception(e); 17341 throw __dom_wrap_exception(e);
17342 } 17342 }
17343 } 17343 }
17344 17344
17345 function native__HTMLTableRowElementWrappingImplementation__get__HTMLTableRowEle ment_sectionRowIndex(_this) { 17345 function native__HTMLTableRowElementWrappingImplementation__get_sectionRowIndex( _this) {
17346 try { 17346 try {
17347 return __dom_wrap(_this.$dom.sectionRowIndex); 17347 return __dom_wrap(_this.$dom.sectionRowIndex);
17348 } catch (e) { 17348 } catch (e) {
17349 throw __dom_wrap_exception(e); 17349 throw __dom_wrap_exception(e);
17350 } 17350 }
17351 } 17351 }
17352 17352
17353 function native__HTMLTableRowElementWrappingImplementation__get__HTMLTableRowEle ment_vAlign(_this) { 17353 function native__HTMLTableRowElementWrappingImplementation__get_vAlign(_this) {
17354 try { 17354 try {
17355 return __dom_wrap(_this.$dom.vAlign); 17355 return __dom_wrap(_this.$dom.vAlign);
17356 } catch (e) { 17356 } catch (e) {
17357 throw __dom_wrap_exception(e); 17357 throw __dom_wrap_exception(e);
17358 } 17358 }
17359 } 17359 }
17360 17360
17361 function native__HTMLTableRowElementWrappingImplementation__set__HTMLTableRowEle ment_vAlign(_this, value) { 17361 function native__HTMLTableRowElementWrappingImplementation__set_vAlign(_this, va lue) {
17362 try { 17362 try {
17363 _this.$dom.vAlign = __dom_unwrap(value); 17363 _this.$dom.vAlign = __dom_unwrap(value);
17364 } catch (e) { 17364 } catch (e) {
17365 throw __dom_wrap_exception(e); 17365 throw __dom_wrap_exception(e);
17366 } 17366 }
17367 } 17367 }
17368 17368
17369 function native__HTMLTableRowElementWrappingImplementation__deleteCell(_this, in dex) { 17369 function native__HTMLTableRowElementWrappingImplementation__deleteCell(_this, in dex) {
17370 try { 17370 try {
17371 return __dom_wrap(_this.$dom.deleteCell(__dom_unwrap(index))); 17371 return __dom_wrap(_this.$dom.deleteCell(__dom_unwrap(index)));
17372 } catch (e) { 17372 } catch (e) {
17373 throw __dom_wrap_exception(e); 17373 throw __dom_wrap_exception(e);
17374 } 17374 }
17375 } 17375 }
17376 17376
17377 function native__HTMLTableRowElementWrappingImplementation__insertCell(_this, in dex) { 17377 function native__HTMLTableRowElementWrappingImplementation__insertCell(_this, in dex) {
17378 try { 17378 try {
17379 return __dom_wrap(_this.$dom.insertCell(__dom_unwrap(index))); 17379 return __dom_wrap(_this.$dom.insertCell(__dom_unwrap(index)));
17380 } catch (e) { 17380 } catch (e) {
17381 throw __dom_wrap_exception(e); 17381 throw __dom_wrap_exception(e);
17382 } 17382 }
17383 } 17383 }
17384 17384
17385 function native__HTMLTableSectionElementWrappingImplementation__get__HTMLTableSe ctionElement_align(_this) { 17385 function native__HTMLTableSectionElementWrappingImplementation__get_align(_this) {
17386 try { 17386 try {
17387 return __dom_wrap(_this.$dom.align); 17387 return __dom_wrap(_this.$dom.align);
17388 } catch (e) { 17388 } catch (e) {
17389 throw __dom_wrap_exception(e); 17389 throw __dom_wrap_exception(e);
17390 } 17390 }
17391 } 17391 }
17392 17392
17393 function native__HTMLTableSectionElementWrappingImplementation__set__HTMLTableSe ctionElement_align(_this, value) { 17393 function native__HTMLTableSectionElementWrappingImplementation__set_align(_this, value) {
17394 try { 17394 try {
17395 _this.$dom.align = __dom_unwrap(value); 17395 _this.$dom.align = __dom_unwrap(value);
17396 } catch (e) { 17396 } catch (e) {
17397 throw __dom_wrap_exception(e); 17397 throw __dom_wrap_exception(e);
17398 } 17398 }
17399 } 17399 }
17400 17400
17401 function native__HTMLTableSectionElementWrappingImplementation__get__HTMLTableSe ctionElement_ch(_this) { 17401 function native__HTMLTableSectionElementWrappingImplementation__get_ch(_this) {
17402 try { 17402 try {
17403 return __dom_wrap(_this.$dom.ch); 17403 return __dom_wrap(_this.$dom.ch);
17404 } catch (e) { 17404 } catch (e) {
17405 throw __dom_wrap_exception(e); 17405 throw __dom_wrap_exception(e);
17406 } 17406 }
17407 } 17407 }
17408 17408
17409 function native__HTMLTableSectionElementWrappingImplementation__set__HTMLTableSe ctionElement_ch(_this, value) { 17409 function native__HTMLTableSectionElementWrappingImplementation__set_ch(_this, va lue) {
17410 try { 17410 try {
17411 _this.$dom.ch = __dom_unwrap(value); 17411 _this.$dom.ch = __dom_unwrap(value);
17412 } catch (e) { 17412 } catch (e) {
17413 throw __dom_wrap_exception(e); 17413 throw __dom_wrap_exception(e);
17414 } 17414 }
17415 } 17415 }
17416 17416
17417 function native__HTMLTableSectionElementWrappingImplementation__get__HTMLTableSe ctionElement_chOff(_this) { 17417 function native__HTMLTableSectionElementWrappingImplementation__get_chOff(_this) {
17418 try { 17418 try {
17419 return __dom_wrap(_this.$dom.chOff); 17419 return __dom_wrap(_this.$dom.chOff);
17420 } catch (e) { 17420 } catch (e) {
17421 throw __dom_wrap_exception(e); 17421 throw __dom_wrap_exception(e);
17422 } 17422 }
17423 } 17423 }
17424 17424
17425 function native__HTMLTableSectionElementWrappingImplementation__set__HTMLTableSe ctionElement_chOff(_this, value) { 17425 function native__HTMLTableSectionElementWrappingImplementation__set_chOff(_this, value) {
17426 try { 17426 try {
17427 _this.$dom.chOff = __dom_unwrap(value); 17427 _this.$dom.chOff = __dom_unwrap(value);
17428 } catch (e) { 17428 } catch (e) {
17429 throw __dom_wrap_exception(e); 17429 throw __dom_wrap_exception(e);
17430 } 17430 }
17431 } 17431 }
17432 17432
17433 function native__HTMLTableSectionElementWrappingImplementation__get__HTMLTableSe ctionElement_rows(_this) { 17433 function native__HTMLTableSectionElementWrappingImplementation__get_rows(_this) {
17434 try { 17434 try {
17435 return __dom_wrap(_this.$dom.rows); 17435 return __dom_wrap(_this.$dom.rows);
17436 } catch (e) { 17436 } catch (e) {
17437 throw __dom_wrap_exception(e); 17437 throw __dom_wrap_exception(e);
17438 } 17438 }
17439 } 17439 }
17440 17440
17441 function native__HTMLTableSectionElementWrappingImplementation__get__HTMLTableSe ctionElement_vAlign(_this) { 17441 function native__HTMLTableSectionElementWrappingImplementation__get_vAlign(_this ) {
17442 try { 17442 try {
17443 return __dom_wrap(_this.$dom.vAlign); 17443 return __dom_wrap(_this.$dom.vAlign);
17444 } catch (e) { 17444 } catch (e) {
17445 throw __dom_wrap_exception(e); 17445 throw __dom_wrap_exception(e);
17446 } 17446 }
17447 } 17447 }
17448 17448
17449 function native__HTMLTableSectionElementWrappingImplementation__set__HTMLTableSe ctionElement_vAlign(_this, value) { 17449 function native__HTMLTableSectionElementWrappingImplementation__set_vAlign(_this , value) {
17450 try { 17450 try {
17451 _this.$dom.vAlign = __dom_unwrap(value); 17451 _this.$dom.vAlign = __dom_unwrap(value);
17452 } catch (e) { 17452 } catch (e) {
17453 throw __dom_wrap_exception(e); 17453 throw __dom_wrap_exception(e);
17454 } 17454 }
17455 } 17455 }
17456 17456
17457 function native__HTMLTableSectionElementWrappingImplementation__deleteRow(_this, index) { 17457 function native__HTMLTableSectionElementWrappingImplementation__deleteRow(_this, index) {
17458 try { 17458 try {
17459 return __dom_wrap(_this.$dom.deleteRow(__dom_unwrap(index))); 17459 return __dom_wrap(_this.$dom.deleteRow(__dom_unwrap(index)));
17460 } catch (e) { 17460 } catch (e) {
17461 throw __dom_wrap_exception(e); 17461 throw __dom_wrap_exception(e);
17462 } 17462 }
17463 } 17463 }
17464 17464
17465 function native__HTMLTableSectionElementWrappingImplementation__insertRow(_this, index) { 17465 function native__HTMLTableSectionElementWrappingImplementation__insertRow(_this, index) {
17466 try { 17466 try {
17467 return __dom_wrap(_this.$dom.insertRow(__dom_unwrap(index))); 17467 return __dom_wrap(_this.$dom.insertRow(__dom_unwrap(index)));
17468 } catch (e) { 17468 } catch (e) {
17469 throw __dom_wrap_exception(e); 17469 throw __dom_wrap_exception(e);
17470 } 17470 }
17471 } 17471 }
17472 17472
17473 function native__HTMLTextAreaElementWrappingImplementation__get__HTMLTextAreaEle ment_accessKey(_this) { 17473 function native__HTMLTextAreaElementWrappingImplementation__get_accessKey(_this) {
17474 try { 17474 try {
17475 return __dom_wrap(_this.$dom.accessKey); 17475 return __dom_wrap(_this.$dom.accessKey);
17476 } catch (e) { 17476 } catch (e) {
17477 throw __dom_wrap_exception(e); 17477 throw __dom_wrap_exception(e);
17478 } 17478 }
17479 } 17479 }
17480 17480
17481 function native__HTMLTextAreaElementWrappingImplementation__set__HTMLTextAreaEle ment_accessKey(_this, value) { 17481 function native__HTMLTextAreaElementWrappingImplementation__set_accessKey(_this, value) {
17482 try { 17482 try {
17483 _this.$dom.accessKey = __dom_unwrap(value); 17483 _this.$dom.accessKey = __dom_unwrap(value);
17484 } catch (e) { 17484 } catch (e) {
17485 throw __dom_wrap_exception(e); 17485 throw __dom_wrap_exception(e);
17486 } 17486 }
17487 } 17487 }
17488 17488
17489 function native__HTMLTextAreaElementWrappingImplementation__get__HTMLTextAreaEle ment_autofocus(_this) { 17489 function native__HTMLTextAreaElementWrappingImplementation__get_autofocus(_this) {
17490 try { 17490 try {
17491 return __dom_wrap(_this.$dom.autofocus); 17491 return __dom_wrap(_this.$dom.autofocus);
17492 } catch (e) { 17492 } catch (e) {
17493 throw __dom_wrap_exception(e); 17493 throw __dom_wrap_exception(e);
17494 } 17494 }
17495 } 17495 }
17496 17496
17497 function native__HTMLTextAreaElementWrappingImplementation__set__HTMLTextAreaEle ment_autofocus(_this, value) { 17497 function native__HTMLTextAreaElementWrappingImplementation__set_autofocus(_this, value) {
17498 try { 17498 try {
17499 _this.$dom.autofocus = __dom_unwrap(value); 17499 _this.$dom.autofocus = __dom_unwrap(value);
17500 } catch (e) { 17500 } catch (e) {
17501 throw __dom_wrap_exception(e); 17501 throw __dom_wrap_exception(e);
17502 } 17502 }
17503 } 17503 }
17504 17504
17505 function native__HTMLTextAreaElementWrappingImplementation__get__HTMLTextAreaEle ment_cols(_this) { 17505 function native__HTMLTextAreaElementWrappingImplementation__get_cols(_this) {
17506 try { 17506 try {
17507 return __dom_wrap(_this.$dom.cols); 17507 return __dom_wrap(_this.$dom.cols);
17508 } catch (e) { 17508 } catch (e) {
17509 throw __dom_wrap_exception(e); 17509 throw __dom_wrap_exception(e);
17510 } 17510 }
17511 } 17511 }
17512 17512
17513 function native__HTMLTextAreaElementWrappingImplementation__set__HTMLTextAreaEle ment_cols(_this, value) { 17513 function native__HTMLTextAreaElementWrappingImplementation__set_cols(_this, valu e) {
17514 try { 17514 try {
17515 _this.$dom.cols = __dom_unwrap(value); 17515 _this.$dom.cols = __dom_unwrap(value);
17516 } catch (e) { 17516 } catch (e) {
17517 throw __dom_wrap_exception(e); 17517 throw __dom_wrap_exception(e);
17518 } 17518 }
17519 } 17519 }
17520 17520
17521 function native__HTMLTextAreaElementWrappingImplementation__get__HTMLTextAreaEle ment_defaultValue(_this) { 17521 function native__HTMLTextAreaElementWrappingImplementation__get_defaultValue(_th is) {
17522 try { 17522 try {
17523 return __dom_wrap(_this.$dom.defaultValue); 17523 return __dom_wrap(_this.$dom.defaultValue);
17524 } catch (e) { 17524 } catch (e) {
17525 throw __dom_wrap_exception(e); 17525 throw __dom_wrap_exception(e);
17526 } 17526 }
17527 } 17527 }
17528 17528
17529 function native__HTMLTextAreaElementWrappingImplementation__set__HTMLTextAreaEle ment_defaultValue(_this, value) { 17529 function native__HTMLTextAreaElementWrappingImplementation__set_defaultValue(_th is, value) {
17530 try { 17530 try {
17531 _this.$dom.defaultValue = __dom_unwrap(value); 17531 _this.$dom.defaultValue = __dom_unwrap(value);
17532 } catch (e) { 17532 } catch (e) {
17533 throw __dom_wrap_exception(e); 17533 throw __dom_wrap_exception(e);
17534 } 17534 }
17535 } 17535 }
17536 17536
17537 function native__HTMLTextAreaElementWrappingImplementation__get__HTMLTextAreaEle ment_disabled(_this) { 17537 function native__HTMLTextAreaElementWrappingImplementation__get_disabled(_this) {
17538 try { 17538 try {
17539 return __dom_wrap(_this.$dom.disabled); 17539 return __dom_wrap(_this.$dom.disabled);
17540 } catch (e) { 17540 } catch (e) {
17541 throw __dom_wrap_exception(e); 17541 throw __dom_wrap_exception(e);
17542 } 17542 }
17543 } 17543 }
17544 17544
17545 function native__HTMLTextAreaElementWrappingImplementation__set__HTMLTextAreaEle ment_disabled(_this, value) { 17545 function native__HTMLTextAreaElementWrappingImplementation__set_disabled(_this, value) {
17546 try { 17546 try {
17547 _this.$dom.disabled = __dom_unwrap(value); 17547 _this.$dom.disabled = __dom_unwrap(value);
17548 } catch (e) { 17548 } catch (e) {
17549 throw __dom_wrap_exception(e); 17549 throw __dom_wrap_exception(e);
17550 } 17550 }
17551 } 17551 }
17552 17552
17553 function native__HTMLTextAreaElementWrappingImplementation__get__HTMLTextAreaEle ment_form(_this) { 17553 function native__HTMLTextAreaElementWrappingImplementation__get_form(_this) {
17554 try { 17554 try {
17555 return __dom_wrap(_this.$dom.form); 17555 return __dom_wrap(_this.$dom.form);
17556 } catch (e) { 17556 } catch (e) {
17557 throw __dom_wrap_exception(e); 17557 throw __dom_wrap_exception(e);
17558 } 17558 }
17559 } 17559 }
17560 17560
17561 function native__HTMLTextAreaElementWrappingImplementation__get__HTMLTextAreaEle ment_labels(_this) { 17561 function native__HTMLTextAreaElementWrappingImplementation__get_labels(_this) {
17562 try { 17562 try {
17563 return __dom_wrap(_this.$dom.labels); 17563 return __dom_wrap(_this.$dom.labels);
17564 } catch (e) { 17564 } catch (e) {
17565 throw __dom_wrap_exception(e); 17565 throw __dom_wrap_exception(e);
17566 } 17566 }
17567 } 17567 }
17568 17568
17569 function native__HTMLTextAreaElementWrappingImplementation__get__HTMLTextAreaEle ment_maxLength(_this) { 17569 function native__HTMLTextAreaElementWrappingImplementation__get_maxLength(_this) {
17570 try { 17570 try {
17571 return __dom_wrap(_this.$dom.maxLength); 17571 return __dom_wrap(_this.$dom.maxLength);
17572 } catch (e) { 17572 } catch (e) {
17573 throw __dom_wrap_exception(e); 17573 throw __dom_wrap_exception(e);
17574 } 17574 }
17575 } 17575 }
17576 17576
17577 function native__HTMLTextAreaElementWrappingImplementation__set__HTMLTextAreaEle ment_maxLength(_this, value) { 17577 function native__HTMLTextAreaElementWrappingImplementation__set_maxLength(_this, value) {
17578 try { 17578 try {
17579 _this.$dom.maxLength = __dom_unwrap(value); 17579 _this.$dom.maxLength = __dom_unwrap(value);
17580 } catch (e) { 17580 } catch (e) {
17581 throw __dom_wrap_exception(e); 17581 throw __dom_wrap_exception(e);
17582 } 17582 }
17583 } 17583 }
17584 17584
17585 function native__HTMLTextAreaElementWrappingImplementation__get__HTMLTextAreaEle ment_name(_this) { 17585 function native__HTMLTextAreaElementWrappingImplementation__get_name(_this) {
17586 try { 17586 try {
17587 return __dom_wrap(_this.$dom.name); 17587 return __dom_wrap(_this.$dom.name);
17588 } catch (e) { 17588 } catch (e) {
17589 throw __dom_wrap_exception(e); 17589 throw __dom_wrap_exception(e);
17590 } 17590 }
17591 } 17591 }
17592 17592
17593 function native__HTMLTextAreaElementWrappingImplementation__set__HTMLTextAreaEle ment_name(_this, value) { 17593 function native__HTMLTextAreaElementWrappingImplementation__set_name(_this, valu e) {
17594 try { 17594 try {
17595 _this.$dom.name = __dom_unwrap(value); 17595 _this.$dom.name = __dom_unwrap(value);
17596 } catch (e) { 17596 } catch (e) {
17597 throw __dom_wrap_exception(e); 17597 throw __dom_wrap_exception(e);
17598 } 17598 }
17599 } 17599 }
17600 17600
17601 function native__HTMLTextAreaElementWrappingImplementation__get__HTMLTextAreaEle ment_placeholder(_this) { 17601 function native__HTMLTextAreaElementWrappingImplementation__get_placeholder(_thi s) {
17602 try { 17602 try {
17603 return __dom_wrap(_this.$dom.placeholder); 17603 return __dom_wrap(_this.$dom.placeholder);
17604 } catch (e) { 17604 } catch (e) {
17605 throw __dom_wrap_exception(e); 17605 throw __dom_wrap_exception(e);
17606 } 17606 }
17607 } 17607 }
17608 17608
17609 function native__HTMLTextAreaElementWrappingImplementation__set__HTMLTextAreaEle ment_placeholder(_this, value) { 17609 function native__HTMLTextAreaElementWrappingImplementation__set_placeholder(_thi s, value) {
17610 try { 17610 try {
17611 _this.$dom.placeholder = __dom_unwrap(value); 17611 _this.$dom.placeholder = __dom_unwrap(value);
17612 } catch (e) { 17612 } catch (e) {
17613 throw __dom_wrap_exception(e); 17613 throw __dom_wrap_exception(e);
17614 } 17614 }
17615 } 17615 }
17616 17616
17617 function native__HTMLTextAreaElementWrappingImplementation__get__HTMLTextAreaEle ment_readOnly(_this) { 17617 function native__HTMLTextAreaElementWrappingImplementation__get_readOnly(_this) {
17618 try { 17618 try {
17619 return __dom_wrap(_this.$dom.readOnly); 17619 return __dom_wrap(_this.$dom.readOnly);
17620 } catch (e) { 17620 } catch (e) {
17621 throw __dom_wrap_exception(e); 17621 throw __dom_wrap_exception(e);
17622 } 17622 }
17623 } 17623 }
17624 17624
17625 function native__HTMLTextAreaElementWrappingImplementation__set__HTMLTextAreaEle ment_readOnly(_this, value) { 17625 function native__HTMLTextAreaElementWrappingImplementation__set_readOnly(_this, value) {
17626 try { 17626 try {
17627 _this.$dom.readOnly = __dom_unwrap(value); 17627 _this.$dom.readOnly = __dom_unwrap(value);
17628 } catch (e) { 17628 } catch (e) {
17629 throw __dom_wrap_exception(e); 17629 throw __dom_wrap_exception(e);
17630 } 17630 }
17631 } 17631 }
17632 17632
17633 function native__HTMLTextAreaElementWrappingImplementation__get__HTMLTextAreaEle ment_required(_this) { 17633 function native__HTMLTextAreaElementWrappingImplementation__get_required(_this) {
17634 try { 17634 try {
17635 return __dom_wrap(_this.$dom.required); 17635 return __dom_wrap(_this.$dom.required);
17636 } catch (e) { 17636 } catch (e) {
17637 throw __dom_wrap_exception(e); 17637 throw __dom_wrap_exception(e);
17638 } 17638 }
17639 } 17639 }
17640 17640
17641 function native__HTMLTextAreaElementWrappingImplementation__set__HTMLTextAreaEle ment_required(_this, value) { 17641 function native__HTMLTextAreaElementWrappingImplementation__set_required(_this, value) {
17642 try { 17642 try {
17643 _this.$dom.required = __dom_unwrap(value); 17643 _this.$dom.required = __dom_unwrap(value);
17644 } catch (e) { 17644 } catch (e) {
17645 throw __dom_wrap_exception(e); 17645 throw __dom_wrap_exception(e);
17646 } 17646 }
17647 } 17647 }
17648 17648
17649 function native__HTMLTextAreaElementWrappingImplementation__get__HTMLTextAreaEle ment_rows(_this) { 17649 function native__HTMLTextAreaElementWrappingImplementation__get_rows(_this) {
17650 try { 17650 try {
17651 return __dom_wrap(_this.$dom.rows); 17651 return __dom_wrap(_this.$dom.rows);
17652 } catch (e) { 17652 } catch (e) {
17653 throw __dom_wrap_exception(e); 17653 throw __dom_wrap_exception(e);
17654 } 17654 }
17655 } 17655 }
17656 17656
17657 function native__HTMLTextAreaElementWrappingImplementation__set__HTMLTextAreaEle ment_rows(_this, value) { 17657 function native__HTMLTextAreaElementWrappingImplementation__set_rows(_this, valu e) {
17658 try { 17658 try {
17659 _this.$dom.rows = __dom_unwrap(value); 17659 _this.$dom.rows = __dom_unwrap(value);
17660 } catch (e) { 17660 } catch (e) {
17661 throw __dom_wrap_exception(e); 17661 throw __dom_wrap_exception(e);
17662 } 17662 }
17663 } 17663 }
17664 17664
17665 function native__HTMLTextAreaElementWrappingImplementation__get__HTMLTextAreaEle ment_selectionDirection(_this) { 17665 function native__HTMLTextAreaElementWrappingImplementation__get_selectionDirecti on(_this) {
17666 try { 17666 try {
17667 return __dom_wrap(_this.$dom.selectionDirection); 17667 return __dom_wrap(_this.$dom.selectionDirection);
17668 } catch (e) { 17668 } catch (e) {
17669 throw __dom_wrap_exception(e); 17669 throw __dom_wrap_exception(e);
17670 } 17670 }
17671 } 17671 }
17672 17672
17673 function native__HTMLTextAreaElementWrappingImplementation__set__HTMLTextAreaEle ment_selectionDirection(_this, value) { 17673 function native__HTMLTextAreaElementWrappingImplementation__set_selectionDirecti on(_this, value) {
17674 try { 17674 try {
17675 _this.$dom.selectionDirection = __dom_unwrap(value); 17675 _this.$dom.selectionDirection = __dom_unwrap(value);
17676 } catch (e) { 17676 } catch (e) {
17677 throw __dom_wrap_exception(e); 17677 throw __dom_wrap_exception(e);
17678 } 17678 }
17679 } 17679 }
17680 17680
17681 function native__HTMLTextAreaElementWrappingImplementation__get__HTMLTextAreaEle ment_selectionEnd(_this) { 17681 function native__HTMLTextAreaElementWrappingImplementation__get_selectionEnd(_th is) {
17682 try { 17682 try {
17683 return __dom_wrap(_this.$dom.selectionEnd); 17683 return __dom_wrap(_this.$dom.selectionEnd);
17684 } catch (e) { 17684 } catch (e) {
17685 throw __dom_wrap_exception(e); 17685 throw __dom_wrap_exception(e);
17686 } 17686 }
17687 } 17687 }
17688 17688
17689 function native__HTMLTextAreaElementWrappingImplementation__set__HTMLTextAreaEle ment_selectionEnd(_this, value) { 17689 function native__HTMLTextAreaElementWrappingImplementation__set_selectionEnd(_th is, value) {
17690 try { 17690 try {
17691 _this.$dom.selectionEnd = __dom_unwrap(value); 17691 _this.$dom.selectionEnd = __dom_unwrap(value);
17692 } catch (e) { 17692 } catch (e) {
17693 throw __dom_wrap_exception(e); 17693 throw __dom_wrap_exception(e);
17694 } 17694 }
17695 } 17695 }
17696 17696
17697 function native__HTMLTextAreaElementWrappingImplementation__get__HTMLTextAreaEle ment_selectionStart(_this) { 17697 function native__HTMLTextAreaElementWrappingImplementation__get_selectionStart(_ this) {
17698 try { 17698 try {
17699 return __dom_wrap(_this.$dom.selectionStart); 17699 return __dom_wrap(_this.$dom.selectionStart);
17700 } catch (e) { 17700 } catch (e) {
17701 throw __dom_wrap_exception(e); 17701 throw __dom_wrap_exception(e);
17702 } 17702 }
17703 } 17703 }
17704 17704
17705 function native__HTMLTextAreaElementWrappingImplementation__set__HTMLTextAreaEle ment_selectionStart(_this, value) { 17705 function native__HTMLTextAreaElementWrappingImplementation__set_selectionStart(_ this, value) {
17706 try { 17706 try {
17707 _this.$dom.selectionStart = __dom_unwrap(value); 17707 _this.$dom.selectionStart = __dom_unwrap(value);
17708 } catch (e) { 17708 } catch (e) {
17709 throw __dom_wrap_exception(e); 17709 throw __dom_wrap_exception(e);
17710 } 17710 }
17711 } 17711 }
17712 17712
17713 function native__HTMLTextAreaElementWrappingImplementation__get__HTMLTextAreaEle ment_textLength(_this) { 17713 function native__HTMLTextAreaElementWrappingImplementation__get_textLength(_this ) {
17714 try { 17714 try {
17715 return __dom_wrap(_this.$dom.textLength); 17715 return __dom_wrap(_this.$dom.textLength);
17716 } catch (e) { 17716 } catch (e) {
17717 throw __dom_wrap_exception(e); 17717 throw __dom_wrap_exception(e);
17718 } 17718 }
17719 } 17719 }
17720 17720
17721 function native__HTMLTextAreaElementWrappingImplementation__get__HTMLTextAreaEle ment_type(_this) { 17721 function native__HTMLTextAreaElementWrappingImplementation__get_type(_this) {
17722 try { 17722 try {
17723 return __dom_wrap(_this.$dom.type); 17723 return __dom_wrap(_this.$dom.type);
17724 } catch (e) { 17724 } catch (e) {
17725 throw __dom_wrap_exception(e); 17725 throw __dom_wrap_exception(e);
17726 } 17726 }
17727 } 17727 }
17728 17728
17729 function native__HTMLTextAreaElementWrappingImplementation__get__HTMLTextAreaEle ment_validationMessage(_this) { 17729 function native__HTMLTextAreaElementWrappingImplementation__get_validationMessag e(_this) {
17730 try { 17730 try {
17731 return __dom_wrap(_this.$dom.validationMessage); 17731 return __dom_wrap(_this.$dom.validationMessage);
17732 } catch (e) { 17732 } catch (e) {
17733 throw __dom_wrap_exception(e); 17733 throw __dom_wrap_exception(e);
17734 } 17734 }
17735 } 17735 }
17736 17736
17737 function native__HTMLTextAreaElementWrappingImplementation__get__HTMLTextAreaEle ment_validity(_this) { 17737 function native__HTMLTextAreaElementWrappingImplementation__get_validity(_this) {
17738 try { 17738 try {
17739 return __dom_wrap(_this.$dom.validity); 17739 return __dom_wrap(_this.$dom.validity);
17740 } catch (e) { 17740 } catch (e) {
17741 throw __dom_wrap_exception(e); 17741 throw __dom_wrap_exception(e);
17742 } 17742 }
17743 } 17743 }
17744 17744
17745 function native__HTMLTextAreaElementWrappingImplementation__get__HTMLTextAreaEle ment_value(_this) { 17745 function native__HTMLTextAreaElementWrappingImplementation__get_value(_this) {
17746 try { 17746 try {
17747 return __dom_wrap(_this.$dom.value); 17747 return __dom_wrap(_this.$dom.value);
17748 } catch (e) { 17748 } catch (e) {
17749 throw __dom_wrap_exception(e); 17749 throw __dom_wrap_exception(e);
17750 } 17750 }
17751 } 17751 }
17752 17752
17753 function native__HTMLTextAreaElementWrappingImplementation__set__HTMLTextAreaEle ment_value(_this, value) { 17753 function native__HTMLTextAreaElementWrappingImplementation__set_value(_this, val ue) {
17754 try { 17754 try {
17755 _this.$dom.value = __dom_unwrap(value); 17755 _this.$dom.value = __dom_unwrap(value);
17756 } catch (e) { 17756 } catch (e) {
17757 throw __dom_wrap_exception(e); 17757 throw __dom_wrap_exception(e);
17758 } 17758 }
17759 } 17759 }
17760 17760
17761 function native__HTMLTextAreaElementWrappingImplementation__get__HTMLTextAreaEle ment_willValidate(_this) { 17761 function native__HTMLTextAreaElementWrappingImplementation__get_willValidate(_th is) {
17762 try { 17762 try {
17763 return __dom_wrap(_this.$dom.willValidate); 17763 return __dom_wrap(_this.$dom.willValidate);
17764 } catch (e) { 17764 } catch (e) {
17765 throw __dom_wrap_exception(e); 17765 throw __dom_wrap_exception(e);
17766 } 17766 }
17767 } 17767 }
17768 17768
17769 function native__HTMLTextAreaElementWrappingImplementation__get__HTMLTextAreaEle ment_wrap(_this) { 17769 function native__HTMLTextAreaElementWrappingImplementation__get_wrap(_this) {
17770 try { 17770 try {
17771 return __dom_wrap(_this.$dom.wrap); 17771 return __dom_wrap(_this.$dom.wrap);
17772 } catch (e) { 17772 } catch (e) {
17773 throw __dom_wrap_exception(e); 17773 throw __dom_wrap_exception(e);
17774 } 17774 }
17775 } 17775 }
17776 17776
17777 function native__HTMLTextAreaElementWrappingImplementation__set__HTMLTextAreaEle ment_wrap(_this, value) { 17777 function native__HTMLTextAreaElementWrappingImplementation__set_wrap(_this, valu e) {
17778 try { 17778 try {
17779 _this.$dom.wrap = __dom_unwrap(value); 17779 _this.$dom.wrap = __dom_unwrap(value);
17780 } catch (e) { 17780 } catch (e) {
17781 throw __dom_wrap_exception(e); 17781 throw __dom_wrap_exception(e);
17782 } 17782 }
17783 } 17783 }
17784 17784
17785 function native__HTMLTextAreaElementWrappingImplementation__checkValidity(_this) { 17785 function native__HTMLTextAreaElementWrappingImplementation__checkValidity(_this) {
17786 try { 17786 try {
17787 return __dom_wrap(_this.$dom.checkValidity()); 17787 return __dom_wrap(_this.$dom.checkValidity());
(...skipping 27 matching lines...) Expand all
17815 } 17815 }
17816 17816
17817 function native__HTMLTextAreaElementWrappingImplementation__setSelectionRange_2( _this, start, end, direction) { 17817 function native__HTMLTextAreaElementWrappingImplementation__setSelectionRange_2( _this, start, end, direction) {
17818 try { 17818 try {
17819 return __dom_wrap(_this.$dom.setSelectionRange(__dom_unwrap(start), __dom_un wrap(end), __dom_unwrap(direction))); 17819 return __dom_wrap(_this.$dom.setSelectionRange(__dom_unwrap(start), __dom_un wrap(end), __dom_unwrap(direction)));
17820 } catch (e) { 17820 } catch (e) {
17821 throw __dom_wrap_exception(e); 17821 throw __dom_wrap_exception(e);
17822 } 17822 }
17823 } 17823 }
17824 17824
17825 function native__HTMLTitleElementWrappingImplementation__get__HTMLTitleElement_t ext(_this) { 17825 function native__HTMLTitleElementWrappingImplementation__get_text(_this) {
17826 try { 17826 try {
17827 return __dom_wrap(_this.$dom.text); 17827 return __dom_wrap(_this.$dom.text);
17828 } catch (e) { 17828 } catch (e) {
17829 throw __dom_wrap_exception(e); 17829 throw __dom_wrap_exception(e);
17830 } 17830 }
17831 } 17831 }
17832 17832
17833 function native__HTMLTitleElementWrappingImplementation__set__HTMLTitleElement_t ext(_this, value) { 17833 function native__HTMLTitleElementWrappingImplementation__set_text(_this, value) {
17834 try { 17834 try {
17835 _this.$dom.text = __dom_unwrap(value); 17835 _this.$dom.text = __dom_unwrap(value);
17836 } catch (e) { 17836 } catch (e) {
17837 throw __dom_wrap_exception(e); 17837 throw __dom_wrap_exception(e);
17838 } 17838 }
17839 } 17839 }
17840 17840
17841 function native__HTMLTrackElementWrappingImplementation__get__HTMLTrackElement_i sDefault(_this) { 17841 function native__HTMLTrackElementWrappingImplementation__get_isDefault(_this) {
17842 try { 17842 try {
17843 return __dom_wrap(_this.$dom.isDefault); 17843 return __dom_wrap(_this.$dom.isDefault);
17844 } catch (e) { 17844 } catch (e) {
17845 throw __dom_wrap_exception(e); 17845 throw __dom_wrap_exception(e);
17846 } 17846 }
17847 } 17847 }
17848 17848
17849 function native__HTMLTrackElementWrappingImplementation__set__HTMLTrackElement_i sDefault(_this, value) { 17849 function native__HTMLTrackElementWrappingImplementation__set_isDefault(_this, va lue) {
17850 try { 17850 try {
17851 _this.$dom.isDefault = __dom_unwrap(value); 17851 _this.$dom.isDefault = __dom_unwrap(value);
17852 } catch (e) { 17852 } catch (e) {
17853 throw __dom_wrap_exception(e); 17853 throw __dom_wrap_exception(e);
17854 } 17854 }
17855 } 17855 }
17856 17856
17857 function native__HTMLTrackElementWrappingImplementation__get__HTMLTrackElement_k ind(_this) { 17857 function native__HTMLTrackElementWrappingImplementation__get_kind(_this) {
17858 try { 17858 try {
17859 return __dom_wrap(_this.$dom.kind); 17859 return __dom_wrap(_this.$dom.kind);
17860 } catch (e) { 17860 } catch (e) {
17861 throw __dom_wrap_exception(e); 17861 throw __dom_wrap_exception(e);
17862 } 17862 }
17863 } 17863 }
17864 17864
17865 function native__HTMLTrackElementWrappingImplementation__set__HTMLTrackElement_k ind(_this, value) { 17865 function native__HTMLTrackElementWrappingImplementation__set_kind(_this, value) {
17866 try { 17866 try {
17867 _this.$dom.kind = __dom_unwrap(value); 17867 _this.$dom.kind = __dom_unwrap(value);
17868 } catch (e) { 17868 } catch (e) {
17869 throw __dom_wrap_exception(e); 17869 throw __dom_wrap_exception(e);
17870 } 17870 }
17871 } 17871 }
17872 17872
17873 function native__HTMLTrackElementWrappingImplementation__get__HTMLTrackElement_l abel(_this) { 17873 function native__HTMLTrackElementWrappingImplementation__get_label(_this) {
17874 try { 17874 try {
17875 return __dom_wrap(_this.$dom.label); 17875 return __dom_wrap(_this.$dom.label);
17876 } catch (e) { 17876 } catch (e) {
17877 throw __dom_wrap_exception(e); 17877 throw __dom_wrap_exception(e);
17878 } 17878 }
17879 } 17879 }
17880 17880
17881 function native__HTMLTrackElementWrappingImplementation__set__HTMLTrackElement_l abel(_this, value) { 17881 function native__HTMLTrackElementWrappingImplementation__set_label(_this, value) {
17882 try { 17882 try {
17883 _this.$dom.label = __dom_unwrap(value); 17883 _this.$dom.label = __dom_unwrap(value);
17884 } catch (e) { 17884 } catch (e) {
17885 throw __dom_wrap_exception(e); 17885 throw __dom_wrap_exception(e);
17886 } 17886 }
17887 } 17887 }
17888 17888
17889 function native__HTMLTrackElementWrappingImplementation__get__HTMLTrackElement_s rc(_this) { 17889 function native__HTMLTrackElementWrappingImplementation__get_src(_this) {
17890 try { 17890 try {
17891 return __dom_wrap(_this.$dom.src); 17891 return __dom_wrap(_this.$dom.src);
17892 } catch (e) { 17892 } catch (e) {
17893 throw __dom_wrap_exception(e); 17893 throw __dom_wrap_exception(e);
17894 } 17894 }
17895 } 17895 }
17896 17896
17897 function native__HTMLTrackElementWrappingImplementation__set__HTMLTrackElement_s rc(_this, value) { 17897 function native__HTMLTrackElementWrappingImplementation__set_src(_this, value) {
17898 try { 17898 try {
17899 _this.$dom.src = __dom_unwrap(value); 17899 _this.$dom.src = __dom_unwrap(value);
17900 } catch (e) { 17900 } catch (e) {
17901 throw __dom_wrap_exception(e); 17901 throw __dom_wrap_exception(e);
17902 } 17902 }
17903 } 17903 }
17904 17904
17905 function native__HTMLTrackElementWrappingImplementation__get__HTMLTrackElement_s rclang(_this) { 17905 function native__HTMLTrackElementWrappingImplementation__get_srclang(_this) {
17906 try { 17906 try {
17907 return __dom_wrap(_this.$dom.srclang); 17907 return __dom_wrap(_this.$dom.srclang);
17908 } catch (e) { 17908 } catch (e) {
17909 throw __dom_wrap_exception(e); 17909 throw __dom_wrap_exception(e);
17910 } 17910 }
17911 } 17911 }
17912 17912
17913 function native__HTMLTrackElementWrappingImplementation__set__HTMLTrackElement_s rclang(_this, value) { 17913 function native__HTMLTrackElementWrappingImplementation__set_srclang(_this, valu e) {
17914 try { 17914 try {
17915 _this.$dom.srclang = __dom_unwrap(value); 17915 _this.$dom.srclang = __dom_unwrap(value);
17916 } catch (e) { 17916 } catch (e) {
17917 throw __dom_wrap_exception(e); 17917 throw __dom_wrap_exception(e);
17918 } 17918 }
17919 } 17919 }
17920 17920
17921 function native__HTMLTrackElementWrappingImplementation__get__HTMLTrackElement_t rack(_this) { 17921 function native__HTMLTrackElementWrappingImplementation__get_track(_this) {
17922 try { 17922 try {
17923 return __dom_wrap(_this.$dom.track); 17923 return __dom_wrap(_this.$dom.track);
17924 } catch (e) { 17924 } catch (e) {
17925 throw __dom_wrap_exception(e); 17925 throw __dom_wrap_exception(e);
17926 } 17926 }
17927 } 17927 }
17928 17928
17929 function native__HTMLUListElementWrappingImplementation__get__HTMLUListElement_c ompact(_this) { 17929 function native__HTMLUListElementWrappingImplementation__get_compact(_this) {
17930 try { 17930 try {
17931 return __dom_wrap(_this.$dom.compact); 17931 return __dom_wrap(_this.$dom.compact);
17932 } catch (e) { 17932 } catch (e) {
17933 throw __dom_wrap_exception(e); 17933 throw __dom_wrap_exception(e);
17934 } 17934 }
17935 } 17935 }
17936 17936
17937 function native__HTMLUListElementWrappingImplementation__set__HTMLUListElement_c ompact(_this, value) { 17937 function native__HTMLUListElementWrappingImplementation__set_compact(_this, valu e) {
17938 try { 17938 try {
17939 _this.$dom.compact = __dom_unwrap(value); 17939 _this.$dom.compact = __dom_unwrap(value);
17940 } catch (e) { 17940 } catch (e) {
17941 throw __dom_wrap_exception(e); 17941 throw __dom_wrap_exception(e);
17942 } 17942 }
17943 } 17943 }
17944 17944
17945 function native__HTMLUListElementWrappingImplementation__get__HTMLUListElement_t ype(_this) { 17945 function native__HTMLUListElementWrappingImplementation__get_type(_this) {
17946 try { 17946 try {
17947 return __dom_wrap(_this.$dom.type); 17947 return __dom_wrap(_this.$dom.type);
17948 } catch (e) { 17948 } catch (e) {
17949 throw __dom_wrap_exception(e); 17949 throw __dom_wrap_exception(e);
17950 } 17950 }
17951 } 17951 }
17952 17952
17953 function native__HTMLUListElementWrappingImplementation__set__HTMLUListElement_t ype(_this, value) { 17953 function native__HTMLUListElementWrappingImplementation__set_type(_this, value) {
17954 try { 17954 try {
17955 _this.$dom.type = __dom_unwrap(value); 17955 _this.$dom.type = __dom_unwrap(value);
17956 } catch (e) { 17956 } catch (e) {
17957 throw __dom_wrap_exception(e); 17957 throw __dom_wrap_exception(e);
17958 } 17958 }
17959 } 17959 }
17960 17960
17961 function native__HTMLVideoElementWrappingImplementation__get__HTMLVideoElement_h eight(_this) { 17961 function native__HTMLVideoElementWrappingImplementation__get_height(_this) {
17962 try { 17962 try {
17963 return __dom_wrap(_this.$dom.height); 17963 return __dom_wrap(_this.$dom.height);
17964 } catch (e) { 17964 } catch (e) {
17965 throw __dom_wrap_exception(e); 17965 throw __dom_wrap_exception(e);
17966 } 17966 }
17967 } 17967 }
17968 17968
17969 function native__HTMLVideoElementWrappingImplementation__set__HTMLVideoElement_h eight(_this, value) { 17969 function native__HTMLVideoElementWrappingImplementation__set_height(_this, value ) {
17970 try { 17970 try {
17971 _this.$dom.height = __dom_unwrap(value); 17971 _this.$dom.height = __dom_unwrap(value);
17972 } catch (e) { 17972 } catch (e) {
17973 throw __dom_wrap_exception(e); 17973 throw __dom_wrap_exception(e);
17974 } 17974 }
17975 } 17975 }
17976 17976
17977 function native__HTMLVideoElementWrappingImplementation__get__HTMLVideoElement_p oster(_this) { 17977 function native__HTMLVideoElementWrappingImplementation__get_poster(_this) {
17978 try { 17978 try {
17979 return __dom_wrap(_this.$dom.poster); 17979 return __dom_wrap(_this.$dom.poster);
17980 } catch (e) { 17980 } catch (e) {
17981 throw __dom_wrap_exception(e); 17981 throw __dom_wrap_exception(e);
17982 } 17982 }
17983 } 17983 }
17984 17984
17985 function native__HTMLVideoElementWrappingImplementation__set__HTMLVideoElement_p oster(_this, value) { 17985 function native__HTMLVideoElementWrappingImplementation__set_poster(_this, value ) {
17986 try { 17986 try {
17987 _this.$dom.poster = __dom_unwrap(value); 17987 _this.$dom.poster = __dom_unwrap(value);
17988 } catch (e) { 17988 } catch (e) {
17989 throw __dom_wrap_exception(e); 17989 throw __dom_wrap_exception(e);
17990 } 17990 }
17991 } 17991 }
17992 17992
17993 function native__HTMLVideoElementWrappingImplementation__get__HTMLVideoElement_v ideoHeight(_this) { 17993 function native__HTMLVideoElementWrappingImplementation__get_videoHeight(_this) {
17994 try { 17994 try {
17995 return __dom_wrap(_this.$dom.videoHeight); 17995 return __dom_wrap(_this.$dom.videoHeight);
17996 } catch (e) { 17996 } catch (e) {
17997 throw __dom_wrap_exception(e); 17997 throw __dom_wrap_exception(e);
17998 } 17998 }
17999 } 17999 }
18000 18000
18001 function native__HTMLVideoElementWrappingImplementation__get__HTMLVideoElement_v ideoWidth(_this) { 18001 function native__HTMLVideoElementWrappingImplementation__get_videoWidth(_this) {
18002 try { 18002 try {
18003 return __dom_wrap(_this.$dom.videoWidth); 18003 return __dom_wrap(_this.$dom.videoWidth);
18004 } catch (e) { 18004 } catch (e) {
18005 throw __dom_wrap_exception(e); 18005 throw __dom_wrap_exception(e);
18006 } 18006 }
18007 } 18007 }
18008 18008
18009 function native__HTMLVideoElementWrappingImplementation__get__HTMLVideoElement_w ebkitDecodedFrameCount(_this) { 18009 function native__HTMLVideoElementWrappingImplementation__get_webkitDecodedFrameC ount(_this) {
18010 try { 18010 try {
18011 return __dom_wrap(_this.$dom.webkitDecodedFrameCount); 18011 return __dom_wrap(_this.$dom.webkitDecodedFrameCount);
18012 } catch (e) { 18012 } catch (e) {
18013 throw __dom_wrap_exception(e); 18013 throw __dom_wrap_exception(e);
18014 } 18014 }
18015 } 18015 }
18016 18016
18017 function native__HTMLVideoElementWrappingImplementation__get__HTMLVideoElement_w ebkitDisplayingFullscreen(_this) { 18017 function native__HTMLVideoElementWrappingImplementation__get_webkitDisplayingFul lscreen(_this) {
18018 try { 18018 try {
18019 return __dom_wrap(_this.$dom.webkitDisplayingFullscreen); 18019 return __dom_wrap(_this.$dom.webkitDisplayingFullscreen);
18020 } catch (e) { 18020 } catch (e) {
18021 throw __dom_wrap_exception(e); 18021 throw __dom_wrap_exception(e);
18022 } 18022 }
18023 } 18023 }
18024 18024
18025 function native__HTMLVideoElementWrappingImplementation__get__HTMLVideoElement_w ebkitDroppedFrameCount(_this) { 18025 function native__HTMLVideoElementWrappingImplementation__get_webkitDroppedFrameC ount(_this) {
18026 try { 18026 try {
18027 return __dom_wrap(_this.$dom.webkitDroppedFrameCount); 18027 return __dom_wrap(_this.$dom.webkitDroppedFrameCount);
18028 } catch (e) { 18028 } catch (e) {
18029 throw __dom_wrap_exception(e); 18029 throw __dom_wrap_exception(e);
18030 } 18030 }
18031 } 18031 }
18032 18032
18033 function native__HTMLVideoElementWrappingImplementation__get__HTMLVideoElement_w ebkitSupportsFullscreen(_this) { 18033 function native__HTMLVideoElementWrappingImplementation__get_webkitSupportsFulls creen(_this) {
18034 try { 18034 try {
18035 return __dom_wrap(_this.$dom.webkitSupportsFullscreen); 18035 return __dom_wrap(_this.$dom.webkitSupportsFullscreen);
18036 } catch (e) { 18036 } catch (e) {
18037 throw __dom_wrap_exception(e); 18037 throw __dom_wrap_exception(e);
18038 } 18038 }
18039 } 18039 }
18040 18040
18041 function native__HTMLVideoElementWrappingImplementation__get__HTMLVideoElement_w idth(_this) { 18041 function native__HTMLVideoElementWrappingImplementation__get_width(_this) {
18042 try { 18042 try {
18043 return __dom_wrap(_this.$dom.width); 18043 return __dom_wrap(_this.$dom.width);
18044 } catch (e) { 18044 } catch (e) {
18045 throw __dom_wrap_exception(e); 18045 throw __dom_wrap_exception(e);
18046 } 18046 }
18047 } 18047 }
18048 18048
18049 function native__HTMLVideoElementWrappingImplementation__set__HTMLVideoElement_w idth(_this, value) { 18049 function native__HTMLVideoElementWrappingImplementation__set_width(_this, value) {
18050 try { 18050 try {
18051 _this.$dom.width = __dom_unwrap(value); 18051 _this.$dom.width = __dom_unwrap(value);
18052 } catch (e) { 18052 } catch (e) {
18053 throw __dom_wrap_exception(e); 18053 throw __dom_wrap_exception(e);
18054 } 18054 }
18055 } 18055 }
18056 18056
18057 function native__HTMLVideoElementWrappingImplementation__webkitEnterFullScreen(_ this) { 18057 function native__HTMLVideoElementWrappingImplementation__webkitEnterFullScreen(_ this) {
18058 try { 18058 try {
18059 return __dom_wrap(_this.$dom.webkitEnterFullScreen()); 18059 return __dom_wrap(_this.$dom.webkitEnterFullScreen());
(...skipping 19 matching lines...) Expand all
18079 } 18079 }
18080 18080
18081 function native__HTMLVideoElementWrappingImplementation__webkitExitFullscreen(_t his) { 18081 function native__HTMLVideoElementWrappingImplementation__webkitExitFullscreen(_t his) {
18082 try { 18082 try {
18083 return __dom_wrap(_this.$dom.webkitExitFullscreen()); 18083 return __dom_wrap(_this.$dom.webkitExitFullscreen());
18084 } catch (e) { 18084 } catch (e) {
18085 throw __dom_wrap_exception(e); 18085 throw __dom_wrap_exception(e);
18086 } 18086 }
18087 } 18087 }
18088 18088
18089 function native__HashChangeEventWrappingImplementation__get__HashChangeEvent_new URL(_this) { 18089 function native__HashChangeEventWrappingImplementation__get_newURL(_this) {
18090 try { 18090 try {
18091 return __dom_wrap(_this.$dom.newURL); 18091 return __dom_wrap(_this.$dom.newURL);
18092 } catch (e) { 18092 } catch (e) {
18093 throw __dom_wrap_exception(e); 18093 throw __dom_wrap_exception(e);
18094 } 18094 }
18095 } 18095 }
18096 18096
18097 function native__HashChangeEventWrappingImplementation__get__HashChangeEvent_old URL(_this) { 18097 function native__HashChangeEventWrappingImplementation__get_oldURL(_this) {
18098 try { 18098 try {
18099 return __dom_wrap(_this.$dom.oldURL); 18099 return __dom_wrap(_this.$dom.oldURL);
18100 } catch (e) { 18100 } catch (e) {
18101 throw __dom_wrap_exception(e); 18101 throw __dom_wrap_exception(e);
18102 } 18102 }
18103 } 18103 }
18104 18104
18105 function native__HashChangeEventWrappingImplementation__initHashChangeEvent(_thi s, type, canBubble, cancelable, oldURL, newURL) { 18105 function native__HashChangeEventWrappingImplementation__initHashChangeEvent(_thi s, type, canBubble, cancelable, oldURL, newURL) {
18106 try { 18106 try {
18107 return __dom_wrap(_this.$dom.initHashChangeEvent(__dom_unwrap(type), __dom_u nwrap(canBubble), __dom_unwrap(cancelable), __dom_unwrap(oldURL), __dom_unwrap(n ewURL))); 18107 return __dom_wrap(_this.$dom.initHashChangeEvent(__dom_unwrap(type), __dom_u nwrap(canBubble), __dom_unwrap(cancelable), __dom_unwrap(oldURL), __dom_unwrap(n ewURL)));
18108 } catch (e) { 18108 } catch (e) {
18109 throw __dom_wrap_exception(e); 18109 throw __dom_wrap_exception(e);
18110 } 18110 }
18111 } 18111 }
18112 18112
18113 function native__HistoryWrappingImplementation__get__History_length(_this) { 18113 function native__HistoryWrappingImplementation__get_length(_this) {
18114 try { 18114 try {
18115 return __dom_wrap(_this.$dom.length); 18115 return __dom_wrap(_this.$dom.length);
18116 } catch (e) { 18116 } catch (e) {
18117 throw __dom_wrap_exception(e); 18117 throw __dom_wrap_exception(e);
18118 } 18118 }
18119 } 18119 }
18120 18120
18121 function native__HistoryWrappingImplementation__back(_this) { 18121 function native__HistoryWrappingImplementation__back(_this) {
18122 try { 18122 try {
18123 return __dom_wrap(_this.$dom.back()); 18123 return __dom_wrap(_this.$dom.back());
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
18167 } 18167 }
18168 18168
18169 function native__HistoryWrappingImplementation__replaceState_2(_this, data, titl e, url) { 18169 function native__HistoryWrappingImplementation__replaceState_2(_this, data, titl e, url) {
18170 try { 18170 try {
18171 return __dom_wrap(_this.$dom.replaceState(__dom_unwrap(data), __dom_unwrap(t itle), __dom_unwrap(url))); 18171 return __dom_wrap(_this.$dom.replaceState(__dom_unwrap(data), __dom_unwrap(t itle), __dom_unwrap(url)));
18172 } catch (e) { 18172 } catch (e) {
18173 throw __dom_wrap_exception(e); 18173 throw __dom_wrap_exception(e);
18174 } 18174 }
18175 } 18175 }
18176 18176
18177 function native__IDBCursorWrappingImplementation__get__IDBCursor_direction(_this ) { 18177 function native__IDBCursorWrappingImplementation__get_direction(_this) {
18178 try { 18178 try {
18179 return __dom_wrap(_this.$dom.direction); 18179 return __dom_wrap(_this.$dom.direction);
18180 } catch (e) { 18180 } catch (e) {
18181 throw __dom_wrap_exception(e); 18181 throw __dom_wrap_exception(e);
18182 } 18182 }
18183 } 18183 }
18184 18184
18185 function native__IDBCursorWrappingImplementation__get__IDBCursor_key(_this) { 18185 function native__IDBCursorWrappingImplementation__get_key(_this) {
18186 try { 18186 try {
18187 return __dom_wrap(_this.$dom.key); 18187 return __dom_wrap(_this.$dom.key);
18188 } catch (e) { 18188 } catch (e) {
18189 throw __dom_wrap_exception(e); 18189 throw __dom_wrap_exception(e);
18190 } 18190 }
18191 } 18191 }
18192 18192
18193 function native__IDBCursorWrappingImplementation__get__IDBCursor_primaryKey(_thi s) { 18193 function native__IDBCursorWrappingImplementation__get_primaryKey(_this) {
18194 try { 18194 try {
18195 return __dom_wrap(_this.$dom.primaryKey); 18195 return __dom_wrap(_this.$dom.primaryKey);
18196 } catch (e) { 18196 } catch (e) {
18197 throw __dom_wrap_exception(e); 18197 throw __dom_wrap_exception(e);
18198 } 18198 }
18199 } 18199 }
18200 18200
18201 function native__IDBCursorWrappingImplementation__get__IDBCursor_source(_this) { 18201 function native__IDBCursorWrappingImplementation__get_source(_this) {
18202 try { 18202 try {
18203 return __dom_wrap(_this.$dom.source); 18203 return __dom_wrap(_this.$dom.source);
18204 } catch (e) { 18204 } catch (e) {
18205 throw __dom_wrap_exception(e); 18205 throw __dom_wrap_exception(e);
18206 } 18206 }
18207 } 18207 }
18208 18208
18209 function native__IDBCursorWrappingImplementation__continueFunction(_this) { 18209 function native__IDBCursorWrappingImplementation__continueFunction(_this) {
18210 try { 18210 try {
18211 return __dom_wrap(_this.$dom.continueFunction()); 18211 return __dom_wrap(_this.$dom.continueFunction());
(...skipping 19 matching lines...) Expand all
18231 } 18231 }
18232 18232
18233 function native__IDBCursorWrappingImplementation__update(_this, value) { 18233 function native__IDBCursorWrappingImplementation__update(_this, value) {
18234 try { 18234 try {
18235 return __dom_wrap(_this.$dom.update(__dom_unwrap(value))); 18235 return __dom_wrap(_this.$dom.update(__dom_unwrap(value)));
18236 } catch (e) { 18236 } catch (e) {
18237 throw __dom_wrap_exception(e); 18237 throw __dom_wrap_exception(e);
18238 } 18238 }
18239 } 18239 }
18240 18240
18241 function native__IDBCursorWithValueWrappingImplementation__get__IDBCursorWithVal ue_value(_this) { 18241 function native__IDBCursorWithValueWrappingImplementation__get_value(_this) {
18242 try { 18242 try {
18243 return __dom_wrap(_this.$dom.value); 18243 return __dom_wrap(_this.$dom.value);
18244 } catch (e) { 18244 } catch (e) {
18245 throw __dom_wrap_exception(e); 18245 throw __dom_wrap_exception(e);
18246 } 18246 }
18247 } 18247 }
18248 18248
18249 function native__IDBDatabaseWrappingImplementation__get__IDBDatabase_name(_this) { 18249 function native__IDBDatabaseWrappingImplementation__get_name(_this) {
18250 try { 18250 try {
18251 return __dom_wrap(_this.$dom.name); 18251 return __dom_wrap(_this.$dom.name);
18252 } catch (e) { 18252 } catch (e) {
18253 throw __dom_wrap_exception(e); 18253 throw __dom_wrap_exception(e);
18254 } 18254 }
18255 } 18255 }
18256 18256
18257 function native__IDBDatabaseWrappingImplementation__get__IDBDatabase_onabort(_th is) { 18257 function native__IDBDatabaseWrappingImplementation__get_onabort(_this) {
18258 try { 18258 try {
18259 return __dom_wrap(_this.$dom.onabort); 18259 return __dom_wrap(_this.$dom.onabort);
18260 } catch (e) { 18260 } catch (e) {
18261 throw __dom_wrap_exception(e); 18261 throw __dom_wrap_exception(e);
18262 } 18262 }
18263 } 18263 }
18264 18264
18265 function native__IDBDatabaseWrappingImplementation__set__IDBDatabase_onabort(_th is, value) { 18265 function native__IDBDatabaseWrappingImplementation__set_onabort(_this, value) {
18266 try { 18266 try {
18267 _this.$dom.onabort = __dom_unwrap(value); 18267 _this.$dom.onabort = __dom_unwrap(value);
18268 } catch (e) { 18268 } catch (e) {
18269 throw __dom_wrap_exception(e); 18269 throw __dom_wrap_exception(e);
18270 } 18270 }
18271 } 18271 }
18272 18272
18273 function native__IDBDatabaseWrappingImplementation__get__IDBDatabase_onerror(_th is) { 18273 function native__IDBDatabaseWrappingImplementation__get_onerror(_this) {
18274 try { 18274 try {
18275 return __dom_wrap(_this.$dom.onerror); 18275 return __dom_wrap(_this.$dom.onerror);
18276 } catch (e) { 18276 } catch (e) {
18277 throw __dom_wrap_exception(e); 18277 throw __dom_wrap_exception(e);
18278 } 18278 }
18279 } 18279 }
18280 18280
18281 function native__IDBDatabaseWrappingImplementation__set__IDBDatabase_onerror(_th is, value) { 18281 function native__IDBDatabaseWrappingImplementation__set_onerror(_this, value) {
18282 try { 18282 try {
18283 _this.$dom.onerror = __dom_unwrap(value); 18283 _this.$dom.onerror = __dom_unwrap(value);
18284 } catch (e) { 18284 } catch (e) {
18285 throw __dom_wrap_exception(e); 18285 throw __dom_wrap_exception(e);
18286 } 18286 }
18287 } 18287 }
18288 18288
18289 function native__IDBDatabaseWrappingImplementation__get__IDBDatabase_onversionch ange(_this) { 18289 function native__IDBDatabaseWrappingImplementation__get_onversionchange(_this) {
18290 try { 18290 try {
18291 return __dom_wrap(_this.$dom.onversionchange); 18291 return __dom_wrap(_this.$dom.onversionchange);
18292 } catch (e) { 18292 } catch (e) {
18293 throw __dom_wrap_exception(e); 18293 throw __dom_wrap_exception(e);
18294 } 18294 }
18295 } 18295 }
18296 18296
18297 function native__IDBDatabaseWrappingImplementation__set__IDBDatabase_onversionch ange(_this, value) { 18297 function native__IDBDatabaseWrappingImplementation__set_onversionchange(_this, v alue) {
18298 try { 18298 try {
18299 _this.$dom.onversionchange = __dom_unwrap(value); 18299 _this.$dom.onversionchange = __dom_unwrap(value);
18300 } catch (e) { 18300 } catch (e) {
18301 throw __dom_wrap_exception(e); 18301 throw __dom_wrap_exception(e);
18302 } 18302 }
18303 } 18303 }
18304 18304
18305 function native__IDBDatabaseWrappingImplementation__get__IDBDatabase_version(_th is) { 18305 function native__IDBDatabaseWrappingImplementation__get_version(_this) {
18306 try { 18306 try {
18307 return __dom_wrap(_this.$dom.version); 18307 return __dom_wrap(_this.$dom.version);
18308 } catch (e) { 18308 } catch (e) {
18309 throw __dom_wrap_exception(e); 18309 throw __dom_wrap_exception(e);
18310 } 18310 }
18311 } 18311 }
18312 18312
18313 function native__IDBDatabaseWrappingImplementation__addEventListener(_this, type , listener) { 18313 function native__IDBDatabaseWrappingImplementation__addEventListener(_this, type , listener) {
18314 try { 18314 try {
18315 return __dom_wrap(_this.$dom.addEventListener(__dom_unwrap(type), __dom_unwr ap(listener))); 18315 return __dom_wrap(_this.$dom.addEventListener(__dom_unwrap(type), __dom_unwr ap(listener)));
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
18383 } 18383 }
18384 18384
18385 function native__IDBDatabaseWrappingImplementation__transaction(_this, storeName , mode) { 18385 function native__IDBDatabaseWrappingImplementation__transaction(_this, storeName , mode) {
18386 try { 18386 try {
18387 return __dom_wrap(_this.$dom.transaction(__dom_unwrap(storeName), __dom_unwr ap(mode))); 18387 return __dom_wrap(_this.$dom.transaction(__dom_unwrap(storeName), __dom_unwr ap(mode)));
18388 } catch (e) { 18388 } catch (e) {
18389 throw __dom_wrap_exception(e); 18389 throw __dom_wrap_exception(e);
18390 } 18390 }
18391 } 18391 }
18392 18392
18393 function native__IDBDatabaseErrorWrappingImplementation__get__IDBDatabaseError_c ode(_this) { 18393 function native__IDBDatabaseErrorWrappingImplementation__get_code(_this) {
18394 try { 18394 try {
18395 return __dom_wrap(_this.$dom.code); 18395 return __dom_wrap(_this.$dom.code);
18396 } catch (e) { 18396 } catch (e) {
18397 throw __dom_wrap_exception(e); 18397 throw __dom_wrap_exception(e);
18398 } 18398 }
18399 } 18399 }
18400 18400
18401 function native__IDBDatabaseErrorWrappingImplementation__set__IDBDatabaseError_c ode(_this, value) { 18401 function native__IDBDatabaseErrorWrappingImplementation__set_code(_this, value) {
18402 try { 18402 try {
18403 _this.$dom.code = __dom_unwrap(value); 18403 _this.$dom.code = __dom_unwrap(value);
18404 } catch (e) { 18404 } catch (e) {
18405 throw __dom_wrap_exception(e); 18405 throw __dom_wrap_exception(e);
18406 } 18406 }
18407 } 18407 }
18408 18408
18409 function native__IDBDatabaseErrorWrappingImplementation__get__IDBDatabaseError_m essage(_this) { 18409 function native__IDBDatabaseErrorWrappingImplementation__get_message(_this) {
18410 try { 18410 try {
18411 return __dom_wrap(_this.$dom.message); 18411 return __dom_wrap(_this.$dom.message);
18412 } catch (e) { 18412 } catch (e) {
18413 throw __dom_wrap_exception(e); 18413 throw __dom_wrap_exception(e);
18414 } 18414 }
18415 } 18415 }
18416 18416
18417 function native__IDBDatabaseErrorWrappingImplementation__set__IDBDatabaseError_m essage(_this, value) { 18417 function native__IDBDatabaseErrorWrappingImplementation__set_message(_this, valu e) {
18418 try { 18418 try {
18419 _this.$dom.message = __dom_unwrap(value); 18419 _this.$dom.message = __dom_unwrap(value);
18420 } catch (e) { 18420 } catch (e) {
18421 throw __dom_wrap_exception(e); 18421 throw __dom_wrap_exception(e);
18422 } 18422 }
18423 } 18423 }
18424 18424
18425 function native__IDBDatabaseExceptionWrappingImplementation__get__IDBDatabaseExc eption_code(_this) { 18425 function native__IDBDatabaseExceptionWrappingImplementation__get_code(_this) {
18426 try { 18426 try {
18427 return __dom_wrap(_this.$dom.code); 18427 return __dom_wrap(_this.$dom.code);
18428 } catch (e) { 18428 } catch (e) {
18429 throw __dom_wrap_exception(e); 18429 throw __dom_wrap_exception(e);
18430 } 18430 }
18431 } 18431 }
18432 18432
18433 function native__IDBDatabaseExceptionWrappingImplementation__get__IDBDatabaseExc eption_message(_this) { 18433 function native__IDBDatabaseExceptionWrappingImplementation__get_message(_this) {
18434 try { 18434 try {
18435 return __dom_wrap(_this.$dom.message); 18435 return __dom_wrap(_this.$dom.message);
18436 } catch (e) { 18436 } catch (e) {
18437 throw __dom_wrap_exception(e); 18437 throw __dom_wrap_exception(e);
18438 } 18438 }
18439 } 18439 }
18440 18440
18441 function native__IDBDatabaseExceptionWrappingImplementation__get__IDBDatabaseExc eption_name(_this) { 18441 function native__IDBDatabaseExceptionWrappingImplementation__get_name(_this) {
18442 try { 18442 try {
18443 return __dom_wrap(_this.$dom.name); 18443 return __dom_wrap(_this.$dom.name);
18444 } catch (e) { 18444 } catch (e) {
18445 throw __dom_wrap_exception(e); 18445 throw __dom_wrap_exception(e);
18446 } 18446 }
18447 } 18447 }
18448 18448
18449 function native__IDBDatabaseExceptionWrappingImplementation__toString(_this) { 18449 function native__IDBDatabaseExceptionWrappingImplementation__toString(_this) {
18450 try { 18450 try {
18451 return __dom_wrap(_this.$dom.toString()); 18451 return __dom_wrap(_this.$dom.toString());
(...skipping 27 matching lines...) Expand all
18479 } 18479 }
18480 18480
18481 function native__IDBFactoryWrappingImplementation__open(_this, name) { 18481 function native__IDBFactoryWrappingImplementation__open(_this, name) {
18482 try { 18482 try {
18483 return __dom_wrap(_this.$dom.open(__dom_unwrap(name))); 18483 return __dom_wrap(_this.$dom.open(__dom_unwrap(name)));
18484 } catch (e) { 18484 } catch (e) {
18485 throw __dom_wrap_exception(e); 18485 throw __dom_wrap_exception(e);
18486 } 18486 }
18487 } 18487 }
18488 18488
18489 function native__IDBIndexWrappingImplementation__get__IDBIndex_keyPath(_this) { 18489 function native__IDBIndexWrappingImplementation__get_keyPath(_this) {
18490 try { 18490 try {
18491 return __dom_wrap(_this.$dom.keyPath); 18491 return __dom_wrap(_this.$dom.keyPath);
18492 } catch (e) { 18492 } catch (e) {
18493 throw __dom_wrap_exception(e); 18493 throw __dom_wrap_exception(e);
18494 } 18494 }
18495 } 18495 }
18496 18496
18497 function native__IDBIndexWrappingImplementation__get__IDBIndex_name(_this) { 18497 function native__IDBIndexWrappingImplementation__get_name(_this) {
18498 try { 18498 try {
18499 return __dom_wrap(_this.$dom.name); 18499 return __dom_wrap(_this.$dom.name);
18500 } catch (e) { 18500 } catch (e) {
18501 throw __dom_wrap_exception(e); 18501 throw __dom_wrap_exception(e);
18502 } 18502 }
18503 } 18503 }
18504 18504
18505 function native__IDBIndexWrappingImplementation__get__IDBIndex_objectStore(_this ) { 18505 function native__IDBIndexWrappingImplementation__get_objectStore(_this) {
18506 try { 18506 try {
18507 return __dom_wrap(_this.$dom.objectStore); 18507 return __dom_wrap(_this.$dom.objectStore);
18508 } catch (e) { 18508 } catch (e) {
18509 throw __dom_wrap_exception(e); 18509 throw __dom_wrap_exception(e);
18510 } 18510 }
18511 } 18511 }
18512 18512
18513 function native__IDBIndexWrappingImplementation__get__IDBIndex_unique(_this) { 18513 function native__IDBIndexWrappingImplementation__get_unique(_this) {
18514 try { 18514 try {
18515 return __dom_wrap(_this.$dom.unique); 18515 return __dom_wrap(_this.$dom.unique);
18516 } catch (e) { 18516 } catch (e) {
18517 throw __dom_wrap_exception(e); 18517 throw __dom_wrap_exception(e);
18518 } 18518 }
18519 } 18519 }
18520 18520
18521 function native__IDBIndexWrappingImplementation__getObject(_this, key) { 18521 function native__IDBIndexWrappingImplementation__getObject(_this, key) {
18522 try { 18522 try {
18523 return __dom_wrap(_this.$dom.get(__dom_unwrap(key))); 18523 return __dom_wrap(_this.$dom.get(__dom_unwrap(key)));
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
18575 } 18575 }
18576 18576
18577 function native__IDBIndexWrappingImplementation__openKeyCursor_3(_this, range, d irection) { 18577 function native__IDBIndexWrappingImplementation__openKeyCursor_3(_this, range, d irection) {
18578 try { 18578 try {
18579 return __dom_wrap(_this.$dom.openKeyCursor(__dom_unwrap(range), __dom_unwrap (direction))); 18579 return __dom_wrap(_this.$dom.openKeyCursor(__dom_unwrap(range), __dom_unwrap (direction)));
18580 } catch (e) { 18580 } catch (e) {
18581 throw __dom_wrap_exception(e); 18581 throw __dom_wrap_exception(e);
18582 } 18582 }
18583 } 18583 }
18584 18584
18585 function native__IDBKeyRangeWrappingImplementation__get__IDBKeyRange_lower(_this ) { 18585 function native__IDBKeyRangeWrappingImplementation__get_lower(_this) {
18586 try { 18586 try {
18587 return __dom_wrap(_this.$dom.lower); 18587 return __dom_wrap(_this.$dom.lower);
18588 } catch (e) { 18588 } catch (e) {
18589 throw __dom_wrap_exception(e); 18589 throw __dom_wrap_exception(e);
18590 } 18590 }
18591 } 18591 }
18592 18592
18593 function native__IDBKeyRangeWrappingImplementation__get__IDBKeyRange_lowerOpen(_ this) { 18593 function native__IDBKeyRangeWrappingImplementation__get_lowerOpen(_this) {
18594 try { 18594 try {
18595 return __dom_wrap(_this.$dom.lowerOpen); 18595 return __dom_wrap(_this.$dom.lowerOpen);
18596 } catch (e) { 18596 } catch (e) {
18597 throw __dom_wrap_exception(e); 18597 throw __dom_wrap_exception(e);
18598 } 18598 }
18599 } 18599 }
18600 18600
18601 function native__IDBKeyRangeWrappingImplementation__get__IDBKeyRange_upper(_this ) { 18601 function native__IDBKeyRangeWrappingImplementation__get_upper(_this) {
18602 try { 18602 try {
18603 return __dom_wrap(_this.$dom.upper); 18603 return __dom_wrap(_this.$dom.upper);
18604 } catch (e) { 18604 } catch (e) {
18605 throw __dom_wrap_exception(e); 18605 throw __dom_wrap_exception(e);
18606 } 18606 }
18607 } 18607 }
18608 18608
18609 function native__IDBKeyRangeWrappingImplementation__get__IDBKeyRange_upperOpen(_ this) { 18609 function native__IDBKeyRangeWrappingImplementation__get_upperOpen(_this) {
18610 try { 18610 try {
18611 return __dom_wrap(_this.$dom.upperOpen); 18611 return __dom_wrap(_this.$dom.upperOpen);
18612 } catch (e) { 18612 } catch (e) {
18613 throw __dom_wrap_exception(e); 18613 throw __dom_wrap_exception(e);
18614 } 18614 }
18615 } 18615 }
18616 18616
18617 function native__IDBKeyRangeWrappingImplementation__bound(_this, lower, upper) { 18617 function native__IDBKeyRangeWrappingImplementation__bound(_this, lower, upper) {
18618 try { 18618 try {
18619 return __dom_wrap(_this.$dom.bound(__dom_unwrap(lower), __dom_unwrap(upper)) ); 18619 return __dom_wrap(_this.$dom.bound(__dom_unwrap(lower), __dom_unwrap(upper)) );
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
18671 } 18671 }
18672 18672
18673 function native__IDBKeyRangeWrappingImplementation__upperBound_2(_this, bound, o pen) { 18673 function native__IDBKeyRangeWrappingImplementation__upperBound_2(_this, bound, o pen) {
18674 try { 18674 try {
18675 return __dom_wrap(_this.$dom.upperBound(__dom_unwrap(bound), __dom_unwrap(op en))); 18675 return __dom_wrap(_this.$dom.upperBound(__dom_unwrap(bound), __dom_unwrap(op en)));
18676 } catch (e) { 18676 } catch (e) {
18677 throw __dom_wrap_exception(e); 18677 throw __dom_wrap_exception(e);
18678 } 18678 }
18679 } 18679 }
18680 18680
18681 function native__IDBObjectStoreWrappingImplementation__get__IDBObjectStore_keyPa th(_this) { 18681 function native__IDBObjectStoreWrappingImplementation__get_keyPath(_this) {
18682 try { 18682 try {
18683 return __dom_wrap(_this.$dom.keyPath); 18683 return __dom_wrap(_this.$dom.keyPath);
18684 } catch (e) { 18684 } catch (e) {
18685 throw __dom_wrap_exception(e); 18685 throw __dom_wrap_exception(e);
18686 } 18686 }
18687 } 18687 }
18688 18688
18689 function native__IDBObjectStoreWrappingImplementation__get__IDBObjectStore_name( _this) { 18689 function native__IDBObjectStoreWrappingImplementation__get_name(_this) {
18690 try { 18690 try {
18691 return __dom_wrap(_this.$dom.name); 18691 return __dom_wrap(_this.$dom.name);
18692 } catch (e) { 18692 } catch (e) {
18693 throw __dom_wrap_exception(e); 18693 throw __dom_wrap_exception(e);
18694 } 18694 }
18695 } 18695 }
18696 18696
18697 function native__IDBObjectStoreWrappingImplementation__get__IDBObjectStore_trans action(_this) { 18697 function native__IDBObjectStoreWrappingImplementation__get_transaction(_this) {
18698 try { 18698 try {
18699 return __dom_wrap(_this.$dom.transaction); 18699 return __dom_wrap(_this.$dom.transaction);
18700 } catch (e) { 18700 } catch (e) {
18701 throw __dom_wrap_exception(e); 18701 throw __dom_wrap_exception(e);
18702 } 18702 }
18703 } 18703 }
18704 18704
18705 function native__IDBObjectStoreWrappingImplementation__add(_this, value) { 18705 function native__IDBObjectStoreWrappingImplementation__add(_this, value) {
18706 try { 18706 try {
18707 return __dom_wrap(_this.$dom.add(__dom_unwrap(value))); 18707 return __dom_wrap(_this.$dom.add(__dom_unwrap(value)));
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
18799 } 18799 }
18800 18800
18801 function native__IDBObjectStoreWrappingImplementation__put_2(_this, value, key) { 18801 function native__IDBObjectStoreWrappingImplementation__put_2(_this, value, key) {
18802 try { 18802 try {
18803 return __dom_wrap(_this.$dom.put(__dom_unwrap(value), __dom_unwrap(key))); 18803 return __dom_wrap(_this.$dom.put(__dom_unwrap(value), __dom_unwrap(key)));
18804 } catch (e) { 18804 } catch (e) {
18805 throw __dom_wrap_exception(e); 18805 throw __dom_wrap_exception(e);
18806 } 18806 }
18807 } 18807 }
18808 18808
18809 function native__IDBRequestWrappingImplementation__get__IDBRequest_errorCode(_th is) { 18809 function native__IDBRequestWrappingImplementation__get_errorCode(_this) {
18810 try { 18810 try {
18811 return __dom_wrap(_this.$dom.errorCode); 18811 return __dom_wrap(_this.$dom.errorCode);
18812 } catch (e) { 18812 } catch (e) {
18813 throw __dom_wrap_exception(e); 18813 throw __dom_wrap_exception(e);
18814 } 18814 }
18815 } 18815 }
18816 18816
18817 function native__IDBRequestWrappingImplementation__get__IDBRequest_onerror(_this ) { 18817 function native__IDBRequestWrappingImplementation__get_onerror(_this) {
18818 try { 18818 try {
18819 return __dom_wrap(_this.$dom.onerror); 18819 return __dom_wrap(_this.$dom.onerror);
18820 } catch (e) { 18820 } catch (e) {
18821 throw __dom_wrap_exception(e); 18821 throw __dom_wrap_exception(e);
18822 } 18822 }
18823 } 18823 }
18824 18824
18825 function native__IDBRequestWrappingImplementation__set__IDBRequest_onerror(_this , value) { 18825 function native__IDBRequestWrappingImplementation__set_onerror(_this, value) {
18826 try { 18826 try {
18827 _this.$dom.onerror = __dom_unwrap(value); 18827 _this.$dom.onerror = __dom_unwrap(value);
18828 } catch (e) { 18828 } catch (e) {
18829 throw __dom_wrap_exception(e); 18829 throw __dom_wrap_exception(e);
18830 } 18830 }
18831 } 18831 }
18832 18832
18833 function native__IDBRequestWrappingImplementation__get__IDBRequest_onsuccess(_th is) { 18833 function native__IDBRequestWrappingImplementation__get_onsuccess(_this) {
18834 try { 18834 try {
18835 return __dom_wrap(_this.$dom.onsuccess); 18835 return __dom_wrap(_this.$dom.onsuccess);
18836 } catch (e) { 18836 } catch (e) {
18837 throw __dom_wrap_exception(e); 18837 throw __dom_wrap_exception(e);
18838 } 18838 }
18839 } 18839 }
18840 18840
18841 function native__IDBRequestWrappingImplementation__set__IDBRequest_onsuccess(_th is, value) { 18841 function native__IDBRequestWrappingImplementation__set_onsuccess(_this, value) {
18842 try { 18842 try {
18843 _this.$dom.onsuccess = __dom_unwrap(value); 18843 _this.$dom.onsuccess = __dom_unwrap(value);
18844 } catch (e) { 18844 } catch (e) {
18845 throw __dom_wrap_exception(e); 18845 throw __dom_wrap_exception(e);
18846 } 18846 }
18847 } 18847 }
18848 18848
18849 function native__IDBRequestWrappingImplementation__get__IDBRequest_readyState(_t his) { 18849 function native__IDBRequestWrappingImplementation__get_readyState(_this) {
18850 try { 18850 try {
18851 return __dom_wrap(_this.$dom.readyState); 18851 return __dom_wrap(_this.$dom.readyState);
18852 } catch (e) { 18852 } catch (e) {
18853 throw __dom_wrap_exception(e); 18853 throw __dom_wrap_exception(e);
18854 } 18854 }
18855 } 18855 }
18856 18856
18857 function native__IDBRequestWrappingImplementation__get__IDBRequest_result(_this) { 18857 function native__IDBRequestWrappingImplementation__get_result(_this) {
18858 try { 18858 try {
18859 return __dom_wrap(_this.$dom.result); 18859 return __dom_wrap(_this.$dom.result);
18860 } catch (e) { 18860 } catch (e) {
18861 throw __dom_wrap_exception(e); 18861 throw __dom_wrap_exception(e);
18862 } 18862 }
18863 } 18863 }
18864 18864
18865 function native__IDBRequestWrappingImplementation__get__IDBRequest_source(_this) { 18865 function native__IDBRequestWrappingImplementation__get_source(_this) {
18866 try { 18866 try {
18867 return __dom_wrap(_this.$dom.source); 18867 return __dom_wrap(_this.$dom.source);
18868 } catch (e) { 18868 } catch (e) {
18869 throw __dom_wrap_exception(e); 18869 throw __dom_wrap_exception(e);
18870 } 18870 }
18871 } 18871 }
18872 18872
18873 function native__IDBRequestWrappingImplementation__get__IDBRequest_transaction(_ this) { 18873 function native__IDBRequestWrappingImplementation__get_transaction(_this) {
18874 try { 18874 try {
18875 return __dom_wrap(_this.$dom.transaction); 18875 return __dom_wrap(_this.$dom.transaction);
18876 } catch (e) { 18876 } catch (e) {
18877 throw __dom_wrap_exception(e); 18877 throw __dom_wrap_exception(e);
18878 } 18878 }
18879 } 18879 }
18880 18880
18881 function native__IDBRequestWrappingImplementation__get__IDBRequest_webkitErrorMe ssage(_this) { 18881 function native__IDBRequestWrappingImplementation__get_webkitErrorMessage(_this) {
18882 try { 18882 try {
18883 return __dom_wrap(_this.$dom.webkitErrorMessage); 18883 return __dom_wrap(_this.$dom.webkitErrorMessage);
18884 } catch (e) { 18884 } catch (e) {
18885 throw __dom_wrap_exception(e); 18885 throw __dom_wrap_exception(e);
18886 } 18886 }
18887 } 18887 }
18888 18888
18889 function native__IDBRequestWrappingImplementation__addEventListener(_this, type, listener) { 18889 function native__IDBRequestWrappingImplementation__addEventListener(_this, type, listener) {
18890 try { 18890 try {
18891 return __dom_wrap(_this.$dom.addEventListener(__dom_unwrap(type), __dom_unwr ap(listener))); 18891 return __dom_wrap(_this.$dom.addEventListener(__dom_unwrap(type), __dom_unwr ap(listener)));
(...skipping 27 matching lines...) Expand all
18919 } 18919 }
18920 18920
18921 function native__IDBRequestWrappingImplementation__removeEventListener_2(_this, type, listener, useCapture) { 18921 function native__IDBRequestWrappingImplementation__removeEventListener_2(_this, type, listener, useCapture) {
18922 try { 18922 try {
18923 return __dom_wrap(_this.$dom.removeEventListener(__dom_unwrap(type), __dom_u nwrap(listener), __dom_unwrap(useCapture))); 18923 return __dom_wrap(_this.$dom.removeEventListener(__dom_unwrap(type), __dom_u nwrap(listener), __dom_unwrap(useCapture)));
18924 } catch (e) { 18924 } catch (e) {
18925 throw __dom_wrap_exception(e); 18925 throw __dom_wrap_exception(e);
18926 } 18926 }
18927 } 18927 }
18928 18928
18929 function native__IDBTransactionWrappingImplementation__get__IDBTransaction_db(_t his) { 18929 function native__IDBTransactionWrappingImplementation__get_db(_this) {
18930 try { 18930 try {
18931 return __dom_wrap(_this.$dom.db); 18931 return __dom_wrap(_this.$dom.db);
18932 } catch (e) { 18932 } catch (e) {
18933 throw __dom_wrap_exception(e); 18933 throw __dom_wrap_exception(e);
18934 } 18934 }
18935 } 18935 }
18936 18936
18937 function native__IDBTransactionWrappingImplementation__get__IDBTransaction_mode( _this) { 18937 function native__IDBTransactionWrappingImplementation__get_mode(_this) {
18938 try { 18938 try {
18939 return __dom_wrap(_this.$dom.mode); 18939 return __dom_wrap(_this.$dom.mode);
18940 } catch (e) { 18940 } catch (e) {
18941 throw __dom_wrap_exception(e); 18941 throw __dom_wrap_exception(e);
18942 } 18942 }
18943 } 18943 }
18944 18944
18945 function native__IDBTransactionWrappingImplementation__get__IDBTransaction_onabo rt(_this) { 18945 function native__IDBTransactionWrappingImplementation__get_onabort(_this) {
18946 try { 18946 try {
18947 return __dom_wrap(_this.$dom.onabort); 18947 return __dom_wrap(_this.$dom.onabort);
18948 } catch (e) { 18948 } catch (e) {
18949 throw __dom_wrap_exception(e); 18949 throw __dom_wrap_exception(e);
18950 } 18950 }
18951 } 18951 }
18952 18952
18953 function native__IDBTransactionWrappingImplementation__set__IDBTransaction_onabo rt(_this, value) { 18953 function native__IDBTransactionWrappingImplementation__set_onabort(_this, value) {
18954 try { 18954 try {
18955 _this.$dom.onabort = __dom_unwrap(value); 18955 _this.$dom.onabort = __dom_unwrap(value);
18956 } catch (e) { 18956 } catch (e) {
18957 throw __dom_wrap_exception(e); 18957 throw __dom_wrap_exception(e);
18958 } 18958 }
18959 } 18959 }
18960 18960
18961 function native__IDBTransactionWrappingImplementation__get__IDBTransaction_oncom plete(_this) { 18961 function native__IDBTransactionWrappingImplementation__get_oncomplete(_this) {
18962 try { 18962 try {
18963 return __dom_wrap(_this.$dom.oncomplete); 18963 return __dom_wrap(_this.$dom.oncomplete);
18964 } catch (e) { 18964 } catch (e) {
18965 throw __dom_wrap_exception(e); 18965 throw __dom_wrap_exception(e);
18966 } 18966 }
18967 } 18967 }
18968 18968
18969 function native__IDBTransactionWrappingImplementation__set__IDBTransaction_oncom plete(_this, value) { 18969 function native__IDBTransactionWrappingImplementation__set_oncomplete(_this, val ue) {
18970 try { 18970 try {
18971 _this.$dom.oncomplete = __dom_unwrap(value); 18971 _this.$dom.oncomplete = __dom_unwrap(value);
18972 } catch (e) { 18972 } catch (e) {
18973 throw __dom_wrap_exception(e); 18973 throw __dom_wrap_exception(e);
18974 } 18974 }
18975 } 18975 }
18976 18976
18977 function native__IDBTransactionWrappingImplementation__get__IDBTransaction_onerr or(_this) { 18977 function native__IDBTransactionWrappingImplementation__get_onerror(_this) {
18978 try { 18978 try {
18979 return __dom_wrap(_this.$dom.onerror); 18979 return __dom_wrap(_this.$dom.onerror);
18980 } catch (e) { 18980 } catch (e) {
18981 throw __dom_wrap_exception(e); 18981 throw __dom_wrap_exception(e);
18982 } 18982 }
18983 } 18983 }
18984 18984
18985 function native__IDBTransactionWrappingImplementation__set__IDBTransaction_onerr or(_this, value) { 18985 function native__IDBTransactionWrappingImplementation__set_onerror(_this, value) {
18986 try { 18986 try {
18987 _this.$dom.onerror = __dom_unwrap(value); 18987 _this.$dom.onerror = __dom_unwrap(value);
18988 } catch (e) { 18988 } catch (e) {
18989 throw __dom_wrap_exception(e); 18989 throw __dom_wrap_exception(e);
18990 } 18990 }
18991 } 18991 }
18992 18992
18993 function native__IDBTransactionWrappingImplementation__abort(_this) { 18993 function native__IDBTransactionWrappingImplementation__abort(_this) {
18994 try { 18994 try {
18995 return __dom_wrap(_this.$dom.abort()); 18995 return __dom_wrap(_this.$dom.abort());
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
19039 } 19039 }
19040 19040
19041 function native__IDBTransactionWrappingImplementation__removeEventListener_2(_th is, type, listener, useCapture) { 19041 function native__IDBTransactionWrappingImplementation__removeEventListener_2(_th is, type, listener, useCapture) {
19042 try { 19042 try {
19043 return __dom_wrap(_this.$dom.removeEventListener(__dom_unwrap(type), __dom_u nwrap(listener), __dom_unwrap(useCapture))); 19043 return __dom_wrap(_this.$dom.removeEventListener(__dom_unwrap(type), __dom_u nwrap(listener), __dom_unwrap(useCapture)));
19044 } catch (e) { 19044 } catch (e) {
19045 throw __dom_wrap_exception(e); 19045 throw __dom_wrap_exception(e);
19046 } 19046 }
19047 } 19047 }
19048 19048
19049 function native__IDBVersionChangeEventWrappingImplementation__get__IDBVersionCha ngeEvent_version(_this) { 19049 function native__IDBVersionChangeEventWrappingImplementation__get_version(_this) {
19050 try { 19050 try {
19051 return __dom_wrap(_this.$dom.version); 19051 return __dom_wrap(_this.$dom.version);
19052 } catch (e) { 19052 } catch (e) {
19053 throw __dom_wrap_exception(e); 19053 throw __dom_wrap_exception(e);
19054 } 19054 }
19055 } 19055 }
19056 19056
19057 function native__IDBVersionChangeRequestWrappingImplementation__get__IDBVersionC hangeRequest_onblocked(_this) { 19057 function native__IDBVersionChangeRequestWrappingImplementation__get_onblocked(_t his) {
19058 try { 19058 try {
19059 return __dom_wrap(_this.$dom.onblocked); 19059 return __dom_wrap(_this.$dom.onblocked);
19060 } catch (e) { 19060 } catch (e) {
19061 throw __dom_wrap_exception(e); 19061 throw __dom_wrap_exception(e);
19062 } 19062 }
19063 } 19063 }
19064 19064
19065 function native__IDBVersionChangeRequestWrappingImplementation__set__IDBVersionC hangeRequest_onblocked(_this, value) { 19065 function native__IDBVersionChangeRequestWrappingImplementation__set_onblocked(_t his, value) {
19066 try { 19066 try {
19067 _this.$dom.onblocked = __dom_unwrap(value); 19067 _this.$dom.onblocked = __dom_unwrap(value);
19068 } catch (e) { 19068 } catch (e) {
19069 throw __dom_wrap_exception(e); 19069 throw __dom_wrap_exception(e);
19070 } 19070 }
19071 } 19071 }
19072 19072
19073 function native__ImageDataWrappingImplementation__get__ImageData_data(_this) { 19073 function native__ImageDataWrappingImplementation__get_data(_this) {
19074 try { 19074 try {
19075 return __dom_wrap(_this.$dom.data); 19075 return __dom_wrap(_this.$dom.data);
19076 } catch (e) { 19076 } catch (e) {
19077 throw __dom_wrap_exception(e); 19077 throw __dom_wrap_exception(e);
19078 } 19078 }
19079 } 19079 }
19080 19080
19081 function native__ImageDataWrappingImplementation__get__ImageData_height(_this) { 19081 function native__ImageDataWrappingImplementation__get_height(_this) {
19082 try { 19082 try {
19083 return __dom_wrap(_this.$dom.height); 19083 return __dom_wrap(_this.$dom.height);
19084 } catch (e) { 19084 } catch (e) {
19085 throw __dom_wrap_exception(e); 19085 throw __dom_wrap_exception(e);
19086 } 19086 }
19087 } 19087 }
19088 19088
19089 function native__ImageDataWrappingImplementation__get__ImageData_width(_this) { 19089 function native__ImageDataWrappingImplementation__get_width(_this) {
19090 try { 19090 try {
19091 return __dom_wrap(_this.$dom.width); 19091 return __dom_wrap(_this.$dom.width);
19092 } catch (e) { 19092 } catch (e) {
19093 throw __dom_wrap_exception(e); 19093 throw __dom_wrap_exception(e);
19094 } 19094 }
19095 } 19095 }
19096 19096
19097 function native__InjectedScriptHostWrappingImplementation__clearConsoleMessages( _this) { 19097 function native__InjectedScriptHostWrappingImplementation__clearConsoleMessages( _this) {
19098 try { 19098 try {
19099 return __dom_wrap(_this.$dom.clearConsoleMessages()); 19099 return __dom_wrap(_this.$dom.clearConsoleMessages());
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after
19335 } 19335 }
19336 19336
19337 function native__InspectorFrontendHostWrappingImplementation__showContextMenu(_t his, event, items) { 19337 function native__InspectorFrontendHostWrappingImplementation__showContextMenu(_t his, event, items) {
19338 try { 19338 try {
19339 return __dom_wrap(_this.$dom.showContextMenu(__dom_unwrap(event), __dom_unwr ap(items))); 19339 return __dom_wrap(_this.$dom.showContextMenu(__dom_unwrap(event), __dom_unwr ap(items)));
19340 } catch (e) { 19340 } catch (e) {
19341 throw __dom_wrap_exception(e); 19341 throw __dom_wrap_exception(e);
19342 } 19342 }
19343 } 19343 }
19344 19344
19345 function native__Int16ArrayWrappingImplementation__get__Int16Array_length(_this) { 19345 function native__Int16ArrayWrappingImplementation__get_length(_this) {
19346 try { 19346 try {
19347 return __dom_wrap(_this.$dom.length); 19347 return __dom_wrap(_this.$dom.length);
19348 } catch (e) { 19348 } catch (e) {
19349 throw __dom_wrap_exception(e); 19349 throw __dom_wrap_exception(e);
19350 } 19350 }
19351 } 19351 }
19352 19352
19353 function native__Int16ArrayWrappingImplementation__subarray(_this, start) { 19353 function native__Int16ArrayWrappingImplementation__subarray(_this, start) {
19354 try { 19354 try {
19355 return __dom_wrap(_this.$dom.subarray(__dom_unwrap(start))); 19355 return __dom_wrap(_this.$dom.subarray(__dom_unwrap(start)));
19356 } catch (e) { 19356 } catch (e) {
19357 throw __dom_wrap_exception(e); 19357 throw __dom_wrap_exception(e);
19358 } 19358 }
19359 } 19359 }
19360 19360
19361 function native__Int16ArrayWrappingImplementation__subarray_2(_this, start, end) { 19361 function native__Int16ArrayWrappingImplementation__subarray_2(_this, start, end) {
19362 try { 19362 try {
19363 return __dom_wrap(_this.$dom.subarray(__dom_unwrap(start), __dom_unwrap(end) )); 19363 return __dom_wrap(_this.$dom.subarray(__dom_unwrap(start), __dom_unwrap(end) ));
19364 } catch (e) { 19364 } catch (e) {
19365 throw __dom_wrap_exception(e); 19365 throw __dom_wrap_exception(e);
19366 } 19366 }
19367 } 19367 }
19368 19368
19369 function native__Int32ArrayWrappingImplementation__get__Int32Array_length(_this) { 19369 function native__Int32ArrayWrappingImplementation__get_length(_this) {
19370 try { 19370 try {
19371 return __dom_wrap(_this.$dom.length); 19371 return __dom_wrap(_this.$dom.length);
19372 } catch (e) { 19372 } catch (e) {
19373 throw __dom_wrap_exception(e); 19373 throw __dom_wrap_exception(e);
19374 } 19374 }
19375 } 19375 }
19376 19376
19377 function native__Int32ArrayWrappingImplementation__subarray(_this, start) { 19377 function native__Int32ArrayWrappingImplementation__subarray(_this, start) {
19378 try { 19378 try {
19379 return __dom_wrap(_this.$dom.subarray(__dom_unwrap(start))); 19379 return __dom_wrap(_this.$dom.subarray(__dom_unwrap(start)));
19380 } catch (e) { 19380 } catch (e) {
19381 throw __dom_wrap_exception(e); 19381 throw __dom_wrap_exception(e);
19382 } 19382 }
19383 } 19383 }
19384 19384
19385 function native__Int32ArrayWrappingImplementation__subarray_2(_this, start, end) { 19385 function native__Int32ArrayWrappingImplementation__subarray_2(_this, start, end) {
19386 try { 19386 try {
19387 return __dom_wrap(_this.$dom.subarray(__dom_unwrap(start), __dom_unwrap(end) )); 19387 return __dom_wrap(_this.$dom.subarray(__dom_unwrap(start), __dom_unwrap(end) ));
19388 } catch (e) { 19388 } catch (e) {
19389 throw __dom_wrap_exception(e); 19389 throw __dom_wrap_exception(e);
19390 } 19390 }
19391 } 19391 }
19392 19392
19393 function native__Int8ArrayWrappingImplementation__get__Int8Array_length(_this) { 19393 function native__Int8ArrayWrappingImplementation__get_length(_this) {
19394 try { 19394 try {
19395 return __dom_wrap(_this.$dom.length); 19395 return __dom_wrap(_this.$dom.length);
19396 } catch (e) { 19396 } catch (e) {
19397 throw __dom_wrap_exception(e); 19397 throw __dom_wrap_exception(e);
19398 } 19398 }
19399 } 19399 }
19400 19400
19401 function native__Int8ArrayWrappingImplementation__subarray(_this, start) { 19401 function native__Int8ArrayWrappingImplementation__subarray(_this, start) {
19402 try { 19402 try {
19403 return __dom_wrap(_this.$dom.subarray(__dom_unwrap(start))); 19403 return __dom_wrap(_this.$dom.subarray(__dom_unwrap(start)));
19404 } catch (e) { 19404 } catch (e) {
19405 throw __dom_wrap_exception(e); 19405 throw __dom_wrap_exception(e);
19406 } 19406 }
19407 } 19407 }
19408 19408
19409 function native__Int8ArrayWrappingImplementation__subarray_2(_this, start, end) { 19409 function native__Int8ArrayWrappingImplementation__subarray_2(_this, start, end) {
19410 try { 19410 try {
19411 return __dom_wrap(_this.$dom.subarray(__dom_unwrap(start), __dom_unwrap(end) )); 19411 return __dom_wrap(_this.$dom.subarray(__dom_unwrap(start), __dom_unwrap(end) ));
19412 } catch (e) { 19412 } catch (e) {
19413 throw __dom_wrap_exception(e); 19413 throw __dom_wrap_exception(e);
19414 } 19414 }
19415 } 19415 }
19416 19416
19417 function native__JavaScriptCallFrameWrappingImplementation__get__JavaScriptCallF rame_caller(_this) { 19417 function native__JavaScriptCallFrameWrappingImplementation__get_caller(_this) {
19418 try { 19418 try {
19419 return __dom_wrap(_this.$dom.caller); 19419 return __dom_wrap(_this.$dom.caller);
19420 } catch (e) { 19420 } catch (e) {
19421 throw __dom_wrap_exception(e); 19421 throw __dom_wrap_exception(e);
19422 } 19422 }
19423 } 19423 }
19424 19424
19425 function native__JavaScriptCallFrameWrappingImplementation__get__JavaScriptCallF rame_column(_this) { 19425 function native__JavaScriptCallFrameWrappingImplementation__get_column(_this) {
19426 try { 19426 try {
19427 return __dom_wrap(_this.$dom.column); 19427 return __dom_wrap(_this.$dom.column);
19428 } catch (e) { 19428 } catch (e) {
19429 throw __dom_wrap_exception(e); 19429 throw __dom_wrap_exception(e);
19430 } 19430 }
19431 } 19431 }
19432 19432
19433 function native__JavaScriptCallFrameWrappingImplementation__get__JavaScriptCallF rame_functionName(_this) { 19433 function native__JavaScriptCallFrameWrappingImplementation__get_functionName(_th is) {
19434 try { 19434 try {
19435 return __dom_wrap(_this.$dom.functionName); 19435 return __dom_wrap(_this.$dom.functionName);
19436 } catch (e) { 19436 } catch (e) {
19437 throw __dom_wrap_exception(e); 19437 throw __dom_wrap_exception(e);
19438 } 19438 }
19439 } 19439 }
19440 19440
19441 function native__JavaScriptCallFrameWrappingImplementation__get__JavaScriptCallF rame_line(_this) { 19441 function native__JavaScriptCallFrameWrappingImplementation__get_line(_this) {
19442 try { 19442 try {
19443 return __dom_wrap(_this.$dom.line); 19443 return __dom_wrap(_this.$dom.line);
19444 } catch (e) { 19444 } catch (e) {
19445 throw __dom_wrap_exception(e); 19445 throw __dom_wrap_exception(e);
19446 } 19446 }
19447 } 19447 }
19448 19448
19449 function native__JavaScriptCallFrameWrappingImplementation__get__JavaScriptCallF rame_scopeChain(_this) { 19449 function native__JavaScriptCallFrameWrappingImplementation__get_scopeChain(_this ) {
19450 try { 19450 try {
19451 return __dom_wrap(_this.$dom.scopeChain); 19451 return __dom_wrap(_this.$dom.scopeChain);
19452 } catch (e) { 19452 } catch (e) {
19453 throw __dom_wrap_exception(e); 19453 throw __dom_wrap_exception(e);
19454 } 19454 }
19455 } 19455 }
19456 19456
19457 function native__JavaScriptCallFrameWrappingImplementation__get__JavaScriptCallF rame_sourceID(_this) { 19457 function native__JavaScriptCallFrameWrappingImplementation__get_sourceID(_this) {
19458 try { 19458 try {
19459 return __dom_wrap(_this.$dom.sourceID); 19459 return __dom_wrap(_this.$dom.sourceID);
19460 } catch (e) { 19460 } catch (e) {
19461 throw __dom_wrap_exception(e); 19461 throw __dom_wrap_exception(e);
19462 } 19462 }
19463 } 19463 }
19464 19464
19465 function native__JavaScriptCallFrameWrappingImplementation__get__JavaScriptCallF rame_type(_this) { 19465 function native__JavaScriptCallFrameWrappingImplementation__get_type(_this) {
19466 try { 19466 try {
19467 return __dom_wrap(_this.$dom.type); 19467 return __dom_wrap(_this.$dom.type);
19468 } catch (e) { 19468 } catch (e) {
19469 throw __dom_wrap_exception(e); 19469 throw __dom_wrap_exception(e);
19470 } 19470 }
19471 } 19471 }
19472 19472
19473 function native__JavaScriptCallFrameWrappingImplementation__evaluate(_this, scri pt) { 19473 function native__JavaScriptCallFrameWrappingImplementation__evaluate(_this, scri pt) {
19474 try { 19474 try {
19475 return __dom_wrap(_this.$dom.evaluate(__dom_unwrap(script))); 19475 return __dom_wrap(_this.$dom.evaluate(__dom_unwrap(script)));
19476 } catch (e) { 19476 } catch (e) {
19477 throw __dom_wrap_exception(e); 19477 throw __dom_wrap_exception(e);
19478 } 19478 }
19479 } 19479 }
19480 19480
19481 function native__JavaScriptCallFrameWrappingImplementation__scopeType(_this, sco peIndex) { 19481 function native__JavaScriptCallFrameWrappingImplementation__scopeType(_this, sco peIndex) {
19482 try { 19482 try {
19483 return __dom_wrap(_this.$dom.scopeType(__dom_unwrap(scopeIndex))); 19483 return __dom_wrap(_this.$dom.scopeType(__dom_unwrap(scopeIndex)));
19484 } catch (e) { 19484 } catch (e) {
19485 throw __dom_wrap_exception(e); 19485 throw __dom_wrap_exception(e);
19486 } 19486 }
19487 } 19487 }
19488 19488
19489 function native__KeyboardEventWrappingImplementation__get__KeyboardEvent_altGrap hKey(_this) { 19489 function native__KeyboardEventWrappingImplementation__get_altGraphKey(_this) {
19490 try { 19490 try {
19491 return __dom_wrap(_this.$dom.altGraphKey); 19491 return __dom_wrap(_this.$dom.altGraphKey);
19492 } catch (e) { 19492 } catch (e) {
19493 throw __dom_wrap_exception(e); 19493 throw __dom_wrap_exception(e);
19494 } 19494 }
19495 } 19495 }
19496 19496
19497 function native__KeyboardEventWrappingImplementation__get__KeyboardEvent_altKey( _this) { 19497 function native__KeyboardEventWrappingImplementation__get_altKey(_this) {
19498 try { 19498 try {
19499 return __dom_wrap(_this.$dom.altKey); 19499 return __dom_wrap(_this.$dom.altKey);
19500 } catch (e) { 19500 } catch (e) {
19501 throw __dom_wrap_exception(e); 19501 throw __dom_wrap_exception(e);
19502 } 19502 }
19503 } 19503 }
19504 19504
19505 function native__KeyboardEventWrappingImplementation__get__KeyboardEvent_ctrlKey (_this) { 19505 function native__KeyboardEventWrappingImplementation__get_ctrlKey(_this) {
19506 try { 19506 try {
19507 return __dom_wrap(_this.$dom.ctrlKey); 19507 return __dom_wrap(_this.$dom.ctrlKey);
19508 } catch (e) { 19508 } catch (e) {
19509 throw __dom_wrap_exception(e); 19509 throw __dom_wrap_exception(e);
19510 } 19510 }
19511 } 19511 }
19512 19512
19513 function native__KeyboardEventWrappingImplementation__get__KeyboardEvent_keyIden tifier(_this) { 19513 function native__KeyboardEventWrappingImplementation__get_keyIdentifier(_this) {
19514 try { 19514 try {
19515 return __dom_wrap(_this.$dom.keyIdentifier); 19515 return __dom_wrap(_this.$dom.keyIdentifier);
19516 } catch (e) { 19516 } catch (e) {
19517 throw __dom_wrap_exception(e); 19517 throw __dom_wrap_exception(e);
19518 } 19518 }
19519 } 19519 }
19520 19520
19521 function native__KeyboardEventWrappingImplementation__get__KeyboardEvent_keyLoca tion(_this) { 19521 function native__KeyboardEventWrappingImplementation__get_keyLocation(_this) {
19522 try { 19522 try {
19523 return __dom_wrap(_this.$dom.keyLocation); 19523 return __dom_wrap(_this.$dom.keyLocation);
19524 } catch (e) { 19524 } catch (e) {
19525 throw __dom_wrap_exception(e); 19525 throw __dom_wrap_exception(e);
19526 } 19526 }
19527 } 19527 }
19528 19528
19529 function native__KeyboardEventWrappingImplementation__get__KeyboardEvent_metaKey (_this) { 19529 function native__KeyboardEventWrappingImplementation__get_metaKey(_this) {
19530 try { 19530 try {
19531 return __dom_wrap(_this.$dom.metaKey); 19531 return __dom_wrap(_this.$dom.metaKey);
19532 } catch (e) { 19532 } catch (e) {
19533 throw __dom_wrap_exception(e); 19533 throw __dom_wrap_exception(e);
19534 } 19534 }
19535 } 19535 }
19536 19536
19537 function native__KeyboardEventWrappingImplementation__get__KeyboardEvent_shiftKe y(_this) { 19537 function native__KeyboardEventWrappingImplementation__get_shiftKey(_this) {
19538 try { 19538 try {
19539 return __dom_wrap(_this.$dom.shiftKey); 19539 return __dom_wrap(_this.$dom.shiftKey);
19540 } catch (e) { 19540 } catch (e) {
19541 throw __dom_wrap_exception(e); 19541 throw __dom_wrap_exception(e);
19542 } 19542 }
19543 } 19543 }
19544 19544
19545 function native__KeyboardEventWrappingImplementation__initKeyboardEvent(_this, t ype, canBubble, cancelable, view, keyIdentifier, keyLocation, ctrlKey, altKey, s hiftKey, metaKey, altGraphKey) { 19545 function native__KeyboardEventWrappingImplementation__initKeyboardEvent(_this, t ype, canBubble, cancelable, view, keyIdentifier, keyLocation, ctrlKey, altKey, s hiftKey, metaKey, altGraphKey) {
19546 try { 19546 try {
19547 return __dom_wrap(_this.$dom.initKeyboardEvent(__dom_unwrap(type), __dom_unw rap(canBubble), __dom_unwrap(cancelable), __dom_unwrap(view), __dom_unwrap(keyId entifier), __dom_unwrap(keyLocation), __dom_unwrap(ctrlKey), __dom_unwrap(altKey ), __dom_unwrap(shiftKey), __dom_unwrap(metaKey), __dom_unwrap(altGraphKey))); 19547 return __dom_wrap(_this.$dom.initKeyboardEvent(__dom_unwrap(type), __dom_unw rap(canBubble), __dom_unwrap(cancelable), __dom_unwrap(view), __dom_unwrap(keyId entifier), __dom_unwrap(keyLocation), __dom_unwrap(ctrlKey), __dom_unwrap(altKey ), __dom_unwrap(shiftKey), __dom_unwrap(metaKey), __dom_unwrap(altGraphKey)));
19548 } catch (e) { 19548 } catch (e) {
19549 throw __dom_wrap_exception(e); 19549 throw __dom_wrap_exception(e);
19550 } 19550 }
19551 } 19551 }
19552 19552
19553 function native__LocationWrappingImplementation__get__Location_hash(_this) { 19553 function native__LocationWrappingImplementation__get_hash(_this) {
19554 try { 19554 try {
19555 return __dom_wrap(_this.$dom.hash); 19555 return __dom_wrap(_this.$dom.hash);
19556 } catch (e) { 19556 } catch (e) {
19557 throw __dom_wrap_exception(e); 19557 throw __dom_wrap_exception(e);
19558 } 19558 }
19559 } 19559 }
19560 19560
19561 function native__LocationWrappingImplementation__set__Location_hash(_this, value ) { 19561 function native__LocationWrappingImplementation__set_hash(_this, value) {
19562 try { 19562 try {
19563 _this.$dom.hash = __dom_unwrap(value); 19563 _this.$dom.hash = __dom_unwrap(value);
19564 } catch (e) { 19564 } catch (e) {
19565 throw __dom_wrap_exception(e); 19565 throw __dom_wrap_exception(e);
19566 } 19566 }
19567 } 19567 }
19568 19568
19569 function native__LocationWrappingImplementation__get__Location_host(_this) { 19569 function native__LocationWrappingImplementation__get_host(_this) {
19570 try { 19570 try {
19571 return __dom_wrap(_this.$dom.host); 19571 return __dom_wrap(_this.$dom.host);
19572 } catch (e) { 19572 } catch (e) {
19573 throw __dom_wrap_exception(e); 19573 throw __dom_wrap_exception(e);
19574 } 19574 }
19575 } 19575 }
19576 19576
19577 function native__LocationWrappingImplementation__set__Location_host(_this, value ) { 19577 function native__LocationWrappingImplementation__set_host(_this, value) {
19578 try { 19578 try {
19579 _this.$dom.host = __dom_unwrap(value); 19579 _this.$dom.host = __dom_unwrap(value);
19580 } catch (e) { 19580 } catch (e) {
19581 throw __dom_wrap_exception(e); 19581 throw __dom_wrap_exception(e);
19582 } 19582 }
19583 } 19583 }
19584 19584
19585 function native__LocationWrappingImplementation__get__Location_hostname(_this) { 19585 function native__LocationWrappingImplementation__get_hostname(_this) {
19586 try { 19586 try {
19587 return __dom_wrap(_this.$dom.hostname); 19587 return __dom_wrap(_this.$dom.hostname);
19588 } catch (e) { 19588 } catch (e) {
19589 throw __dom_wrap_exception(e); 19589 throw __dom_wrap_exception(e);
19590 } 19590 }
19591 } 19591 }
19592 19592
19593 function native__LocationWrappingImplementation__set__Location_hostname(_this, v alue) { 19593 function native__LocationWrappingImplementation__set_hostname(_this, value) {
19594 try { 19594 try {
19595 _this.$dom.hostname = __dom_unwrap(value); 19595 _this.$dom.hostname = __dom_unwrap(value);
19596 } catch (e) { 19596 } catch (e) {
19597 throw __dom_wrap_exception(e); 19597 throw __dom_wrap_exception(e);
19598 } 19598 }
19599 } 19599 }
19600 19600
19601 function native__LocationWrappingImplementation__get__Location_href(_this) { 19601 function native__LocationWrappingImplementation__get_href(_this) {
19602 try { 19602 try {
19603 return __dom_wrap(_this.$dom.href); 19603 return __dom_wrap(_this.$dom.href);
19604 } catch (e) { 19604 } catch (e) {
19605 throw __dom_wrap_exception(e); 19605 throw __dom_wrap_exception(e);
19606 } 19606 }
19607 } 19607 }
19608 19608
19609 function native__LocationWrappingImplementation__set__Location_href(_this, value ) { 19609 function native__LocationWrappingImplementation__set_href(_this, value) {
19610 try { 19610 try {
19611 _this.$dom.href = __dom_unwrap(value); 19611 _this.$dom.href = __dom_unwrap(value);
19612 } catch (e) { 19612 } catch (e) {
19613 throw __dom_wrap_exception(e); 19613 throw __dom_wrap_exception(e);
19614 } 19614 }
19615 } 19615 }
19616 19616
19617 function native__LocationWrappingImplementation__get__Location_origin(_this) { 19617 function native__LocationWrappingImplementation__get_origin(_this) {
19618 try { 19618 try {
19619 return __dom_wrap(_this.$dom.origin); 19619 return __dom_wrap(_this.$dom.origin);
19620 } catch (e) { 19620 } catch (e) {
19621 throw __dom_wrap_exception(e); 19621 throw __dom_wrap_exception(e);
19622 } 19622 }
19623 } 19623 }
19624 19624
19625 function native__LocationWrappingImplementation__get__Location_pathname(_this) { 19625 function native__LocationWrappingImplementation__get_pathname(_this) {
19626 try { 19626 try {
19627 return __dom_wrap(_this.$dom.pathname); 19627 return __dom_wrap(_this.$dom.pathname);
19628 } catch (e) { 19628 } catch (e) {
19629 throw __dom_wrap_exception(e); 19629 throw __dom_wrap_exception(e);
19630 } 19630 }
19631 } 19631 }
19632 19632
19633 function native__LocationWrappingImplementation__set__Location_pathname(_this, v alue) { 19633 function native__LocationWrappingImplementation__set_pathname(_this, value) {
19634 try { 19634 try {
19635 _this.$dom.pathname = __dom_unwrap(value); 19635 _this.$dom.pathname = __dom_unwrap(value);
19636 } catch (e) { 19636 } catch (e) {
19637 throw __dom_wrap_exception(e); 19637 throw __dom_wrap_exception(e);
19638 } 19638 }
19639 } 19639 }
19640 19640
19641 function native__LocationWrappingImplementation__get__Location_port(_this) { 19641 function native__LocationWrappingImplementation__get_port(_this) {
19642 try { 19642 try {
19643 return __dom_wrap(_this.$dom.port); 19643 return __dom_wrap(_this.$dom.port);
19644 } catch (e) { 19644 } catch (e) {
19645 throw __dom_wrap_exception(e); 19645 throw __dom_wrap_exception(e);
19646 } 19646 }
19647 } 19647 }
19648 19648
19649 function native__LocationWrappingImplementation__set__Location_port(_this, value ) { 19649 function native__LocationWrappingImplementation__set_port(_this, value) {
19650 try { 19650 try {
19651 _this.$dom.port = __dom_unwrap(value); 19651 _this.$dom.port = __dom_unwrap(value);
19652 } catch (e) { 19652 } catch (e) {
19653 throw __dom_wrap_exception(e); 19653 throw __dom_wrap_exception(e);
19654 } 19654 }
19655 } 19655 }
19656 19656
19657 function native__LocationWrappingImplementation__get__Location_protocol(_this) { 19657 function native__LocationWrappingImplementation__get_protocol(_this) {
19658 try { 19658 try {
19659 return __dom_wrap(_this.$dom.protocol); 19659 return __dom_wrap(_this.$dom.protocol);
19660 } catch (e) { 19660 } catch (e) {
19661 throw __dom_wrap_exception(e); 19661 throw __dom_wrap_exception(e);
19662 } 19662 }
19663 } 19663 }
19664 19664
19665 function native__LocationWrappingImplementation__set__Location_protocol(_this, v alue) { 19665 function native__LocationWrappingImplementation__set_protocol(_this, value) {
19666 try { 19666 try {
19667 _this.$dom.protocol = __dom_unwrap(value); 19667 _this.$dom.protocol = __dom_unwrap(value);
19668 } catch (e) { 19668 } catch (e) {
19669 throw __dom_wrap_exception(e); 19669 throw __dom_wrap_exception(e);
19670 } 19670 }
19671 } 19671 }
19672 19672
19673 function native__LocationWrappingImplementation__get__Location_search(_this) { 19673 function native__LocationWrappingImplementation__get_search(_this) {
19674 try { 19674 try {
19675 return __dom_wrap(_this.$dom.search); 19675 return __dom_wrap(_this.$dom.search);
19676 } catch (e) { 19676 } catch (e) {
19677 throw __dom_wrap_exception(e); 19677 throw __dom_wrap_exception(e);
19678 } 19678 }
19679 } 19679 }
19680 19680
19681 function native__LocationWrappingImplementation__set__Location_search(_this, val ue) { 19681 function native__LocationWrappingImplementation__set_search(_this, value) {
19682 try { 19682 try {
19683 _this.$dom.search = __dom_unwrap(value); 19683 _this.$dom.search = __dom_unwrap(value);
19684 } catch (e) { 19684 } catch (e) {
19685 throw __dom_wrap_exception(e); 19685 throw __dom_wrap_exception(e);
19686 } 19686 }
19687 } 19687 }
19688 19688
19689 function native__LocationWrappingImplementation__assign(_this, url) { 19689 function native__LocationWrappingImplementation__assign(_this, url) {
19690 try { 19690 try {
19691 return __dom_wrap(_this.$dom.assign(__dom_unwrap(url))); 19691 return __dom_wrap(_this.$dom.assign(__dom_unwrap(url)));
(...skipping 27 matching lines...) Expand all
19719 } 19719 }
19720 19720
19721 function native__LocationWrappingImplementation__toString(_this) { 19721 function native__LocationWrappingImplementation__toString(_this) {
19722 try { 19722 try {
19723 return __dom_wrap(_this.$dom.toStringFunction()); 19723 return __dom_wrap(_this.$dom.toStringFunction());
19724 } catch (e) { 19724 } catch (e) {
19725 throw __dom_wrap_exception(e); 19725 throw __dom_wrap_exception(e);
19726 } 19726 }
19727 } 19727 }
19728 19728
19729 function native__MediaErrorWrappingImplementation__get__MediaError_code(_this) { 19729 function native__MediaErrorWrappingImplementation__get_code(_this) {
19730 try { 19730 try {
19731 return __dom_wrap(_this.$dom.code); 19731 return __dom_wrap(_this.$dom.code);
19732 } catch (e) { 19732 } catch (e) {
19733 throw __dom_wrap_exception(e); 19733 throw __dom_wrap_exception(e);
19734 } 19734 }
19735 } 19735 }
19736 19736
19737 function native__MediaListWrappingImplementation__get__MediaList_length(_this) { 19737 function native__MediaListWrappingImplementation__get_length(_this) {
19738 try { 19738 try {
19739 return __dom_wrap(_this.$dom.length); 19739 return __dom_wrap(_this.$dom.length);
19740 } catch (e) { 19740 } catch (e) {
19741 throw __dom_wrap_exception(e); 19741 throw __dom_wrap_exception(e);
19742 } 19742 }
19743 } 19743 }
19744 19744
19745 function native__MediaListWrappingImplementation__get__MediaList_mediaText(_this ) { 19745 function native__MediaListWrappingImplementation__get_mediaText(_this) {
19746 try { 19746 try {
19747 return __dom_wrap(_this.$dom.mediaText); 19747 return __dom_wrap(_this.$dom.mediaText);
19748 } catch (e) { 19748 } catch (e) {
19749 throw __dom_wrap_exception(e); 19749 throw __dom_wrap_exception(e);
19750 } 19750 }
19751 } 19751 }
19752 19752
19753 function native__MediaListWrappingImplementation__set__MediaList_mediaText(_this , value) { 19753 function native__MediaListWrappingImplementation__set_mediaText(_this, value) {
19754 try { 19754 try {
19755 _this.$dom.mediaText = __dom_unwrap(value); 19755 _this.$dom.mediaText = __dom_unwrap(value);
19756 } catch (e) { 19756 } catch (e) {
19757 throw __dom_wrap_exception(e); 19757 throw __dom_wrap_exception(e);
19758 } 19758 }
19759 } 19759 }
19760 19760
19761 function native__MediaListWrappingImplementation__appendMedium(_this, newMedium) { 19761 function native__MediaListWrappingImplementation__appendMedium(_this, newMedium) {
19762 try { 19762 try {
19763 return __dom_wrap(_this.$dom.appendMedium(__dom_unwrap(newMedium))); 19763 return __dom_wrap(_this.$dom.appendMedium(__dom_unwrap(newMedium)));
(...skipping 11 matching lines...) Expand all
19775 } 19775 }
19776 19776
19777 function native__MediaListWrappingImplementation__item(_this, index) { 19777 function native__MediaListWrappingImplementation__item(_this, index) {
19778 try { 19778 try {
19779 return __dom_wrap(_this.$dom.item(__dom_unwrap(index))); 19779 return __dom_wrap(_this.$dom.item(__dom_unwrap(index)));
19780 } catch (e) { 19780 } catch (e) {
19781 throw __dom_wrap_exception(e); 19781 throw __dom_wrap_exception(e);
19782 } 19782 }
19783 } 19783 }
19784 19784
19785 function native__MediaQueryListWrappingImplementation__get__MediaQueryList_match es(_this) { 19785 function native__MediaQueryListWrappingImplementation__get_matches(_this) {
19786 try { 19786 try {
19787 return __dom_wrap(_this.$dom.matches); 19787 return __dom_wrap(_this.$dom.matches);
19788 } catch (e) { 19788 } catch (e) {
19789 throw __dom_wrap_exception(e); 19789 throw __dom_wrap_exception(e);
19790 } 19790 }
19791 } 19791 }
19792 19792
19793 function native__MediaQueryListWrappingImplementation__get__MediaQueryList_media (_this) { 19793 function native__MediaQueryListWrappingImplementation__get_media(_this) {
19794 try { 19794 try {
19795 return __dom_wrap(_this.$dom.media); 19795 return __dom_wrap(_this.$dom.media);
19796 } catch (e) { 19796 } catch (e) {
19797 throw __dom_wrap_exception(e); 19797 throw __dom_wrap_exception(e);
19798 } 19798 }
19799 } 19799 }
19800 19800
19801 function native__MediaQueryListWrappingImplementation__addListener(_this, listen er) { 19801 function native__MediaQueryListWrappingImplementation__addListener(_this, listen er) {
19802 try { 19802 try {
19803 return __dom_wrap(_this.$dom.addListener(__dom_unwrap(listener))); 19803 return __dom_wrap(_this.$dom.addListener(__dom_unwrap(listener)));
(...skipping 11 matching lines...) Expand all
19815 } 19815 }
19816 19816
19817 function native__MediaQueryListListenerWrappingImplementation__queryChanged(_thi s, list) { 19817 function native__MediaQueryListListenerWrappingImplementation__queryChanged(_thi s, list) {
19818 try { 19818 try {
19819 return __dom_wrap(_this.$dom.queryChanged(__dom_unwrap(list))); 19819 return __dom_wrap(_this.$dom.queryChanged(__dom_unwrap(list)));
19820 } catch (e) { 19820 } catch (e) {
19821 throw __dom_wrap_exception(e); 19821 throw __dom_wrap_exception(e);
19822 } 19822 }
19823 } 19823 }
19824 19824
19825 function native__MemoryInfoWrappingImplementation__get__MemoryInfo_jsHeapSizeLim it(_this) { 19825 function native__MemoryInfoWrappingImplementation__get_jsHeapSizeLimit(_this) {
19826 try { 19826 try {
19827 return __dom_wrap(_this.$dom.jsHeapSizeLimit); 19827 return __dom_wrap(_this.$dom.jsHeapSizeLimit);
19828 } catch (e) { 19828 } catch (e) {
19829 throw __dom_wrap_exception(e); 19829 throw __dom_wrap_exception(e);
19830 } 19830 }
19831 } 19831 }
19832 19832
19833 function native__MemoryInfoWrappingImplementation__get__MemoryInfo_totalJSHeapSi ze(_this) { 19833 function native__MemoryInfoWrappingImplementation__get_totalJSHeapSize(_this) {
19834 try { 19834 try {
19835 return __dom_wrap(_this.$dom.totalJSHeapSize); 19835 return __dom_wrap(_this.$dom.totalJSHeapSize);
19836 } catch (e) { 19836 } catch (e) {
19837 throw __dom_wrap_exception(e); 19837 throw __dom_wrap_exception(e);
19838 } 19838 }
19839 } 19839 }
19840 19840
19841 function native__MemoryInfoWrappingImplementation__get__MemoryInfo_usedJSHeapSiz e(_this) { 19841 function native__MemoryInfoWrappingImplementation__get_usedJSHeapSize(_this) {
19842 try { 19842 try {
19843 return __dom_wrap(_this.$dom.usedJSHeapSize); 19843 return __dom_wrap(_this.$dom.usedJSHeapSize);
19844 } catch (e) { 19844 } catch (e) {
19845 throw __dom_wrap_exception(e); 19845 throw __dom_wrap_exception(e);
19846 } 19846 }
19847 } 19847 }
19848 19848
19849 function native__MessageChannelWrappingImplementation__get__MessageChannel_port1 (_this) { 19849 function native__MessageChannelWrappingImplementation__get_port1(_this) {
19850 try { 19850 try {
19851 return __dom_wrap(_this.$dom.port1); 19851 return __dom_wrap(_this.$dom.port1);
19852 } catch (e) { 19852 } catch (e) {
19853 throw __dom_wrap_exception(e); 19853 throw __dom_wrap_exception(e);
19854 } 19854 }
19855 } 19855 }
19856 19856
19857 function native__MessageChannelWrappingImplementation__get__MessageChannel_port2 (_this) { 19857 function native__MessageChannelWrappingImplementation__get_port2(_this) {
19858 try { 19858 try {
19859 return __dom_wrap(_this.$dom.port2); 19859 return __dom_wrap(_this.$dom.port2);
19860 } catch (e) { 19860 } catch (e) {
19861 throw __dom_wrap_exception(e); 19861 throw __dom_wrap_exception(e);
19862 } 19862 }
19863 } 19863 }
19864 19864
19865 function native__MessageEventWrappingImplementation__get__MessageEvent_data(_thi s) { 19865 function native__MessageEventWrappingImplementation__get_data(_this) {
19866 try { 19866 try {
19867 return __dom_wrap(_this.$dom.data); 19867 return __dom_wrap(_this.$dom.data);
19868 } catch (e) { 19868 } catch (e) {
19869 throw __dom_wrap_exception(e); 19869 throw __dom_wrap_exception(e);
19870 } 19870 }
19871 } 19871 }
19872 19872
19873 function native__MessageEventWrappingImplementation__get__MessageEvent_lastEvent Id(_this) { 19873 function native__MessageEventWrappingImplementation__get_lastEventId(_this) {
19874 try { 19874 try {
19875 return __dom_wrap(_this.$dom.lastEventId); 19875 return __dom_wrap(_this.$dom.lastEventId);
19876 } catch (e) { 19876 } catch (e) {
19877 throw __dom_wrap_exception(e); 19877 throw __dom_wrap_exception(e);
19878 } 19878 }
19879 } 19879 }
19880 19880
19881 function native__MessageEventWrappingImplementation__get__MessageEvent_origin(_t his) { 19881 function native__MessageEventWrappingImplementation__get_origin(_this) {
19882 try { 19882 try {
19883 return __dom_wrap(_this.$dom.origin); 19883 return __dom_wrap(_this.$dom.origin);
19884 } catch (e) { 19884 } catch (e) {
19885 throw __dom_wrap_exception(e); 19885 throw __dom_wrap_exception(e);
19886 } 19886 }
19887 } 19887 }
19888 19888
19889 function native__MessageEventWrappingImplementation__get__MessageEvent_ports(_th is) { 19889 function native__MessageEventWrappingImplementation__get_ports(_this) {
19890 try { 19890 try {
19891 return __dom_wrap(_this.$dom.ports); 19891 return __dom_wrap(_this.$dom.ports);
19892 } catch (e) { 19892 } catch (e) {
19893 throw __dom_wrap_exception(e); 19893 throw __dom_wrap_exception(e);
19894 } 19894 }
19895 } 19895 }
19896 19896
19897 function native__MessageEventWrappingImplementation__get__MessageEvent_source(_t his) { 19897 function native__MessageEventWrappingImplementation__get_source(_this) {
19898 try { 19898 try {
19899 return __dom_wrap(_this.$dom.source); 19899 return __dom_wrap(_this.$dom.source);
19900 } catch (e) { 19900 } catch (e) {
19901 throw __dom_wrap_exception(e); 19901 throw __dom_wrap_exception(e);
19902 } 19902 }
19903 } 19903 }
19904 19904
19905 function native__MessageEventWrappingImplementation__initMessageEvent(_this, typ eArg, canBubbleArg, cancelableArg, dataArg, originArg, lastEventIdArg, sourceArg , messagePorts) { 19905 function native__MessageEventWrappingImplementation__initMessageEvent(_this, typ eArg, canBubbleArg, cancelableArg, dataArg, originArg, lastEventIdArg, sourceArg , messagePorts) {
19906 try { 19906 try {
19907 return __dom_wrap(_this.$dom.initMessageEvent(__dom_unwrap(typeArg), __dom_u nwrap(canBubbleArg), __dom_unwrap(cancelableArg), __dom_unwrap(dataArg), __dom_u nwrap(originArg), __dom_unwrap(lastEventIdArg), __dom_unwrap(sourceArg), __dom_u nwrap(messagePorts))); 19907 return __dom_wrap(_this.$dom.initMessageEvent(__dom_unwrap(typeArg), __dom_u nwrap(canBubbleArg), __dom_unwrap(cancelableArg), __dom_unwrap(dataArg), __dom_u nwrap(originArg), __dom_unwrap(lastEventIdArg), __dom_unwrap(sourceArg), __dom_u nwrap(messagePorts)));
19908 } catch (e) { 19908 } catch (e) {
19909 throw __dom_wrap_exception(e); 19909 throw __dom_wrap_exception(e);
19910 } 19910 }
19911 } 19911 }
19912 19912
19913 function native__MessageEventWrappingImplementation__webkitInitMessageEvent(_thi s, typeArg, canBubbleArg, cancelableArg, dataArg, originArg, lastEventIdArg, sou rceArg, transferables) { 19913 function native__MessageEventWrappingImplementation__webkitInitMessageEvent(_thi s, typeArg, canBubbleArg, cancelableArg, dataArg, originArg, lastEventIdArg, sou rceArg, transferables) {
19914 try { 19914 try {
19915 return __dom_wrap(_this.$dom.webkitInitMessageEvent(__dom_unwrap(typeArg), _ _dom_unwrap(canBubbleArg), __dom_unwrap(cancelableArg), __dom_unwrap(dataArg), _ _dom_unwrap(originArg), __dom_unwrap(lastEventIdArg), __dom_unwrap(sourceArg), _ _dom_unwrap(transferables))); 19915 return __dom_wrap(_this.$dom.webkitInitMessageEvent(__dom_unwrap(typeArg), _ _dom_unwrap(canBubbleArg), __dom_unwrap(cancelableArg), __dom_unwrap(dataArg), _ _dom_unwrap(originArg), __dom_unwrap(lastEventIdArg), __dom_unwrap(sourceArg), _ _dom_unwrap(transferables)));
19916 } catch (e) { 19916 } catch (e) {
19917 throw __dom_wrap_exception(e); 19917 throw __dom_wrap_exception(e);
19918 } 19918 }
19919 } 19919 }
19920 19920
19921 function native__MessagePortWrappingImplementation__get__MessagePort_onmessage(_ this) { 19921 function native__MessagePortWrappingImplementation__get_onmessage(_this) {
19922 try { 19922 try {
19923 return __dom_wrap(_this.$dom.onmessage); 19923 return __dom_wrap(_this.$dom.onmessage);
19924 } catch (e) { 19924 } catch (e) {
19925 throw __dom_wrap_exception(e); 19925 throw __dom_wrap_exception(e);
19926 } 19926 }
19927 } 19927 }
19928 19928
19929 function native__MessagePortWrappingImplementation__set__MessagePort_onmessage(_ this, value) { 19929 function native__MessagePortWrappingImplementation__set_onmessage(_this, value) {
19930 try { 19930 try {
19931 _this.$dom.onmessage = __dom_unwrap(value); 19931 _this.$dom.onmessage = __dom_unwrap(value);
19932 } catch (e) { 19932 } catch (e) {
19933 throw __dom_wrap_exception(e); 19933 throw __dom_wrap_exception(e);
19934 } 19934 }
19935 } 19935 }
19936 19936
19937 function native__MessagePortWrappingImplementation__addEventListener(_this, type , listener) { 19937 function native__MessagePortWrappingImplementation__addEventListener_MessagePort (_this, type, listener) {
19938 try { 19938 try {
19939 return __dom_wrap(_this.$dom.addEventListener(__dom_unwrap(type), __dom_unwr ap(listener))); 19939 return __dom_wrap(_this.$dom.addEventListener(__dom_unwrap(type), __dom_unwr ap(listener)));
19940 } catch (e) { 19940 } catch (e) {
19941 throw __dom_wrap_exception(e); 19941 throw __dom_wrap_exception(e);
19942 } 19942 }
19943 } 19943 }
19944 19944
19945 function native__MessagePortWrappingImplementation__addEventListener_2(_this, ty pe, listener, useCapture) { 19945 function native__MessagePortWrappingImplementation__addEventListener_MessagePort _2(_this, type, listener, useCapture) {
19946 try { 19946 try {
19947 return __dom_wrap(_this.$dom.addEventListener(__dom_unwrap(type), __dom_unwr ap(listener), __dom_unwrap(useCapture))); 19947 return __dom_wrap(_this.$dom.addEventListener(__dom_unwrap(type), __dom_unwr ap(listener), __dom_unwrap(useCapture)));
19948 } catch (e) { 19948 } catch (e) {
19949 throw __dom_wrap_exception(e); 19949 throw __dom_wrap_exception(e);
19950 } 19950 }
19951 } 19951 }
19952 19952
19953 function native__MessagePortWrappingImplementation__close(_this) { 19953 function native__MessagePortWrappingImplementation__close(_this) {
19954 try { 19954 try {
19955 return __dom_wrap(_this.$dom.close()); 19955 return __dom_wrap(_this.$dom.close());
19956 } catch (e) { 19956 } catch (e) {
19957 throw __dom_wrap_exception(e); 19957 throw __dom_wrap_exception(e);
19958 } 19958 }
19959 } 19959 }
19960 19960
19961 function native__MessagePortWrappingImplementation__dispatchEvent(_this, evt) { 19961 function native__MessagePortWrappingImplementation__dispatchEvent_MessagePort(_t his, evt) {
19962 try { 19962 try {
19963 return __dom_wrap(_this.$dom.dispatchEvent(__dom_unwrap(evt))); 19963 return __dom_wrap(_this.$dom.dispatchEvent(__dom_unwrap(evt)));
19964 } catch (e) { 19964 } catch (e) {
19965 throw __dom_wrap_exception(e); 19965 throw __dom_wrap_exception(e);
19966 } 19966 }
19967 } 19967 }
19968 19968
19969 function native__MessagePortWrappingImplementation__postMessage(_this, message) { 19969 function native__MessagePortWrappingImplementation__postMessage(_this, message) {
19970 try { 19970 try {
19971 return __dom_wrap(_this.$dom.postMessage(__dom_unwrap(message))); 19971 return __dom_wrap(_this.$dom.postMessage(__dom_unwrap(message)));
19972 } catch (e) { 19972 } catch (e) {
19973 throw __dom_wrap_exception(e); 19973 throw __dom_wrap_exception(e);
19974 } 19974 }
19975 } 19975 }
19976 19976
19977 function native__MessagePortWrappingImplementation__postMessage_2(_this, message , messagePorts) { 19977 function native__MessagePortWrappingImplementation__postMessage_2(_this, message , messagePorts) {
19978 try { 19978 try {
19979 return __dom_wrap(_this.$dom.postMessage(__dom_unwrap(message), __dom_unwrap (messagePorts))); 19979 return __dom_wrap(_this.$dom.postMessage(__dom_unwrap(message), __dom_unwrap (messagePorts)));
19980 } catch (e) { 19980 } catch (e) {
19981 throw __dom_wrap_exception(e); 19981 throw __dom_wrap_exception(e);
19982 } 19982 }
19983 } 19983 }
19984 19984
19985 function native__MessagePortWrappingImplementation__removeEventListener(_this, t ype, listener) { 19985 function native__MessagePortWrappingImplementation__removeEventListener_MessageP ort(_this, type, listener) {
19986 try { 19986 try {
19987 return __dom_wrap(_this.$dom.removeEventListener(__dom_unwrap(type), __dom_u nwrap(listener))); 19987 return __dom_wrap(_this.$dom.removeEventListener(__dom_unwrap(type), __dom_u nwrap(listener)));
19988 } catch (e) { 19988 } catch (e) {
19989 throw __dom_wrap_exception(e); 19989 throw __dom_wrap_exception(e);
19990 } 19990 }
19991 } 19991 }
19992 19992
19993 function native__MessagePortWrappingImplementation__removeEventListener_2(_this, type, listener, useCapture) { 19993 function native__MessagePortWrappingImplementation__removeEventListener_MessageP ort_2(_this, type, listener, useCapture) {
19994 try { 19994 try {
19995 return __dom_wrap(_this.$dom.removeEventListener(__dom_unwrap(type), __dom_u nwrap(listener), __dom_unwrap(useCapture))); 19995 return __dom_wrap(_this.$dom.removeEventListener(__dom_unwrap(type), __dom_u nwrap(listener), __dom_unwrap(useCapture)));
19996 } catch (e) { 19996 } catch (e) {
19997 throw __dom_wrap_exception(e); 19997 throw __dom_wrap_exception(e);
19998 } 19998 }
19999 } 19999 }
20000 20000
20001 function native__MessagePortWrappingImplementation__start(_this) { 20001 function native__MessagePortWrappingImplementation__start(_this) {
20002 try { 20002 try {
20003 return __dom_wrap(_this.$dom.start()); 20003 return __dom_wrap(_this.$dom.start());
(...skipping 11 matching lines...) Expand all
20015 } 20015 }
20016 20016
20017 function native__MessagePortWrappingImplementation__webkitPostMessage_2(_this, m essage, transfer) { 20017 function native__MessagePortWrappingImplementation__webkitPostMessage_2(_this, m essage, transfer) {
20018 try { 20018 try {
20019 return __dom_wrap(_this.$dom.webkitPostMessage(__dom_unwrap(message), __dom_ unwrap(transfer))); 20019 return __dom_wrap(_this.$dom.webkitPostMessage(__dom_unwrap(message), __dom_ unwrap(transfer)));
20020 } catch (e) { 20020 } catch (e) {
20021 throw __dom_wrap_exception(e); 20021 throw __dom_wrap_exception(e);
20022 } 20022 }
20023 } 20023 }
20024 20024
20025 function native__MetadataWrappingImplementation__get__Metadata_modificationTime( _this) { 20025 function native__MetadataWrappingImplementation__get_modificationTime(_this) {
20026 try { 20026 try {
20027 return __dom_wrap(_this.$dom.modificationTime); 20027 return __dom_wrap(_this.$dom.modificationTime);
20028 } catch (e) { 20028 } catch (e) {
20029 throw __dom_wrap_exception(e); 20029 throw __dom_wrap_exception(e);
20030 } 20030 }
20031 } 20031 }
20032 20032
20033 function native__MetadataCallbackWrappingImplementation__handleEvent(_this, meta data) { 20033 function native__MetadataCallbackWrappingImplementation__handleEvent(_this, meta data) {
20034 try { 20034 try {
20035 return __dom_wrap(_this.$dom.handleEvent(__dom_unwrap(metadata))); 20035 return __dom_wrap(_this.$dom.handleEvent(__dom_unwrap(metadata)));
20036 } catch (e) { 20036 } catch (e) {
20037 throw __dom_wrap_exception(e); 20037 throw __dom_wrap_exception(e);
20038 } 20038 }
20039 } 20039 }
20040 20040
20041 function native__MouseEventWrappingImplementation__get__MouseEvent_altKey(_this) { 20041 function native__MouseEventWrappingImplementation__get_altKey(_this) {
20042 try { 20042 try {
20043 return __dom_wrap(_this.$dom.altKey); 20043 return __dom_wrap(_this.$dom.altKey);
20044 } catch (e) { 20044 } catch (e) {
20045 throw __dom_wrap_exception(e); 20045 throw __dom_wrap_exception(e);
20046 } 20046 }
20047 } 20047 }
20048 20048
20049 function native__MouseEventWrappingImplementation__get__MouseEvent_button(_this) { 20049 function native__MouseEventWrappingImplementation__get_button(_this) {
20050 try { 20050 try {
20051 return __dom_wrap(_this.$dom.button); 20051 return __dom_wrap(_this.$dom.button);
20052 } catch (e) { 20052 } catch (e) {
20053 throw __dom_wrap_exception(e); 20053 throw __dom_wrap_exception(e);
20054 } 20054 }
20055 } 20055 }
20056 20056
20057 function native__MouseEventWrappingImplementation__get__MouseEvent_clientX(_this ) { 20057 function native__MouseEventWrappingImplementation__get_clientX(_this) {
20058 try { 20058 try {
20059 return __dom_wrap(_this.$dom.clientX); 20059 return __dom_wrap(_this.$dom.clientX);
20060 } catch (e) { 20060 } catch (e) {
20061 throw __dom_wrap_exception(e); 20061 throw __dom_wrap_exception(e);
20062 } 20062 }
20063 } 20063 }
20064 20064
20065 function native__MouseEventWrappingImplementation__get__MouseEvent_clientY(_this ) { 20065 function native__MouseEventWrappingImplementation__get_clientY(_this) {
20066 try { 20066 try {
20067 return __dom_wrap(_this.$dom.clientY); 20067 return __dom_wrap(_this.$dom.clientY);
20068 } catch (e) { 20068 } catch (e) {
20069 throw __dom_wrap_exception(e); 20069 throw __dom_wrap_exception(e);
20070 } 20070 }
20071 } 20071 }
20072 20072
20073 function native__MouseEventWrappingImplementation__get__MouseEvent_ctrlKey(_this ) { 20073 function native__MouseEventWrappingImplementation__get_ctrlKey(_this) {
20074 try { 20074 try {
20075 return __dom_wrap(_this.$dom.ctrlKey); 20075 return __dom_wrap(_this.$dom.ctrlKey);
20076 } catch (e) { 20076 } catch (e) {
20077 throw __dom_wrap_exception(e); 20077 throw __dom_wrap_exception(e);
20078 } 20078 }
20079 } 20079 }
20080 20080
20081 function native__MouseEventWrappingImplementation__get__MouseEvent_dataTransfer( _this) { 20081 function native__MouseEventWrappingImplementation__get_dataTransfer(_this) {
20082 try { 20082 try {
20083 return __dom_wrap(_this.$dom.dataTransfer); 20083 return __dom_wrap(_this.$dom.dataTransfer);
20084 } catch (e) { 20084 } catch (e) {
20085 throw __dom_wrap_exception(e); 20085 throw __dom_wrap_exception(e);
20086 } 20086 }
20087 } 20087 }
20088 20088
20089 function native__MouseEventWrappingImplementation__get__MouseEvent_fromElement(_ this) { 20089 function native__MouseEventWrappingImplementation__get_fromElement(_this) {
20090 try { 20090 try {
20091 return __dom_wrap(_this.$dom.fromElement); 20091 return __dom_wrap(_this.$dom.fromElement);
20092 } catch (e) { 20092 } catch (e) {
20093 throw __dom_wrap_exception(e); 20093 throw __dom_wrap_exception(e);
20094 } 20094 }
20095 } 20095 }
20096 20096
20097 function native__MouseEventWrappingImplementation__get__MouseEvent_metaKey(_this ) { 20097 function native__MouseEventWrappingImplementation__get_metaKey(_this) {
20098 try { 20098 try {
20099 return __dom_wrap(_this.$dom.metaKey); 20099 return __dom_wrap(_this.$dom.metaKey);
20100 } catch (e) { 20100 } catch (e) {
20101 throw __dom_wrap_exception(e); 20101 throw __dom_wrap_exception(e);
20102 } 20102 }
20103 } 20103 }
20104 20104
20105 function native__MouseEventWrappingImplementation__get__MouseEvent_offsetX(_this ) { 20105 function native__MouseEventWrappingImplementation__get_offsetX(_this) {
20106 try { 20106 try {
20107 return __dom_wrap(_this.$dom.offsetX); 20107 return __dom_wrap(_this.$dom.offsetX);
20108 } catch (e) { 20108 } catch (e) {
20109 throw __dom_wrap_exception(e); 20109 throw __dom_wrap_exception(e);
20110 } 20110 }
20111 } 20111 }
20112 20112
20113 function native__MouseEventWrappingImplementation__get__MouseEvent_offsetY(_this ) { 20113 function native__MouseEventWrappingImplementation__get_offsetY(_this) {
20114 try { 20114 try {
20115 return __dom_wrap(_this.$dom.offsetY); 20115 return __dom_wrap(_this.$dom.offsetY);
20116 } catch (e) { 20116 } catch (e) {
20117 throw __dom_wrap_exception(e); 20117 throw __dom_wrap_exception(e);
20118 } 20118 }
20119 } 20119 }
20120 20120
20121 function native__MouseEventWrappingImplementation__get__MouseEvent_relatedTarget (_this) { 20121 function native__MouseEventWrappingImplementation__get_relatedTarget(_this) {
20122 try { 20122 try {
20123 return __dom_wrap(_this.$dom.relatedTarget); 20123 return __dom_wrap(_this.$dom.relatedTarget);
20124 } catch (e) { 20124 } catch (e) {
20125 throw __dom_wrap_exception(e); 20125 throw __dom_wrap_exception(e);
20126 } 20126 }
20127 } 20127 }
20128 20128
20129 function native__MouseEventWrappingImplementation__get__MouseEvent_screenX(_this ) { 20129 function native__MouseEventWrappingImplementation__get_screenX(_this) {
20130 try { 20130 try {
20131 return __dom_wrap(_this.$dom.screenX); 20131 return __dom_wrap(_this.$dom.screenX);
20132 } catch (e) { 20132 } catch (e) {
20133 throw __dom_wrap_exception(e); 20133 throw __dom_wrap_exception(e);
20134 } 20134 }
20135 } 20135 }
20136 20136
20137 function native__MouseEventWrappingImplementation__get__MouseEvent_screenY(_this ) { 20137 function native__MouseEventWrappingImplementation__get_screenY(_this) {
20138 try { 20138 try {
20139 return __dom_wrap(_this.$dom.screenY); 20139 return __dom_wrap(_this.$dom.screenY);
20140 } catch (e) { 20140 } catch (e) {
20141 throw __dom_wrap_exception(e); 20141 throw __dom_wrap_exception(e);
20142 } 20142 }
20143 } 20143 }
20144 20144
20145 function native__MouseEventWrappingImplementation__get__MouseEvent_shiftKey(_thi s) { 20145 function native__MouseEventWrappingImplementation__get_shiftKey(_this) {
20146 try { 20146 try {
20147 return __dom_wrap(_this.$dom.shiftKey); 20147 return __dom_wrap(_this.$dom.shiftKey);
20148 } catch (e) { 20148 } catch (e) {
20149 throw __dom_wrap_exception(e); 20149 throw __dom_wrap_exception(e);
20150 } 20150 }
20151 } 20151 }
20152 20152
20153 function native__MouseEventWrappingImplementation__get__MouseEvent_toElement(_th is) { 20153 function native__MouseEventWrappingImplementation__get_toElement(_this) {
20154 try { 20154 try {
20155 return __dom_wrap(_this.$dom.toElement); 20155 return __dom_wrap(_this.$dom.toElement);
20156 } catch (e) { 20156 } catch (e) {
20157 throw __dom_wrap_exception(e); 20157 throw __dom_wrap_exception(e);
20158 } 20158 }
20159 } 20159 }
20160 20160
20161 function native__MouseEventWrappingImplementation__get__MouseEvent_x(_this) { 20161 function native__MouseEventWrappingImplementation__get_x(_this) {
20162 try { 20162 try {
20163 return __dom_wrap(_this.$dom.x); 20163 return __dom_wrap(_this.$dom.x);
20164 } catch (e) { 20164 } catch (e) {
20165 throw __dom_wrap_exception(e); 20165 throw __dom_wrap_exception(e);
20166 } 20166 }
20167 } 20167 }
20168 20168
20169 function native__MouseEventWrappingImplementation__get__MouseEvent_y(_this) { 20169 function native__MouseEventWrappingImplementation__get_y(_this) {
20170 try { 20170 try {
20171 return __dom_wrap(_this.$dom.y); 20171 return __dom_wrap(_this.$dom.y);
20172 } catch (e) { 20172 } catch (e) {
20173 throw __dom_wrap_exception(e); 20173 throw __dom_wrap_exception(e);
20174 } 20174 }
20175 } 20175 }
20176 20176
20177 function native__MouseEventWrappingImplementation__initMouseEvent(_this, type, c anBubble, cancelable, view, detail, screenX, screenY, clientX, clientY, ctrlKey, altKey, shiftKey, metaKey, button, relatedTarget) { 20177 function native__MouseEventWrappingImplementation__initMouseEvent(_this, type, c anBubble, cancelable, view, detail, screenX, screenY, clientX, clientY, ctrlKey, altKey, shiftKey, metaKey, button, relatedTarget) {
20178 try { 20178 try {
20179 return __dom_wrap(_this.$dom.initMouseEvent(__dom_unwrap(type), __dom_unwrap (canBubble), __dom_unwrap(cancelable), __dom_unwrap(view), __dom_unwrap(detail), __dom_unwrap(screenX), __dom_unwrap(screenY), __dom_unwrap(clientX), __dom_unwr ap(clientY), __dom_unwrap(ctrlKey), __dom_unwrap(altKey), __dom_unwrap(shiftKey) , __dom_unwrap(metaKey), __dom_unwrap(button), __dom_unwrap(relatedTarget))); 20179 return __dom_wrap(_this.$dom.initMouseEvent(__dom_unwrap(type), __dom_unwrap (canBubble), __dom_unwrap(cancelable), __dom_unwrap(view), __dom_unwrap(detail), __dom_unwrap(screenX), __dom_unwrap(screenY), __dom_unwrap(clientX), __dom_unwr ap(clientY), __dom_unwrap(ctrlKey), __dom_unwrap(altKey), __dom_unwrap(shiftKey) , __dom_unwrap(metaKey), __dom_unwrap(button), __dom_unwrap(relatedTarget)));
20180 } catch (e) { 20180 } catch (e) {
20181 throw __dom_wrap_exception(e); 20181 throw __dom_wrap_exception(e);
20182 } 20182 }
20183 } 20183 }
20184 20184
20185 function native__MutationEventWrappingImplementation__get__MutationEvent_attrCha nge(_this) { 20185 function native__MutationEventWrappingImplementation__get_attrChange(_this) {
20186 try { 20186 try {
20187 return __dom_wrap(_this.$dom.attrChange); 20187 return __dom_wrap(_this.$dom.attrChange);
20188 } catch (e) { 20188 } catch (e) {
20189 throw __dom_wrap_exception(e); 20189 throw __dom_wrap_exception(e);
20190 } 20190 }
20191 } 20191 }
20192 20192
20193 function native__MutationEventWrappingImplementation__get__MutationEvent_attrNam e(_this) { 20193 function native__MutationEventWrappingImplementation__get_attrName(_this) {
20194 try { 20194 try {
20195 return __dom_wrap(_this.$dom.attrName); 20195 return __dom_wrap(_this.$dom.attrName);
20196 } catch (e) { 20196 } catch (e) {
20197 throw __dom_wrap_exception(e); 20197 throw __dom_wrap_exception(e);
20198 } 20198 }
20199 } 20199 }
20200 20200
20201 function native__MutationEventWrappingImplementation__get__MutationEvent_newValu e(_this) { 20201 function native__MutationEventWrappingImplementation__get_newValue(_this) {
20202 try { 20202 try {
20203 return __dom_wrap(_this.$dom.newValue); 20203 return __dom_wrap(_this.$dom.newValue);
20204 } catch (e) { 20204 } catch (e) {
20205 throw __dom_wrap_exception(e); 20205 throw __dom_wrap_exception(e);
20206 } 20206 }
20207 } 20207 }
20208 20208
20209 function native__MutationEventWrappingImplementation__get__MutationEvent_prevVal ue(_this) { 20209 function native__MutationEventWrappingImplementation__get_prevValue(_this) {
20210 try { 20210 try {
20211 return __dom_wrap(_this.$dom.prevValue); 20211 return __dom_wrap(_this.$dom.prevValue);
20212 } catch (e) { 20212 } catch (e) {
20213 throw __dom_wrap_exception(e); 20213 throw __dom_wrap_exception(e);
20214 } 20214 }
20215 } 20215 }
20216 20216
20217 function native__MutationEventWrappingImplementation__get__MutationEvent_related Node(_this) { 20217 function native__MutationEventWrappingImplementation__get_relatedNode(_this) {
20218 try { 20218 try {
20219 return __dom_wrap(_this.$dom.relatedNode); 20219 return __dom_wrap(_this.$dom.relatedNode);
20220 } catch (e) { 20220 } catch (e) {
20221 throw __dom_wrap_exception(e); 20221 throw __dom_wrap_exception(e);
20222 } 20222 }
20223 } 20223 }
20224 20224
20225 function native__MutationEventWrappingImplementation__initMutationEvent(_this, t ype, canBubble, cancelable, relatedNode, prevValue, newValue, attrName, attrChan ge) { 20225 function native__MutationEventWrappingImplementation__initMutationEvent(_this, t ype, canBubble, cancelable, relatedNode, prevValue, newValue, attrName, attrChan ge) {
20226 try { 20226 try {
20227 return __dom_wrap(_this.$dom.initMutationEvent(__dom_unwrap(type), __dom_unw rap(canBubble), __dom_unwrap(cancelable), __dom_unwrap(relatedNode), __dom_unwra p(prevValue), __dom_unwrap(newValue), __dom_unwrap(attrName), __dom_unwrap(attrC hange))); 20227 return __dom_wrap(_this.$dom.initMutationEvent(__dom_unwrap(type), __dom_unw rap(canBubble), __dom_unwrap(cancelable), __dom_unwrap(relatedNode), __dom_unwra p(prevValue), __dom_unwrap(newValue), __dom_unwrap(attrName), __dom_unwrap(attrC hange)));
20228 } catch (e) { 20228 } catch (e) {
20229 throw __dom_wrap_exception(e); 20229 throw __dom_wrap_exception(e);
20230 } 20230 }
20231 } 20231 }
20232 20232
20233 function native__MutationRecordWrappingImplementation__get__MutationRecord_added Nodes(_this) { 20233 function native__MutationRecordWrappingImplementation__get_addedNodes(_this) {
20234 try { 20234 try {
20235 return __dom_wrap(_this.$dom.addedNodes); 20235 return __dom_wrap(_this.$dom.addedNodes);
20236 } catch (e) { 20236 } catch (e) {
20237 throw __dom_wrap_exception(e); 20237 throw __dom_wrap_exception(e);
20238 } 20238 }
20239 } 20239 }
20240 20240
20241 function native__MutationRecordWrappingImplementation__get__MutationRecord_attri buteName(_this) { 20241 function native__MutationRecordWrappingImplementation__get_attributeName(_this) {
20242 try { 20242 try {
20243 return __dom_wrap(_this.$dom.attributeName); 20243 return __dom_wrap(_this.$dom.attributeName);
20244 } catch (e) { 20244 } catch (e) {
20245 throw __dom_wrap_exception(e); 20245 throw __dom_wrap_exception(e);
20246 } 20246 }
20247 } 20247 }
20248 20248
20249 function native__MutationRecordWrappingImplementation__get__MutationRecord_attri buteNamespace(_this) { 20249 function native__MutationRecordWrappingImplementation__get_attributeNamespace(_t his) {
20250 try { 20250 try {
20251 return __dom_wrap(_this.$dom.attributeNamespace); 20251 return __dom_wrap(_this.$dom.attributeNamespace);
20252 } catch (e) { 20252 } catch (e) {
20253 throw __dom_wrap_exception(e); 20253 throw __dom_wrap_exception(e);
20254 } 20254 }
20255 } 20255 }
20256 20256
20257 function native__MutationRecordWrappingImplementation__get__MutationRecord_nextS ibling(_this) { 20257 function native__MutationRecordWrappingImplementation__get_nextSibling(_this) {
20258 try { 20258 try {
20259 return __dom_wrap(_this.$dom.nextSibling); 20259 return __dom_wrap(_this.$dom.nextSibling);
20260 } catch (e) { 20260 } catch (e) {
20261 throw __dom_wrap_exception(e); 20261 throw __dom_wrap_exception(e);
20262 } 20262 }
20263 } 20263 }
20264 20264
20265 function native__MutationRecordWrappingImplementation__get__MutationRecord_oldVa lue(_this) { 20265 function native__MutationRecordWrappingImplementation__get_oldValue(_this) {
20266 try { 20266 try {
20267 return __dom_wrap(_this.$dom.oldValue); 20267 return __dom_wrap(_this.$dom.oldValue);
20268 } catch (e) { 20268 } catch (e) {
20269 throw __dom_wrap_exception(e); 20269 throw __dom_wrap_exception(e);
20270 } 20270 }
20271 } 20271 }
20272 20272
20273 function native__MutationRecordWrappingImplementation__get__MutationRecord_previ ousSibling(_this) { 20273 function native__MutationRecordWrappingImplementation__get_previousSibling(_this ) {
20274 try { 20274 try {
20275 return __dom_wrap(_this.$dom.previousSibling); 20275 return __dom_wrap(_this.$dom.previousSibling);
20276 } catch (e) { 20276 } catch (e) {
20277 throw __dom_wrap_exception(e); 20277 throw __dom_wrap_exception(e);
20278 } 20278 }
20279 } 20279 }
20280 20280
20281 function native__MutationRecordWrappingImplementation__get__MutationRecord_remov edNodes(_this) { 20281 function native__MutationRecordWrappingImplementation__get_removedNodes(_this) {
20282 try { 20282 try {
20283 return __dom_wrap(_this.$dom.removedNodes); 20283 return __dom_wrap(_this.$dom.removedNodes);
20284 } catch (e) { 20284 } catch (e) {
20285 throw __dom_wrap_exception(e); 20285 throw __dom_wrap_exception(e);
20286 } 20286 }
20287 } 20287 }
20288 20288
20289 function native__MutationRecordWrappingImplementation__get__MutationRecord_targe t(_this) { 20289 function native__MutationRecordWrappingImplementation__get_target(_this) {
20290 try { 20290 try {
20291 return __dom_wrap(_this.$dom.target); 20291 return __dom_wrap(_this.$dom.target);
20292 } catch (e) { 20292 } catch (e) {
20293 throw __dom_wrap_exception(e); 20293 throw __dom_wrap_exception(e);
20294 } 20294 }
20295 } 20295 }
20296 20296
20297 function native__MutationRecordWrappingImplementation__get__MutationRecord_type( _this) { 20297 function native__MutationRecordWrappingImplementation__get_type(_this) {
20298 try { 20298 try {
20299 return __dom_wrap(_this.$dom.type); 20299 return __dom_wrap(_this.$dom.type);
20300 } catch (e) { 20300 } catch (e) {
20301 throw __dom_wrap_exception(e); 20301 throw __dom_wrap_exception(e);
20302 } 20302 }
20303 } 20303 }
20304 20304
20305 function native__NamedNodeMapWrappingImplementation__get__NamedNodeMap_length(_t his) { 20305 function native__NamedNodeMapWrappingImplementation__get_length(_this) {
20306 try { 20306 try {
20307 return __dom_wrap(_this.$dom.length); 20307 return __dom_wrap(_this.$dom.length);
20308 } catch (e) { 20308 } catch (e) {
20309 throw __dom_wrap_exception(e); 20309 throw __dom_wrap_exception(e);
20310 } 20310 }
20311 } 20311 }
20312 20312
20313 function native__NamedNodeMapWrappingImplementation__getNamedItem(_this, name) { 20313 function native__NamedNodeMapWrappingImplementation__getNamedItem(_this, name) {
20314 try { 20314 try {
20315 return __dom_wrap(_this.$dom.getNamedItem(__dom_unwrap(name))); 20315 return __dom_wrap(_this.$dom.getNamedItem(__dom_unwrap(name)));
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
20359 } 20359 }
20360 20360
20361 function native__NamedNodeMapWrappingImplementation__setNamedItemNS(_this, node) { 20361 function native__NamedNodeMapWrappingImplementation__setNamedItemNS(_this, node) {
20362 try { 20362 try {
20363 return __dom_wrap(_this.$dom.setNamedItemNS(__dom_unwrap(node))); 20363 return __dom_wrap(_this.$dom.setNamedItemNS(__dom_unwrap(node)));
20364 } catch (e) { 20364 } catch (e) {
20365 throw __dom_wrap_exception(e); 20365 throw __dom_wrap_exception(e);
20366 } 20366 }
20367 } 20367 }
20368 20368
20369 function native__NavigatorWrappingImplementation__get__Navigator_appCodeName(_th is) { 20369 function native__NavigatorWrappingImplementation__get_appCodeName(_this) {
20370 try { 20370 try {
20371 return __dom_wrap(_this.$dom.appCodeName); 20371 return __dom_wrap(_this.$dom.appCodeName);
20372 } catch (e) { 20372 } catch (e) {
20373 throw __dom_wrap_exception(e); 20373 throw __dom_wrap_exception(e);
20374 } 20374 }
20375 } 20375 }
20376 20376
20377 function native__NavigatorWrappingImplementation__get__Navigator_appName(_this) { 20377 function native__NavigatorWrappingImplementation__get_appName(_this) {
20378 try { 20378 try {
20379 return __dom_wrap(_this.$dom.appName); 20379 return __dom_wrap(_this.$dom.appName);
20380 } catch (e) { 20380 } catch (e) {
20381 throw __dom_wrap_exception(e); 20381 throw __dom_wrap_exception(e);
20382 } 20382 }
20383 } 20383 }
20384 20384
20385 function native__NavigatorWrappingImplementation__get__Navigator_appVersion(_thi s) { 20385 function native__NavigatorWrappingImplementation__get_appVersion(_this) {
20386 try { 20386 try {
20387 return __dom_wrap(_this.$dom.appVersion); 20387 return __dom_wrap(_this.$dom.appVersion);
20388 } catch (e) { 20388 } catch (e) {
20389 throw __dom_wrap_exception(e); 20389 throw __dom_wrap_exception(e);
20390 } 20390 }
20391 } 20391 }
20392 20392
20393 function native__NavigatorWrappingImplementation__get__Navigator_cookieEnabled(_ this) { 20393 function native__NavigatorWrappingImplementation__get_cookieEnabled(_this) {
20394 try { 20394 try {
20395 return __dom_wrap(_this.$dom.cookieEnabled); 20395 return __dom_wrap(_this.$dom.cookieEnabled);
20396 } catch (e) { 20396 } catch (e) {
20397 throw __dom_wrap_exception(e); 20397 throw __dom_wrap_exception(e);
20398 } 20398 }
20399 } 20399 }
20400 20400
20401 function native__NavigatorWrappingImplementation__get__Navigator_language(_this) { 20401 function native__NavigatorWrappingImplementation__get_language(_this) {
20402 try { 20402 try {
20403 return __dom_wrap(_this.$dom.language); 20403 return __dom_wrap(_this.$dom.language);
20404 } catch (e) { 20404 } catch (e) {
20405 throw __dom_wrap_exception(e); 20405 throw __dom_wrap_exception(e);
20406 } 20406 }
20407 } 20407 }
20408 20408
20409 function native__NavigatorWrappingImplementation__get__Navigator_mimeTypes(_this ) { 20409 function native__NavigatorWrappingImplementation__get_mimeTypes(_this) {
20410 try { 20410 try {
20411 return __dom_wrap(_this.$dom.mimeTypes); 20411 return __dom_wrap(_this.$dom.mimeTypes);
20412 } catch (e) { 20412 } catch (e) {
20413 throw __dom_wrap_exception(e); 20413 throw __dom_wrap_exception(e);
20414 } 20414 }
20415 } 20415 }
20416 20416
20417 function native__NavigatorWrappingImplementation__get__Navigator_onLine(_this) { 20417 function native__NavigatorWrappingImplementation__get_onLine(_this) {
20418 try { 20418 try {
20419 return __dom_wrap(_this.$dom.onLine); 20419 return __dom_wrap(_this.$dom.onLine);
20420 } catch (e) { 20420 } catch (e) {
20421 throw __dom_wrap_exception(e); 20421 throw __dom_wrap_exception(e);
20422 } 20422 }
20423 } 20423 }
20424 20424
20425 function native__NavigatorWrappingImplementation__get__Navigator_platform(_this) { 20425 function native__NavigatorWrappingImplementation__get_platform(_this) {
20426 try { 20426 try {
20427 return __dom_wrap(_this.$dom.platform); 20427 return __dom_wrap(_this.$dom.platform);
20428 } catch (e) { 20428 } catch (e) {
20429 throw __dom_wrap_exception(e); 20429 throw __dom_wrap_exception(e);
20430 } 20430 }
20431 } 20431 }
20432 20432
20433 function native__NavigatorWrappingImplementation__get__Navigator_plugins(_this) { 20433 function native__NavigatorWrappingImplementation__get_plugins(_this) {
20434 try { 20434 try {
20435 return __dom_wrap(_this.$dom.plugins); 20435 return __dom_wrap(_this.$dom.plugins);
20436 } catch (e) { 20436 } catch (e) {
20437 throw __dom_wrap_exception(e); 20437 throw __dom_wrap_exception(e);
20438 } 20438 }
20439 } 20439 }
20440 20440
20441 function native__NavigatorWrappingImplementation__get__Navigator_product(_this) { 20441 function native__NavigatorWrappingImplementation__get_product(_this) {
20442 try { 20442 try {
20443 return __dom_wrap(_this.$dom.product); 20443 return __dom_wrap(_this.$dom.product);
20444 } catch (e) { 20444 } catch (e) {
20445 throw __dom_wrap_exception(e); 20445 throw __dom_wrap_exception(e);
20446 } 20446 }
20447 } 20447 }
20448 20448
20449 function native__NavigatorWrappingImplementation__get__Navigator_productSub(_thi s) { 20449 function native__NavigatorWrappingImplementation__get_productSub(_this) {
20450 try { 20450 try {
20451 return __dom_wrap(_this.$dom.productSub); 20451 return __dom_wrap(_this.$dom.productSub);
20452 } catch (e) { 20452 } catch (e) {
20453 throw __dom_wrap_exception(e); 20453 throw __dom_wrap_exception(e);
20454 } 20454 }
20455 } 20455 }
20456 20456
20457 function native__NavigatorWrappingImplementation__get__Navigator_userAgent(_this ) { 20457 function native__NavigatorWrappingImplementation__get_userAgent(_this) {
20458 try { 20458 try {
20459 return __dom_wrap(_this.$dom.userAgent); 20459 return __dom_wrap(_this.$dom.userAgent);
20460 } catch (e) { 20460 } catch (e) {
20461 throw __dom_wrap_exception(e); 20461 throw __dom_wrap_exception(e);
20462 } 20462 }
20463 } 20463 }
20464 20464
20465 function native__NavigatorWrappingImplementation__get__Navigator_vendor(_this) { 20465 function native__NavigatorWrappingImplementation__get_vendor(_this) {
20466 try { 20466 try {
20467 return __dom_wrap(_this.$dom.vendor); 20467 return __dom_wrap(_this.$dom.vendor);
20468 } catch (e) { 20468 } catch (e) {
20469 throw __dom_wrap_exception(e); 20469 throw __dom_wrap_exception(e);
20470 } 20470 }
20471 } 20471 }
20472 20472
20473 function native__NavigatorWrappingImplementation__get__Navigator_vendorSub(_this ) { 20473 function native__NavigatorWrappingImplementation__get_vendorSub(_this) {
20474 try { 20474 try {
20475 return __dom_wrap(_this.$dom.vendorSub); 20475 return __dom_wrap(_this.$dom.vendorSub);
20476 } catch (e) { 20476 } catch (e) {
20477 throw __dom_wrap_exception(e); 20477 throw __dom_wrap_exception(e);
20478 } 20478 }
20479 } 20479 }
20480 20480
20481 function native__NavigatorWrappingImplementation__getStorageUpdates(_this) { 20481 function native__NavigatorWrappingImplementation__getStorageUpdates(_this) {
20482 try { 20482 try {
20483 return __dom_wrap(_this.$dom.getStorageUpdates()); 20483 return __dom_wrap(_this.$dom.getStorageUpdates());
20484 } catch (e) { 20484 } catch (e) {
20485 throw __dom_wrap_exception(e); 20485 throw __dom_wrap_exception(e);
20486 } 20486 }
20487 } 20487 }
20488 20488
20489 function native__NavigatorWrappingImplementation__javaEnabled(_this) { 20489 function native__NavigatorWrappingImplementation__javaEnabled(_this) {
20490 try { 20490 try {
20491 return __dom_wrap(_this.$dom.javaEnabled()); 20491 return __dom_wrap(_this.$dom.javaEnabled());
20492 } catch (e) { 20492 } catch (e) {
20493 throw __dom_wrap_exception(e); 20493 throw __dom_wrap_exception(e);
20494 } 20494 }
20495 } 20495 }
20496 20496
20497 function native__NavigatorUserMediaErrorWrappingImplementation__get__NavigatorUs erMediaError_code(_this) { 20497 function native__NavigatorUserMediaErrorWrappingImplementation__get_code(_this) {
20498 try { 20498 try {
20499 return __dom_wrap(_this.$dom.code); 20499 return __dom_wrap(_this.$dom.code);
20500 } catch (e) { 20500 } catch (e) {
20501 throw __dom_wrap_exception(e); 20501 throw __dom_wrap_exception(e);
20502 } 20502 }
20503 } 20503 }
20504 20504
20505 function native__NavigatorUserMediaErrorCallbackWrappingImplementation__handleEv ent(_this, error) { 20505 function native__NavigatorUserMediaErrorCallbackWrappingImplementation__handleEv ent(_this, error) {
20506 try { 20506 try {
20507 return __dom_wrap(_this.$dom.handleEvent(__dom_unwrap(error))); 20507 return __dom_wrap(_this.$dom.handleEvent(__dom_unwrap(error)));
20508 } catch (e) { 20508 } catch (e) {
20509 throw __dom_wrap_exception(e); 20509 throw __dom_wrap_exception(e);
20510 } 20510 }
20511 } 20511 }
20512 20512
20513 function native__NodeWrappingImplementation__get__Node_attributes(_this) { 20513 function native__NodeWrappingImplementation__get_attributes(_this) {
20514 try { 20514 try {
20515 return __dom_wrap(_this.$dom.attributes); 20515 return __dom_wrap(_this.$dom.attributes);
20516 } catch (e) { 20516 } catch (e) {
20517 throw __dom_wrap_exception(e); 20517 throw __dom_wrap_exception(e);
20518 } 20518 }
20519 } 20519 }
20520 20520
20521 function native__NodeWrappingImplementation__get__Node_baseURI(_this) { 20521 function native__NodeWrappingImplementation__get_baseURI(_this) {
20522 try { 20522 try {
20523 return __dom_wrap(_this.$dom.baseURI); 20523 return __dom_wrap(_this.$dom.baseURI);
20524 } catch (e) { 20524 } catch (e) {
20525 throw __dom_wrap_exception(e); 20525 throw __dom_wrap_exception(e);
20526 } 20526 }
20527 } 20527 }
20528 20528
20529 function native__NodeWrappingImplementation__get__Node_childNodes(_this) { 20529 function native__NodeWrappingImplementation__get_childNodes(_this) {
20530 try { 20530 try {
20531 return __dom_wrap(_this.$dom.childNodes); 20531 return __dom_wrap(_this.$dom.childNodes);
20532 } catch (e) { 20532 } catch (e) {
20533 throw __dom_wrap_exception(e); 20533 throw __dom_wrap_exception(e);
20534 } 20534 }
20535 } 20535 }
20536 20536
20537 function native__NodeWrappingImplementation__get__Node_firstChild(_this) { 20537 function native__NodeWrappingImplementation__get_firstChild(_this) {
20538 try { 20538 try {
20539 return __dom_wrap(_this.$dom.firstChild); 20539 return __dom_wrap(_this.$dom.firstChild);
20540 } catch (e) { 20540 } catch (e) {
20541 throw __dom_wrap_exception(e); 20541 throw __dom_wrap_exception(e);
20542 } 20542 }
20543 } 20543 }
20544 20544
20545 function native__NodeWrappingImplementation__get__Node_lastChild(_this) { 20545 function native__NodeWrappingImplementation__get_lastChild(_this) {
20546 try { 20546 try {
20547 return __dom_wrap(_this.$dom.lastChild); 20547 return __dom_wrap(_this.$dom.lastChild);
20548 } catch (e) { 20548 } catch (e) {
20549 throw __dom_wrap_exception(e); 20549 throw __dom_wrap_exception(e);
20550 } 20550 }
20551 } 20551 }
20552 20552
20553 function native__NodeWrappingImplementation__get__Node_localName(_this) { 20553 function native__NodeWrappingImplementation__get_localName(_this) {
20554 try { 20554 try {
20555 return __dom_wrap(_this.$dom.localName); 20555 return __dom_wrap(_this.$dom.localName);
20556 } catch (e) { 20556 } catch (e) {
20557 throw __dom_wrap_exception(e); 20557 throw __dom_wrap_exception(e);
20558 } 20558 }
20559 } 20559 }
20560 20560
20561 function native__NodeWrappingImplementation__get__Node_namespaceURI(_this) { 20561 function native__NodeWrappingImplementation__get_namespaceURI(_this) {
20562 try { 20562 try {
20563 return __dom_wrap(_this.$dom.namespaceURI); 20563 return __dom_wrap(_this.$dom.namespaceURI);
20564 } catch (e) { 20564 } catch (e) {
20565 throw __dom_wrap_exception(e); 20565 throw __dom_wrap_exception(e);
20566 } 20566 }
20567 } 20567 }
20568 20568
20569 function native__NodeWrappingImplementation__get__Node_nextSibling(_this) { 20569 function native__NodeWrappingImplementation__get_nextSibling(_this) {
20570 try { 20570 try {
20571 return __dom_wrap(_this.$dom.nextSibling); 20571 return __dom_wrap(_this.$dom.nextSibling);
20572 } catch (e) { 20572 } catch (e) {
20573 throw __dom_wrap_exception(e); 20573 throw __dom_wrap_exception(e);
20574 } 20574 }
20575 } 20575 }
20576 20576
20577 function native__NodeWrappingImplementation__get__Node_nodeName(_this) { 20577 function native__NodeWrappingImplementation__get_nodeName(_this) {
20578 try { 20578 try {
20579 return __dom_wrap(_this.$dom.nodeName); 20579 return __dom_wrap(_this.$dom.nodeName);
20580 } catch (e) { 20580 } catch (e) {
20581 throw __dom_wrap_exception(e); 20581 throw __dom_wrap_exception(e);
20582 } 20582 }
20583 } 20583 }
20584 20584
20585 function native__NodeWrappingImplementation__get__Node_nodeType(_this) { 20585 function native__NodeWrappingImplementation__get_nodeType(_this) {
20586 try { 20586 try {
20587 return __dom_wrap(_this.$dom.nodeType); 20587 return __dom_wrap(_this.$dom.nodeType);
20588 } catch (e) { 20588 } catch (e) {
20589 throw __dom_wrap_exception(e); 20589 throw __dom_wrap_exception(e);
20590 } 20590 }
20591 } 20591 }
20592 20592
20593 function native__NodeWrappingImplementation__get__Node_nodeValue(_this) { 20593 function native__NodeWrappingImplementation__get_nodeValue(_this) {
20594 try { 20594 try {
20595 return __dom_wrap(_this.$dom.nodeValue); 20595 return __dom_wrap(_this.$dom.nodeValue);
20596 } catch (e) { 20596 } catch (e) {
20597 throw __dom_wrap_exception(e); 20597 throw __dom_wrap_exception(e);
20598 } 20598 }
20599 } 20599 }
20600 20600
20601 function native__NodeWrappingImplementation__set__Node_nodeValue(_this, value) { 20601 function native__NodeWrappingImplementation__set_nodeValue(_this, value) {
20602 try { 20602 try {
20603 _this.$dom.nodeValue = __dom_unwrap(value); 20603 _this.$dom.nodeValue = __dom_unwrap(value);
20604 } catch (e) { 20604 } catch (e) {
20605 throw __dom_wrap_exception(e); 20605 throw __dom_wrap_exception(e);
20606 } 20606 }
20607 } 20607 }
20608 20608
20609 function native__NodeWrappingImplementation__get__Node_ownerDocument(_this) { 20609 function native__NodeWrappingImplementation__get_ownerDocument(_this) {
20610 try { 20610 try {
20611 return __dom_wrap(_this.$dom.ownerDocument); 20611 return __dom_wrap(_this.$dom.ownerDocument);
20612 } catch (e) { 20612 } catch (e) {
20613 throw __dom_wrap_exception(e); 20613 throw __dom_wrap_exception(e);
20614 } 20614 }
20615 } 20615 }
20616 20616
20617 function native__NodeWrappingImplementation__get__Node_parentElement(_this) { 20617 function native__NodeWrappingImplementation__get_parentElement(_this) {
20618 try { 20618 try {
20619 return __dom_wrap(_this.$dom.parentElement); 20619 return __dom_wrap(_this.$dom.parentElement);
20620 } catch (e) { 20620 } catch (e) {
20621 throw __dom_wrap_exception(e); 20621 throw __dom_wrap_exception(e);
20622 } 20622 }
20623 } 20623 }
20624 20624
20625 function native__NodeWrappingImplementation__get__Node_parentNode(_this) { 20625 function native__NodeWrappingImplementation__get_parentNode(_this) {
20626 try { 20626 try {
20627 return __dom_wrap(_this.$dom.parentNode); 20627 return __dom_wrap(_this.$dom.parentNode);
20628 } catch (e) { 20628 } catch (e) {
20629 throw __dom_wrap_exception(e); 20629 throw __dom_wrap_exception(e);
20630 } 20630 }
20631 } 20631 }
20632 20632
20633 function native__NodeWrappingImplementation__get__Node_prefix(_this) { 20633 function native__NodeWrappingImplementation__get_prefix(_this) {
20634 try { 20634 try {
20635 return __dom_wrap(_this.$dom.prefix); 20635 return __dom_wrap(_this.$dom.prefix);
20636 } catch (e) { 20636 } catch (e) {
20637 throw __dom_wrap_exception(e); 20637 throw __dom_wrap_exception(e);
20638 } 20638 }
20639 } 20639 }
20640 20640
20641 function native__NodeWrappingImplementation__set__Node_prefix(_this, value) { 20641 function native__NodeWrappingImplementation__set_prefix(_this, value) {
20642 try { 20642 try {
20643 _this.$dom.prefix = __dom_unwrap(value); 20643 _this.$dom.prefix = __dom_unwrap(value);
20644 } catch (e) { 20644 } catch (e) {
20645 throw __dom_wrap_exception(e); 20645 throw __dom_wrap_exception(e);
20646 } 20646 }
20647 } 20647 }
20648 20648
20649 function native__NodeWrappingImplementation__get__Node_previousSibling(_this) { 20649 function native__NodeWrappingImplementation__get_previousSibling(_this) {
20650 try { 20650 try {
20651 return __dom_wrap(_this.$dom.previousSibling); 20651 return __dom_wrap(_this.$dom.previousSibling);
20652 } catch (e) { 20652 } catch (e) {
20653 throw __dom_wrap_exception(e); 20653 throw __dom_wrap_exception(e);
20654 } 20654 }
20655 } 20655 }
20656 20656
20657 function native__NodeWrappingImplementation__get__Node_textContent(_this) { 20657 function native__NodeWrappingImplementation__get_textContent(_this) {
20658 try { 20658 try {
20659 return __dom_wrap(_this.$dom.textContent); 20659 return __dom_wrap(_this.$dom.textContent);
20660 } catch (e) { 20660 } catch (e) {
20661 throw __dom_wrap_exception(e); 20661 throw __dom_wrap_exception(e);
20662 } 20662 }
20663 } 20663 }
20664 20664
20665 function native__NodeWrappingImplementation__set__Node_textContent(_this, value) { 20665 function native__NodeWrappingImplementation__set_textContent(_this, value) {
20666 try { 20666 try {
20667 _this.$dom.textContent = __dom_unwrap(value); 20667 _this.$dom.textContent = __dom_unwrap(value);
20668 } catch (e) { 20668 } catch (e) {
20669 throw __dom_wrap_exception(e); 20669 throw __dom_wrap_exception(e);
20670 } 20670 }
20671 } 20671 }
20672 20672
20673 function native__NodeWrappingImplementation__addEventListener(_this, type, liste ner) { 20673 function native__NodeWrappingImplementation__addEventListener_Node(_this, type, listener) {
20674 try { 20674 try {
20675 return __dom_wrap(_this.$dom.addEventListener(__dom_unwrap(type), __dom_unwr ap(listener))); 20675 return __dom_wrap(_this.$dom.addEventListener(__dom_unwrap(type), __dom_unwr ap(listener)));
20676 } catch (e) { 20676 } catch (e) {
20677 throw __dom_wrap_exception(e); 20677 throw __dom_wrap_exception(e);
20678 } 20678 }
20679 } 20679 }
20680 20680
20681 function native__NodeWrappingImplementation__addEventListener_2(_this, type, lis tener, useCapture) { 20681 function native__NodeWrappingImplementation__addEventListener_Node_2(_this, type , listener, useCapture) {
20682 try { 20682 try {
20683 return __dom_wrap(_this.$dom.addEventListener(__dom_unwrap(type), __dom_unwr ap(listener), __dom_unwrap(useCapture))); 20683 return __dom_wrap(_this.$dom.addEventListener(__dom_unwrap(type), __dom_unwr ap(listener), __dom_unwrap(useCapture)));
20684 } catch (e) { 20684 } catch (e) {
20685 throw __dom_wrap_exception(e); 20685 throw __dom_wrap_exception(e);
20686 } 20686 }
20687 } 20687 }
20688 20688
20689 function native__NodeWrappingImplementation__appendChild(_this, newChild) { 20689 function native__NodeWrappingImplementation__appendChild(_this, newChild) {
20690 try { 20690 try {
20691 return __dom_wrap(_this.$dom.appendChild(__dom_unwrap(newChild))); 20691 return __dom_wrap(_this.$dom.appendChild(__dom_unwrap(newChild)));
(...skipping 19 matching lines...) Expand all
20711 } 20711 }
20712 20712
20713 function native__NodeWrappingImplementation__contains(_this, other) { 20713 function native__NodeWrappingImplementation__contains(_this, other) {
20714 try { 20714 try {
20715 return __dom_wrap(_this.$dom.contains(__dom_unwrap(other))); 20715 return __dom_wrap(_this.$dom.contains(__dom_unwrap(other)));
20716 } catch (e) { 20716 } catch (e) {
20717 throw __dom_wrap_exception(e); 20717 throw __dom_wrap_exception(e);
20718 } 20718 }
20719 } 20719 }
20720 20720
20721 function native__NodeWrappingImplementation__dispatchEvent(_this, event) { 20721 function native__NodeWrappingImplementation__dispatchEvent_Node(_this, event) {
20722 try { 20722 try {
20723 return __dom_wrap(_this.$dom.dispatchEvent(__dom_unwrap(event))); 20723 return __dom_wrap(_this.$dom.dispatchEvent(__dom_unwrap(event)));
20724 } catch (e) { 20724 } catch (e) {
20725 throw __dom_wrap_exception(e); 20725 throw __dom_wrap_exception(e);
20726 } 20726 }
20727 } 20727 }
20728 20728
20729 function native__NodeWrappingImplementation__hasAttributes(_this) { 20729 function native__NodeWrappingImplementation__hasAttributes(_this) {
20730 try { 20730 try {
20731 return __dom_wrap(_this.$dom.hasAttributes()); 20731 return __dom_wrap(_this.$dom.hasAttributes());
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
20807 } 20807 }
20808 20808
20809 function native__NodeWrappingImplementation__removeChild(_this, oldChild) { 20809 function native__NodeWrappingImplementation__removeChild(_this, oldChild) {
20810 try { 20810 try {
20811 return __dom_wrap(_this.$dom.removeChild(__dom_unwrap(oldChild))); 20811 return __dom_wrap(_this.$dom.removeChild(__dom_unwrap(oldChild)));
20812 } catch (e) { 20812 } catch (e) {
20813 throw __dom_wrap_exception(e); 20813 throw __dom_wrap_exception(e);
20814 } 20814 }
20815 } 20815 }
20816 20816
20817 function native__NodeWrappingImplementation__removeEventListener(_this, type, li stener) { 20817 function native__NodeWrappingImplementation__removeEventListener_Node(_this, typ e, listener) {
20818 try { 20818 try {
20819 return __dom_wrap(_this.$dom.removeEventListener(__dom_unwrap(type), __dom_u nwrap(listener))); 20819 return __dom_wrap(_this.$dom.removeEventListener(__dom_unwrap(type), __dom_u nwrap(listener)));
20820 } catch (e) { 20820 } catch (e) {
20821 throw __dom_wrap_exception(e); 20821 throw __dom_wrap_exception(e);
20822 } 20822 }
20823 } 20823 }
20824 20824
20825 function native__NodeWrappingImplementation__removeEventListener_2(_this, type, listener, useCapture) { 20825 function native__NodeWrappingImplementation__removeEventListener_Node_2(_this, t ype, listener, useCapture) {
20826 try { 20826 try {
20827 return __dom_wrap(_this.$dom.removeEventListener(__dom_unwrap(type), __dom_u nwrap(listener), __dom_unwrap(useCapture))); 20827 return __dom_wrap(_this.$dom.removeEventListener(__dom_unwrap(type), __dom_u nwrap(listener), __dom_unwrap(useCapture)));
20828 } catch (e) { 20828 } catch (e) {
20829 throw __dom_wrap_exception(e); 20829 throw __dom_wrap_exception(e);
20830 } 20830 }
20831 } 20831 }
20832 20832
20833 function native__NodeWrappingImplementation__replaceChild(_this, newChild, oldCh ild) { 20833 function native__NodeWrappingImplementation__replaceChild(_this, newChild, oldCh ild) {
20834 try { 20834 try {
20835 return __dom_wrap(_this.$dom.replaceChild(__dom_unwrap(newChild), __dom_unwr ap(oldChild))); 20835 return __dom_wrap(_this.$dom.replaceChild(__dom_unwrap(newChild), __dom_unwr ap(oldChild)));
20836 } catch (e) { 20836 } catch (e) {
20837 throw __dom_wrap_exception(e); 20837 throw __dom_wrap_exception(e);
20838 } 20838 }
20839 } 20839 }
20840 20840
20841 function native__NodeFilterWrappingImplementation__acceptNode(_this, n) { 20841 function native__NodeFilterWrappingImplementation__acceptNode(_this, n) {
20842 try { 20842 try {
20843 return __dom_wrap(_this.$dom.acceptNode(__dom_unwrap(n))); 20843 return __dom_wrap(_this.$dom.acceptNode(__dom_unwrap(n)));
20844 } catch (e) { 20844 } catch (e) {
20845 throw __dom_wrap_exception(e); 20845 throw __dom_wrap_exception(e);
20846 } 20846 }
20847 } 20847 }
20848 20848
20849 function native__NodeIteratorWrappingImplementation__get__NodeIterator_expandEnt ityReferences(_this) { 20849 function native__NodeIteratorWrappingImplementation__get_expandEntityReferences( _this) {
20850 try { 20850 try {
20851 return __dom_wrap(_this.$dom.expandEntityReferences); 20851 return __dom_wrap(_this.$dom.expandEntityReferences);
20852 } catch (e) { 20852 } catch (e) {
20853 throw __dom_wrap_exception(e); 20853 throw __dom_wrap_exception(e);
20854 } 20854 }
20855 } 20855 }
20856 20856
20857 function native__NodeIteratorWrappingImplementation__get__NodeIterator_filter(_t his) { 20857 function native__NodeIteratorWrappingImplementation__get_filter(_this) {
20858 try { 20858 try {
20859 return __dom_wrap(_this.$dom.filter); 20859 return __dom_wrap(_this.$dom.filter);
20860 } catch (e) { 20860 } catch (e) {
20861 throw __dom_wrap_exception(e); 20861 throw __dom_wrap_exception(e);
20862 } 20862 }
20863 } 20863 }
20864 20864
20865 function native__NodeIteratorWrappingImplementation__get__NodeIterator_pointerBe foreReferenceNode(_this) { 20865 function native__NodeIteratorWrappingImplementation__get_pointerBeforeReferenceN ode(_this) {
20866 try { 20866 try {
20867 return __dom_wrap(_this.$dom.pointerBeforeReferenceNode); 20867 return __dom_wrap(_this.$dom.pointerBeforeReferenceNode);
20868 } catch (e) { 20868 } catch (e) {
20869 throw __dom_wrap_exception(e); 20869 throw __dom_wrap_exception(e);
20870 } 20870 }
20871 } 20871 }
20872 20872
20873 function native__NodeIteratorWrappingImplementation__get__NodeIterator_reference Node(_this) { 20873 function native__NodeIteratorWrappingImplementation__get_referenceNode(_this) {
20874 try { 20874 try {
20875 return __dom_wrap(_this.$dom.referenceNode); 20875 return __dom_wrap(_this.$dom.referenceNode);
20876 } catch (e) { 20876 } catch (e) {
20877 throw __dom_wrap_exception(e); 20877 throw __dom_wrap_exception(e);
20878 } 20878 }
20879 } 20879 }
20880 20880
20881 function native__NodeIteratorWrappingImplementation__get__NodeIterator_root(_thi s) { 20881 function native__NodeIteratorWrappingImplementation__get_root(_this) {
20882 try { 20882 try {
20883 return __dom_wrap(_this.$dom.root); 20883 return __dom_wrap(_this.$dom.root);
20884 } catch (e) { 20884 } catch (e) {
20885 throw __dom_wrap_exception(e); 20885 throw __dom_wrap_exception(e);
20886 } 20886 }
20887 } 20887 }
20888 20888
20889 function native__NodeIteratorWrappingImplementation__get__NodeIterator_whatToSho w(_this) { 20889 function native__NodeIteratorWrappingImplementation__get_whatToShow(_this) {
20890 try { 20890 try {
20891 return __dom_wrap(_this.$dom.whatToShow); 20891 return __dom_wrap(_this.$dom.whatToShow);
20892 } catch (e) { 20892 } catch (e) {
20893 throw __dom_wrap_exception(e); 20893 throw __dom_wrap_exception(e);
20894 } 20894 }
20895 } 20895 }
20896 20896
20897 function native__NodeIteratorWrappingImplementation__detach(_this) { 20897 function native__NodeIteratorWrappingImplementation__detach(_this) {
20898 try { 20898 try {
20899 return __dom_wrap(_this.$dom.detach()); 20899 return __dom_wrap(_this.$dom.detach());
(...skipping 11 matching lines...) Expand all
20911 } 20911 }
20912 20912
20913 function native__NodeIteratorWrappingImplementation__previousNode(_this) { 20913 function native__NodeIteratorWrappingImplementation__previousNode(_this) {
20914 try { 20914 try {
20915 return __dom_wrap(_this.$dom.previousNode()); 20915 return __dom_wrap(_this.$dom.previousNode());
20916 } catch (e) { 20916 } catch (e) {
20917 throw __dom_wrap_exception(e); 20917 throw __dom_wrap_exception(e);
20918 } 20918 }
20919 } 20919 }
20920 20920
20921 function native__NodeListWrappingImplementation__get__NodeList_length(_this) { 20921 function native__NodeListWrappingImplementation__get_length(_this) {
20922 try { 20922 try {
20923 return __dom_wrap(_this.$dom.length); 20923 return __dom_wrap(_this.$dom.length);
20924 } catch (e) { 20924 } catch (e) {
20925 throw __dom_wrap_exception(e); 20925 throw __dom_wrap_exception(e);
20926 } 20926 }
20927 } 20927 }
20928 20928
20929 function native__NodeListWrappingImplementation__item(_this, index) { 20929 function native__NodeListWrappingImplementation__item(_this, index) {
20930 try { 20930 try {
20931 return __dom_wrap(_this.$dom.item(__dom_unwrap(index))); 20931 return __dom_wrap(_this.$dom.item(__dom_unwrap(index)));
(...skipping 11 matching lines...) Expand all
20943 } 20943 }
20944 20944
20945 function native__NodeSelectorWrappingImplementation__querySelectorAll(_this, sel ectors) { 20945 function native__NodeSelectorWrappingImplementation__querySelectorAll(_this, sel ectors) {
20946 try { 20946 try {
20947 return __dom_wrap(_this.$dom.querySelectorAll(__dom_unwrap(selectors))); 20947 return __dom_wrap(_this.$dom.querySelectorAll(__dom_unwrap(selectors)));
20948 } catch (e) { 20948 } catch (e) {
20949 throw __dom_wrap_exception(e); 20949 throw __dom_wrap_exception(e);
20950 } 20950 }
20951 } 20951 }
20952 20952
20953 function native__NotationWrappingImplementation__get__Notation_publicId(_this) { 20953 function native__NotationWrappingImplementation__get_publicId(_this) {
20954 try { 20954 try {
20955 return __dom_wrap(_this.$dom.publicId); 20955 return __dom_wrap(_this.$dom.publicId);
20956 } catch (e) { 20956 } catch (e) {
20957 throw __dom_wrap_exception(e); 20957 throw __dom_wrap_exception(e);
20958 } 20958 }
20959 } 20959 }
20960 20960
20961 function native__NotationWrappingImplementation__get__Notation_systemId(_this) { 20961 function native__NotationWrappingImplementation__get_systemId(_this) {
20962 try { 20962 try {
20963 return __dom_wrap(_this.$dom.systemId); 20963 return __dom_wrap(_this.$dom.systemId);
20964 } catch (e) { 20964 } catch (e) {
20965 throw __dom_wrap_exception(e); 20965 throw __dom_wrap_exception(e);
20966 } 20966 }
20967 } 20967 }
20968 20968
20969 function native__NotificationWrappingImplementation__get__Notification_dir(_this ) { 20969 function native__NotificationWrappingImplementation__get_dir(_this) {
20970 try { 20970 try {
20971 return __dom_wrap(_this.$dom.dir); 20971 return __dom_wrap(_this.$dom.dir);
20972 } catch (e) { 20972 } catch (e) {
20973 throw __dom_wrap_exception(e); 20973 throw __dom_wrap_exception(e);
20974 } 20974 }
20975 } 20975 }
20976 20976
20977 function native__NotificationWrappingImplementation__set__Notification_dir(_this , value) { 20977 function native__NotificationWrappingImplementation__set_dir(_this, value) {
20978 try { 20978 try {
20979 _this.$dom.dir = __dom_unwrap(value); 20979 _this.$dom.dir = __dom_unwrap(value);
20980 } catch (e) { 20980 } catch (e) {
20981 throw __dom_wrap_exception(e); 20981 throw __dom_wrap_exception(e);
20982 } 20982 }
20983 } 20983 }
20984 20984
20985 function native__NotificationWrappingImplementation__get__Notification_onclick(_ this) { 20985 function native__NotificationWrappingImplementation__get_onclick(_this) {
20986 try { 20986 try {
20987 return __dom_wrap(_this.$dom.onclick); 20987 return __dom_wrap(_this.$dom.onclick);
20988 } catch (e) { 20988 } catch (e) {
20989 throw __dom_wrap_exception(e); 20989 throw __dom_wrap_exception(e);
20990 } 20990 }
20991 } 20991 }
20992 20992
20993 function native__NotificationWrappingImplementation__set__Notification_onclick(_ this, value) { 20993 function native__NotificationWrappingImplementation__set_onclick(_this, value) {
20994 try { 20994 try {
20995 _this.$dom.onclick = __dom_unwrap(value); 20995 _this.$dom.onclick = __dom_unwrap(value);
20996 } catch (e) { 20996 } catch (e) {
20997 throw __dom_wrap_exception(e); 20997 throw __dom_wrap_exception(e);
20998 } 20998 }
20999 } 20999 }
21000 21000
21001 function native__NotificationWrappingImplementation__get__Notification_onclose(_ this) { 21001 function native__NotificationWrappingImplementation__get_onclose(_this) {
21002 try { 21002 try {
21003 return __dom_wrap(_this.$dom.onclose); 21003 return __dom_wrap(_this.$dom.onclose);
21004 } catch (e) { 21004 } catch (e) {
21005 throw __dom_wrap_exception(e); 21005 throw __dom_wrap_exception(e);
21006 } 21006 }
21007 } 21007 }
21008 21008
21009 function native__NotificationWrappingImplementation__set__Notification_onclose(_ this, value) { 21009 function native__NotificationWrappingImplementation__set_onclose(_this, value) {
21010 try { 21010 try {
21011 _this.$dom.onclose = __dom_unwrap(value); 21011 _this.$dom.onclose = __dom_unwrap(value);
21012 } catch (e) { 21012 } catch (e) {
21013 throw __dom_wrap_exception(e); 21013 throw __dom_wrap_exception(e);
21014 } 21014 }
21015 } 21015 }
21016 21016
21017 function native__NotificationWrappingImplementation__get__Notification_ondisplay (_this) { 21017 function native__NotificationWrappingImplementation__get_ondisplay(_this) {
21018 try { 21018 try {
21019 return __dom_wrap(_this.$dom.ondisplay); 21019 return __dom_wrap(_this.$dom.ondisplay);
21020 } catch (e) { 21020 } catch (e) {
21021 throw __dom_wrap_exception(e); 21021 throw __dom_wrap_exception(e);
21022 } 21022 }
21023 } 21023 }
21024 21024
21025 function native__NotificationWrappingImplementation__set__Notification_ondisplay (_this, value) { 21025 function native__NotificationWrappingImplementation__set_ondisplay(_this, value) {
21026 try { 21026 try {
21027 _this.$dom.ondisplay = __dom_unwrap(value); 21027 _this.$dom.ondisplay = __dom_unwrap(value);
21028 } catch (e) { 21028 } catch (e) {
21029 throw __dom_wrap_exception(e); 21029 throw __dom_wrap_exception(e);
21030 } 21030 }
21031 } 21031 }
21032 21032
21033 function native__NotificationWrappingImplementation__get__Notification_onerror(_ this) { 21033 function native__NotificationWrappingImplementation__get_onerror(_this) {
21034 try { 21034 try {
21035 return __dom_wrap(_this.$dom.onerror); 21035 return __dom_wrap(_this.$dom.onerror);
21036 } catch (e) { 21036 } catch (e) {
21037 throw __dom_wrap_exception(e); 21037 throw __dom_wrap_exception(e);
21038 } 21038 }
21039 } 21039 }
21040 21040
21041 function native__NotificationWrappingImplementation__set__Notification_onerror(_ this, value) { 21041 function native__NotificationWrappingImplementation__set_onerror(_this, value) {
21042 try { 21042 try {
21043 _this.$dom.onerror = __dom_unwrap(value); 21043 _this.$dom.onerror = __dom_unwrap(value);
21044 } catch (e) { 21044 } catch (e) {
21045 throw __dom_wrap_exception(e); 21045 throw __dom_wrap_exception(e);
21046 } 21046 }
21047 } 21047 }
21048 21048
21049 function native__NotificationWrappingImplementation__get__Notification_replaceId (_this) { 21049 function native__NotificationWrappingImplementation__get_replaceId(_this) {
21050 try { 21050 try {
21051 return __dom_wrap(_this.$dom.replaceId); 21051 return __dom_wrap(_this.$dom.replaceId);
21052 } catch (e) { 21052 } catch (e) {
21053 throw __dom_wrap_exception(e); 21053 throw __dom_wrap_exception(e);
21054 } 21054 }
21055 } 21055 }
21056 21056
21057 function native__NotificationWrappingImplementation__set__Notification_replaceId (_this, value) { 21057 function native__NotificationWrappingImplementation__set_replaceId(_this, value) {
21058 try { 21058 try {
21059 _this.$dom.replaceId = __dom_unwrap(value); 21059 _this.$dom.replaceId = __dom_unwrap(value);
21060 } catch (e) { 21060 } catch (e) {
21061 throw __dom_wrap_exception(e); 21061 throw __dom_wrap_exception(e);
21062 } 21062 }
21063 } 21063 }
21064 21064
21065 function native__NotificationWrappingImplementation__addEventListener(_this, typ e, listener) { 21065 function native__NotificationWrappingImplementation__addEventListener_Notificati on(_this, type, listener) {
21066 try { 21066 try {
21067 return __dom_wrap(_this.$dom.addEventListener(__dom_unwrap(type), __dom_unwr ap(listener))); 21067 return __dom_wrap(_this.$dom.addEventListener(__dom_unwrap(type), __dom_unwr ap(listener)));
21068 } catch (e) { 21068 } catch (e) {
21069 throw __dom_wrap_exception(e); 21069 throw __dom_wrap_exception(e);
21070 } 21070 }
21071 } 21071 }
21072 21072
21073 function native__NotificationWrappingImplementation__addEventListener_2(_this, t ype, listener, useCapture) { 21073 function native__NotificationWrappingImplementation__addEventListener_Notificati on_2(_this, type, listener, useCapture) {
21074 try { 21074 try {
21075 return __dom_wrap(_this.$dom.addEventListener(__dom_unwrap(type), __dom_unwr ap(listener), __dom_unwrap(useCapture))); 21075 return __dom_wrap(_this.$dom.addEventListener(__dom_unwrap(type), __dom_unwr ap(listener), __dom_unwrap(useCapture)));
21076 } catch (e) { 21076 } catch (e) {
21077 throw __dom_wrap_exception(e); 21077 throw __dom_wrap_exception(e);
21078 } 21078 }
21079 } 21079 }
21080 21080
21081 function native__NotificationWrappingImplementation__cancel(_this) { 21081 function native__NotificationWrappingImplementation__cancel(_this) {
21082 try { 21082 try {
21083 return __dom_wrap(_this.$dom.cancel()); 21083 return __dom_wrap(_this.$dom.cancel());
21084 } catch (e) { 21084 } catch (e) {
21085 throw __dom_wrap_exception(e); 21085 throw __dom_wrap_exception(e);
21086 } 21086 }
21087 } 21087 }
21088 21088
21089 function native__NotificationWrappingImplementation__dispatchEvent(_this, evt) { 21089 function native__NotificationWrappingImplementation__dispatchEvent_Notification( _this, evt) {
21090 try { 21090 try {
21091 return __dom_wrap(_this.$dom.dispatchEvent(__dom_unwrap(evt))); 21091 return __dom_wrap(_this.$dom.dispatchEvent(__dom_unwrap(evt)));
21092 } catch (e) { 21092 } catch (e) {
21093 throw __dom_wrap_exception(e); 21093 throw __dom_wrap_exception(e);
21094 } 21094 }
21095 } 21095 }
21096 21096
21097 function native__NotificationWrappingImplementation__removeEventListener(_this, type, listener) { 21097 function native__NotificationWrappingImplementation__removeEventListener_Notific ation(_this, type, listener) {
21098 try { 21098 try {
21099 return __dom_wrap(_this.$dom.removeEventListener(__dom_unwrap(type), __dom_u nwrap(listener))); 21099 return __dom_wrap(_this.$dom.removeEventListener(__dom_unwrap(type), __dom_u nwrap(listener)));
21100 } catch (e) { 21100 } catch (e) {
21101 throw __dom_wrap_exception(e); 21101 throw __dom_wrap_exception(e);
21102 } 21102 }
21103 } 21103 }
21104 21104
21105 function native__NotificationWrappingImplementation__removeEventListener_2(_this , type, listener, useCapture) { 21105 function native__NotificationWrappingImplementation__removeEventListener_Notific ation_2(_this, type, listener, useCapture) {
21106 try { 21106 try {
21107 return __dom_wrap(_this.$dom.removeEventListener(__dom_unwrap(type), __dom_u nwrap(listener), __dom_unwrap(useCapture))); 21107 return __dom_wrap(_this.$dom.removeEventListener(__dom_unwrap(type), __dom_u nwrap(listener), __dom_unwrap(useCapture)));
21108 } catch (e) { 21108 } catch (e) {
21109 throw __dom_wrap_exception(e); 21109 throw __dom_wrap_exception(e);
21110 } 21110 }
21111 } 21111 }
21112 21112
21113 function native__NotificationWrappingImplementation__show(_this) { 21113 function native__NotificationWrappingImplementation__show(_this) {
21114 try { 21114 try {
21115 return __dom_wrap(_this.$dom.show()); 21115 return __dom_wrap(_this.$dom.show());
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
21175 } 21175 }
21176 21176
21177 function native__OESVertexArrayObjectWrappingImplementation__isVertexArrayOES(_t his, arrayObject) { 21177 function native__OESVertexArrayObjectWrappingImplementation__isVertexArrayOES(_t his, arrayObject) {
21178 try { 21178 try {
21179 return __dom_wrap(_this.$dom.isVertexArrayOES(__dom_unwrap(arrayObject))); 21179 return __dom_wrap(_this.$dom.isVertexArrayOES(__dom_unwrap(arrayObject)));
21180 } catch (e) { 21180 } catch (e) {
21181 throw __dom_wrap_exception(e); 21181 throw __dom_wrap_exception(e);
21182 } 21182 }
21183 } 21183 }
21184 21184
21185 function native__OperationNotAllowedExceptionWrappingImplementation__get__Operat ionNotAllowedException_code(_this) { 21185 function native__OperationNotAllowedExceptionWrappingImplementation__get_code(_t his) {
21186 try { 21186 try {
21187 return __dom_wrap(_this.$dom.code); 21187 return __dom_wrap(_this.$dom.code);
21188 } catch (e) { 21188 } catch (e) {
21189 throw __dom_wrap_exception(e); 21189 throw __dom_wrap_exception(e);
21190 } 21190 }
21191 } 21191 }
21192 21192
21193 function native__OperationNotAllowedExceptionWrappingImplementation__get__Operat ionNotAllowedException_message(_this) { 21193 function native__OperationNotAllowedExceptionWrappingImplementation__get_message (_this) {
21194 try { 21194 try {
21195 return __dom_wrap(_this.$dom.message); 21195 return __dom_wrap(_this.$dom.message);
21196 } catch (e) { 21196 } catch (e) {
21197 throw __dom_wrap_exception(e); 21197 throw __dom_wrap_exception(e);
21198 } 21198 }
21199 } 21199 }
21200 21200
21201 function native__OperationNotAllowedExceptionWrappingImplementation__get__Operat ionNotAllowedException_name(_this) { 21201 function native__OperationNotAllowedExceptionWrappingImplementation__get_name(_t his) {
21202 try { 21202 try {
21203 return __dom_wrap(_this.$dom.name); 21203 return __dom_wrap(_this.$dom.name);
21204 } catch (e) { 21204 } catch (e) {
21205 throw __dom_wrap_exception(e); 21205 throw __dom_wrap_exception(e);
21206 } 21206 }
21207 } 21207 }
21208 21208
21209 function native__OperationNotAllowedExceptionWrappingImplementation__toString(_t his) { 21209 function native__OperationNotAllowedExceptionWrappingImplementation__toString(_t his) {
21210 try { 21210 try {
21211 return __dom_wrap(_this.$dom.toString()); 21211 return __dom_wrap(_this.$dom.toString());
21212 } catch (e) { 21212 } catch (e) {
21213 throw __dom_wrap_exception(e); 21213 throw __dom_wrap_exception(e);
21214 } 21214 }
21215 } 21215 }
21216 21216
21217 function native__OverflowEventWrappingImplementation__get__OverflowEvent_horizon talOverflow(_this) { 21217 function native__OverflowEventWrappingImplementation__get_horizontalOverflow(_th is) {
21218 try { 21218 try {
21219 return __dom_wrap(_this.$dom.horizontalOverflow); 21219 return __dom_wrap(_this.$dom.horizontalOverflow);
21220 } catch (e) { 21220 } catch (e) {
21221 throw __dom_wrap_exception(e); 21221 throw __dom_wrap_exception(e);
21222 } 21222 }
21223 } 21223 }
21224 21224
21225 function native__OverflowEventWrappingImplementation__get__OverflowEvent_orient( _this) { 21225 function native__OverflowEventWrappingImplementation__get_orient(_this) {
21226 try { 21226 try {
21227 return __dom_wrap(_this.$dom.orient); 21227 return __dom_wrap(_this.$dom.orient);
21228 } catch (e) { 21228 } catch (e) {
21229 throw __dom_wrap_exception(e); 21229 throw __dom_wrap_exception(e);
21230 } 21230 }
21231 } 21231 }
21232 21232
21233 function native__OverflowEventWrappingImplementation__get__OverflowEvent_vertica lOverflow(_this) { 21233 function native__OverflowEventWrappingImplementation__get_verticalOverflow(_this ) {
21234 try { 21234 try {
21235 return __dom_wrap(_this.$dom.verticalOverflow); 21235 return __dom_wrap(_this.$dom.verticalOverflow);
21236 } catch (e) { 21236 } catch (e) {
21237 throw __dom_wrap_exception(e); 21237 throw __dom_wrap_exception(e);
21238 } 21238 }
21239 } 21239 }
21240 21240
21241 function native__OverflowEventWrappingImplementation__initOverflowEvent(_this, o rient, horizontalOverflow, verticalOverflow) { 21241 function native__OverflowEventWrappingImplementation__initOverflowEvent(_this, o rient, horizontalOverflow, verticalOverflow) {
21242 try { 21242 try {
21243 return __dom_wrap(_this.$dom.initOverflowEvent(__dom_unwrap(orient), __dom_u nwrap(horizontalOverflow), __dom_unwrap(verticalOverflow))); 21243 return __dom_wrap(_this.$dom.initOverflowEvent(__dom_unwrap(orient), __dom_u nwrap(horizontalOverflow), __dom_unwrap(verticalOverflow)));
21244 } catch (e) { 21244 } catch (e) {
21245 throw __dom_wrap_exception(e); 21245 throw __dom_wrap_exception(e);
21246 } 21246 }
21247 } 21247 }
21248 21248
21249 function native__PageTransitionEventWrappingImplementation__get__PageTransitionE vent_persisted(_this) { 21249 function native__PageTransitionEventWrappingImplementation__get_persisted(_this) {
21250 try { 21250 try {
21251 return __dom_wrap(_this.$dom.persisted); 21251 return __dom_wrap(_this.$dom.persisted);
21252 } catch (e) { 21252 } catch (e) {
21253 throw __dom_wrap_exception(e); 21253 throw __dom_wrap_exception(e);
21254 } 21254 }
21255 } 21255 }
21256 21256
21257 function native__PageTransitionEventWrappingImplementation__initPageTransitionEv ent(_this, typeArg, canBubbleArg, cancelableArg, persisted) { 21257 function native__PageTransitionEventWrappingImplementation__initPageTransitionEv ent(_this, typeArg, canBubbleArg, cancelableArg, persisted) {
21258 try { 21258 try {
21259 return __dom_wrap(_this.$dom.initPageTransitionEvent(__dom_unwrap(typeArg), __dom_unwrap(canBubbleArg), __dom_unwrap(cancelableArg), __dom_unwrap(persisted) )); 21259 return __dom_wrap(_this.$dom.initPageTransitionEvent(__dom_unwrap(typeArg), __dom_unwrap(canBubbleArg), __dom_unwrap(cancelableArg), __dom_unwrap(persisted) ));
21260 } catch (e) { 21260 } catch (e) {
21261 throw __dom_wrap_exception(e); 21261 throw __dom_wrap_exception(e);
21262 } 21262 }
21263 } 21263 }
21264 21264
21265 function native__PerformanceWrappingImplementation__get__Performance_memory(_thi s) { 21265 function native__PerformanceWrappingImplementation__get_memory(_this) {
21266 try { 21266 try {
21267 return __dom_wrap(_this.$dom.memory); 21267 return __dom_wrap(_this.$dom.memory);
21268 } catch (e) { 21268 } catch (e) {
21269 throw __dom_wrap_exception(e); 21269 throw __dom_wrap_exception(e);
21270 } 21270 }
21271 } 21271 }
21272 21272
21273 function native__PerformanceWrappingImplementation__get__Performance_navigation( _this) { 21273 function native__PerformanceWrappingImplementation__get_navigation(_this) {
21274 try { 21274 try {
21275 return __dom_wrap(_this.$dom.navigation); 21275 return __dom_wrap(_this.$dom.navigation);
21276 } catch (e) { 21276 } catch (e) {
21277 throw __dom_wrap_exception(e); 21277 throw __dom_wrap_exception(e);
21278 } 21278 }
21279 } 21279 }
21280 21280
21281 function native__PerformanceWrappingImplementation__get__Performance_timing(_thi s) { 21281 function native__PerformanceWrappingImplementation__get_timing(_this) {
21282 try { 21282 try {
21283 return __dom_wrap(_this.$dom.timing); 21283 return __dom_wrap(_this.$dom.timing);
21284 } catch (e) { 21284 } catch (e) {
21285 throw __dom_wrap_exception(e); 21285 throw __dom_wrap_exception(e);
21286 } 21286 }
21287 } 21287 }
21288 21288
21289 function native__PerformanceNavigationWrappingImplementation__get__PerformanceNa vigation_redirectCount(_this) { 21289 function native__PerformanceNavigationWrappingImplementation__get_redirectCount( _this) {
21290 try { 21290 try {
21291 return __dom_wrap(_this.$dom.redirectCount); 21291 return __dom_wrap(_this.$dom.redirectCount);
21292 } catch (e) { 21292 } catch (e) {
21293 throw __dom_wrap_exception(e); 21293 throw __dom_wrap_exception(e);
21294 } 21294 }
21295 } 21295 }
21296 21296
21297 function native__PerformanceNavigationWrappingImplementation__get__PerformanceNa vigation_type(_this) { 21297 function native__PerformanceNavigationWrappingImplementation__get_type(_this) {
21298 try { 21298 try {
21299 return __dom_wrap(_this.$dom.type); 21299 return __dom_wrap(_this.$dom.type);
21300 } catch (e) { 21300 } catch (e) {
21301 throw __dom_wrap_exception(e); 21301 throw __dom_wrap_exception(e);
21302 } 21302 }
21303 } 21303 }
21304 21304
21305 function native__PerformanceTimingWrappingImplementation__get__PerformanceTiming _connectEnd(_this) { 21305 function native__PerformanceTimingWrappingImplementation__get_connectEnd(_this) {
21306 try { 21306 try {
21307 return __dom_wrap(_this.$dom.connectEnd); 21307 return __dom_wrap(_this.$dom.connectEnd);
21308 } catch (e) { 21308 } catch (e) {
21309 throw __dom_wrap_exception(e); 21309 throw __dom_wrap_exception(e);
21310 } 21310 }
21311 } 21311 }
21312 21312
21313 function native__PerformanceTimingWrappingImplementation__get__PerformanceTiming _connectStart(_this) { 21313 function native__PerformanceTimingWrappingImplementation__get_connectStart(_this ) {
21314 try { 21314 try {
21315 return __dom_wrap(_this.$dom.connectStart); 21315 return __dom_wrap(_this.$dom.connectStart);
21316 } catch (e) { 21316 } catch (e) {
21317 throw __dom_wrap_exception(e); 21317 throw __dom_wrap_exception(e);
21318 } 21318 }
21319 } 21319 }
21320 21320
21321 function native__PerformanceTimingWrappingImplementation__get__PerformanceTiming _domComplete(_this) { 21321 function native__PerformanceTimingWrappingImplementation__get_domComplete(_this) {
21322 try { 21322 try {
21323 return __dom_wrap(_this.$dom.domComplete); 21323 return __dom_wrap(_this.$dom.domComplete);
21324 } catch (e) { 21324 } catch (e) {
21325 throw __dom_wrap_exception(e); 21325 throw __dom_wrap_exception(e);
21326 } 21326 }
21327 } 21327 }
21328 21328
21329 function native__PerformanceTimingWrappingImplementation__get__PerformanceTiming _domContentLoadedEventEnd(_this) { 21329 function native__PerformanceTimingWrappingImplementation__get_domContentLoadedEv entEnd(_this) {
21330 try { 21330 try {
21331 return __dom_wrap(_this.$dom.domContentLoadedEventEnd); 21331 return __dom_wrap(_this.$dom.domContentLoadedEventEnd);
21332 } catch (e) { 21332 } catch (e) {
21333 throw __dom_wrap_exception(e); 21333 throw __dom_wrap_exception(e);
21334 } 21334 }
21335 } 21335 }
21336 21336
21337 function native__PerformanceTimingWrappingImplementation__get__PerformanceTiming _domContentLoadedEventStart(_this) { 21337 function native__PerformanceTimingWrappingImplementation__get_domContentLoadedEv entStart(_this) {
21338 try { 21338 try {
21339 return __dom_wrap(_this.$dom.domContentLoadedEventStart); 21339 return __dom_wrap(_this.$dom.domContentLoadedEventStart);
21340 } catch (e) { 21340 } catch (e) {
21341 throw __dom_wrap_exception(e); 21341 throw __dom_wrap_exception(e);
21342 } 21342 }
21343 } 21343 }
21344 21344
21345 function native__PerformanceTimingWrappingImplementation__get__PerformanceTiming _domInteractive(_this) { 21345 function native__PerformanceTimingWrappingImplementation__get_domInteractive(_th is) {
21346 try { 21346 try {
21347 return __dom_wrap(_this.$dom.domInteractive); 21347 return __dom_wrap(_this.$dom.domInteractive);
21348 } catch (e) { 21348 } catch (e) {
21349 throw __dom_wrap_exception(e); 21349 throw __dom_wrap_exception(e);
21350 } 21350 }
21351 } 21351 }
21352 21352
21353 function native__PerformanceTimingWrappingImplementation__get__PerformanceTiming _domLoading(_this) { 21353 function native__PerformanceTimingWrappingImplementation__get_domLoading(_this) {
21354 try { 21354 try {
21355 return __dom_wrap(_this.$dom.domLoading); 21355 return __dom_wrap(_this.$dom.domLoading);
21356 } catch (e) { 21356 } catch (e) {
21357 throw __dom_wrap_exception(e); 21357 throw __dom_wrap_exception(e);
21358 } 21358 }
21359 } 21359 }
21360 21360
21361 function native__PerformanceTimingWrappingImplementation__get__PerformanceTiming _domainLookupEnd(_this) { 21361 function native__PerformanceTimingWrappingImplementation__get_domainLookupEnd(_t his) {
21362 try { 21362 try {
21363 return __dom_wrap(_this.$dom.domainLookupEnd); 21363 return __dom_wrap(_this.$dom.domainLookupEnd);
21364 } catch (e) { 21364 } catch (e) {
21365 throw __dom_wrap_exception(e); 21365 throw __dom_wrap_exception(e);
21366 } 21366 }
21367 } 21367 }
21368 21368
21369 function native__PerformanceTimingWrappingImplementation__get__PerformanceTiming _domainLookupStart(_this) { 21369 function native__PerformanceTimingWrappingImplementation__get_domainLookupStart( _this) {
21370 try { 21370 try {
21371 return __dom_wrap(_this.$dom.domainLookupStart); 21371 return __dom_wrap(_this.$dom.domainLookupStart);
21372 } catch (e) { 21372 } catch (e) {
21373 throw __dom_wrap_exception(e); 21373 throw __dom_wrap_exception(e);
21374 } 21374 }
21375 } 21375 }
21376 21376
21377 function native__PerformanceTimingWrappingImplementation__get__PerformanceTiming _fetchStart(_this) { 21377 function native__PerformanceTimingWrappingImplementation__get_fetchStart(_this) {
21378 try { 21378 try {
21379 return __dom_wrap(_this.$dom.fetchStart); 21379 return __dom_wrap(_this.$dom.fetchStart);
21380 } catch (e) { 21380 } catch (e) {
21381 throw __dom_wrap_exception(e); 21381 throw __dom_wrap_exception(e);
21382 } 21382 }
21383 } 21383 }
21384 21384
21385 function native__PerformanceTimingWrappingImplementation__get__PerformanceTiming _loadEventEnd(_this) { 21385 function native__PerformanceTimingWrappingImplementation__get_loadEventEnd(_this ) {
21386 try { 21386 try {
21387 return __dom_wrap(_this.$dom.loadEventEnd); 21387 return __dom_wrap(_this.$dom.loadEventEnd);
21388 } catch (e) { 21388 } catch (e) {
21389 throw __dom_wrap_exception(e); 21389 throw __dom_wrap_exception(e);
21390 } 21390 }
21391 } 21391 }
21392 21392
21393 function native__PerformanceTimingWrappingImplementation__get__PerformanceTiming _loadEventStart(_this) { 21393 function native__PerformanceTimingWrappingImplementation__get_loadEventStart(_th is) {
21394 try { 21394 try {
21395 return __dom_wrap(_this.$dom.loadEventStart); 21395 return __dom_wrap(_this.$dom.loadEventStart);
21396 } catch (e) { 21396 } catch (e) {
21397 throw __dom_wrap_exception(e); 21397 throw __dom_wrap_exception(e);
21398 } 21398 }
21399 } 21399 }
21400 21400
21401 function native__PerformanceTimingWrappingImplementation__get__PerformanceTiming _navigationStart(_this) { 21401 function native__PerformanceTimingWrappingImplementation__get_navigationStart(_t his) {
21402 try { 21402 try {
21403 return __dom_wrap(_this.$dom.navigationStart); 21403 return __dom_wrap(_this.$dom.navigationStart);
21404 } catch (e) { 21404 } catch (e) {
21405 throw __dom_wrap_exception(e); 21405 throw __dom_wrap_exception(e);
21406 } 21406 }
21407 } 21407 }
21408 21408
21409 function native__PerformanceTimingWrappingImplementation__get__PerformanceTiming _redirectEnd(_this) { 21409 function native__PerformanceTimingWrappingImplementation__get_redirectEnd(_this) {
21410 try { 21410 try {
21411 return __dom_wrap(_this.$dom.redirectEnd); 21411 return __dom_wrap(_this.$dom.redirectEnd);
21412 } catch (e) { 21412 } catch (e) {
21413 throw __dom_wrap_exception(e); 21413 throw __dom_wrap_exception(e);
21414 } 21414 }
21415 } 21415 }
21416 21416
21417 function native__PerformanceTimingWrappingImplementation__get__PerformanceTiming _redirectStart(_this) { 21417 function native__PerformanceTimingWrappingImplementation__get_redirectStart(_thi s) {
21418 try { 21418 try {
21419 return __dom_wrap(_this.$dom.redirectStart); 21419 return __dom_wrap(_this.$dom.redirectStart);
21420 } catch (e) { 21420 } catch (e) {
21421 throw __dom_wrap_exception(e); 21421 throw __dom_wrap_exception(e);
21422 } 21422 }
21423 } 21423 }
21424 21424
21425 function native__PerformanceTimingWrappingImplementation__get__PerformanceTiming _requestStart(_this) { 21425 function native__PerformanceTimingWrappingImplementation__get_requestStart(_this ) {
21426 try { 21426 try {
21427 return __dom_wrap(_this.$dom.requestStart); 21427 return __dom_wrap(_this.$dom.requestStart);
21428 } catch (e) { 21428 } catch (e) {
21429 throw __dom_wrap_exception(e); 21429 throw __dom_wrap_exception(e);
21430 } 21430 }
21431 } 21431 }
21432 21432
21433 function native__PerformanceTimingWrappingImplementation__get__PerformanceTiming _responseEnd(_this) { 21433 function native__PerformanceTimingWrappingImplementation__get_responseEnd(_this) {
21434 try { 21434 try {
21435 return __dom_wrap(_this.$dom.responseEnd); 21435 return __dom_wrap(_this.$dom.responseEnd);
21436 } catch (e) { 21436 } catch (e) {
21437 throw __dom_wrap_exception(e); 21437 throw __dom_wrap_exception(e);
21438 } 21438 }
21439 } 21439 }
21440 21440
21441 function native__PerformanceTimingWrappingImplementation__get__PerformanceTiming _responseStart(_this) { 21441 function native__PerformanceTimingWrappingImplementation__get_responseStart(_thi s) {
21442 try { 21442 try {
21443 return __dom_wrap(_this.$dom.responseStart); 21443 return __dom_wrap(_this.$dom.responseStart);
21444 } catch (e) { 21444 } catch (e) {
21445 throw __dom_wrap_exception(e); 21445 throw __dom_wrap_exception(e);
21446 } 21446 }
21447 } 21447 }
21448 21448
21449 function native__PerformanceTimingWrappingImplementation__get__PerformanceTiming _secureConnectionStart(_this) { 21449 function native__PerformanceTimingWrappingImplementation__get_secureConnectionSt art(_this) {
21450 try { 21450 try {
21451 return __dom_wrap(_this.$dom.secureConnectionStart); 21451 return __dom_wrap(_this.$dom.secureConnectionStart);
21452 } catch (e) { 21452 } catch (e) {
21453 throw __dom_wrap_exception(e); 21453 throw __dom_wrap_exception(e);
21454 } 21454 }
21455 } 21455 }
21456 21456
21457 function native__PerformanceTimingWrappingImplementation__get__PerformanceTiming _unloadEventEnd(_this) { 21457 function native__PerformanceTimingWrappingImplementation__get_unloadEventEnd(_th is) {
21458 try { 21458 try {
21459 return __dom_wrap(_this.$dom.unloadEventEnd); 21459 return __dom_wrap(_this.$dom.unloadEventEnd);
21460 } catch (e) { 21460 } catch (e) {
21461 throw __dom_wrap_exception(e); 21461 throw __dom_wrap_exception(e);
21462 } 21462 }
21463 } 21463 }
21464 21464
21465 function native__PerformanceTimingWrappingImplementation__get__PerformanceTiming _unloadEventStart(_this) { 21465 function native__PerformanceTimingWrappingImplementation__get_unloadEventStart(_ this) {
21466 try { 21466 try {
21467 return __dom_wrap(_this.$dom.unloadEventStart); 21467 return __dom_wrap(_this.$dom.unloadEventStart);
21468 } catch (e) { 21468 } catch (e) {
21469 throw __dom_wrap_exception(e); 21469 throw __dom_wrap_exception(e);
21470 } 21470 }
21471 } 21471 }
21472 21472
21473 function native__PopStateEventWrappingImplementation__get__PopStateEvent_state(_ this) { 21473 function native__PopStateEventWrappingImplementation__get_state(_this) {
21474 try { 21474 try {
21475 return __dom_wrap(_this.$dom.state); 21475 return __dom_wrap(_this.$dom.state);
21476 } catch (e) { 21476 } catch (e) {
21477 throw __dom_wrap_exception(e); 21477 throw __dom_wrap_exception(e);
21478 } 21478 }
21479 } 21479 }
21480 21480
21481 function native__PopStateEventWrappingImplementation__initPopStateEvent(_this, t ypeArg, canBubbleArg, cancelableArg, stateArg) { 21481 function native__PopStateEventWrappingImplementation__initPopStateEvent(_this, t ypeArg, canBubbleArg, cancelableArg, stateArg) {
21482 try { 21482 try {
21483 return __dom_wrap(_this.$dom.initPopStateEvent(__dom_unwrap(typeArg), __dom_ unwrap(canBubbleArg), __dom_unwrap(cancelableArg), __dom_unwrap(stateArg))); 21483 return __dom_wrap(_this.$dom.initPopStateEvent(__dom_unwrap(typeArg), __dom_ unwrap(canBubbleArg), __dom_unwrap(cancelableArg), __dom_unwrap(stateArg)));
21484 } catch (e) { 21484 } catch (e) {
21485 throw __dom_wrap_exception(e); 21485 throw __dom_wrap_exception(e);
21486 } 21486 }
21487 } 21487 }
21488 21488
21489 function native__PositionCallbackWrappingImplementation__handleEvent(_this, posi tion) { 21489 function native__PositionCallbackWrappingImplementation__handleEvent(_this, posi tion) {
21490 try { 21490 try {
21491 return __dom_wrap(_this.$dom.handleEvent(__dom_unwrap(position))); 21491 return __dom_wrap(_this.$dom.handleEvent(__dom_unwrap(position)));
21492 } catch (e) { 21492 } catch (e) {
21493 throw __dom_wrap_exception(e); 21493 throw __dom_wrap_exception(e);
21494 } 21494 }
21495 } 21495 }
21496 21496
21497 function native__PositionErrorWrappingImplementation__get__PositionError_code(_t his) { 21497 function native__PositionErrorWrappingImplementation__get_code(_this) {
21498 try { 21498 try {
21499 return __dom_wrap(_this.$dom.code); 21499 return __dom_wrap(_this.$dom.code);
21500 } catch (e) { 21500 } catch (e) {
21501 throw __dom_wrap_exception(e); 21501 throw __dom_wrap_exception(e);
21502 } 21502 }
21503 } 21503 }
21504 21504
21505 function native__PositionErrorWrappingImplementation__get__PositionError_message (_this) { 21505 function native__PositionErrorWrappingImplementation__get_message(_this) {
21506 try { 21506 try {
21507 return __dom_wrap(_this.$dom.message); 21507 return __dom_wrap(_this.$dom.message);
21508 } catch (e) { 21508 } catch (e) {
21509 throw __dom_wrap_exception(e); 21509 throw __dom_wrap_exception(e);
21510 } 21510 }
21511 } 21511 }
21512 21512
21513 function native__PositionErrorCallbackWrappingImplementation__handleEvent(_this, error) { 21513 function native__PositionErrorCallbackWrappingImplementation__handleEvent(_this, error) {
21514 try { 21514 try {
21515 return __dom_wrap(_this.$dom.handleEvent(__dom_unwrap(error))); 21515 return __dom_wrap(_this.$dom.handleEvent(__dom_unwrap(error)));
21516 } catch (e) { 21516 } catch (e) {
21517 throw __dom_wrap_exception(e); 21517 throw __dom_wrap_exception(e);
21518 } 21518 }
21519 } 21519 }
21520 21520
21521 function native__ProcessingInstructionWrappingImplementation__get__ProcessingIns truction_data(_this) { 21521 function native__ProcessingInstructionWrappingImplementation__get_data(_this) {
21522 try { 21522 try {
21523 return __dom_wrap(_this.$dom.data); 21523 return __dom_wrap(_this.$dom.data);
21524 } catch (e) { 21524 } catch (e) {
21525 throw __dom_wrap_exception(e); 21525 throw __dom_wrap_exception(e);
21526 } 21526 }
21527 } 21527 }
21528 21528
21529 function native__ProcessingInstructionWrappingImplementation__set__ProcessingIns truction_data(_this, value) { 21529 function native__ProcessingInstructionWrappingImplementation__set_data(_this, va lue) {
21530 try { 21530 try {
21531 _this.$dom.data = __dom_unwrap(value); 21531 _this.$dom.data = __dom_unwrap(value);
21532 } catch (e) { 21532 } catch (e) {
21533 throw __dom_wrap_exception(e); 21533 throw __dom_wrap_exception(e);
21534 } 21534 }
21535 } 21535 }
21536 21536
21537 function native__ProcessingInstructionWrappingImplementation__get__ProcessingIns truction_sheet(_this) { 21537 function native__ProcessingInstructionWrappingImplementation__get_sheet(_this) {
21538 try { 21538 try {
21539 return __dom_wrap(_this.$dom.sheet); 21539 return __dom_wrap(_this.$dom.sheet);
21540 } catch (e) { 21540 } catch (e) {
21541 throw __dom_wrap_exception(e); 21541 throw __dom_wrap_exception(e);
21542 } 21542 }
21543 } 21543 }
21544 21544
21545 function native__ProcessingInstructionWrappingImplementation__get__ProcessingIns truction_target(_this) { 21545 function native__ProcessingInstructionWrappingImplementation__get_target(_this) {
21546 try { 21546 try {
21547 return __dom_wrap(_this.$dom.target); 21547 return __dom_wrap(_this.$dom.target);
21548 } catch (e) { 21548 } catch (e) {
21549 throw __dom_wrap_exception(e); 21549 throw __dom_wrap_exception(e);
21550 } 21550 }
21551 } 21551 }
21552 21552
21553 function native__ProgressEventWrappingImplementation__get__ProgressEvent_lengthC omputable(_this) { 21553 function native__ProgressEventWrappingImplementation__get_lengthComputable(_this ) {
21554 try { 21554 try {
21555 return __dom_wrap(_this.$dom.lengthComputable); 21555 return __dom_wrap(_this.$dom.lengthComputable);
21556 } catch (e) { 21556 } catch (e) {
21557 throw __dom_wrap_exception(e); 21557 throw __dom_wrap_exception(e);
21558 } 21558 }
21559 } 21559 }
21560 21560
21561 function native__ProgressEventWrappingImplementation__get__ProgressEvent_loaded( _this) { 21561 function native__ProgressEventWrappingImplementation__get_loaded(_this) {
21562 try { 21562 try {
21563 return __dom_wrap(_this.$dom.loaded); 21563 return __dom_wrap(_this.$dom.loaded);
21564 } catch (e) { 21564 } catch (e) {
21565 throw __dom_wrap_exception(e); 21565 throw __dom_wrap_exception(e);
21566 } 21566 }
21567 } 21567 }
21568 21568
21569 function native__ProgressEventWrappingImplementation__get__ProgressEvent_total(_ this) { 21569 function native__ProgressEventWrappingImplementation__get_total(_this) {
21570 try { 21570 try {
21571 return __dom_wrap(_this.$dom.total); 21571 return __dom_wrap(_this.$dom.total);
21572 } catch (e) { 21572 } catch (e) {
21573 throw __dom_wrap_exception(e); 21573 throw __dom_wrap_exception(e);
21574 } 21574 }
21575 } 21575 }
21576 21576
21577 function native__ProgressEventWrappingImplementation__initProgressEvent(_this, t ypeArg, canBubbleArg, cancelableArg, lengthComputableArg, loadedArg, totalArg) { 21577 function native__ProgressEventWrappingImplementation__initProgressEvent(_this, t ypeArg, canBubbleArg, cancelableArg, lengthComputableArg, loadedArg, totalArg) {
21578 try { 21578 try {
21579 return __dom_wrap(_this.$dom.initProgressEvent(__dom_unwrap(typeArg), __dom_ unwrap(canBubbleArg), __dom_unwrap(cancelableArg), __dom_unwrap(lengthComputable Arg), __dom_unwrap(loadedArg), __dom_unwrap(totalArg))); 21579 return __dom_wrap(_this.$dom.initProgressEvent(__dom_unwrap(typeArg), __dom_ unwrap(canBubbleArg), __dom_unwrap(cancelableArg), __dom_unwrap(lengthComputable Arg), __dom_unwrap(loadedArg), __dom_unwrap(totalArg)));
21580 } catch (e) { 21580 } catch (e) {
21581 throw __dom_wrap_exception(e); 21581 throw __dom_wrap_exception(e);
21582 } 21582 }
21583 } 21583 }
21584 21584
21585 function native__RGBColorWrappingImplementation__get__RGBColor_blue(_this) { 21585 function native__RGBColorWrappingImplementation__get_blue(_this) {
21586 try { 21586 try {
21587 return __dom_wrap(_this.$dom.blue); 21587 return __dom_wrap(_this.$dom.blue);
21588 } catch (e) { 21588 } catch (e) {
21589 throw __dom_wrap_exception(e); 21589 throw __dom_wrap_exception(e);
21590 } 21590 }
21591 } 21591 }
21592 21592
21593 function native__RGBColorWrappingImplementation__get__RGBColor_green(_this) { 21593 function native__RGBColorWrappingImplementation__get_green(_this) {
21594 try { 21594 try {
21595 return __dom_wrap(_this.$dom.green); 21595 return __dom_wrap(_this.$dom.green);
21596 } catch (e) { 21596 } catch (e) {
21597 throw __dom_wrap_exception(e); 21597 throw __dom_wrap_exception(e);
21598 } 21598 }
21599 } 21599 }
21600 21600
21601 function native__RGBColorWrappingImplementation__get__RGBColor_red(_this) { 21601 function native__RGBColorWrappingImplementation__get_red(_this) {
21602 try { 21602 try {
21603 return __dom_wrap(_this.$dom.red); 21603 return __dom_wrap(_this.$dom.red);
21604 } catch (e) { 21604 } catch (e) {
21605 throw __dom_wrap_exception(e); 21605 throw __dom_wrap_exception(e);
21606 } 21606 }
21607 } 21607 }
21608 21608
21609 function native__RangeWrappingImplementation__get__Range_collapsed(_this) { 21609 function native__RangeWrappingImplementation__get_collapsed(_this) {
21610 try { 21610 try {
21611 return __dom_wrap(_this.$dom.collapsed); 21611 return __dom_wrap(_this.$dom.collapsed);
21612 } catch (e) { 21612 } catch (e) {
21613 throw __dom_wrap_exception(e); 21613 throw __dom_wrap_exception(e);
21614 } 21614 }
21615 } 21615 }
21616 21616
21617 function native__RangeWrappingImplementation__get__Range_commonAncestorContainer (_this) { 21617 function native__RangeWrappingImplementation__get_commonAncestorContainer(_this) {
21618 try { 21618 try {
21619 return __dom_wrap(_this.$dom.commonAncestorContainer); 21619 return __dom_wrap(_this.$dom.commonAncestorContainer);
21620 } catch (e) { 21620 } catch (e) {
21621 throw __dom_wrap_exception(e); 21621 throw __dom_wrap_exception(e);
21622 } 21622 }
21623 } 21623 }
21624 21624
21625 function native__RangeWrappingImplementation__get__Range_endContainer(_this) { 21625 function native__RangeWrappingImplementation__get_endContainer(_this) {
21626 try { 21626 try {
21627 return __dom_wrap(_this.$dom.endContainer); 21627 return __dom_wrap(_this.$dom.endContainer);
21628 } catch (e) { 21628 } catch (e) {
21629 throw __dom_wrap_exception(e); 21629 throw __dom_wrap_exception(e);
21630 } 21630 }
21631 } 21631 }
21632 21632
21633 function native__RangeWrappingImplementation__get__Range_endOffset(_this) { 21633 function native__RangeWrappingImplementation__get_endOffset(_this) {
21634 try { 21634 try {
21635 return __dom_wrap(_this.$dom.endOffset); 21635 return __dom_wrap(_this.$dom.endOffset);
21636 } catch (e) { 21636 } catch (e) {
21637 throw __dom_wrap_exception(e); 21637 throw __dom_wrap_exception(e);
21638 } 21638 }
21639 } 21639 }
21640 21640
21641 function native__RangeWrappingImplementation__get__Range_startContainer(_this) { 21641 function native__RangeWrappingImplementation__get_startContainer(_this) {
21642 try { 21642 try {
21643 return __dom_wrap(_this.$dom.startContainer); 21643 return __dom_wrap(_this.$dom.startContainer);
21644 } catch (e) { 21644 } catch (e) {
21645 throw __dom_wrap_exception(e); 21645 throw __dom_wrap_exception(e);
21646 } 21646 }
21647 } 21647 }
21648 21648
21649 function native__RangeWrappingImplementation__get__Range_startOffset(_this) { 21649 function native__RangeWrappingImplementation__get_startOffset(_this) {
21650 try { 21650 try {
21651 return __dom_wrap(_this.$dom.startOffset); 21651 return __dom_wrap(_this.$dom.startOffset);
21652 } catch (e) { 21652 } catch (e) {
21653 throw __dom_wrap_exception(e); 21653 throw __dom_wrap_exception(e);
21654 } 21654 }
21655 } 21655 }
21656 21656
21657 function native__RangeWrappingImplementation__cloneContents(_this) { 21657 function native__RangeWrappingImplementation__cloneContents(_this) {
21658 try { 21658 try {
21659 return __dom_wrap(_this.$dom.cloneContents()); 21659 return __dom_wrap(_this.$dom.cloneContents());
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
21847 } 21847 }
21848 21848
21849 function native__RangeWrappingImplementation__toString(_this) { 21849 function native__RangeWrappingImplementation__toString(_this) {
21850 try { 21850 try {
21851 return __dom_wrap(_this.$dom.toString()); 21851 return __dom_wrap(_this.$dom.toString());
21852 } catch (e) { 21852 } catch (e) {
21853 throw __dom_wrap_exception(e); 21853 throw __dom_wrap_exception(e);
21854 } 21854 }
21855 } 21855 }
21856 21856
21857 function native__RangeExceptionWrappingImplementation__get__RangeException_code( _this) { 21857 function native__RangeExceptionWrappingImplementation__get_code(_this) {
21858 try { 21858 try {
21859 return __dom_wrap(_this.$dom.code); 21859 return __dom_wrap(_this.$dom.code);
21860 } catch (e) { 21860 } catch (e) {
21861 throw __dom_wrap_exception(e); 21861 throw __dom_wrap_exception(e);
21862 } 21862 }
21863 } 21863 }
21864 21864
21865 function native__RangeExceptionWrappingImplementation__get__RangeException_messa ge(_this) { 21865 function native__RangeExceptionWrappingImplementation__get_message(_this) {
21866 try { 21866 try {
21867 return __dom_wrap(_this.$dom.message); 21867 return __dom_wrap(_this.$dom.message);
21868 } catch (e) { 21868 } catch (e) {
21869 throw __dom_wrap_exception(e); 21869 throw __dom_wrap_exception(e);
21870 } 21870 }
21871 } 21871 }
21872 21872
21873 function native__RangeExceptionWrappingImplementation__get__RangeException_name( _this) { 21873 function native__RangeExceptionWrappingImplementation__get_name(_this) {
21874 try { 21874 try {
21875 return __dom_wrap(_this.$dom.name); 21875 return __dom_wrap(_this.$dom.name);
21876 } catch (e) { 21876 } catch (e) {
21877 throw __dom_wrap_exception(e); 21877 throw __dom_wrap_exception(e);
21878 } 21878 }
21879 } 21879 }
21880 21880
21881 function native__RangeExceptionWrappingImplementation__toString(_this) { 21881 function native__RangeExceptionWrappingImplementation__toString(_this) {
21882 try { 21882 try {
21883 return __dom_wrap(_this.$dom.toString()); 21883 return __dom_wrap(_this.$dom.toString());
21884 } catch (e) { 21884 } catch (e) {
21885 throw __dom_wrap_exception(e); 21885 throw __dom_wrap_exception(e);
21886 } 21886 }
21887 } 21887 }
21888 21888
21889 function native__RectWrappingImplementation__get__Rect_bottom(_this) { 21889 function native__RectWrappingImplementation__get_bottom(_this) {
21890 try { 21890 try {
21891 return __dom_wrap(_this.$dom.bottom); 21891 return __dom_wrap(_this.$dom.bottom);
21892 } catch (e) { 21892 } catch (e) {
21893 throw __dom_wrap_exception(e); 21893 throw __dom_wrap_exception(e);
21894 } 21894 }
21895 } 21895 }
21896 21896
21897 function native__RectWrappingImplementation__get__Rect_left(_this) { 21897 function native__RectWrappingImplementation__get_left(_this) {
21898 try { 21898 try {
21899 return __dom_wrap(_this.$dom.left); 21899 return __dom_wrap(_this.$dom.left);
21900 } catch (e) { 21900 } catch (e) {
21901 throw __dom_wrap_exception(e); 21901 throw __dom_wrap_exception(e);
21902 } 21902 }
21903 } 21903 }
21904 21904
21905 function native__RectWrappingImplementation__get__Rect_right(_this) { 21905 function native__RectWrappingImplementation__get_right(_this) {
21906 try { 21906 try {
21907 return __dom_wrap(_this.$dom.right); 21907 return __dom_wrap(_this.$dom.right);
21908 } catch (e) { 21908 } catch (e) {
21909 throw __dom_wrap_exception(e); 21909 throw __dom_wrap_exception(e);
21910 } 21910 }
21911 } 21911 }
21912 21912
21913 function native__RectWrappingImplementation__get__Rect_top(_this) { 21913 function native__RectWrappingImplementation__get_top(_this) {
21914 try { 21914 try {
21915 return __dom_wrap(_this.$dom.top); 21915 return __dom_wrap(_this.$dom.top);
21916 } catch (e) { 21916 } catch (e) {
21917 throw __dom_wrap_exception(e); 21917 throw __dom_wrap_exception(e);
21918 } 21918 }
21919 } 21919 }
21920 21920
21921 function native__SQLErrorWrappingImplementation__get__SQLError_code(_this) { 21921 function native__SQLErrorWrappingImplementation__get_code(_this) {
21922 try { 21922 try {
21923 return __dom_wrap(_this.$dom.code); 21923 return __dom_wrap(_this.$dom.code);
21924 } catch (e) { 21924 } catch (e) {
21925 throw __dom_wrap_exception(e); 21925 throw __dom_wrap_exception(e);
21926 } 21926 }
21927 } 21927 }
21928 21928
21929 function native__SQLErrorWrappingImplementation__get__SQLError_message(_this) { 21929 function native__SQLErrorWrappingImplementation__get_message(_this) {
21930 try { 21930 try {
21931 return __dom_wrap(_this.$dom.message); 21931 return __dom_wrap(_this.$dom.message);
21932 } catch (e) { 21932 } catch (e) {
21933 throw __dom_wrap_exception(e); 21933 throw __dom_wrap_exception(e);
21934 } 21934 }
21935 } 21935 }
21936 21936
21937 function native__SQLExceptionWrappingImplementation__get__SQLException_code(_thi s) { 21937 function native__SQLExceptionWrappingImplementation__get_code(_this) {
21938 try { 21938 try {
21939 return __dom_wrap(_this.$dom.code); 21939 return __dom_wrap(_this.$dom.code);
21940 } catch (e) { 21940 } catch (e) {
21941 throw __dom_wrap_exception(e); 21941 throw __dom_wrap_exception(e);
21942 } 21942 }
21943 } 21943 }
21944 21944
21945 function native__SQLExceptionWrappingImplementation__get__SQLException_message(_ this) { 21945 function native__SQLExceptionWrappingImplementation__get_message(_this) {
21946 try { 21946 try {
21947 return __dom_wrap(_this.$dom.message); 21947 return __dom_wrap(_this.$dom.message);
21948 } catch (e) { 21948 } catch (e) {
21949 throw __dom_wrap_exception(e); 21949 throw __dom_wrap_exception(e);
21950 } 21950 }
21951 } 21951 }
21952 21952
21953 function native__SQLResultSetWrappingImplementation__get__SQLResultSet_insertId( _this) { 21953 function native__SQLResultSetWrappingImplementation__get_insertId(_this) {
21954 try { 21954 try {
21955 return __dom_wrap(_this.$dom.insertId); 21955 return __dom_wrap(_this.$dom.insertId);
21956 } catch (e) { 21956 } catch (e) {
21957 throw __dom_wrap_exception(e); 21957 throw __dom_wrap_exception(e);
21958 } 21958 }
21959 } 21959 }
21960 21960
21961 function native__SQLResultSetWrappingImplementation__get__SQLResultSet_rows(_thi s) { 21961 function native__SQLResultSetWrappingImplementation__get_rows(_this) {
21962 try { 21962 try {
21963 return __dom_wrap(_this.$dom.rows); 21963 return __dom_wrap(_this.$dom.rows);
21964 } catch (e) { 21964 } catch (e) {
21965 throw __dom_wrap_exception(e); 21965 throw __dom_wrap_exception(e);
21966 } 21966 }
21967 } 21967 }
21968 21968
21969 function native__SQLResultSetWrappingImplementation__get__SQLResultSet_rowsAffec ted(_this) { 21969 function native__SQLResultSetWrappingImplementation__get_rowsAffected(_this) {
21970 try { 21970 try {
21971 return __dom_wrap(_this.$dom.rowsAffected); 21971 return __dom_wrap(_this.$dom.rowsAffected);
21972 } catch (e) { 21972 } catch (e) {
21973 throw __dom_wrap_exception(e); 21973 throw __dom_wrap_exception(e);
21974 } 21974 }
21975 } 21975 }
21976 21976
21977 function native__SQLResultSetRowListWrappingImplementation__get__SQLResultSetRow List_length(_this) { 21977 function native__SQLResultSetRowListWrappingImplementation__get_length(_this) {
21978 try { 21978 try {
21979 return __dom_wrap(_this.$dom.length); 21979 return __dom_wrap(_this.$dom.length);
21980 } catch (e) { 21980 } catch (e) {
21981 throw __dom_wrap_exception(e); 21981 throw __dom_wrap_exception(e);
21982 } 21982 }
21983 } 21983 }
21984 21984
21985 function native__SQLResultSetRowListWrappingImplementation__item(_this, index) { 21985 function native__SQLResultSetRowListWrappingImplementation__item(_this, index) {
21986 try { 21986 try {
21987 return __dom_wrap(_this.$dom.item(__dom_unwrap(index))); 21987 return __dom_wrap(_this.$dom.item(__dom_unwrap(index)));
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
22023 } 22023 }
22024 22024
22025 function native__SQLTransactionSyncCallbackWrappingImplementation__handleEvent(_ this, transaction) { 22025 function native__SQLTransactionSyncCallbackWrappingImplementation__handleEvent(_ this, transaction) {
22026 try { 22026 try {
22027 return __dom_wrap(_this.$dom.handleEvent(__dom_unwrap(transaction))); 22027 return __dom_wrap(_this.$dom.handleEvent(__dom_unwrap(transaction)));
22028 } catch (e) { 22028 } catch (e) {
22029 throw __dom_wrap_exception(e); 22029 throw __dom_wrap_exception(e);
22030 } 22030 }
22031 } 22031 }
22032 22032
22033 function native__ScreenWrappingImplementation__get__Screen_availHeight(_this) { 22033 function native__ScreenWrappingImplementation__get_availHeight(_this) {
22034 try { 22034 try {
22035 return __dom_wrap(_this.$dom.availHeight); 22035 return __dom_wrap(_this.$dom.availHeight);
22036 } catch (e) { 22036 } catch (e) {
22037 throw __dom_wrap_exception(e); 22037 throw __dom_wrap_exception(e);
22038 } 22038 }
22039 } 22039 }
22040 22040
22041 function native__ScreenWrappingImplementation__get__Screen_availLeft(_this) { 22041 function native__ScreenWrappingImplementation__get_availLeft(_this) {
22042 try { 22042 try {
22043 return __dom_wrap(_this.$dom.availLeft); 22043 return __dom_wrap(_this.$dom.availLeft);
22044 } catch (e) { 22044 } catch (e) {
22045 throw __dom_wrap_exception(e); 22045 throw __dom_wrap_exception(e);
22046 } 22046 }
22047 } 22047 }
22048 22048
22049 function native__ScreenWrappingImplementation__get__Screen_availTop(_this) { 22049 function native__ScreenWrappingImplementation__get_availTop(_this) {
22050 try { 22050 try {
22051 return __dom_wrap(_this.$dom.availTop); 22051 return __dom_wrap(_this.$dom.availTop);
22052 } catch (e) { 22052 } catch (e) {
22053 throw __dom_wrap_exception(e); 22053 throw __dom_wrap_exception(e);
22054 } 22054 }
22055 } 22055 }
22056 22056
22057 function native__ScreenWrappingImplementation__get__Screen_availWidth(_this) { 22057 function native__ScreenWrappingImplementation__get_availWidth(_this) {
22058 try { 22058 try {
22059 return __dom_wrap(_this.$dom.availWidth); 22059 return __dom_wrap(_this.$dom.availWidth);
22060 } catch (e) { 22060 } catch (e) {
22061 throw __dom_wrap_exception(e); 22061 throw __dom_wrap_exception(e);
22062 } 22062 }
22063 } 22063 }
22064 22064
22065 function native__ScreenWrappingImplementation__get__Screen_colorDepth(_this) { 22065 function native__ScreenWrappingImplementation__get_colorDepth(_this) {
22066 try { 22066 try {
22067 return __dom_wrap(_this.$dom.colorDepth); 22067 return __dom_wrap(_this.$dom.colorDepth);
22068 } catch (e) { 22068 } catch (e) {
22069 throw __dom_wrap_exception(e); 22069 throw __dom_wrap_exception(e);
22070 } 22070 }
22071 } 22071 }
22072 22072
22073 function native__ScreenWrappingImplementation__get__Screen_height(_this) { 22073 function native__ScreenWrappingImplementation__get_height(_this) {
22074 try { 22074 try {
22075 return __dom_wrap(_this.$dom.height); 22075 return __dom_wrap(_this.$dom.height);
22076 } catch (e) { 22076 } catch (e) {
22077 throw __dom_wrap_exception(e); 22077 throw __dom_wrap_exception(e);
22078 } 22078 }
22079 } 22079 }
22080 22080
22081 function native__ScreenWrappingImplementation__get__Screen_pixelDepth(_this) { 22081 function native__ScreenWrappingImplementation__get_pixelDepth(_this) {
22082 try { 22082 try {
22083 return __dom_wrap(_this.$dom.pixelDepth); 22083 return __dom_wrap(_this.$dom.pixelDepth);
22084 } catch (e) { 22084 } catch (e) {
22085 throw __dom_wrap_exception(e); 22085 throw __dom_wrap_exception(e);
22086 } 22086 }
22087 } 22087 }
22088 22088
22089 function native__ScreenWrappingImplementation__get__Screen_width(_this) { 22089 function native__ScreenWrappingImplementation__get_width(_this) {
22090 try { 22090 try {
22091 return __dom_wrap(_this.$dom.width); 22091 return __dom_wrap(_this.$dom.width);
22092 } catch (e) { 22092 } catch (e) {
22093 throw __dom_wrap_exception(e); 22093 throw __dom_wrap_exception(e);
22094 } 22094 }
22095 } 22095 }
22096 22096
22097 function native__ScriptProfileWrappingImplementation__get__ScriptProfile_head(_t his) { 22097 function native__ScriptProfileWrappingImplementation__get_head(_this) {
22098 try { 22098 try {
22099 return __dom_wrap(_this.$dom.head); 22099 return __dom_wrap(_this.$dom.head);
22100 } catch (e) { 22100 } catch (e) {
22101 throw __dom_wrap_exception(e); 22101 throw __dom_wrap_exception(e);
22102 } 22102 }
22103 } 22103 }
22104 22104
22105 function native__ScriptProfileWrappingImplementation__get__ScriptProfile_title(_ this) { 22105 function native__ScriptProfileWrappingImplementation__get_title(_this) {
22106 try { 22106 try {
22107 return __dom_wrap(_this.$dom.title); 22107 return __dom_wrap(_this.$dom.title);
22108 } catch (e) { 22108 } catch (e) {
22109 throw __dom_wrap_exception(e); 22109 throw __dom_wrap_exception(e);
22110 } 22110 }
22111 } 22111 }
22112 22112
22113 function native__ScriptProfileWrappingImplementation__get__ScriptProfile_uid(_th is) { 22113 function native__ScriptProfileWrappingImplementation__get_uid(_this) {
22114 try { 22114 try {
22115 return __dom_wrap(_this.$dom.uid); 22115 return __dom_wrap(_this.$dom.uid);
22116 } catch (e) { 22116 } catch (e) {
22117 throw __dom_wrap_exception(e); 22117 throw __dom_wrap_exception(e);
22118 } 22118 }
22119 } 22119 }
22120 22120
22121 function native__ScriptProfileNodeWrappingImplementation__get__ScriptProfileNode _callUID(_this) { 22121 function native__ScriptProfileNodeWrappingImplementation__get_callUID(_this) {
22122 try { 22122 try {
22123 return __dom_wrap(_this.$dom.callUID); 22123 return __dom_wrap(_this.$dom.callUID);
22124 } catch (e) { 22124 } catch (e) {
22125 throw __dom_wrap_exception(e); 22125 throw __dom_wrap_exception(e);
22126 } 22126 }
22127 } 22127 }
22128 22128
22129 function native__ScriptProfileNodeWrappingImplementation__get__ScriptProfileNode _children(_this) { 22129 function native__ScriptProfileNodeWrappingImplementation__get_children(_this) {
22130 try { 22130 try {
22131 return __dom_wrap(_this.$dom.children); 22131 return __dom_wrap(_this.$dom.children);
22132 } catch (e) { 22132 } catch (e) {
22133 throw __dom_wrap_exception(e); 22133 throw __dom_wrap_exception(e);
22134 } 22134 }
22135 } 22135 }
22136 22136
22137 function native__ScriptProfileNodeWrappingImplementation__get__ScriptProfileNode _functionName(_this) { 22137 function native__ScriptProfileNodeWrappingImplementation__get_functionName(_this ) {
22138 try { 22138 try {
22139 return __dom_wrap(_this.$dom.functionName); 22139 return __dom_wrap(_this.$dom.functionName);
22140 } catch (e) { 22140 } catch (e) {
22141 throw __dom_wrap_exception(e); 22141 throw __dom_wrap_exception(e);
22142 } 22142 }
22143 } 22143 }
22144 22144
22145 function native__ScriptProfileNodeWrappingImplementation__get__ScriptProfileNode _lineNumber(_this) { 22145 function native__ScriptProfileNodeWrappingImplementation__get_lineNumber(_this) {
22146 try { 22146 try {
22147 return __dom_wrap(_this.$dom.lineNumber); 22147 return __dom_wrap(_this.$dom.lineNumber);
22148 } catch (e) { 22148 } catch (e) {
22149 throw __dom_wrap_exception(e); 22149 throw __dom_wrap_exception(e);
22150 } 22150 }
22151 } 22151 }
22152 22152
22153 function native__ScriptProfileNodeWrappingImplementation__get__ScriptProfileNode _numberOfCalls(_this) { 22153 function native__ScriptProfileNodeWrappingImplementation__get_numberOfCalls(_thi s) {
22154 try { 22154 try {
22155 return __dom_wrap(_this.$dom.numberOfCalls); 22155 return __dom_wrap(_this.$dom.numberOfCalls);
22156 } catch (e) { 22156 } catch (e) {
22157 throw __dom_wrap_exception(e); 22157 throw __dom_wrap_exception(e);
22158 } 22158 }
22159 } 22159 }
22160 22160
22161 function native__ScriptProfileNodeWrappingImplementation__get__ScriptProfileNode _selfTime(_this) { 22161 function native__ScriptProfileNodeWrappingImplementation__get_selfTime(_this) {
22162 try { 22162 try {
22163 return __dom_wrap(_this.$dom.selfTime); 22163 return __dom_wrap(_this.$dom.selfTime);
22164 } catch (e) { 22164 } catch (e) {
22165 throw __dom_wrap_exception(e); 22165 throw __dom_wrap_exception(e);
22166 } 22166 }
22167 } 22167 }
22168 22168
22169 function native__ScriptProfileNodeWrappingImplementation__get__ScriptProfileNode _totalTime(_this) { 22169 function native__ScriptProfileNodeWrappingImplementation__get_totalTime(_this) {
22170 try { 22170 try {
22171 return __dom_wrap(_this.$dom.totalTime); 22171 return __dom_wrap(_this.$dom.totalTime);
22172 } catch (e) { 22172 } catch (e) {
22173 throw __dom_wrap_exception(e); 22173 throw __dom_wrap_exception(e);
22174 } 22174 }
22175 } 22175 }
22176 22176
22177 function native__ScriptProfileNodeWrappingImplementation__get__ScriptProfileNode _url(_this) { 22177 function native__ScriptProfileNodeWrappingImplementation__get_url(_this) {
22178 try { 22178 try {
22179 return __dom_wrap(_this.$dom.url); 22179 return __dom_wrap(_this.$dom.url);
22180 } catch (e) { 22180 } catch (e) {
22181 throw __dom_wrap_exception(e); 22181 throw __dom_wrap_exception(e);
22182 } 22182 }
22183 } 22183 }
22184 22184
22185 function native__ScriptProfileNodeWrappingImplementation__get__ScriptProfileNode _visible(_this) { 22185 function native__ScriptProfileNodeWrappingImplementation__get_visible(_this) {
22186 try { 22186 try {
22187 return __dom_wrap(_this.$dom.visible); 22187 return __dom_wrap(_this.$dom.visible);
22188 } catch (e) { 22188 } catch (e) {
22189 throw __dom_wrap_exception(e); 22189 throw __dom_wrap_exception(e);
22190 } 22190 }
22191 } 22191 }
22192 22192
22193 function native__SharedWorkerWrappingImplementation__get__SharedWorker_port(_thi s) { 22193 function native__SharedWorkerWrappingImplementation__get_port(_this) {
22194 try { 22194 try {
22195 return __dom_wrap(_this.$dom.port); 22195 return __dom_wrap(_this.$dom.port);
22196 } catch (e) { 22196 } catch (e) {
22197 throw __dom_wrap_exception(e); 22197 throw __dom_wrap_exception(e);
22198 } 22198 }
22199 } 22199 }
22200 22200
22201 function native__SharedWorkercontextWrappingImplementation__get__SharedWorkercon text_name(_this) { 22201 function native__SharedWorkercontextWrappingImplementation__get_name(_this) {
22202 try { 22202 try {
22203 return __dom_wrap(_this.$dom.name); 22203 return __dom_wrap(_this.$dom.name);
22204 } catch (e) { 22204 } catch (e) {
22205 throw __dom_wrap_exception(e); 22205 throw __dom_wrap_exception(e);
22206 } 22206 }
22207 } 22207 }
22208 22208
22209 function native__SharedWorkercontextWrappingImplementation__get__SharedWorkercon text_onconnect(_this) { 22209 function native__SharedWorkercontextWrappingImplementation__get_onconnect(_this) {
22210 try { 22210 try {
22211 return __dom_wrap(_this.$dom.onconnect); 22211 return __dom_wrap(_this.$dom.onconnect);
22212 } catch (e) { 22212 } catch (e) {
22213 throw __dom_wrap_exception(e); 22213 throw __dom_wrap_exception(e);
22214 } 22214 }
22215 } 22215 }
22216 22216
22217 function native__SharedWorkercontextWrappingImplementation__set__SharedWorkercon text_onconnect(_this, value) { 22217 function native__SharedWorkercontextWrappingImplementation__set_onconnect(_this, value) {
22218 try { 22218 try {
22219 _this.$dom.onconnect = __dom_unwrap(value); 22219 _this.$dom.onconnect = __dom_unwrap(value);
22220 } catch (e) { 22220 } catch (e) {
22221 throw __dom_wrap_exception(e); 22221 throw __dom_wrap_exception(e);
22222 } 22222 }
22223 } 22223 }
22224 22224
22225 function native__SpeechInputEventWrappingImplementation__get__SpeechInputEvent_r esults(_this) { 22225 function native__SpeechInputEventWrappingImplementation__get_results(_this) {
22226 try { 22226 try {
22227 return __dom_wrap(_this.$dom.results); 22227 return __dom_wrap(_this.$dom.results);
22228 } catch (e) { 22228 } catch (e) {
22229 throw __dom_wrap_exception(e); 22229 throw __dom_wrap_exception(e);
22230 } 22230 }
22231 } 22231 }
22232 22232
22233 function native__SpeechInputResultWrappingImplementation__get__SpeechInputResult _confidence(_this) { 22233 function native__SpeechInputResultWrappingImplementation__get_confidence(_this) {
22234 try { 22234 try {
22235 return __dom_wrap(_this.$dom.confidence); 22235 return __dom_wrap(_this.$dom.confidence);
22236 } catch (e) { 22236 } catch (e) {
22237 throw __dom_wrap_exception(e); 22237 throw __dom_wrap_exception(e);
22238 } 22238 }
22239 } 22239 }
22240 22240
22241 function native__SpeechInputResultWrappingImplementation__get__SpeechInputResult _utterance(_this) { 22241 function native__SpeechInputResultWrappingImplementation__get_utterance(_this) {
22242 try { 22242 try {
22243 return __dom_wrap(_this.$dom.utterance); 22243 return __dom_wrap(_this.$dom.utterance);
22244 } catch (e) { 22244 } catch (e) {
22245 throw __dom_wrap_exception(e); 22245 throw __dom_wrap_exception(e);
22246 } 22246 }
22247 } 22247 }
22248 22248
22249 function native__SpeechInputResultListWrappingImplementation__get__SpeechInputRe sultList_length(_this) { 22249 function native__SpeechInputResultListWrappingImplementation__get_length(_this) {
22250 try { 22250 try {
22251 return __dom_wrap(_this.$dom.length); 22251 return __dom_wrap(_this.$dom.length);
22252 } catch (e) { 22252 } catch (e) {
22253 throw __dom_wrap_exception(e); 22253 throw __dom_wrap_exception(e);
22254 } 22254 }
22255 } 22255 }
22256 22256
22257 function native__SpeechInputResultListWrappingImplementation__item(_this, index) { 22257 function native__SpeechInputResultListWrappingImplementation__item(_this, index) {
22258 try { 22258 try {
22259 return __dom_wrap(_this.$dom.item(__dom_unwrap(index))); 22259 return __dom_wrap(_this.$dom.item(__dom_unwrap(index)));
22260 } catch (e) { 22260 } catch (e) {
22261 throw __dom_wrap_exception(e); 22261 throw __dom_wrap_exception(e);
22262 } 22262 }
22263 } 22263 }
22264 22264
22265 function native__StorageWrappingImplementation__get__Storage_length(_this) { 22265 function native__StorageWrappingImplementation__get_length(_this) {
22266 try { 22266 try {
22267 return __dom_wrap(_this.$dom.length); 22267 return __dom_wrap(_this.$dom.length);
22268 } catch (e) { 22268 } catch (e) {
22269 throw __dom_wrap_exception(e); 22269 throw __dom_wrap_exception(e);
22270 } 22270 }
22271 } 22271 }
22272 22272
22273 function native__StorageWrappingImplementation__clear(_this) { 22273 function native__StorageWrappingImplementation__clear(_this) {
22274 try { 22274 try {
22275 return __dom_wrap(_this.$dom.clear()); 22275 return __dom_wrap(_this.$dom.clear());
(...skipping 27 matching lines...) Expand all
22303 } 22303 }
22304 22304
22305 function native__StorageWrappingImplementation__setItem(_this, key, data) { 22305 function native__StorageWrappingImplementation__setItem(_this, key, data) {
22306 try { 22306 try {
22307 return __dom_wrap(_this.$dom.setItem(__dom_unwrap(key), __dom_unwrap(data))) ; 22307 return __dom_wrap(_this.$dom.setItem(__dom_unwrap(key), __dom_unwrap(data))) ;
22308 } catch (e) { 22308 } catch (e) {
22309 throw __dom_wrap_exception(e); 22309 throw __dom_wrap_exception(e);
22310 } 22310 }
22311 } 22311 }
22312 22312
22313 function native__StorageEventWrappingImplementation__get__StorageEvent_key(_this ) { 22313 function native__StorageEventWrappingImplementation__get_key(_this) {
22314 try { 22314 try {
22315 return __dom_wrap(_this.$dom.key); 22315 return __dom_wrap(_this.$dom.key);
22316 } catch (e) { 22316 } catch (e) {
22317 throw __dom_wrap_exception(e); 22317 throw __dom_wrap_exception(e);
22318 } 22318 }
22319 } 22319 }
22320 22320
22321 function native__StorageEventWrappingImplementation__get__StorageEvent_newValue( _this) { 22321 function native__StorageEventWrappingImplementation__get_newValue(_this) {
22322 try { 22322 try {
22323 return __dom_wrap(_this.$dom.newValue); 22323 return __dom_wrap(_this.$dom.newValue);
22324 } catch (e) { 22324 } catch (e) {
22325 throw __dom_wrap_exception(e); 22325 throw __dom_wrap_exception(e);
22326 } 22326 }
22327 } 22327 }
22328 22328
22329 function native__StorageEventWrappingImplementation__get__StorageEvent_oldValue( _this) { 22329 function native__StorageEventWrappingImplementation__get_oldValue(_this) {
22330 try { 22330 try {
22331 return __dom_wrap(_this.$dom.oldValue); 22331 return __dom_wrap(_this.$dom.oldValue);
22332 } catch (e) { 22332 } catch (e) {
22333 throw __dom_wrap_exception(e); 22333 throw __dom_wrap_exception(e);
22334 } 22334 }
22335 } 22335 }
22336 22336
22337 function native__StorageEventWrappingImplementation__get__StorageEvent_storageAr ea(_this) { 22337 function native__StorageEventWrappingImplementation__get_storageArea(_this) {
22338 try { 22338 try {
22339 return __dom_wrap(_this.$dom.storageArea); 22339 return __dom_wrap(_this.$dom.storageArea);
22340 } catch (e) { 22340 } catch (e) {
22341 throw __dom_wrap_exception(e); 22341 throw __dom_wrap_exception(e);
22342 } 22342 }
22343 } 22343 }
22344 22344
22345 function native__StorageEventWrappingImplementation__get__StorageEvent_url(_this ) { 22345 function native__StorageEventWrappingImplementation__get_url(_this) {
22346 try { 22346 try {
22347 return __dom_wrap(_this.$dom.url); 22347 return __dom_wrap(_this.$dom.url);
22348 } catch (e) { 22348 } catch (e) {
22349 throw __dom_wrap_exception(e); 22349 throw __dom_wrap_exception(e);
22350 } 22350 }
22351 } 22351 }
22352 22352
22353 function native__StorageEventWrappingImplementation__initStorageEvent(_this, typ eArg, canBubbleArg, cancelableArg, keyArg, oldValueArg, newValueArg, urlArg, sto rageAreaArg) { 22353 function native__StorageEventWrappingImplementation__initStorageEvent(_this, typ eArg, canBubbleArg, cancelableArg, keyArg, oldValueArg, newValueArg, urlArg, sto rageAreaArg) {
22354 try { 22354 try {
22355 return __dom_wrap(_this.$dom.initStorageEvent(__dom_unwrap(typeArg), __dom_u nwrap(canBubbleArg), __dom_unwrap(cancelableArg), __dom_unwrap(keyArg), __dom_un wrap(oldValueArg), __dom_unwrap(newValueArg), __dom_unwrap(urlArg), __dom_unwrap (storageAreaArg))); 22355 return __dom_wrap(_this.$dom.initStorageEvent(__dom_unwrap(typeArg), __dom_u nwrap(canBubbleArg), __dom_unwrap(cancelableArg), __dom_unwrap(keyArg), __dom_un wrap(oldValueArg), __dom_unwrap(newValueArg), __dom_unwrap(urlArg), __dom_unwrap (storageAreaArg)));
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
22431 } 22431 }
22432 22432
22433 function native__StringCallbackWrappingImplementation__handleEvent(_this, data) { 22433 function native__StringCallbackWrappingImplementation__handleEvent(_this, data) {
22434 try { 22434 try {
22435 return __dom_wrap(_this.$dom.handleEvent(__dom_unwrap(data))); 22435 return __dom_wrap(_this.$dom.handleEvent(__dom_unwrap(data)));
22436 } catch (e) { 22436 } catch (e) {
22437 throw __dom_wrap_exception(e); 22437 throw __dom_wrap_exception(e);
22438 } 22438 }
22439 } 22439 }
22440 22440
22441 function native__StyleMediaWrappingImplementation__get__StyleMedia_type(_this) { 22441 function native__StyleMediaWrappingImplementation__get_type(_this) {
22442 try { 22442 try {
22443 return __dom_wrap(_this.$dom.type); 22443 return __dom_wrap(_this.$dom.type);
22444 } catch (e) { 22444 } catch (e) {
22445 throw __dom_wrap_exception(e); 22445 throw __dom_wrap_exception(e);
22446 } 22446 }
22447 } 22447 }
22448 22448
22449 function native__StyleMediaWrappingImplementation__matchMedium(_this, mediaquery ) { 22449 function native__StyleMediaWrappingImplementation__matchMedium(_this, mediaquery ) {
22450 try { 22450 try {
22451 return __dom_wrap(_this.$dom.matchMedium(__dom_unwrap(mediaquery))); 22451 return __dom_wrap(_this.$dom.matchMedium(__dom_unwrap(mediaquery)));
22452 } catch (e) { 22452 } catch (e) {
22453 throw __dom_wrap_exception(e); 22453 throw __dom_wrap_exception(e);
22454 } 22454 }
22455 } 22455 }
22456 22456
22457 function native__StyleSheetWrappingImplementation__get__StyleSheet_disabled(_thi s) { 22457 function native__StyleSheetWrappingImplementation__get_disabled(_this) {
22458 try { 22458 try {
22459 return __dom_wrap(_this.$dom.disabled); 22459 return __dom_wrap(_this.$dom.disabled);
22460 } catch (e) { 22460 } catch (e) {
22461 throw __dom_wrap_exception(e); 22461 throw __dom_wrap_exception(e);
22462 } 22462 }
22463 } 22463 }
22464 22464
22465 function native__StyleSheetWrappingImplementation__set__StyleSheet_disabled(_thi s, value) { 22465 function native__StyleSheetWrappingImplementation__set_disabled(_this, value) {
22466 try { 22466 try {
22467 _this.$dom.disabled = __dom_unwrap(value); 22467 _this.$dom.disabled = __dom_unwrap(value);
22468 } catch (e) { 22468 } catch (e) {
22469 throw __dom_wrap_exception(e); 22469 throw __dom_wrap_exception(e);
22470 } 22470 }
22471 } 22471 }
22472 22472
22473 function native__StyleSheetWrappingImplementation__get__StyleSheet_href(_this) { 22473 function native__StyleSheetWrappingImplementation__get_href(_this) {
22474 try { 22474 try {
22475 return __dom_wrap(_this.$dom.href); 22475 return __dom_wrap(_this.$dom.href);
22476 } catch (e) { 22476 } catch (e) {
22477 throw __dom_wrap_exception(e); 22477 throw __dom_wrap_exception(e);
22478 } 22478 }
22479 } 22479 }
22480 22480
22481 function native__StyleSheetWrappingImplementation__get__StyleSheet_media(_this) { 22481 function native__StyleSheetWrappingImplementation__get_media(_this) {
22482 try { 22482 try {
22483 return __dom_wrap(_this.$dom.media); 22483 return __dom_wrap(_this.$dom.media);
22484 } catch (e) { 22484 } catch (e) {
22485 throw __dom_wrap_exception(e); 22485 throw __dom_wrap_exception(e);
22486 } 22486 }
22487 } 22487 }
22488 22488
22489 function native__StyleSheetWrappingImplementation__get__StyleSheet_ownerNode(_th is) { 22489 function native__StyleSheetWrappingImplementation__get_ownerNode(_this) {
22490 try { 22490 try {
22491 return __dom_wrap(_this.$dom.ownerNode); 22491 return __dom_wrap(_this.$dom.ownerNode);
22492 } catch (e) { 22492 } catch (e) {
22493 throw __dom_wrap_exception(e); 22493 throw __dom_wrap_exception(e);
22494 } 22494 }
22495 } 22495 }
22496 22496
22497 function native__StyleSheetWrappingImplementation__get__StyleSheet_parentStyleSh eet(_this) { 22497 function native__StyleSheetWrappingImplementation__get_parentStyleSheet(_this) {
22498 try { 22498 try {
22499 return __dom_wrap(_this.$dom.parentStyleSheet); 22499 return __dom_wrap(_this.$dom.parentStyleSheet);
22500 } catch (e) { 22500 } catch (e) {
22501 throw __dom_wrap_exception(e); 22501 throw __dom_wrap_exception(e);
22502 } 22502 }
22503 } 22503 }
22504 22504
22505 function native__StyleSheetWrappingImplementation__get__StyleSheet_title(_this) { 22505 function native__StyleSheetWrappingImplementation__get_title(_this) {
22506 try { 22506 try {
22507 return __dom_wrap(_this.$dom.title); 22507 return __dom_wrap(_this.$dom.title);
22508 } catch (e) { 22508 } catch (e) {
22509 throw __dom_wrap_exception(e); 22509 throw __dom_wrap_exception(e);
22510 } 22510 }
22511 } 22511 }
22512 22512
22513 function native__StyleSheetWrappingImplementation__get__StyleSheet_type(_this) { 22513 function native__StyleSheetWrappingImplementation__get_type(_this) {
22514 try { 22514 try {
22515 return __dom_wrap(_this.$dom.type); 22515 return __dom_wrap(_this.$dom.type);
22516 } catch (e) { 22516 } catch (e) {
22517 throw __dom_wrap_exception(e); 22517 throw __dom_wrap_exception(e);
22518 } 22518 }
22519 } 22519 }
22520 22520
22521 function native__StyleSheetListWrappingImplementation__get__StyleSheetList_lengt h(_this) { 22521 function native__StyleSheetListWrappingImplementation__get_length(_this) {
22522 try { 22522 try {
22523 return __dom_wrap(_this.$dom.length); 22523 return __dom_wrap(_this.$dom.length);
22524 } catch (e) { 22524 } catch (e) {
22525 throw __dom_wrap_exception(e); 22525 throw __dom_wrap_exception(e);
22526 } 22526 }
22527 } 22527 }
22528 22528
22529 function native__StyleSheetListWrappingImplementation__item(_this, index) { 22529 function native__StyleSheetListWrappingImplementation__item(_this, index) {
22530 try { 22530 try {
22531 return __dom_wrap(_this.$dom.item(__dom_unwrap(index))); 22531 return __dom_wrap(_this.$dom.item(__dom_unwrap(index)));
22532 } catch (e) { 22532 } catch (e) {
22533 throw __dom_wrap_exception(e); 22533 throw __dom_wrap_exception(e);
22534 } 22534 }
22535 } 22535 }
22536 22536
22537 function native__TextWrappingImplementation__get__Text_wholeText(_this) { 22537 function native__TextWrappingImplementation__get_wholeText(_this) {
22538 try { 22538 try {
22539 return __dom_wrap(_this.$dom.wholeText); 22539 return __dom_wrap(_this.$dom.wholeText);
22540 } catch (e) { 22540 } catch (e) {
22541 throw __dom_wrap_exception(e); 22541 throw __dom_wrap_exception(e);
22542 } 22542 }
22543 } 22543 }
22544 22544
22545 function native__TextWrappingImplementation__replaceWholeText(_this, content) { 22545 function native__TextWrappingImplementation__replaceWholeText(_this, content) {
22546 try { 22546 try {
22547 return __dom_wrap(_this.$dom.replaceWholeText(__dom_unwrap(content))); 22547 return __dom_wrap(_this.$dom.replaceWholeText(__dom_unwrap(content)));
22548 } catch (e) { 22548 } catch (e) {
22549 throw __dom_wrap_exception(e); 22549 throw __dom_wrap_exception(e);
22550 } 22550 }
22551 } 22551 }
22552 22552
22553 function native__TextWrappingImplementation__splitText(_this, offset) { 22553 function native__TextWrappingImplementation__splitText(_this, offset) {
22554 try { 22554 try {
22555 return __dom_wrap(_this.$dom.splitText(__dom_unwrap(offset))); 22555 return __dom_wrap(_this.$dom.splitText(__dom_unwrap(offset)));
22556 } catch (e) { 22556 } catch (e) {
22557 throw __dom_wrap_exception(e); 22557 throw __dom_wrap_exception(e);
22558 } 22558 }
22559 } 22559 }
22560 22560
22561 function native__TextEventWrappingImplementation__get__TextEvent_data(_this) { 22561 function native__TextEventWrappingImplementation__get_data(_this) {
22562 try { 22562 try {
22563 return __dom_wrap(_this.$dom.data); 22563 return __dom_wrap(_this.$dom.data);
22564 } catch (e) { 22564 } catch (e) {
22565 throw __dom_wrap_exception(e); 22565 throw __dom_wrap_exception(e);
22566 } 22566 }
22567 } 22567 }
22568 22568
22569 function native__TextEventWrappingImplementation__initTextEvent(_this, typeArg, canBubbleArg, cancelableArg, viewArg, dataArg) { 22569 function native__TextEventWrappingImplementation__initTextEvent(_this, typeArg, canBubbleArg, cancelableArg, viewArg, dataArg) {
22570 try { 22570 try {
22571 return __dom_wrap(_this.$dom.initTextEvent(__dom_unwrap(typeArg), __dom_unwr ap(canBubbleArg), __dom_unwrap(cancelableArg), __dom_unwrap(viewArg), __dom_unwr ap(dataArg))); 22571 return __dom_wrap(_this.$dom.initTextEvent(__dom_unwrap(typeArg), __dom_unwr ap(canBubbleArg), __dom_unwrap(cancelableArg), __dom_unwrap(viewArg), __dom_unwr ap(dataArg)));
22572 } catch (e) { 22572 } catch (e) {
22573 throw __dom_wrap_exception(e); 22573 throw __dom_wrap_exception(e);
22574 } 22574 }
22575 } 22575 }
22576 22576
22577 function native__TextMetricsWrappingImplementation__get__TextMetrics_width(_this ) { 22577 function native__TextMetricsWrappingImplementation__get_width(_this) {
22578 try { 22578 try {
22579 return __dom_wrap(_this.$dom.width); 22579 return __dom_wrap(_this.$dom.width);
22580 } catch (e) { 22580 } catch (e) {
22581 throw __dom_wrap_exception(e); 22581 throw __dom_wrap_exception(e);
22582 } 22582 }
22583 } 22583 }
22584 22584
22585 function native__TextTrackWrappingImplementation__get__TextTrack_activeCues(_thi s) { 22585 function native__TextTrackWrappingImplementation__get_activeCues(_this) {
22586 try { 22586 try {
22587 return __dom_wrap(_this.$dom.activeCues); 22587 return __dom_wrap(_this.$dom.activeCues);
22588 } catch (e) { 22588 } catch (e) {
22589 throw __dom_wrap_exception(e); 22589 throw __dom_wrap_exception(e);
22590 } 22590 }
22591 } 22591 }
22592 22592
22593 function native__TextTrackWrappingImplementation__get__TextTrack_cues(_this) { 22593 function native__TextTrackWrappingImplementation__get_cues(_this) {
22594 try { 22594 try {
22595 return __dom_wrap(_this.$dom.cues); 22595 return __dom_wrap(_this.$dom.cues);
22596 } catch (e) { 22596 } catch (e) {
22597 throw __dom_wrap_exception(e); 22597 throw __dom_wrap_exception(e);
22598 } 22598 }
22599 } 22599 }
22600 22600
22601 function native__TextTrackWrappingImplementation__get__TextTrack_kind(_this) { 22601 function native__TextTrackWrappingImplementation__get_kind(_this) {
22602 try { 22602 try {
22603 return __dom_wrap(_this.$dom.kind); 22603 return __dom_wrap(_this.$dom.kind);
22604 } catch (e) { 22604 } catch (e) {
22605 throw __dom_wrap_exception(e); 22605 throw __dom_wrap_exception(e);
22606 } 22606 }
22607 } 22607 }
22608 22608
22609 function native__TextTrackWrappingImplementation__get__TextTrack_label(_this) { 22609 function native__TextTrackWrappingImplementation__get_label(_this) {
22610 try { 22610 try {
22611 return __dom_wrap(_this.$dom.label); 22611 return __dom_wrap(_this.$dom.label);
22612 } catch (e) { 22612 } catch (e) {
22613 throw __dom_wrap_exception(e); 22613 throw __dom_wrap_exception(e);
22614 } 22614 }
22615 } 22615 }
22616 22616
22617 function native__TextTrackWrappingImplementation__get__TextTrack_language(_this) { 22617 function native__TextTrackWrappingImplementation__get_language(_this) {
22618 try { 22618 try {
22619 return __dom_wrap(_this.$dom.language); 22619 return __dom_wrap(_this.$dom.language);
22620 } catch (e) { 22620 } catch (e) {
22621 throw __dom_wrap_exception(e); 22621 throw __dom_wrap_exception(e);
22622 } 22622 }
22623 } 22623 }
22624 22624
22625 function native__TextTrackWrappingImplementation__get__TextTrack_mode(_this) { 22625 function native__TextTrackWrappingImplementation__get_mode(_this) {
22626 try { 22626 try {
22627 return __dom_wrap(_this.$dom.mode); 22627 return __dom_wrap(_this.$dom.mode);
22628 } catch (e) { 22628 } catch (e) {
22629 throw __dom_wrap_exception(e); 22629 throw __dom_wrap_exception(e);
22630 } 22630 }
22631 } 22631 }
22632 22632
22633 function native__TextTrackWrappingImplementation__set__TextTrack_mode(_this, val ue) { 22633 function native__TextTrackWrappingImplementation__set_mode(_this, value) {
22634 try { 22634 try {
22635 _this.$dom.mode = __dom_unwrap(value); 22635 _this.$dom.mode = __dom_unwrap(value);
22636 } catch (e) { 22636 } catch (e) {
22637 throw __dom_wrap_exception(e); 22637 throw __dom_wrap_exception(e);
22638 } 22638 }
22639 } 22639 }
22640 22640
22641 function native__TextTrackWrappingImplementation__get__TextTrack_readyState(_thi s) { 22641 function native__TextTrackWrappingImplementation__get_readyState(_this) {
22642 try { 22642 try {
22643 return __dom_wrap(_this.$dom.readyState); 22643 return __dom_wrap(_this.$dom.readyState);
22644 } catch (e) { 22644 } catch (e) {
22645 throw __dom_wrap_exception(e); 22645 throw __dom_wrap_exception(e);
22646 } 22646 }
22647 } 22647 }
22648 22648
22649 function native__TextTrackWrappingImplementation__addCue(_this, cue) { 22649 function native__TextTrackWrappingImplementation__addCue(_this, cue) {
22650 try { 22650 try {
22651 return __dom_wrap(_this.$dom.addCue(__dom_unwrap(cue))); 22651 return __dom_wrap(_this.$dom.addCue(__dom_unwrap(cue)));
22652 } catch (e) { 22652 } catch (e) {
22653 throw __dom_wrap_exception(e); 22653 throw __dom_wrap_exception(e);
22654 } 22654 }
22655 } 22655 }
22656 22656
22657 function native__TextTrackWrappingImplementation__removeCue(_this, cue) { 22657 function native__TextTrackWrappingImplementation__removeCue(_this, cue) {
22658 try { 22658 try {
22659 return __dom_wrap(_this.$dom.removeCue(__dom_unwrap(cue))); 22659 return __dom_wrap(_this.$dom.removeCue(__dom_unwrap(cue)));
22660 } catch (e) { 22660 } catch (e) {
22661 throw __dom_wrap_exception(e); 22661 throw __dom_wrap_exception(e);
22662 } 22662 }
22663 } 22663 }
22664 22664
22665 function native__TextTrackCueWrappingImplementation__get__TextTrackCue_alignment (_this) { 22665 function native__TextTrackCueWrappingImplementation__get_alignment(_this) {
22666 try { 22666 try {
22667 return __dom_wrap(_this.$dom.alignment); 22667 return __dom_wrap(_this.$dom.alignment);
22668 } catch (e) { 22668 } catch (e) {
22669 throw __dom_wrap_exception(e); 22669 throw __dom_wrap_exception(e);
22670 } 22670 }
22671 } 22671 }
22672 22672
22673 function native__TextTrackCueWrappingImplementation__get__TextTrackCue_direction (_this) { 22673 function native__TextTrackCueWrappingImplementation__get_direction(_this) {
22674 try { 22674 try {
22675 return __dom_wrap(_this.$dom.direction); 22675 return __dom_wrap(_this.$dom.direction);
22676 } catch (e) { 22676 } catch (e) {
22677 throw __dom_wrap_exception(e); 22677 throw __dom_wrap_exception(e);
22678 } 22678 }
22679 } 22679 }
22680 22680
22681 function native__TextTrackCueWrappingImplementation__get__TextTrackCue_endTime(_ this) { 22681 function native__TextTrackCueWrappingImplementation__get_endTime(_this) {
22682 try { 22682 try {
22683 return __dom_wrap(_this.$dom.endTime); 22683 return __dom_wrap(_this.$dom.endTime);
22684 } catch (e) { 22684 } catch (e) {
22685 throw __dom_wrap_exception(e); 22685 throw __dom_wrap_exception(e);
22686 } 22686 }
22687 } 22687 }
22688 22688
22689 function native__TextTrackCueWrappingImplementation__get__TextTrackCue_id(_this) { 22689 function native__TextTrackCueWrappingImplementation__get_id(_this) {
22690 try { 22690 try {
22691 return __dom_wrap(_this.$dom.id); 22691 return __dom_wrap(_this.$dom.id);
22692 } catch (e) { 22692 } catch (e) {
22693 throw __dom_wrap_exception(e); 22693 throw __dom_wrap_exception(e);
22694 } 22694 }
22695 } 22695 }
22696 22696
22697 function native__TextTrackCueWrappingImplementation__get__TextTrackCue_linePosit ion(_this) { 22697 function native__TextTrackCueWrappingImplementation__get_linePosition(_this) {
22698 try { 22698 try {
22699 return __dom_wrap(_this.$dom.linePosition); 22699 return __dom_wrap(_this.$dom.linePosition);
22700 } catch (e) { 22700 } catch (e) {
22701 throw __dom_wrap_exception(e); 22701 throw __dom_wrap_exception(e);
22702 } 22702 }
22703 } 22703 }
22704 22704
22705 function native__TextTrackCueWrappingImplementation__get__TextTrackCue_pauseOnEx it(_this) { 22705 function native__TextTrackCueWrappingImplementation__get_pauseOnExit(_this) {
22706 try { 22706 try {
22707 return __dom_wrap(_this.$dom.pauseOnExit); 22707 return __dom_wrap(_this.$dom.pauseOnExit);
22708 } catch (e) { 22708 } catch (e) {
22709 throw __dom_wrap_exception(e); 22709 throw __dom_wrap_exception(e);
22710 } 22710 }
22711 } 22711 }
22712 22712
22713 function native__TextTrackCueWrappingImplementation__get__TextTrackCue_size(_thi s) { 22713 function native__TextTrackCueWrappingImplementation__get_size(_this) {
22714 try { 22714 try {
22715 return __dom_wrap(_this.$dom.size); 22715 return __dom_wrap(_this.$dom.size);
22716 } catch (e) { 22716 } catch (e) {
22717 throw __dom_wrap_exception(e); 22717 throw __dom_wrap_exception(e);
22718 } 22718 }
22719 } 22719 }
22720 22720
22721 function native__TextTrackCueWrappingImplementation__get__TextTrackCue_snapToLin es(_this) { 22721 function native__TextTrackCueWrappingImplementation__get_snapToLines(_this) {
22722 try { 22722 try {
22723 return __dom_wrap(_this.$dom.snapToLines); 22723 return __dom_wrap(_this.$dom.snapToLines);
22724 } catch (e) { 22724 } catch (e) {
22725 throw __dom_wrap_exception(e); 22725 throw __dom_wrap_exception(e);
22726 } 22726 }
22727 } 22727 }
22728 22728
22729 function native__TextTrackCueWrappingImplementation__get__TextTrackCue_startTime (_this) { 22729 function native__TextTrackCueWrappingImplementation__get_startTime(_this) {
22730 try { 22730 try {
22731 return __dom_wrap(_this.$dom.startTime); 22731 return __dom_wrap(_this.$dom.startTime);
22732 } catch (e) { 22732 } catch (e) {
22733 throw __dom_wrap_exception(e); 22733 throw __dom_wrap_exception(e);
22734 } 22734 }
22735 } 22735 }
22736 22736
22737 function native__TextTrackCueWrappingImplementation__get__TextTrackCue_textPosit ion(_this) { 22737 function native__TextTrackCueWrappingImplementation__get_textPosition(_this) {
22738 try { 22738 try {
22739 return __dom_wrap(_this.$dom.textPosition); 22739 return __dom_wrap(_this.$dom.textPosition);
22740 } catch (e) { 22740 } catch (e) {
22741 throw __dom_wrap_exception(e); 22741 throw __dom_wrap_exception(e);
22742 } 22742 }
22743 } 22743 }
22744 22744
22745 function native__TextTrackCueWrappingImplementation__get__TextTrackCue_track(_th is) { 22745 function native__TextTrackCueWrappingImplementation__get_track(_this) {
22746 try { 22746 try {
22747 return __dom_wrap(_this.$dom.track); 22747 return __dom_wrap(_this.$dom.track);
22748 } catch (e) { 22748 } catch (e) {
22749 throw __dom_wrap_exception(e); 22749 throw __dom_wrap_exception(e);
22750 } 22750 }
22751 } 22751 }
22752 22752
22753 function native__TextTrackCueWrappingImplementation__getCueAsHTML(_this) { 22753 function native__TextTrackCueWrappingImplementation__getCueAsHTML(_this) {
22754 try { 22754 try {
22755 return __dom_wrap(_this.$dom.getCueAsHTML()); 22755 return __dom_wrap(_this.$dom.getCueAsHTML());
22756 } catch (e) { 22756 } catch (e) {
22757 throw __dom_wrap_exception(e); 22757 throw __dom_wrap_exception(e);
22758 } 22758 }
22759 } 22759 }
22760 22760
22761 function native__TextTrackCueWrappingImplementation__getCueAsSource(_this) { 22761 function native__TextTrackCueWrappingImplementation__getCueAsSource(_this) {
22762 try { 22762 try {
22763 return __dom_wrap(_this.$dom.getCueAsSource()); 22763 return __dom_wrap(_this.$dom.getCueAsSource());
22764 } catch (e) { 22764 } catch (e) {
22765 throw __dom_wrap_exception(e); 22765 throw __dom_wrap_exception(e);
22766 } 22766 }
22767 } 22767 }
22768 22768
22769 function native__TextTrackCueListWrappingImplementation__get__TextTrackCueList_l ength(_this) { 22769 function native__TextTrackCueListWrappingImplementation__get_length(_this) {
22770 try { 22770 try {
22771 return __dom_wrap(_this.$dom.length); 22771 return __dom_wrap(_this.$dom.length);
22772 } catch (e) { 22772 } catch (e) {
22773 throw __dom_wrap_exception(e); 22773 throw __dom_wrap_exception(e);
22774 } 22774 }
22775 } 22775 }
22776 22776
22777 function native__TextTrackCueListWrappingImplementation__getCueById(_this, id) { 22777 function native__TextTrackCueListWrappingImplementation__getCueById(_this, id) {
22778 try { 22778 try {
22779 return __dom_wrap(_this.$dom.getCueById(__dom_unwrap(id))); 22779 return __dom_wrap(_this.$dom.getCueById(__dom_unwrap(id)));
22780 } catch (e) { 22780 } catch (e) {
22781 throw __dom_wrap_exception(e); 22781 throw __dom_wrap_exception(e);
22782 } 22782 }
22783 } 22783 }
22784 22784
22785 function native__TextTrackCueListWrappingImplementation__item(_this, index) { 22785 function native__TextTrackCueListWrappingImplementation__item(_this, index) {
22786 try { 22786 try {
22787 return __dom_wrap(_this.$dom.item(__dom_unwrap(index))); 22787 return __dom_wrap(_this.$dom.item(__dom_unwrap(index)));
22788 } catch (e) { 22788 } catch (e) {
22789 throw __dom_wrap_exception(e); 22789 throw __dom_wrap_exception(e);
22790 } 22790 }
22791 } 22791 }
22792 22792
22793 function native__TimeRangesWrappingImplementation__get__TimeRanges_length(_this) { 22793 function native__TimeRangesWrappingImplementation__get_length(_this) {
22794 try { 22794 try {
22795 return __dom_wrap(_this.$dom.length); 22795 return __dom_wrap(_this.$dom.length);
22796 } catch (e) { 22796 } catch (e) {
22797 throw __dom_wrap_exception(e); 22797 throw __dom_wrap_exception(e);
22798 } 22798 }
22799 } 22799 }
22800 22800
22801 function native__TimeRangesWrappingImplementation__end(_this, index) { 22801 function native__TimeRangesWrappingImplementation__end(_this, index) {
22802 try { 22802 try {
22803 return __dom_wrap(_this.$dom.end(__dom_unwrap(index))); 22803 return __dom_wrap(_this.$dom.end(__dom_unwrap(index)));
22804 } catch (e) { 22804 } catch (e) {
22805 throw __dom_wrap_exception(e); 22805 throw __dom_wrap_exception(e);
22806 } 22806 }
22807 } 22807 }
22808 22808
22809 function native__TimeRangesWrappingImplementation__start(_this, index) { 22809 function native__TimeRangesWrappingImplementation__start(_this, index) {
22810 try { 22810 try {
22811 return __dom_wrap(_this.$dom.start(__dom_unwrap(index))); 22811 return __dom_wrap(_this.$dom.start(__dom_unwrap(index)));
22812 } catch (e) { 22812 } catch (e) {
22813 throw __dom_wrap_exception(e); 22813 throw __dom_wrap_exception(e);
22814 } 22814 }
22815 } 22815 }
22816 22816
22817 function native__TouchWrappingImplementation__get__Touch_clientX(_this) { 22817 function native__TouchWrappingImplementation__get_clientX(_this) {
22818 try { 22818 try {
22819 return __dom_wrap(_this.$dom.clientX); 22819 return __dom_wrap(_this.$dom.clientX);
22820 } catch (e) { 22820 } catch (e) {
22821 throw __dom_wrap_exception(e); 22821 throw __dom_wrap_exception(e);
22822 } 22822 }
22823 } 22823 }
22824 22824
22825 function native__TouchWrappingImplementation__get__Touch_clientY(_this) { 22825 function native__TouchWrappingImplementation__get_clientY(_this) {
22826 try { 22826 try {
22827 return __dom_wrap(_this.$dom.clientY); 22827 return __dom_wrap(_this.$dom.clientY);
22828 } catch (e) { 22828 } catch (e) {
22829 throw __dom_wrap_exception(e); 22829 throw __dom_wrap_exception(e);
22830 } 22830 }
22831 } 22831 }
22832 22832
22833 function native__TouchWrappingImplementation__get__Touch_identifier(_this) { 22833 function native__TouchWrappingImplementation__get_identifier(_this) {
22834 try { 22834 try {
22835 return __dom_wrap(_this.$dom.identifier); 22835 return __dom_wrap(_this.$dom.identifier);
22836 } catch (e) { 22836 } catch (e) {
22837 throw __dom_wrap_exception(e); 22837 throw __dom_wrap_exception(e);
22838 } 22838 }
22839 } 22839 }
22840 22840
22841 function native__TouchWrappingImplementation__get__Touch_pageX(_this) { 22841 function native__TouchWrappingImplementation__get_pageX(_this) {
22842 try { 22842 try {
22843 return __dom_wrap(_this.$dom.pageX); 22843 return __dom_wrap(_this.$dom.pageX);
22844 } catch (e) { 22844 } catch (e) {
22845 throw __dom_wrap_exception(e); 22845 throw __dom_wrap_exception(e);
22846 } 22846 }
22847 } 22847 }
22848 22848
22849 function native__TouchWrappingImplementation__get__Touch_pageY(_this) { 22849 function native__TouchWrappingImplementation__get_pageY(_this) {
22850 try { 22850 try {
22851 return __dom_wrap(_this.$dom.pageY); 22851 return __dom_wrap(_this.$dom.pageY);
22852 } catch (e) { 22852 } catch (e) {
22853 throw __dom_wrap_exception(e); 22853 throw __dom_wrap_exception(e);
22854 } 22854 }
22855 } 22855 }
22856 22856
22857 function native__TouchWrappingImplementation__get__Touch_screenX(_this) { 22857 function native__TouchWrappingImplementation__get_screenX(_this) {
22858 try { 22858 try {
22859 return __dom_wrap(_this.$dom.screenX); 22859 return __dom_wrap(_this.$dom.screenX);
22860 } catch (e) { 22860 } catch (e) {
22861 throw __dom_wrap_exception(e); 22861 throw __dom_wrap_exception(e);
22862 } 22862 }
22863 } 22863 }
22864 22864
22865 function native__TouchWrappingImplementation__get__Touch_screenY(_this) { 22865 function native__TouchWrappingImplementation__get_screenY(_this) {
22866 try { 22866 try {
22867 return __dom_wrap(_this.$dom.screenY); 22867 return __dom_wrap(_this.$dom.screenY);
22868 } catch (e) { 22868 } catch (e) {
22869 throw __dom_wrap_exception(e); 22869 throw __dom_wrap_exception(e);
22870 } 22870 }
22871 } 22871 }
22872 22872
22873 function native__TouchWrappingImplementation__get__Touch_target(_this) { 22873 function native__TouchWrappingImplementation__get_target(_this) {
22874 try { 22874 try {
22875 return __dom_wrap(_this.$dom.target); 22875 return __dom_wrap(_this.$dom.target);
22876 } catch (e) { 22876 } catch (e) {
22877 throw __dom_wrap_exception(e); 22877 throw __dom_wrap_exception(e);
22878 } 22878 }
22879 } 22879 }
22880 22880
22881 function native__TouchWrappingImplementation__get__Touch_webkitForce(_this) { 22881 function native__TouchWrappingImplementation__get_webkitForce(_this) {
22882 try { 22882 try {
22883 return __dom_wrap(_this.$dom.webkitForce); 22883 return __dom_wrap(_this.$dom.webkitForce);
22884 } catch (e) { 22884 } catch (e) {
22885 throw __dom_wrap_exception(e); 22885 throw __dom_wrap_exception(e);
22886 } 22886 }
22887 } 22887 }
22888 22888
22889 function native__TouchWrappingImplementation__get__Touch_webkitRadiusX(_this) { 22889 function native__TouchWrappingImplementation__get_webkitRadiusX(_this) {
22890 try { 22890 try {
22891 return __dom_wrap(_this.$dom.webkitRadiusX); 22891 return __dom_wrap(_this.$dom.webkitRadiusX);
22892 } catch (e) { 22892 } catch (e) {
22893 throw __dom_wrap_exception(e); 22893 throw __dom_wrap_exception(e);
22894 } 22894 }
22895 } 22895 }
22896 22896
22897 function native__TouchWrappingImplementation__get__Touch_webkitRadiusY(_this) { 22897 function native__TouchWrappingImplementation__get_webkitRadiusY(_this) {
22898 try { 22898 try {
22899 return __dom_wrap(_this.$dom.webkitRadiusY); 22899 return __dom_wrap(_this.$dom.webkitRadiusY);
22900 } catch (e) { 22900 } catch (e) {
22901 throw __dom_wrap_exception(e); 22901 throw __dom_wrap_exception(e);
22902 } 22902 }
22903 } 22903 }
22904 22904
22905 function native__TouchWrappingImplementation__get__Touch_webkitRotationAngle(_th is) { 22905 function native__TouchWrappingImplementation__get_webkitRotationAngle(_this) {
22906 try { 22906 try {
22907 return __dom_wrap(_this.$dom.webkitRotationAngle); 22907 return __dom_wrap(_this.$dom.webkitRotationAngle);
22908 } catch (e) { 22908 } catch (e) {
22909 throw __dom_wrap_exception(e); 22909 throw __dom_wrap_exception(e);
22910 } 22910 }
22911 } 22911 }
22912 22912
22913 function native__TouchEventWrappingImplementation__get__TouchEvent_altKey(_this) { 22913 function native__TouchEventWrappingImplementation__get_altKey(_this) {
22914 try { 22914 try {
22915 return __dom_wrap(_this.$dom.altKey); 22915 return __dom_wrap(_this.$dom.altKey);
22916 } catch (e) { 22916 } catch (e) {
22917 throw __dom_wrap_exception(e); 22917 throw __dom_wrap_exception(e);
22918 } 22918 }
22919 } 22919 }
22920 22920
22921 function native__TouchEventWrappingImplementation__get__TouchEvent_changedTouche s(_this) { 22921 function native__TouchEventWrappingImplementation__get_changedTouches(_this) {
22922 try { 22922 try {
22923 return __dom_wrap(_this.$dom.changedTouches); 22923 return __dom_wrap(_this.$dom.changedTouches);
22924 } catch (e) { 22924 } catch (e) {
22925 throw __dom_wrap_exception(e); 22925 throw __dom_wrap_exception(e);
22926 } 22926 }
22927 } 22927 }
22928 22928
22929 function native__TouchEventWrappingImplementation__get__TouchEvent_ctrlKey(_this ) { 22929 function native__TouchEventWrappingImplementation__get_ctrlKey(_this) {
22930 try { 22930 try {
22931 return __dom_wrap(_this.$dom.ctrlKey); 22931 return __dom_wrap(_this.$dom.ctrlKey);
22932 } catch (e) { 22932 } catch (e) {
22933 throw __dom_wrap_exception(e); 22933 throw __dom_wrap_exception(e);
22934 } 22934 }
22935 } 22935 }
22936 22936
22937 function native__TouchEventWrappingImplementation__get__TouchEvent_metaKey(_this ) { 22937 function native__TouchEventWrappingImplementation__get_metaKey(_this) {
22938 try { 22938 try {
22939 return __dom_wrap(_this.$dom.metaKey); 22939 return __dom_wrap(_this.$dom.metaKey);
22940 } catch (e) { 22940 } catch (e) {
22941 throw __dom_wrap_exception(e); 22941 throw __dom_wrap_exception(e);
22942 } 22942 }
22943 } 22943 }
22944 22944
22945 function native__TouchEventWrappingImplementation__get__TouchEvent_shiftKey(_thi s) { 22945 function native__TouchEventWrappingImplementation__get_shiftKey(_this) {
22946 try { 22946 try {
22947 return __dom_wrap(_this.$dom.shiftKey); 22947 return __dom_wrap(_this.$dom.shiftKey);
22948 } catch (e) { 22948 } catch (e) {
22949 throw __dom_wrap_exception(e); 22949 throw __dom_wrap_exception(e);
22950 } 22950 }
22951 } 22951 }
22952 22952
22953 function native__TouchEventWrappingImplementation__get__TouchEvent_targetTouches (_this) { 22953 function native__TouchEventWrappingImplementation__get_targetTouches(_this) {
22954 try { 22954 try {
22955 return __dom_wrap(_this.$dom.targetTouches); 22955 return __dom_wrap(_this.$dom.targetTouches);
22956 } catch (e) { 22956 } catch (e) {
22957 throw __dom_wrap_exception(e); 22957 throw __dom_wrap_exception(e);
22958 } 22958 }
22959 } 22959 }
22960 22960
22961 function native__TouchEventWrappingImplementation__get__TouchEvent_touches(_this ) { 22961 function native__TouchEventWrappingImplementation__get_touches(_this) {
22962 try { 22962 try {
22963 return __dom_wrap(_this.$dom.touches); 22963 return __dom_wrap(_this.$dom.touches);
22964 } catch (e) { 22964 } catch (e) {
22965 throw __dom_wrap_exception(e); 22965 throw __dom_wrap_exception(e);
22966 } 22966 }
22967 } 22967 }
22968 22968
22969 function native__TouchEventWrappingImplementation__initTouchEvent(_this, touches , targetTouches, changedTouches, type, view, screenX, screenY, clientX, clientY, ctrlKey, altKey, shiftKey, metaKey) { 22969 function native__TouchEventWrappingImplementation__initTouchEvent(_this, touches , targetTouches, changedTouches, type, view, screenX, screenY, clientX, clientY, ctrlKey, altKey, shiftKey, metaKey) {
22970 try { 22970 try {
22971 return __dom_wrap(_this.$dom.initTouchEvent(__dom_unwrap(touches), __dom_unw rap(targetTouches), __dom_unwrap(changedTouches), __dom_unwrap(type), __dom_unwr ap(view), __dom_unwrap(screenX), __dom_unwrap(screenY), __dom_unwrap(clientX), _ _dom_unwrap(clientY), __dom_unwrap(ctrlKey), __dom_unwrap(altKey), __dom_unwrap( shiftKey), __dom_unwrap(metaKey))); 22971 return __dom_wrap(_this.$dom.initTouchEvent(__dom_unwrap(touches), __dom_unw rap(targetTouches), __dom_unwrap(changedTouches), __dom_unwrap(type), __dom_unwr ap(view), __dom_unwrap(screenX), __dom_unwrap(screenY), __dom_unwrap(clientX), _ _dom_unwrap(clientY), __dom_unwrap(ctrlKey), __dom_unwrap(altKey), __dom_unwrap( shiftKey), __dom_unwrap(metaKey)));
22972 } catch (e) { 22972 } catch (e) {
22973 throw __dom_wrap_exception(e); 22973 throw __dom_wrap_exception(e);
22974 } 22974 }
22975 } 22975 }
22976 22976
22977 function native__TouchListWrappingImplementation__get__TouchList_length(_this) { 22977 function native__TouchListWrappingImplementation__get_length(_this) {
22978 try { 22978 try {
22979 return __dom_wrap(_this.$dom.length); 22979 return __dom_wrap(_this.$dom.length);
22980 } catch (e) { 22980 } catch (e) {
22981 throw __dom_wrap_exception(e); 22981 throw __dom_wrap_exception(e);
22982 } 22982 }
22983 } 22983 }
22984 22984
22985 function native__TouchListWrappingImplementation__item(_this, index) { 22985 function native__TouchListWrappingImplementation__item(_this, index) {
22986 try { 22986 try {
22987 return __dom_wrap(_this.$dom.item(__dom_unwrap(index))); 22987 return __dom_wrap(_this.$dom.item(__dom_unwrap(index)));
22988 } catch (e) { 22988 } catch (e) {
22989 throw __dom_wrap_exception(e); 22989 throw __dom_wrap_exception(e);
22990 } 22990 }
22991 } 22991 }
22992 22992
22993 function native__TreeWalkerWrappingImplementation__get__TreeWalker_currentNode(_ this) { 22993 function native__TreeWalkerWrappingImplementation__get_currentNode(_this) {
22994 try { 22994 try {
22995 return __dom_wrap(_this.$dom.currentNode); 22995 return __dom_wrap(_this.$dom.currentNode);
22996 } catch (e) { 22996 } catch (e) {
22997 throw __dom_wrap_exception(e); 22997 throw __dom_wrap_exception(e);
22998 } 22998 }
22999 } 22999 }
23000 23000
23001 function native__TreeWalkerWrappingImplementation__set__TreeWalker_currentNode(_ this, value) { 23001 function native__TreeWalkerWrappingImplementation__set_currentNode(_this, value) {
23002 try { 23002 try {
23003 _this.$dom.currentNode = __dom_unwrap(value); 23003 _this.$dom.currentNode = __dom_unwrap(value);
23004 } catch (e) { 23004 } catch (e) {
23005 throw __dom_wrap_exception(e); 23005 throw __dom_wrap_exception(e);
23006 } 23006 }
23007 } 23007 }
23008 23008
23009 function native__TreeWalkerWrappingImplementation__get__TreeWalker_expandEntityR eferences(_this) { 23009 function native__TreeWalkerWrappingImplementation__get_expandEntityReferences(_t his) {
23010 try { 23010 try {
23011 return __dom_wrap(_this.$dom.expandEntityReferences); 23011 return __dom_wrap(_this.$dom.expandEntityReferences);
23012 } catch (e) { 23012 } catch (e) {
23013 throw __dom_wrap_exception(e); 23013 throw __dom_wrap_exception(e);
23014 } 23014 }
23015 } 23015 }
23016 23016
23017 function native__TreeWalkerWrappingImplementation__get__TreeWalker_filter(_this) { 23017 function native__TreeWalkerWrappingImplementation__get_filter(_this) {
23018 try { 23018 try {
23019 return __dom_wrap(_this.$dom.filter); 23019 return __dom_wrap(_this.$dom.filter);
23020 } catch (e) { 23020 } catch (e) {
23021 throw __dom_wrap_exception(e); 23021 throw __dom_wrap_exception(e);
23022 } 23022 }
23023 } 23023 }
23024 23024
23025 function native__TreeWalkerWrappingImplementation__get__TreeWalker_root(_this) { 23025 function native__TreeWalkerWrappingImplementation__get_root(_this) {
23026 try { 23026 try {
23027 return __dom_wrap(_this.$dom.root); 23027 return __dom_wrap(_this.$dom.root);
23028 } catch (e) { 23028 } catch (e) {
23029 throw __dom_wrap_exception(e); 23029 throw __dom_wrap_exception(e);
23030 } 23030 }
23031 } 23031 }
23032 23032
23033 function native__TreeWalkerWrappingImplementation__get__TreeWalker_whatToShow(_t his) { 23033 function native__TreeWalkerWrappingImplementation__get_whatToShow(_this) {
23034 try { 23034 try {
23035 return __dom_wrap(_this.$dom.whatToShow); 23035 return __dom_wrap(_this.$dom.whatToShow);
23036 } catch (e) { 23036 } catch (e) {
23037 throw __dom_wrap_exception(e); 23037 throw __dom_wrap_exception(e);
23038 } 23038 }
23039 } 23039 }
23040 23040
23041 function native__TreeWalkerWrappingImplementation__firstChild(_this) { 23041 function native__TreeWalkerWrappingImplementation__firstChild(_this) {
23042 try { 23042 try {
23043 return __dom_wrap(_this.$dom.firstChild()); 23043 return __dom_wrap(_this.$dom.firstChild());
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
23087 } 23087 }
23088 23088
23089 function native__TreeWalkerWrappingImplementation__previousSibling(_this) { 23089 function native__TreeWalkerWrappingImplementation__previousSibling(_this) {
23090 try { 23090 try {
23091 return __dom_wrap(_this.$dom.previousSibling()); 23091 return __dom_wrap(_this.$dom.previousSibling());
23092 } catch (e) { 23092 } catch (e) {
23093 throw __dom_wrap_exception(e); 23093 throw __dom_wrap_exception(e);
23094 } 23094 }
23095 } 23095 }
23096 23096
23097 function native__UIEventWrappingImplementation__get__UIEvent_charCode(_this) { 23097 function native__UIEventWrappingImplementation__get_charCode(_this) {
23098 try { 23098 try {
23099 return __dom_wrap(_this.$dom.charCode); 23099 return __dom_wrap(_this.$dom.charCode);
23100 } catch (e) { 23100 } catch (e) {
23101 throw __dom_wrap_exception(e); 23101 throw __dom_wrap_exception(e);
23102 } 23102 }
23103 } 23103 }
23104 23104
23105 function native__UIEventWrappingImplementation__get__UIEvent_detail(_this) { 23105 function native__UIEventWrappingImplementation__get_detail(_this) {
23106 try { 23106 try {
23107 return __dom_wrap(_this.$dom.detail); 23107 return __dom_wrap(_this.$dom.detail);
23108 } catch (e) { 23108 } catch (e) {
23109 throw __dom_wrap_exception(e); 23109 throw __dom_wrap_exception(e);
23110 } 23110 }
23111 } 23111 }
23112 23112
23113 function native__UIEventWrappingImplementation__get__UIEvent_keyCode(_this) { 23113 function native__UIEventWrappingImplementation__get_keyCode(_this) {
23114 try { 23114 try {
23115 return __dom_wrap(_this.$dom.keyCode); 23115 return __dom_wrap(_this.$dom.keyCode);
23116 } catch (e) { 23116 } catch (e) {
23117 throw __dom_wrap_exception(e); 23117 throw __dom_wrap_exception(e);
23118 } 23118 }
23119 } 23119 }
23120 23120
23121 function native__UIEventWrappingImplementation__get__UIEvent_layerX(_this) { 23121 function native__UIEventWrappingImplementation__get_layerX(_this) {
23122 try { 23122 try {
23123 return __dom_wrap(_this.$dom.layerX); 23123 return __dom_wrap(_this.$dom.layerX);
23124 } catch (e) { 23124 } catch (e) {
23125 throw __dom_wrap_exception(e); 23125 throw __dom_wrap_exception(e);
23126 } 23126 }
23127 } 23127 }
23128 23128
23129 function native__UIEventWrappingImplementation__get__UIEvent_layerY(_this) { 23129 function native__UIEventWrappingImplementation__get_layerY(_this) {
23130 try { 23130 try {
23131 return __dom_wrap(_this.$dom.layerY); 23131 return __dom_wrap(_this.$dom.layerY);
23132 } catch (e) { 23132 } catch (e) {
23133 throw __dom_wrap_exception(e); 23133 throw __dom_wrap_exception(e);
23134 } 23134 }
23135 } 23135 }
23136 23136
23137 function native__UIEventWrappingImplementation__get__UIEvent_pageX(_this) { 23137 function native__UIEventWrappingImplementation__get_pageX(_this) {
23138 try { 23138 try {
23139 return __dom_wrap(_this.$dom.pageX); 23139 return __dom_wrap(_this.$dom.pageX);
23140 } catch (e) { 23140 } catch (e) {
23141 throw __dom_wrap_exception(e); 23141 throw __dom_wrap_exception(e);
23142 } 23142 }
23143 } 23143 }
23144 23144
23145 function native__UIEventWrappingImplementation__get__UIEvent_pageY(_this) { 23145 function native__UIEventWrappingImplementation__get_pageY(_this) {
23146 try { 23146 try {
23147 return __dom_wrap(_this.$dom.pageY); 23147 return __dom_wrap(_this.$dom.pageY);
23148 } catch (e) { 23148 } catch (e) {
23149 throw __dom_wrap_exception(e); 23149 throw __dom_wrap_exception(e);
23150 } 23150 }
23151 } 23151 }
23152 23152
23153 function native__UIEventWrappingImplementation__get__UIEvent_view(_this) { 23153 function native__UIEventWrappingImplementation__get_view(_this) {
23154 try { 23154 try {
23155 return __dom_wrap(_this.$dom.view); 23155 return __dom_wrap(_this.$dom.view);
23156 } catch (e) { 23156 } catch (e) {
23157 throw __dom_wrap_exception(e); 23157 throw __dom_wrap_exception(e);
23158 } 23158 }
23159 } 23159 }
23160 23160
23161 function native__UIEventWrappingImplementation__get__UIEvent_which(_this) { 23161 function native__UIEventWrappingImplementation__get_which(_this) {
23162 try { 23162 try {
23163 return __dom_wrap(_this.$dom.which); 23163 return __dom_wrap(_this.$dom.which);
23164 } catch (e) { 23164 } catch (e) {
23165 throw __dom_wrap_exception(e); 23165 throw __dom_wrap_exception(e);
23166 } 23166 }
23167 } 23167 }
23168 23168
23169 function native__UIEventWrappingImplementation__initUIEvent(_this, type, canBubb le, cancelable, view, detail) { 23169 function native__UIEventWrappingImplementation__initUIEvent(_this, type, canBubb le, cancelable, view, detail) {
23170 try { 23170 try {
23171 return __dom_wrap(_this.$dom.initUIEvent(__dom_unwrap(type), __dom_unwrap(ca nBubble), __dom_unwrap(cancelable), __dom_unwrap(view), __dom_unwrap(detail))); 23171 return __dom_wrap(_this.$dom.initUIEvent(__dom_unwrap(type), __dom_unwrap(ca nBubble), __dom_unwrap(cancelable), __dom_unwrap(view), __dom_unwrap(detail)));
23172 } catch (e) { 23172 } catch (e) {
23173 throw __dom_wrap_exception(e); 23173 throw __dom_wrap_exception(e);
23174 } 23174 }
23175 } 23175 }
23176 23176
23177 function native__Uint16ArrayWrappingImplementation__get__Uint16Array_length(_thi s) { 23177 function native__Uint16ArrayWrappingImplementation__get_length(_this) {
23178 try { 23178 try {
23179 return __dom_wrap(_this.$dom.length); 23179 return __dom_wrap(_this.$dom.length);
23180 } catch (e) { 23180 } catch (e) {
23181 throw __dom_wrap_exception(e); 23181 throw __dom_wrap_exception(e);
23182 } 23182 }
23183 } 23183 }
23184 23184
23185 function native__Uint16ArrayWrappingImplementation__subarray(_this, start) { 23185 function native__Uint16ArrayWrappingImplementation__subarray(_this, start) {
23186 try { 23186 try {
23187 return __dom_wrap(_this.$dom.subarray(__dom_unwrap(start))); 23187 return __dom_wrap(_this.$dom.subarray(__dom_unwrap(start)));
23188 } catch (e) { 23188 } catch (e) {
23189 throw __dom_wrap_exception(e); 23189 throw __dom_wrap_exception(e);
23190 } 23190 }
23191 } 23191 }
23192 23192
23193 function native__Uint16ArrayWrappingImplementation__subarray_2(_this, start, end ) { 23193 function native__Uint16ArrayWrappingImplementation__subarray_2(_this, start, end ) {
23194 try { 23194 try {
23195 return __dom_wrap(_this.$dom.subarray(__dom_unwrap(start), __dom_unwrap(end) )); 23195 return __dom_wrap(_this.$dom.subarray(__dom_unwrap(start), __dom_unwrap(end) ));
23196 } catch (e) { 23196 } catch (e) {
23197 throw __dom_wrap_exception(e); 23197 throw __dom_wrap_exception(e);
23198 } 23198 }
23199 } 23199 }
23200 23200
23201 function native__Uint32ArrayWrappingImplementation__get__Uint32Array_length(_thi s) { 23201 function native__Uint32ArrayWrappingImplementation__get_length(_this) {
23202 try { 23202 try {
23203 return __dom_wrap(_this.$dom.length); 23203 return __dom_wrap(_this.$dom.length);
23204 } catch (e) { 23204 } catch (e) {
23205 throw __dom_wrap_exception(e); 23205 throw __dom_wrap_exception(e);
23206 } 23206 }
23207 } 23207 }
23208 23208
23209 function native__Uint32ArrayWrappingImplementation__subarray(_this, start) { 23209 function native__Uint32ArrayWrappingImplementation__subarray(_this, start) {
23210 try { 23210 try {
23211 return __dom_wrap(_this.$dom.subarray(__dom_unwrap(start))); 23211 return __dom_wrap(_this.$dom.subarray(__dom_unwrap(start)));
23212 } catch (e) { 23212 } catch (e) {
23213 throw __dom_wrap_exception(e); 23213 throw __dom_wrap_exception(e);
23214 } 23214 }
23215 } 23215 }
23216 23216
23217 function native__Uint32ArrayWrappingImplementation__subarray_2(_this, start, end ) { 23217 function native__Uint32ArrayWrappingImplementation__subarray_2(_this, start, end ) {
23218 try { 23218 try {
23219 return __dom_wrap(_this.$dom.subarray(__dom_unwrap(start), __dom_unwrap(end) )); 23219 return __dom_wrap(_this.$dom.subarray(__dom_unwrap(start), __dom_unwrap(end) ));
23220 } catch (e) { 23220 } catch (e) {
23221 throw __dom_wrap_exception(e); 23221 throw __dom_wrap_exception(e);
23222 } 23222 }
23223 } 23223 }
23224 23224
23225 function native__Uint8ArrayWrappingImplementation__get__Uint8Array_length(_this) { 23225 function native__Uint8ArrayWrappingImplementation__get_length(_this) {
23226 try { 23226 try {
23227 return __dom_wrap(_this.$dom.length); 23227 return __dom_wrap(_this.$dom.length);
23228 } catch (e) { 23228 } catch (e) {
23229 throw __dom_wrap_exception(e); 23229 throw __dom_wrap_exception(e);
23230 } 23230 }
23231 } 23231 }
23232 23232
23233 function native__Uint8ArrayWrappingImplementation__subarray(_this, start) { 23233 function native__Uint8ArrayWrappingImplementation__subarray(_this, start) {
23234 try { 23234 try {
23235 return __dom_wrap(_this.$dom.subarray(__dom_unwrap(start))); 23235 return __dom_wrap(_this.$dom.subarray(__dom_unwrap(start)));
23236 } catch (e) { 23236 } catch (e) {
23237 throw __dom_wrap_exception(e); 23237 throw __dom_wrap_exception(e);
23238 } 23238 }
23239 } 23239 }
23240 23240
23241 function native__Uint8ArrayWrappingImplementation__subarray_2(_this, start, end) { 23241 function native__Uint8ArrayWrappingImplementation__subarray_2(_this, start, end) {
23242 try { 23242 try {
23243 return __dom_wrap(_this.$dom.subarray(__dom_unwrap(start), __dom_unwrap(end) )); 23243 return __dom_wrap(_this.$dom.subarray(__dom_unwrap(start), __dom_unwrap(end) ));
23244 } catch (e) { 23244 } catch (e) {
23245 throw __dom_wrap_exception(e); 23245 throw __dom_wrap_exception(e);
23246 } 23246 }
23247 } 23247 }
23248 23248
23249 function native__ValidityStateWrappingImplementation__get__ValidityState_customE rror(_this) { 23249 function native__ValidityStateWrappingImplementation__get_customError(_this) {
23250 try { 23250 try {
23251 return __dom_wrap(_this.$dom.customError); 23251 return __dom_wrap(_this.$dom.customError);
23252 } catch (e) { 23252 } catch (e) {
23253 throw __dom_wrap_exception(e); 23253 throw __dom_wrap_exception(e);
23254 } 23254 }
23255 } 23255 }
23256 23256
23257 function native__ValidityStateWrappingImplementation__get__ValidityState_pattern Mismatch(_this) { 23257 function native__ValidityStateWrappingImplementation__get_patternMismatch(_this) {
23258 try { 23258 try {
23259 return __dom_wrap(_this.$dom.patternMismatch); 23259 return __dom_wrap(_this.$dom.patternMismatch);
23260 } catch (e) { 23260 } catch (e) {
23261 throw __dom_wrap_exception(e); 23261 throw __dom_wrap_exception(e);
23262 } 23262 }
23263 } 23263 }
23264 23264
23265 function native__ValidityStateWrappingImplementation__get__ValidityState_rangeOv erflow(_this) { 23265 function native__ValidityStateWrappingImplementation__get_rangeOverflow(_this) {
23266 try { 23266 try {
23267 return __dom_wrap(_this.$dom.rangeOverflow); 23267 return __dom_wrap(_this.$dom.rangeOverflow);
23268 } catch (e) { 23268 } catch (e) {
23269 throw __dom_wrap_exception(e); 23269 throw __dom_wrap_exception(e);
23270 } 23270 }
23271 } 23271 }
23272 23272
23273 function native__ValidityStateWrappingImplementation__get__ValidityState_rangeUn derflow(_this) { 23273 function native__ValidityStateWrappingImplementation__get_rangeUnderflow(_this) {
23274 try { 23274 try {
23275 return __dom_wrap(_this.$dom.rangeUnderflow); 23275 return __dom_wrap(_this.$dom.rangeUnderflow);
23276 } catch (e) { 23276 } catch (e) {
23277 throw __dom_wrap_exception(e); 23277 throw __dom_wrap_exception(e);
23278 } 23278 }
23279 } 23279 }
23280 23280
23281 function native__ValidityStateWrappingImplementation__get__ValidityState_stepMis match(_this) { 23281 function native__ValidityStateWrappingImplementation__get_stepMismatch(_this) {
23282 try { 23282 try {
23283 return __dom_wrap(_this.$dom.stepMismatch); 23283 return __dom_wrap(_this.$dom.stepMismatch);
23284 } catch (e) { 23284 } catch (e) {
23285 throw __dom_wrap_exception(e); 23285 throw __dom_wrap_exception(e);
23286 } 23286 }
23287 } 23287 }
23288 23288
23289 function native__ValidityStateWrappingImplementation__get__ValidityState_tooLong (_this) { 23289 function native__ValidityStateWrappingImplementation__get_tooLong(_this) {
23290 try { 23290 try {
23291 return __dom_wrap(_this.$dom.tooLong); 23291 return __dom_wrap(_this.$dom.tooLong);
23292 } catch (e) { 23292 } catch (e) {
23293 throw __dom_wrap_exception(e); 23293 throw __dom_wrap_exception(e);
23294 } 23294 }
23295 } 23295 }
23296 23296
23297 function native__ValidityStateWrappingImplementation__get__ValidityState_typeMis match(_this) { 23297 function native__ValidityStateWrappingImplementation__get_typeMismatch(_this) {
23298 try { 23298 try {
23299 return __dom_wrap(_this.$dom.typeMismatch); 23299 return __dom_wrap(_this.$dom.typeMismatch);
23300 } catch (e) { 23300 } catch (e) {
23301 throw __dom_wrap_exception(e); 23301 throw __dom_wrap_exception(e);
23302 } 23302 }
23303 } 23303 }
23304 23304
23305 function native__ValidityStateWrappingImplementation__get__ValidityState_valid(_ this) { 23305 function native__ValidityStateWrappingImplementation__get_valid(_this) {
23306 try { 23306 try {
23307 return __dom_wrap(_this.$dom.valid); 23307 return __dom_wrap(_this.$dom.valid);
23308 } catch (e) { 23308 } catch (e) {
23309 throw __dom_wrap_exception(e); 23309 throw __dom_wrap_exception(e);
23310 } 23310 }
23311 } 23311 }
23312 23312
23313 function native__ValidityStateWrappingImplementation__get__ValidityState_valueMi ssing(_this) { 23313 function native__ValidityStateWrappingImplementation__get_valueMissing(_this) {
23314 try { 23314 try {
23315 return __dom_wrap(_this.$dom.valueMissing); 23315 return __dom_wrap(_this.$dom.valueMissing);
23316 } catch (e) { 23316 } catch (e) {
23317 throw __dom_wrap_exception(e); 23317 throw __dom_wrap_exception(e);
23318 } 23318 }
23319 } 23319 }
23320 23320
23321 function native__VoidCallbackWrappingImplementation__handleEvent(_this) { 23321 function native__VoidCallbackWrappingImplementation__handleEvent(_this) {
23322 try { 23322 try {
23323 return __dom_wrap(_this.$dom.handleEvent()); 23323 return __dom_wrap(_this.$dom.handleEvent());
23324 } catch (e) { 23324 } catch (e) {
23325 throw __dom_wrap_exception(e); 23325 throw __dom_wrap_exception(e);
23326 } 23326 }
23327 } 23327 }
23328 23328
23329 function native__WebGLActiveInfoWrappingImplementation__get__WebGLActiveInfo_nam e(_this) { 23329 function native__WebGLActiveInfoWrappingImplementation__get_name(_this) {
23330 try { 23330 try {
23331 return __dom_wrap(_this.$dom.name); 23331 return __dom_wrap(_this.$dom.name);
23332 } catch (e) { 23332 } catch (e) {
23333 throw __dom_wrap_exception(e); 23333 throw __dom_wrap_exception(e);
23334 } 23334 }
23335 } 23335 }
23336 23336
23337 function native__WebGLActiveInfoWrappingImplementation__get__WebGLActiveInfo_siz e(_this) { 23337 function native__WebGLActiveInfoWrappingImplementation__get_size(_this) {
23338 try { 23338 try {
23339 return __dom_wrap(_this.$dom.size); 23339 return __dom_wrap(_this.$dom.size);
23340 } catch (e) { 23340 } catch (e) {
23341 throw __dom_wrap_exception(e); 23341 throw __dom_wrap_exception(e);
23342 } 23342 }
23343 } 23343 }
23344 23344
23345 function native__WebGLActiveInfoWrappingImplementation__get__WebGLActiveInfo_typ e(_this) { 23345 function native__WebGLActiveInfoWrappingImplementation__get_type(_this) {
23346 try { 23346 try {
23347 return __dom_wrap(_this.$dom.type); 23347 return __dom_wrap(_this.$dom.type);
23348 } catch (e) { 23348 } catch (e) {
23349 throw __dom_wrap_exception(e); 23349 throw __dom_wrap_exception(e);
23350 } 23350 }
23351 } 23351 }
23352 23352
23353 function native__WebGLContextAttributesWrappingImplementation__get__WebGLContext Attributes_alpha(_this) { 23353 function native__WebGLContextAttributesWrappingImplementation__get_alpha(_this) {
23354 try { 23354 try {
23355 return __dom_wrap(_this.$dom.alpha); 23355 return __dom_wrap(_this.$dom.alpha);
23356 } catch (e) { 23356 } catch (e) {
23357 throw __dom_wrap_exception(e); 23357 throw __dom_wrap_exception(e);
23358 } 23358 }
23359 } 23359 }
23360 23360
23361 function native__WebGLContextAttributesWrappingImplementation__set__WebGLContext Attributes_alpha(_this, value) { 23361 function native__WebGLContextAttributesWrappingImplementation__set_alpha(_this, value) {
23362 try { 23362 try {
23363 _this.$dom.alpha = __dom_unwrap(value); 23363 _this.$dom.alpha = __dom_unwrap(value);
23364 } catch (e) { 23364 } catch (e) {
23365 throw __dom_wrap_exception(e); 23365 throw __dom_wrap_exception(e);
23366 } 23366 }
23367 } 23367 }
23368 23368
23369 function native__WebGLContextAttributesWrappingImplementation__get__WebGLContext Attributes_antialias(_this) { 23369 function native__WebGLContextAttributesWrappingImplementation__get_antialias(_th is) {
23370 try { 23370 try {
23371 return __dom_wrap(_this.$dom.antialias); 23371 return __dom_wrap(_this.$dom.antialias);
23372 } catch (e) { 23372 } catch (e) {
23373 throw __dom_wrap_exception(e); 23373 throw __dom_wrap_exception(e);
23374 } 23374 }
23375 } 23375 }
23376 23376
23377 function native__WebGLContextAttributesWrappingImplementation__set__WebGLContext Attributes_antialias(_this, value) { 23377 function native__WebGLContextAttributesWrappingImplementation__set_antialias(_th is, value) {
23378 try { 23378 try {
23379 _this.$dom.antialias = __dom_unwrap(value); 23379 _this.$dom.antialias = __dom_unwrap(value);
23380 } catch (e) { 23380 } catch (e) {
23381 throw __dom_wrap_exception(e); 23381 throw __dom_wrap_exception(e);
23382 } 23382 }
23383 } 23383 }
23384 23384
23385 function native__WebGLContextAttributesWrappingImplementation__get__WebGLContext Attributes_depth(_this) { 23385 function native__WebGLContextAttributesWrappingImplementation__get_depth(_this) {
23386 try { 23386 try {
23387 return __dom_wrap(_this.$dom.depth); 23387 return __dom_wrap(_this.$dom.depth);
23388 } catch (e) { 23388 } catch (e) {
23389 throw __dom_wrap_exception(e); 23389 throw __dom_wrap_exception(e);
23390 } 23390 }
23391 } 23391 }
23392 23392
23393 function native__WebGLContextAttributesWrappingImplementation__set__WebGLContext Attributes_depth(_this, value) { 23393 function native__WebGLContextAttributesWrappingImplementation__set_depth(_this, value) {
23394 try { 23394 try {
23395 _this.$dom.depth = __dom_unwrap(value); 23395 _this.$dom.depth = __dom_unwrap(value);
23396 } catch (e) { 23396 } catch (e) {
23397 throw __dom_wrap_exception(e); 23397 throw __dom_wrap_exception(e);
23398 } 23398 }
23399 } 23399 }
23400 23400
23401 function native__WebGLContextAttributesWrappingImplementation__get__WebGLContext Attributes_premultipliedAlpha(_this) { 23401 function native__WebGLContextAttributesWrappingImplementation__get_premultiplied Alpha(_this) {
23402 try { 23402 try {
23403 return __dom_wrap(_this.$dom.premultipliedAlpha); 23403 return __dom_wrap(_this.$dom.premultipliedAlpha);
23404 } catch (e) { 23404 } catch (e) {
23405 throw __dom_wrap_exception(e); 23405 throw __dom_wrap_exception(e);
23406 } 23406 }
23407 } 23407 }
23408 23408
23409 function native__WebGLContextAttributesWrappingImplementation__set__WebGLContext Attributes_premultipliedAlpha(_this, value) { 23409 function native__WebGLContextAttributesWrappingImplementation__set_premultiplied Alpha(_this, value) {
23410 try { 23410 try {
23411 _this.$dom.premultipliedAlpha = __dom_unwrap(value); 23411 _this.$dom.premultipliedAlpha = __dom_unwrap(value);
23412 } catch (e) { 23412 } catch (e) {
23413 throw __dom_wrap_exception(e); 23413 throw __dom_wrap_exception(e);
23414 } 23414 }
23415 } 23415 }
23416 23416
23417 function native__WebGLContextAttributesWrappingImplementation__get__WebGLContext Attributes_preserveDrawingBuffer(_this) { 23417 function native__WebGLContextAttributesWrappingImplementation__get_preserveDrawi ngBuffer(_this) {
23418 try { 23418 try {
23419 return __dom_wrap(_this.$dom.preserveDrawingBuffer); 23419 return __dom_wrap(_this.$dom.preserveDrawingBuffer);
23420 } catch (e) { 23420 } catch (e) {
23421 throw __dom_wrap_exception(e); 23421 throw __dom_wrap_exception(e);
23422 } 23422 }
23423 } 23423 }
23424 23424
23425 function native__WebGLContextAttributesWrappingImplementation__set__WebGLContext Attributes_preserveDrawingBuffer(_this, value) { 23425 function native__WebGLContextAttributesWrappingImplementation__set_preserveDrawi ngBuffer(_this, value) {
23426 try { 23426 try {
23427 _this.$dom.preserveDrawingBuffer = __dom_unwrap(value); 23427 _this.$dom.preserveDrawingBuffer = __dom_unwrap(value);
23428 } catch (e) { 23428 } catch (e) {
23429 throw __dom_wrap_exception(e); 23429 throw __dom_wrap_exception(e);
23430 } 23430 }
23431 } 23431 }
23432 23432
23433 function native__WebGLContextAttributesWrappingImplementation__get__WebGLContext Attributes_stencil(_this) { 23433 function native__WebGLContextAttributesWrappingImplementation__get_stencil(_this ) {
23434 try { 23434 try {
23435 return __dom_wrap(_this.$dom.stencil); 23435 return __dom_wrap(_this.$dom.stencil);
23436 } catch (e) { 23436 } catch (e) {
23437 throw __dom_wrap_exception(e); 23437 throw __dom_wrap_exception(e);
23438 } 23438 }
23439 } 23439 }
23440 23440
23441 function native__WebGLContextAttributesWrappingImplementation__set__WebGLContext Attributes_stencil(_this, value) { 23441 function native__WebGLContextAttributesWrappingImplementation__set_stencil(_this , value) {
23442 try { 23442 try {
23443 _this.$dom.stencil = __dom_unwrap(value); 23443 _this.$dom.stencil = __dom_unwrap(value);
23444 } catch (e) { 23444 } catch (e) {
23445 throw __dom_wrap_exception(e); 23445 throw __dom_wrap_exception(e);
23446 } 23446 }
23447 } 23447 }
23448 23448
23449 function native__WebGLContextEventWrappingImplementation__get__WebGLContextEvent _statusMessage(_this) { 23449 function native__WebGLContextEventWrappingImplementation__get_statusMessage(_thi s) {
23450 try { 23450 try {
23451 return __dom_wrap(_this.$dom.statusMessage); 23451 return __dom_wrap(_this.$dom.statusMessage);
23452 } catch (e) { 23452 } catch (e) {
23453 throw __dom_wrap_exception(e); 23453 throw __dom_wrap_exception(e);
23454 } 23454 }
23455 } 23455 }
23456 23456
23457 function native__WebGLDebugShadersWrappingImplementation__getTranslatedShaderSou rce(_this, shader) { 23457 function native__WebGLDebugShadersWrappingImplementation__getTranslatedShaderSou rce(_this, shader) {
23458 try { 23458 try {
23459 return __dom_wrap(_this.$dom.getTranslatedShaderSource(__dom_unwrap(shader)) ); 23459 return __dom_wrap(_this.$dom.getTranslatedShaderSource(__dom_unwrap(shader)) );
23460 } catch (e) { 23460 } catch (e) {
23461 throw __dom_wrap_exception(e); 23461 throw __dom_wrap_exception(e);
23462 } 23462 }
23463 } 23463 }
23464 23464
23465 function native__WebGLRenderingContextWrappingImplementation__get__WebGLRenderin gContext_drawingBufferHeight(_this) { 23465 function native__WebGLRenderingContextWrappingImplementation__get_drawingBufferH eight(_this) {
23466 try { 23466 try {
23467 return __dom_wrap(_this.$dom.drawingBufferHeight); 23467 return __dom_wrap(_this.$dom.drawingBufferHeight);
23468 } catch (e) { 23468 } catch (e) {
23469 throw __dom_wrap_exception(e); 23469 throw __dom_wrap_exception(e);
23470 } 23470 }
23471 } 23471 }
23472 23472
23473 function native__WebGLRenderingContextWrappingImplementation__get__WebGLRenderin gContext_drawingBufferWidth(_this) { 23473 function native__WebGLRenderingContextWrappingImplementation__get_drawingBufferW idth(_this) {
23474 try { 23474 try {
23475 return __dom_wrap(_this.$dom.drawingBufferWidth); 23475 return __dom_wrap(_this.$dom.drawingBufferWidth);
23476 } catch (e) { 23476 } catch (e) {
23477 throw __dom_wrap_exception(e); 23477 throw __dom_wrap_exception(e);
23478 } 23478 }
23479 } 23479 }
23480 23480
23481 function native__WebGLRenderingContextWrappingImplementation__activeTexture(_thi s, texture) { 23481 function native__WebGLRenderingContextWrappingImplementation__activeTexture(_thi s, texture) {
23482 try { 23482 try {
23483 return __dom_wrap(_this.$dom.activeTexture(__dom_unwrap(texture))); 23483 return __dom_wrap(_this.$dom.activeTexture(__dom_unwrap(texture)));
(...skipping 1131 matching lines...) Expand 10 before | Expand all | Expand 10 after
24615 } 24615 }
24616 24616
24617 function native__WebGLRenderingContextWrappingImplementation__viewport(_this, x, y, width, height) { 24617 function native__WebGLRenderingContextWrappingImplementation__viewport(_this, x, y, width, height) {
24618 try { 24618 try {
24619 return __dom_wrap(_this.$dom.viewport(__dom_unwrap(x), __dom_unwrap(y), __do m_unwrap(width), __dom_unwrap(height))); 24619 return __dom_wrap(_this.$dom.viewport(__dom_unwrap(x), __dom_unwrap(y), __do m_unwrap(width), __dom_unwrap(height)));
24620 } catch (e) { 24620 } catch (e) {
24621 throw __dom_wrap_exception(e); 24621 throw __dom_wrap_exception(e);
24622 } 24622 }
24623 } 24623 }
24624 24624
24625 function native__WebKitAnimationWrappingImplementation__get__WebKitAnimation_del ay(_this) { 24625 function native__WebKitAnimationWrappingImplementation__get_delay(_this) {
24626 try { 24626 try {
24627 return __dom_wrap(_this.$dom.delay); 24627 return __dom_wrap(_this.$dom.delay);
24628 } catch (e) { 24628 } catch (e) {
24629 throw __dom_wrap_exception(e); 24629 throw __dom_wrap_exception(e);
24630 } 24630 }
24631 } 24631 }
24632 24632
24633 function native__WebKitAnimationWrappingImplementation__get__WebKitAnimation_dir ection(_this) { 24633 function native__WebKitAnimationWrappingImplementation__get_direction(_this) {
24634 try { 24634 try {
24635 return __dom_wrap(_this.$dom.direction); 24635 return __dom_wrap(_this.$dom.direction);
24636 } catch (e) { 24636 } catch (e) {
24637 throw __dom_wrap_exception(e); 24637 throw __dom_wrap_exception(e);
24638 } 24638 }
24639 } 24639 }
24640 24640
24641 function native__WebKitAnimationWrappingImplementation__get__WebKitAnimation_dur ation(_this) { 24641 function native__WebKitAnimationWrappingImplementation__get_duration(_this) {
24642 try { 24642 try {
24643 return __dom_wrap(_this.$dom.duration); 24643 return __dom_wrap(_this.$dom.duration);
24644 } catch (e) { 24644 } catch (e) {
24645 throw __dom_wrap_exception(e); 24645 throw __dom_wrap_exception(e);
24646 } 24646 }
24647 } 24647 }
24648 24648
24649 function native__WebKitAnimationWrappingImplementation__get__WebKitAnimation_ela psedTime(_this) { 24649 function native__WebKitAnimationWrappingImplementation__get_elapsedTime(_this) {
24650 try { 24650 try {
24651 return __dom_wrap(_this.$dom.elapsedTime); 24651 return __dom_wrap(_this.$dom.elapsedTime);
24652 } catch (e) { 24652 } catch (e) {
24653 throw __dom_wrap_exception(e); 24653 throw __dom_wrap_exception(e);
24654 } 24654 }
24655 } 24655 }
24656 24656
24657 function native__WebKitAnimationWrappingImplementation__set__WebKitAnimation_ela psedTime(_this, value) { 24657 function native__WebKitAnimationWrappingImplementation__set_elapsedTime(_this, v alue) {
24658 try { 24658 try {
24659 _this.$dom.elapsedTime = __dom_unwrap(value); 24659 _this.$dom.elapsedTime = __dom_unwrap(value);
24660 } catch (e) { 24660 } catch (e) {
24661 throw __dom_wrap_exception(e); 24661 throw __dom_wrap_exception(e);
24662 } 24662 }
24663 } 24663 }
24664 24664
24665 function native__WebKitAnimationWrappingImplementation__get__WebKitAnimation_end ed(_this) { 24665 function native__WebKitAnimationWrappingImplementation__get_ended(_this) {
24666 try { 24666 try {
24667 return __dom_wrap(_this.$dom.ended); 24667 return __dom_wrap(_this.$dom.ended);
24668 } catch (e) { 24668 } catch (e) {
24669 throw __dom_wrap_exception(e); 24669 throw __dom_wrap_exception(e);
24670 } 24670 }
24671 } 24671 }
24672 24672
24673 function native__WebKitAnimationWrappingImplementation__get__WebKitAnimation_fil lMode(_this) { 24673 function native__WebKitAnimationWrappingImplementation__get_fillMode(_this) {
24674 try { 24674 try {
24675 return __dom_wrap(_this.$dom.fillMode); 24675 return __dom_wrap(_this.$dom.fillMode);
24676 } catch (e) { 24676 } catch (e) {
24677 throw __dom_wrap_exception(e); 24677 throw __dom_wrap_exception(e);
24678 } 24678 }
24679 } 24679 }
24680 24680
24681 function native__WebKitAnimationWrappingImplementation__get__WebKitAnimation_ite rationCount(_this) { 24681 function native__WebKitAnimationWrappingImplementation__get_iterationCount(_this ) {
24682 try { 24682 try {
24683 return __dom_wrap(_this.$dom.iterationCount); 24683 return __dom_wrap(_this.$dom.iterationCount);
24684 } catch (e) { 24684 } catch (e) {
24685 throw __dom_wrap_exception(e); 24685 throw __dom_wrap_exception(e);
24686 } 24686 }
24687 } 24687 }
24688 24688
24689 function native__WebKitAnimationWrappingImplementation__get__WebKitAnimation_nam e(_this) { 24689 function native__WebKitAnimationWrappingImplementation__get_name(_this) {
24690 try { 24690 try {
24691 return __dom_wrap(_this.$dom.name); 24691 return __dom_wrap(_this.$dom.name);
24692 } catch (e) { 24692 } catch (e) {
24693 throw __dom_wrap_exception(e); 24693 throw __dom_wrap_exception(e);
24694 } 24694 }
24695 } 24695 }
24696 24696
24697 function native__WebKitAnimationWrappingImplementation__get__WebKitAnimation_pau sed(_this) { 24697 function native__WebKitAnimationWrappingImplementation__get_paused(_this) {
24698 try { 24698 try {
24699 return __dom_wrap(_this.$dom.paused); 24699 return __dom_wrap(_this.$dom.paused);
24700 } catch (e) { 24700 } catch (e) {
24701 throw __dom_wrap_exception(e); 24701 throw __dom_wrap_exception(e);
24702 } 24702 }
24703 } 24703 }
24704 24704
24705 function native__WebKitAnimationWrappingImplementation__pause(_this) { 24705 function native__WebKitAnimationWrappingImplementation__pause(_this) {
24706 try { 24706 try {
24707 return __dom_wrap(_this.$dom.pause()); 24707 return __dom_wrap(_this.$dom.pause());
24708 } catch (e) { 24708 } catch (e) {
24709 throw __dom_wrap_exception(e); 24709 throw __dom_wrap_exception(e);
24710 } 24710 }
24711 } 24711 }
24712 24712
24713 function native__WebKitAnimationWrappingImplementation__play(_this) { 24713 function native__WebKitAnimationWrappingImplementation__play(_this) {
24714 try { 24714 try {
24715 return __dom_wrap(_this.$dom.play()); 24715 return __dom_wrap(_this.$dom.play());
24716 } catch (e) { 24716 } catch (e) {
24717 throw __dom_wrap_exception(e); 24717 throw __dom_wrap_exception(e);
24718 } 24718 }
24719 } 24719 }
24720 24720
24721 function native__WebKitAnimationEventWrappingImplementation__get__WebKitAnimatio nEvent_animationName(_this) { 24721 function native__WebKitAnimationEventWrappingImplementation__get_animationName(_ this) {
24722 try { 24722 try {
24723 return __dom_wrap(_this.$dom.animationName); 24723 return __dom_wrap(_this.$dom.animationName);
24724 } catch (e) { 24724 } catch (e) {
24725 throw __dom_wrap_exception(e); 24725 throw __dom_wrap_exception(e);
24726 } 24726 }
24727 } 24727 }
24728 24728
24729 function native__WebKitAnimationEventWrappingImplementation__get__WebKitAnimatio nEvent_elapsedTime(_this) { 24729 function native__WebKitAnimationEventWrappingImplementation__get_elapsedTime(_th is) {
24730 try { 24730 try {
24731 return __dom_wrap(_this.$dom.elapsedTime); 24731 return __dom_wrap(_this.$dom.elapsedTime);
24732 } catch (e) { 24732 } catch (e) {
24733 throw __dom_wrap_exception(e); 24733 throw __dom_wrap_exception(e);
24734 } 24734 }
24735 } 24735 }
24736 24736
24737 function native__WebKitAnimationEventWrappingImplementation__initWebKitAnimation Event(_this, typeArg, canBubbleArg, cancelableArg, animationNameArg, elapsedTime Arg) { 24737 function native__WebKitAnimationEventWrappingImplementation__initWebKitAnimation Event(_this, typeArg, canBubbleArg, cancelableArg, animationNameArg, elapsedTime Arg) {
24738 try { 24738 try {
24739 return __dom_wrap(_this.$dom.initWebKitAnimationEvent(__dom_unwrap(typeArg), __dom_unwrap(canBubbleArg), __dom_unwrap(cancelableArg), __dom_unwrap(animation NameArg), __dom_unwrap(elapsedTimeArg))); 24739 return __dom_wrap(_this.$dom.initWebKitAnimationEvent(__dom_unwrap(typeArg), __dom_unwrap(canBubbleArg), __dom_unwrap(cancelableArg), __dom_unwrap(animation NameArg), __dom_unwrap(elapsedTimeArg)));
24740 } catch (e) { 24740 } catch (e) {
24741 throw __dom_wrap_exception(e); 24741 throw __dom_wrap_exception(e);
24742 } 24742 }
24743 } 24743 }
24744 24744
24745 function native__WebKitAnimationListWrappingImplementation__get__WebKitAnimation List_length(_this) { 24745 function native__WebKitAnimationListWrappingImplementation__get_length(_this) {
24746 try { 24746 try {
24747 return __dom_wrap(_this.$dom.length); 24747 return __dom_wrap(_this.$dom.length);
24748 } catch (e) { 24748 } catch (e) {
24749 throw __dom_wrap_exception(e); 24749 throw __dom_wrap_exception(e);
24750 } 24750 }
24751 } 24751 }
24752 24752
24753 function native__WebKitAnimationListWrappingImplementation__item(_this, index) { 24753 function native__WebKitAnimationListWrappingImplementation__item(_this, index) {
24754 try { 24754 try {
24755 return __dom_wrap(_this.$dom.item(__dom_unwrap(index))); 24755 return __dom_wrap(_this.$dom.item(__dom_unwrap(index)));
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
24791 } 24791 }
24792 24792
24793 function native__WebKitBlobBuilderWrappingImplementation__getBlob_2(_this, conte ntType) { 24793 function native__WebKitBlobBuilderWrappingImplementation__getBlob_2(_this, conte ntType) {
24794 try { 24794 try {
24795 return __dom_wrap(_this.$dom.getBlob(__dom_unwrap(contentType))); 24795 return __dom_wrap(_this.$dom.getBlob(__dom_unwrap(contentType)));
24796 } catch (e) { 24796 } catch (e) {
24797 throw __dom_wrap_exception(e); 24797 throw __dom_wrap_exception(e);
24798 } 24798 }
24799 } 24799 }
24800 24800
24801 function native__WebKitCSSFilterValueWrappingImplementation__get__WebKitCSSFilte rValue_operationType(_this) { 24801 function native__WebKitCSSFilterValueWrappingImplementation__get_operationType(_ this) {
24802 try { 24802 try {
24803 return __dom_wrap(_this.$dom.operationType); 24803 return __dom_wrap(_this.$dom.operationType);
24804 } catch (e) { 24804 } catch (e) {
24805 throw __dom_wrap_exception(e); 24805 throw __dom_wrap_exception(e);
24806 } 24806 }
24807 } 24807 }
24808 24808
24809 function native__WebKitCSSKeyframeRuleWrappingImplementation__get__WebKitCSSKeyf rameRule_keyText(_this) { 24809 function native__WebKitCSSKeyframeRuleWrappingImplementation__get_keyText(_this) {
24810 try { 24810 try {
24811 return __dom_wrap(_this.$dom.keyText); 24811 return __dom_wrap(_this.$dom.keyText);
24812 } catch (e) { 24812 } catch (e) {
24813 throw __dom_wrap_exception(e); 24813 throw __dom_wrap_exception(e);
24814 } 24814 }
24815 } 24815 }
24816 24816
24817 function native__WebKitCSSKeyframeRuleWrappingImplementation__set__WebKitCSSKeyf rameRule_keyText(_this, value) { 24817 function native__WebKitCSSKeyframeRuleWrappingImplementation__set_keyText(_this, value) {
24818 try { 24818 try {
24819 _this.$dom.keyText = __dom_unwrap(value); 24819 _this.$dom.keyText = __dom_unwrap(value);
24820 } catch (e) { 24820 } catch (e) {
24821 throw __dom_wrap_exception(e); 24821 throw __dom_wrap_exception(e);
24822 } 24822 }
24823 } 24823 }
24824 24824
24825 function native__WebKitCSSKeyframeRuleWrappingImplementation__get__WebKitCSSKeyf rameRule_style(_this) { 24825 function native__WebKitCSSKeyframeRuleWrappingImplementation__get_style(_this) {
24826 try { 24826 try {
24827 return __dom_wrap(_this.$dom.style); 24827 return __dom_wrap(_this.$dom.style);
24828 } catch (e) { 24828 } catch (e) {
24829 throw __dom_wrap_exception(e); 24829 throw __dom_wrap_exception(e);
24830 } 24830 }
24831 } 24831 }
24832 24832
24833 function native__WebKitCSSKeyframesRuleWrappingImplementation__get__WebKitCSSKey framesRule_cssRules(_this) { 24833 function native__WebKitCSSKeyframesRuleWrappingImplementation__get_cssRules(_thi s) {
24834 try { 24834 try {
24835 return __dom_wrap(_this.$dom.cssRules); 24835 return __dom_wrap(_this.$dom.cssRules);
24836 } catch (e) { 24836 } catch (e) {
24837 throw __dom_wrap_exception(e); 24837 throw __dom_wrap_exception(e);
24838 } 24838 }
24839 } 24839 }
24840 24840
24841 function native__WebKitCSSKeyframesRuleWrappingImplementation__get__WebKitCSSKey framesRule_name(_this) { 24841 function native__WebKitCSSKeyframesRuleWrappingImplementation__get_name(_this) {
24842 try { 24842 try {
24843 return __dom_wrap(_this.$dom.name); 24843 return __dom_wrap(_this.$dom.name);
24844 } catch (e) { 24844 } catch (e) {
24845 throw __dom_wrap_exception(e); 24845 throw __dom_wrap_exception(e);
24846 } 24846 }
24847 } 24847 }
24848 24848
24849 function native__WebKitCSSKeyframesRuleWrappingImplementation__set__WebKitCSSKey framesRule_name(_this, value) { 24849 function native__WebKitCSSKeyframesRuleWrappingImplementation__set_name(_this, v alue) {
24850 try { 24850 try {
24851 _this.$dom.name = __dom_unwrap(value); 24851 _this.$dom.name = __dom_unwrap(value);
24852 } catch (e) { 24852 } catch (e) {
24853 throw __dom_wrap_exception(e); 24853 throw __dom_wrap_exception(e);
24854 } 24854 }
24855 } 24855 }
24856 24856
24857 function native__WebKitCSSKeyframesRuleWrappingImplementation__deleteRule(_this, key) { 24857 function native__WebKitCSSKeyframesRuleWrappingImplementation__deleteRule(_this, key) {
24858 try { 24858 try {
24859 return __dom_wrap(_this.$dom.deleteRule(__dom_unwrap(key))); 24859 return __dom_wrap(_this.$dom.deleteRule(__dom_unwrap(key)));
(...skipping 11 matching lines...) Expand all
24871 } 24871 }
24872 24872
24873 function native__WebKitCSSKeyframesRuleWrappingImplementation__insertRule(_this, rule) { 24873 function native__WebKitCSSKeyframesRuleWrappingImplementation__insertRule(_this, rule) {
24874 try { 24874 try {
24875 return __dom_wrap(_this.$dom.insertRule(__dom_unwrap(rule))); 24875 return __dom_wrap(_this.$dom.insertRule(__dom_unwrap(rule)));
24876 } catch (e) { 24876 } catch (e) {
24877 throw __dom_wrap_exception(e); 24877 throw __dom_wrap_exception(e);
24878 } 24878 }
24879 } 24879 }
24880 24880
24881 function native__WebKitCSSMatrixWrappingImplementation__get__WebKitCSSMatrix_a(_ this) { 24881 function native__WebKitCSSMatrixWrappingImplementation__get_a(_this) {
24882 try { 24882 try {
24883 return __dom_wrap(_this.$dom.a); 24883 return __dom_wrap(_this.$dom.a);
24884 } catch (e) { 24884 } catch (e) {
24885 throw __dom_wrap_exception(e); 24885 throw __dom_wrap_exception(e);
24886 } 24886 }
24887 } 24887 }
24888 24888
24889 function native__WebKitCSSMatrixWrappingImplementation__set__WebKitCSSMatrix_a(_ this, value) { 24889 function native__WebKitCSSMatrixWrappingImplementation__set_a(_this, value) {
24890 try { 24890 try {
24891 _this.$dom.a = __dom_unwrap(value); 24891 _this.$dom.a = __dom_unwrap(value);
24892 } catch (e) { 24892 } catch (e) {
24893 throw __dom_wrap_exception(e); 24893 throw __dom_wrap_exception(e);
24894 } 24894 }
24895 } 24895 }
24896 24896
24897 function native__WebKitCSSMatrixWrappingImplementation__get__WebKitCSSMatrix_b(_ this) { 24897 function native__WebKitCSSMatrixWrappingImplementation__get_b(_this) {
24898 try { 24898 try {
24899 return __dom_wrap(_this.$dom.b); 24899 return __dom_wrap(_this.$dom.b);
24900 } catch (e) { 24900 } catch (e) {
24901 throw __dom_wrap_exception(e); 24901 throw __dom_wrap_exception(e);
24902 } 24902 }
24903 } 24903 }
24904 24904
24905 function native__WebKitCSSMatrixWrappingImplementation__set__WebKitCSSMatrix_b(_ this, value) { 24905 function native__WebKitCSSMatrixWrappingImplementation__set_b(_this, value) {
24906 try { 24906 try {
24907 _this.$dom.b = __dom_unwrap(value); 24907 _this.$dom.b = __dom_unwrap(value);
24908 } catch (e) { 24908 } catch (e) {
24909 throw __dom_wrap_exception(e); 24909 throw __dom_wrap_exception(e);
24910 } 24910 }
24911 } 24911 }
24912 24912
24913 function native__WebKitCSSMatrixWrappingImplementation__get__WebKitCSSMatrix_c(_ this) { 24913 function native__WebKitCSSMatrixWrappingImplementation__get_c(_this) {
24914 try { 24914 try {
24915 return __dom_wrap(_this.$dom.c); 24915 return __dom_wrap(_this.$dom.c);
24916 } catch (e) { 24916 } catch (e) {
24917 throw __dom_wrap_exception(e); 24917 throw __dom_wrap_exception(e);
24918 } 24918 }
24919 } 24919 }
24920 24920
24921 function native__WebKitCSSMatrixWrappingImplementation__set__WebKitCSSMatrix_c(_ this, value) { 24921 function native__WebKitCSSMatrixWrappingImplementation__set_c(_this, value) {
24922 try { 24922 try {
24923 _this.$dom.c = __dom_unwrap(value); 24923 _this.$dom.c = __dom_unwrap(value);
24924 } catch (e) { 24924 } catch (e) {
24925 throw __dom_wrap_exception(e); 24925 throw __dom_wrap_exception(e);
24926 } 24926 }
24927 } 24927 }
24928 24928
24929 function native__WebKitCSSMatrixWrappingImplementation__get__WebKitCSSMatrix_d(_ this) { 24929 function native__WebKitCSSMatrixWrappingImplementation__get_d(_this) {
24930 try { 24930 try {
24931 return __dom_wrap(_this.$dom.d); 24931 return __dom_wrap(_this.$dom.d);
24932 } catch (e) { 24932 } catch (e) {
24933 throw __dom_wrap_exception(e); 24933 throw __dom_wrap_exception(e);
24934 } 24934 }
24935 } 24935 }
24936 24936
24937 function native__WebKitCSSMatrixWrappingImplementation__set__WebKitCSSMatrix_d(_ this, value) { 24937 function native__WebKitCSSMatrixWrappingImplementation__set_d(_this, value) {
24938 try { 24938 try {
24939 _this.$dom.d = __dom_unwrap(value); 24939 _this.$dom.d = __dom_unwrap(value);
24940 } catch (e) { 24940 } catch (e) {
24941 throw __dom_wrap_exception(e); 24941 throw __dom_wrap_exception(e);
24942 } 24942 }
24943 } 24943 }
24944 24944
24945 function native__WebKitCSSMatrixWrappingImplementation__get__WebKitCSSMatrix_e(_ this) { 24945 function native__WebKitCSSMatrixWrappingImplementation__get_e(_this) {
24946 try { 24946 try {
24947 return __dom_wrap(_this.$dom.e); 24947 return __dom_wrap(_this.$dom.e);
24948 } catch (e) { 24948 } catch (e) {
24949 throw __dom_wrap_exception(e); 24949 throw __dom_wrap_exception(e);
24950 } 24950 }
24951 } 24951 }
24952 24952
24953 function native__WebKitCSSMatrixWrappingImplementation__set__WebKitCSSMatrix_e(_ this, value) { 24953 function native__WebKitCSSMatrixWrappingImplementation__set_e(_this, value) {
24954 try { 24954 try {
24955 _this.$dom.e = __dom_unwrap(value); 24955 _this.$dom.e = __dom_unwrap(value);
24956 } catch (e) { 24956 } catch (e) {
24957 throw __dom_wrap_exception(e); 24957 throw __dom_wrap_exception(e);
24958 } 24958 }
24959 } 24959 }
24960 24960
24961 function native__WebKitCSSMatrixWrappingImplementation__get__WebKitCSSMatrix_f(_ this) { 24961 function native__WebKitCSSMatrixWrappingImplementation__get_f(_this) {
24962 try { 24962 try {
24963 return __dom_wrap(_this.$dom.f); 24963 return __dom_wrap(_this.$dom.f);
24964 } catch (e) { 24964 } catch (e) {
24965 throw __dom_wrap_exception(e); 24965 throw __dom_wrap_exception(e);
24966 } 24966 }
24967 } 24967 }
24968 24968
24969 function native__WebKitCSSMatrixWrappingImplementation__set__WebKitCSSMatrix_f(_ this, value) { 24969 function native__WebKitCSSMatrixWrappingImplementation__set_f(_this, value) {
24970 try { 24970 try {
24971 _this.$dom.f = __dom_unwrap(value); 24971 _this.$dom.f = __dom_unwrap(value);
24972 } catch (e) { 24972 } catch (e) {
24973 throw __dom_wrap_exception(e); 24973 throw __dom_wrap_exception(e);
24974 } 24974 }
24975 } 24975 }
24976 24976
24977 function native__WebKitCSSMatrixWrappingImplementation__get__WebKitCSSMatrix_m11 (_this) { 24977 function native__WebKitCSSMatrixWrappingImplementation__get_m11(_this) {
24978 try { 24978 try {
24979 return __dom_wrap(_this.$dom.m11); 24979 return __dom_wrap(_this.$dom.m11);
24980 } catch (e) { 24980 } catch (e) {
24981 throw __dom_wrap_exception(e); 24981 throw __dom_wrap_exception(e);
24982 } 24982 }
24983 } 24983 }
24984 24984
24985 function native__WebKitCSSMatrixWrappingImplementation__set__WebKitCSSMatrix_m11 (_this, value) { 24985 function native__WebKitCSSMatrixWrappingImplementation__set_m11(_this, value) {
24986 try { 24986 try {
24987 _this.$dom.m11 = __dom_unwrap(value); 24987 _this.$dom.m11 = __dom_unwrap(value);
24988 } catch (e) { 24988 } catch (e) {
24989 throw __dom_wrap_exception(e); 24989 throw __dom_wrap_exception(e);
24990 } 24990 }
24991 } 24991 }
24992 24992
24993 function native__WebKitCSSMatrixWrappingImplementation__get__WebKitCSSMatrix_m12 (_this) { 24993 function native__WebKitCSSMatrixWrappingImplementation__get_m12(_this) {
24994 try { 24994 try {
24995 return __dom_wrap(_this.$dom.m12); 24995 return __dom_wrap(_this.$dom.m12);
24996 } catch (e) { 24996 } catch (e) {
24997 throw __dom_wrap_exception(e); 24997 throw __dom_wrap_exception(e);
24998 } 24998 }
24999 } 24999 }
25000 25000
25001 function native__WebKitCSSMatrixWrappingImplementation__set__WebKitCSSMatrix_m12 (_this, value) { 25001 function native__WebKitCSSMatrixWrappingImplementation__set_m12(_this, value) {
25002 try { 25002 try {
25003 _this.$dom.m12 = __dom_unwrap(value); 25003 _this.$dom.m12 = __dom_unwrap(value);
25004 } catch (e) { 25004 } catch (e) {
25005 throw __dom_wrap_exception(e); 25005 throw __dom_wrap_exception(e);
25006 } 25006 }
25007 } 25007 }
25008 25008
25009 function native__WebKitCSSMatrixWrappingImplementation__get__WebKitCSSMatrix_m13 (_this) { 25009 function native__WebKitCSSMatrixWrappingImplementation__get_m13(_this) {
25010 try { 25010 try {
25011 return __dom_wrap(_this.$dom.m13); 25011 return __dom_wrap(_this.$dom.m13);
25012 } catch (e) { 25012 } catch (e) {
25013 throw __dom_wrap_exception(e); 25013 throw __dom_wrap_exception(e);
25014 } 25014 }
25015 } 25015 }
25016 25016
25017 function native__WebKitCSSMatrixWrappingImplementation__set__WebKitCSSMatrix_m13 (_this, value) { 25017 function native__WebKitCSSMatrixWrappingImplementation__set_m13(_this, value) {
25018 try { 25018 try {
25019 _this.$dom.m13 = __dom_unwrap(value); 25019 _this.$dom.m13 = __dom_unwrap(value);
25020 } catch (e) { 25020 } catch (e) {
25021 throw __dom_wrap_exception(e); 25021 throw __dom_wrap_exception(e);
25022 } 25022 }
25023 } 25023 }
25024 25024
25025 function native__WebKitCSSMatrixWrappingImplementation__get__WebKitCSSMatrix_m14 (_this) { 25025 function native__WebKitCSSMatrixWrappingImplementation__get_m14(_this) {
25026 try { 25026 try {
25027 return __dom_wrap(_this.$dom.m14); 25027 return __dom_wrap(_this.$dom.m14);
25028 } catch (e) { 25028 } catch (e) {
25029 throw __dom_wrap_exception(e); 25029 throw __dom_wrap_exception(e);
25030 } 25030 }
25031 } 25031 }
25032 25032
25033 function native__WebKitCSSMatrixWrappingImplementation__set__WebKitCSSMatrix_m14 (_this, value) { 25033 function native__WebKitCSSMatrixWrappingImplementation__set_m14(_this, value) {
25034 try { 25034 try {
25035 _this.$dom.m14 = __dom_unwrap(value); 25035 _this.$dom.m14 = __dom_unwrap(value);
25036 } catch (e) { 25036 } catch (e) {
25037 throw __dom_wrap_exception(e); 25037 throw __dom_wrap_exception(e);
25038 } 25038 }
25039 } 25039 }
25040 25040
25041 function native__WebKitCSSMatrixWrappingImplementation__get__WebKitCSSMatrix_m21 (_this) { 25041 function native__WebKitCSSMatrixWrappingImplementation__get_m21(_this) {
25042 try { 25042 try {
25043 return __dom_wrap(_this.$dom.m21); 25043 return __dom_wrap(_this.$dom.m21);
25044 } catch (e) { 25044 } catch (e) {
25045 throw __dom_wrap_exception(e); 25045 throw __dom_wrap_exception(e);
25046 } 25046 }
25047 } 25047 }
25048 25048
25049 function native__WebKitCSSMatrixWrappingImplementation__set__WebKitCSSMatrix_m21 (_this, value) { 25049 function native__WebKitCSSMatrixWrappingImplementation__set_m21(_this, value) {
25050 try { 25050 try {
25051 _this.$dom.m21 = __dom_unwrap(value); 25051 _this.$dom.m21 = __dom_unwrap(value);
25052 } catch (e) { 25052 } catch (e) {
25053 throw __dom_wrap_exception(e); 25053 throw __dom_wrap_exception(e);
25054 } 25054 }
25055 } 25055 }
25056 25056
25057 function native__WebKitCSSMatrixWrappingImplementation__get__WebKitCSSMatrix_m22 (_this) { 25057 function native__WebKitCSSMatrixWrappingImplementation__get_m22(_this) {
25058 try { 25058 try {
25059 return __dom_wrap(_this.$dom.m22); 25059 return __dom_wrap(_this.$dom.m22);
25060 } catch (e) { 25060 } catch (e) {
25061 throw __dom_wrap_exception(e); 25061 throw __dom_wrap_exception(e);
25062 } 25062 }
25063 } 25063 }
25064 25064
25065 function native__WebKitCSSMatrixWrappingImplementation__set__WebKitCSSMatrix_m22 (_this, value) { 25065 function native__WebKitCSSMatrixWrappingImplementation__set_m22(_this, value) {
25066 try { 25066 try {
25067 _this.$dom.m22 = __dom_unwrap(value); 25067 _this.$dom.m22 = __dom_unwrap(value);
25068 } catch (e) { 25068 } catch (e) {
25069 throw __dom_wrap_exception(e); 25069 throw __dom_wrap_exception(e);
25070 } 25070 }
25071 } 25071 }
25072 25072
25073 function native__WebKitCSSMatrixWrappingImplementation__get__WebKitCSSMatrix_m23 (_this) { 25073 function native__WebKitCSSMatrixWrappingImplementation__get_m23(_this) {
25074 try { 25074 try {
25075 return __dom_wrap(_this.$dom.m23); 25075 return __dom_wrap(_this.$dom.m23);
25076 } catch (e) { 25076 } catch (e) {
25077 throw __dom_wrap_exception(e); 25077 throw __dom_wrap_exception(e);
25078 } 25078 }
25079 } 25079 }
25080 25080
25081 function native__WebKitCSSMatrixWrappingImplementation__set__WebKitCSSMatrix_m23 (_this, value) { 25081 function native__WebKitCSSMatrixWrappingImplementation__set_m23(_this, value) {
25082 try { 25082 try {
25083 _this.$dom.m23 = __dom_unwrap(value); 25083 _this.$dom.m23 = __dom_unwrap(value);
25084 } catch (e) { 25084 } catch (e) {
25085 throw __dom_wrap_exception(e); 25085 throw __dom_wrap_exception(e);
25086 } 25086 }
25087 } 25087 }
25088 25088
25089 function native__WebKitCSSMatrixWrappingImplementation__get__WebKitCSSMatrix_m24 (_this) { 25089 function native__WebKitCSSMatrixWrappingImplementation__get_m24(_this) {
25090 try { 25090 try {
25091 return __dom_wrap(_this.$dom.m24); 25091 return __dom_wrap(_this.$dom.m24);
25092 } catch (e) { 25092 } catch (e) {
25093 throw __dom_wrap_exception(e); 25093 throw __dom_wrap_exception(e);
25094 } 25094 }
25095 } 25095 }
25096 25096
25097 function native__WebKitCSSMatrixWrappingImplementation__set__WebKitCSSMatrix_m24 (_this, value) { 25097 function native__WebKitCSSMatrixWrappingImplementation__set_m24(_this, value) {
25098 try { 25098 try {
25099 _this.$dom.m24 = __dom_unwrap(value); 25099 _this.$dom.m24 = __dom_unwrap(value);
25100 } catch (e) { 25100 } catch (e) {
25101 throw __dom_wrap_exception(e); 25101 throw __dom_wrap_exception(e);
25102 } 25102 }
25103 } 25103 }
25104 25104
25105 function native__WebKitCSSMatrixWrappingImplementation__get__WebKitCSSMatrix_m31 (_this) { 25105 function native__WebKitCSSMatrixWrappingImplementation__get_m31(_this) {
25106 try { 25106 try {
25107 return __dom_wrap(_this.$dom.m31); 25107 return __dom_wrap(_this.$dom.m31);
25108 } catch (e) { 25108 } catch (e) {
25109 throw __dom_wrap_exception(e); 25109 throw __dom_wrap_exception(e);
25110 } 25110 }
25111 } 25111 }
25112 25112
25113 function native__WebKitCSSMatrixWrappingImplementation__set__WebKitCSSMatrix_m31 (_this, value) { 25113 function native__WebKitCSSMatrixWrappingImplementation__set_m31(_this, value) {
25114 try { 25114 try {
25115 _this.$dom.m31 = __dom_unwrap(value); 25115 _this.$dom.m31 = __dom_unwrap(value);
25116 } catch (e) { 25116 } catch (e) {
25117 throw __dom_wrap_exception(e); 25117 throw __dom_wrap_exception(e);
25118 } 25118 }
25119 } 25119 }
25120 25120
25121 function native__WebKitCSSMatrixWrappingImplementation__get__WebKitCSSMatrix_m32 (_this) { 25121 function native__WebKitCSSMatrixWrappingImplementation__get_m32(_this) {
25122 try { 25122 try {
25123 return __dom_wrap(_this.$dom.m32); 25123 return __dom_wrap(_this.$dom.m32);
25124 } catch (e) { 25124 } catch (e) {
25125 throw __dom_wrap_exception(e); 25125 throw __dom_wrap_exception(e);
25126 } 25126 }
25127 } 25127 }
25128 25128
25129 function native__WebKitCSSMatrixWrappingImplementation__set__WebKitCSSMatrix_m32 (_this, value) { 25129 function native__WebKitCSSMatrixWrappingImplementation__set_m32(_this, value) {
25130 try { 25130 try {
25131 _this.$dom.m32 = __dom_unwrap(value); 25131 _this.$dom.m32 = __dom_unwrap(value);
25132 } catch (e) { 25132 } catch (e) {
25133 throw __dom_wrap_exception(e); 25133 throw __dom_wrap_exception(e);
25134 } 25134 }
25135 } 25135 }
25136 25136
25137 function native__WebKitCSSMatrixWrappingImplementation__get__WebKitCSSMatrix_m33 (_this) { 25137 function native__WebKitCSSMatrixWrappingImplementation__get_m33(_this) {
25138 try { 25138 try {
25139 return __dom_wrap(_this.$dom.m33); 25139 return __dom_wrap(_this.$dom.m33);
25140 } catch (e) { 25140 } catch (e) {
25141 throw __dom_wrap_exception(e); 25141 throw __dom_wrap_exception(e);
25142 } 25142 }
25143 } 25143 }
25144 25144
25145 function native__WebKitCSSMatrixWrappingImplementation__set__WebKitCSSMatrix_m33 (_this, value) { 25145 function native__WebKitCSSMatrixWrappingImplementation__set_m33(_this, value) {
25146 try { 25146 try {
25147 _this.$dom.m33 = __dom_unwrap(value); 25147 _this.$dom.m33 = __dom_unwrap(value);
25148 } catch (e) { 25148 } catch (e) {
25149 throw __dom_wrap_exception(e); 25149 throw __dom_wrap_exception(e);
25150 } 25150 }
25151 } 25151 }
25152 25152
25153 function native__WebKitCSSMatrixWrappingImplementation__get__WebKitCSSMatrix_m34 (_this) { 25153 function native__WebKitCSSMatrixWrappingImplementation__get_m34(_this) {
25154 try { 25154 try {
25155 return __dom_wrap(_this.$dom.m34); 25155 return __dom_wrap(_this.$dom.m34);
25156 } catch (e) { 25156 } catch (e) {
25157 throw __dom_wrap_exception(e); 25157 throw __dom_wrap_exception(e);
25158 } 25158 }
25159 } 25159 }
25160 25160
25161 function native__WebKitCSSMatrixWrappingImplementation__set__WebKitCSSMatrix_m34 (_this, value) { 25161 function native__WebKitCSSMatrixWrappingImplementation__set_m34(_this, value) {
25162 try { 25162 try {
25163 _this.$dom.m34 = __dom_unwrap(value); 25163 _this.$dom.m34 = __dom_unwrap(value);
25164 } catch (e) { 25164 } catch (e) {
25165 throw __dom_wrap_exception(e); 25165 throw __dom_wrap_exception(e);
25166 } 25166 }
25167 } 25167 }
25168 25168
25169 function native__WebKitCSSMatrixWrappingImplementation__get__WebKitCSSMatrix_m41 (_this) { 25169 function native__WebKitCSSMatrixWrappingImplementation__get_m41(_this) {
25170 try { 25170 try {
25171 return __dom_wrap(_this.$dom.m41); 25171 return __dom_wrap(_this.$dom.m41);
25172 } catch (e) { 25172 } catch (e) {
25173 throw __dom_wrap_exception(e); 25173 throw __dom_wrap_exception(e);
25174 } 25174 }
25175 } 25175 }
25176 25176
25177 function native__WebKitCSSMatrixWrappingImplementation__set__WebKitCSSMatrix_m41 (_this, value) { 25177 function native__WebKitCSSMatrixWrappingImplementation__set_m41(_this, value) {
25178 try { 25178 try {
25179 _this.$dom.m41 = __dom_unwrap(value); 25179 _this.$dom.m41 = __dom_unwrap(value);
25180 } catch (e) { 25180 } catch (e) {
25181 throw __dom_wrap_exception(e); 25181 throw __dom_wrap_exception(e);
25182 } 25182 }
25183 } 25183 }
25184 25184
25185 function native__WebKitCSSMatrixWrappingImplementation__get__WebKitCSSMatrix_m42 (_this) { 25185 function native__WebKitCSSMatrixWrappingImplementation__get_m42(_this) {
25186 try { 25186 try {
25187 return __dom_wrap(_this.$dom.m42); 25187 return __dom_wrap(_this.$dom.m42);
25188 } catch (e) { 25188 } catch (e) {
25189 throw __dom_wrap_exception(e); 25189 throw __dom_wrap_exception(e);
25190 } 25190 }
25191 } 25191 }
25192 25192
25193 function native__WebKitCSSMatrixWrappingImplementation__set__WebKitCSSMatrix_m42 (_this, value) { 25193 function native__WebKitCSSMatrixWrappingImplementation__set_m42(_this, value) {
25194 try { 25194 try {
25195 _this.$dom.m42 = __dom_unwrap(value); 25195 _this.$dom.m42 = __dom_unwrap(value);
25196 } catch (e) { 25196 } catch (e) {
25197 throw __dom_wrap_exception(e); 25197 throw __dom_wrap_exception(e);
25198 } 25198 }
25199 } 25199 }
25200 25200
25201 function native__WebKitCSSMatrixWrappingImplementation__get__WebKitCSSMatrix_m43 (_this) { 25201 function native__WebKitCSSMatrixWrappingImplementation__get_m43(_this) {
25202 try { 25202 try {
25203 return __dom_wrap(_this.$dom.m43); 25203 return __dom_wrap(_this.$dom.m43);
25204 } catch (e) { 25204 } catch (e) {
25205 throw __dom_wrap_exception(e); 25205 throw __dom_wrap_exception(e);
25206 } 25206 }
25207 } 25207 }
25208 25208
25209 function native__WebKitCSSMatrixWrappingImplementation__set__WebKitCSSMatrix_m43 (_this, value) { 25209 function native__WebKitCSSMatrixWrappingImplementation__set_m43(_this, value) {
25210 try { 25210 try {
25211 _this.$dom.m43 = __dom_unwrap(value); 25211 _this.$dom.m43 = __dom_unwrap(value);
25212 } catch (e) { 25212 } catch (e) {
25213 throw __dom_wrap_exception(e); 25213 throw __dom_wrap_exception(e);
25214 } 25214 }
25215 } 25215 }
25216 25216
25217 function native__WebKitCSSMatrixWrappingImplementation__get__WebKitCSSMatrix_m44 (_this) { 25217 function native__WebKitCSSMatrixWrappingImplementation__get_m44(_this) {
25218 try { 25218 try {
25219 return __dom_wrap(_this.$dom.m44); 25219 return __dom_wrap(_this.$dom.m44);
25220 } catch (e) { 25220 } catch (e) {
25221 throw __dom_wrap_exception(e); 25221 throw __dom_wrap_exception(e);
25222 } 25222 }
25223 } 25223 }
25224 25224
25225 function native__WebKitCSSMatrixWrappingImplementation__set__WebKitCSSMatrix_m44 (_this, value) { 25225 function native__WebKitCSSMatrixWrappingImplementation__set_m44(_this, value) {
25226 try { 25226 try {
25227 _this.$dom.m44 = __dom_unwrap(value); 25227 _this.$dom.m44 = __dom_unwrap(value);
25228 } catch (e) { 25228 } catch (e) {
25229 throw __dom_wrap_exception(e); 25229 throw __dom_wrap_exception(e);
25230 } 25230 }
25231 } 25231 }
25232 25232
25233 function native__WebKitCSSMatrixWrappingImplementation__inverse(_this) { 25233 function native__WebKitCSSMatrixWrappingImplementation__inverse(_this) {
25234 try { 25234 try {
25235 return __dom_wrap(_this.$dom.inverse()); 25235 return __dom_wrap(_this.$dom.inverse());
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
25303 } 25303 }
25304 25304
25305 function native__WebKitCSSMatrixWrappingImplementation__translate(_this, x, y, z ) { 25305 function native__WebKitCSSMatrixWrappingImplementation__translate(_this, x, y, z ) {
25306 try { 25306 try {
25307 return __dom_wrap(_this.$dom.translate(__dom_unwrap(x), __dom_unwrap(y), __d om_unwrap(z))); 25307 return __dom_wrap(_this.$dom.translate(__dom_unwrap(x), __dom_unwrap(y), __d om_unwrap(z)));
25308 } catch (e) { 25308 } catch (e) {
25309 throw __dom_wrap_exception(e); 25309 throw __dom_wrap_exception(e);
25310 } 25310 }
25311 } 25311 }
25312 25312
25313 function native__WebKitCSSTransformValueWrappingImplementation__get__WebKitCSSTr ansformValue_operationType(_this) { 25313 function native__WebKitCSSTransformValueWrappingImplementation__get_operationTyp e(_this) {
25314 try { 25314 try {
25315 return __dom_wrap(_this.$dom.operationType); 25315 return __dom_wrap(_this.$dom.operationType);
25316 } catch (e) { 25316 } catch (e) {
25317 throw __dom_wrap_exception(e); 25317 throw __dom_wrap_exception(e);
25318 } 25318 }
25319 } 25319 }
25320 25320
25321 function native__WebKitFlagsWrappingImplementation__get__WebKitFlags_create(_thi s) { 25321 function native__WebKitFlagsWrappingImplementation__get_create(_this) {
25322 try { 25322 try {
25323 return __dom_wrap(_this.$dom.create); 25323 return __dom_wrap(_this.$dom.create);
25324 } catch (e) { 25324 } catch (e) {
25325 throw __dom_wrap_exception(e); 25325 throw __dom_wrap_exception(e);
25326 } 25326 }
25327 } 25327 }
25328 25328
25329 function native__WebKitFlagsWrappingImplementation__set__WebKitFlags_create(_thi s, value) { 25329 function native__WebKitFlagsWrappingImplementation__set_create(_this, value) {
25330 try { 25330 try {
25331 _this.$dom.create = __dom_unwrap(value); 25331 _this.$dom.create = __dom_unwrap(value);
25332 } catch (e) { 25332 } catch (e) {
25333 throw __dom_wrap_exception(e); 25333 throw __dom_wrap_exception(e);
25334 } 25334 }
25335 } 25335 }
25336 25336
25337 function native__WebKitFlagsWrappingImplementation__get__WebKitFlags_exclusive(_ this) { 25337 function native__WebKitFlagsWrappingImplementation__get_exclusive(_this) {
25338 try { 25338 try {
25339 return __dom_wrap(_this.$dom.exclusive); 25339 return __dom_wrap(_this.$dom.exclusive);
25340 } catch (e) { 25340 } catch (e) {
25341 throw __dom_wrap_exception(e); 25341 throw __dom_wrap_exception(e);
25342 } 25342 }
25343 } 25343 }
25344 25344
25345 function native__WebKitFlagsWrappingImplementation__set__WebKitFlags_exclusive(_ this, value) { 25345 function native__WebKitFlagsWrappingImplementation__set_exclusive(_this, value) {
25346 try { 25346 try {
25347 _this.$dom.exclusive = __dom_unwrap(value); 25347 _this.$dom.exclusive = __dom_unwrap(value);
25348 } catch (e) { 25348 } catch (e) {
25349 throw __dom_wrap_exception(e); 25349 throw __dom_wrap_exception(e);
25350 } 25350 }
25351 } 25351 }
25352 25352
25353 function native__WebKitLoseContextWrappingImplementation__loseContext(_this) { 25353 function native__WebKitLoseContextWrappingImplementation__loseContext(_this) {
25354 try { 25354 try {
25355 return __dom_wrap(_this.$dom.loseContext()); 25355 return __dom_wrap(_this.$dom.loseContext());
(...skipping 11 matching lines...) Expand all
25367 } 25367 }
25368 25368
25369 function native__WebKitMutationObserverWrappingImplementation__disconnect(_this) { 25369 function native__WebKitMutationObserverWrappingImplementation__disconnect(_this) {
25370 try { 25370 try {
25371 return __dom_wrap(_this.$dom.disconnect()); 25371 return __dom_wrap(_this.$dom.disconnect());
25372 } catch (e) { 25372 } catch (e) {
25373 throw __dom_wrap_exception(e); 25373 throw __dom_wrap_exception(e);
25374 } 25374 }
25375 } 25375 }
25376 25376
25377 function native__WebKitPointWrappingImplementation__get__WebKitPoint_x(_this) { 25377 function native__WebKitPointWrappingImplementation__get_x(_this) {
25378 try { 25378 try {
25379 return __dom_wrap(_this.$dom.x); 25379 return __dom_wrap(_this.$dom.x);
25380 } catch (e) { 25380 } catch (e) {
25381 throw __dom_wrap_exception(e); 25381 throw __dom_wrap_exception(e);
25382 } 25382 }
25383 } 25383 }
25384 25384
25385 function native__WebKitPointWrappingImplementation__set__WebKitPoint_x(_this, va lue) { 25385 function native__WebKitPointWrappingImplementation__set_x(_this, value) {
25386 try { 25386 try {
25387 _this.$dom.x = __dom_unwrap(value); 25387 _this.$dom.x = __dom_unwrap(value);
25388 } catch (e) { 25388 } catch (e) {
25389 throw __dom_wrap_exception(e); 25389 throw __dom_wrap_exception(e);
25390 } 25390 }
25391 } 25391 }
25392 25392
25393 function native__WebKitPointWrappingImplementation__get__WebKitPoint_y(_this) { 25393 function native__WebKitPointWrappingImplementation__get_y(_this) {
25394 try { 25394 try {
25395 return __dom_wrap(_this.$dom.y); 25395 return __dom_wrap(_this.$dom.y);
25396 } catch (e) { 25396 } catch (e) {
25397 throw __dom_wrap_exception(e); 25397 throw __dom_wrap_exception(e);
25398 } 25398 }
25399 } 25399 }
25400 25400
25401 function native__WebKitPointWrappingImplementation__set__WebKitPoint_y(_this, va lue) { 25401 function native__WebKitPointWrappingImplementation__set_y(_this, value) {
25402 try { 25402 try {
25403 _this.$dom.y = __dom_unwrap(value); 25403 _this.$dom.y = __dom_unwrap(value);
25404 } catch (e) { 25404 } catch (e) {
25405 throw __dom_wrap_exception(e); 25405 throw __dom_wrap_exception(e);
25406 } 25406 }
25407 } 25407 }
25408 25408
25409 function native__WebKitTransitionEventWrappingImplementation__get__WebKitTransit ionEvent_elapsedTime(_this) { 25409 function native__WebKitTransitionEventWrappingImplementation__get_elapsedTime(_t his) {
25410 try { 25410 try {
25411 return __dom_wrap(_this.$dom.elapsedTime); 25411 return __dom_wrap(_this.$dom.elapsedTime);
25412 } catch (e) { 25412 } catch (e) {
25413 throw __dom_wrap_exception(e); 25413 throw __dom_wrap_exception(e);
25414 } 25414 }
25415 } 25415 }
25416 25416
25417 function native__WebKitTransitionEventWrappingImplementation__get__WebKitTransit ionEvent_propertyName(_this) { 25417 function native__WebKitTransitionEventWrappingImplementation__get_propertyName(_ this) {
25418 try { 25418 try {
25419 return __dom_wrap(_this.$dom.propertyName); 25419 return __dom_wrap(_this.$dom.propertyName);
25420 } catch (e) { 25420 } catch (e) {
25421 throw __dom_wrap_exception(e); 25421 throw __dom_wrap_exception(e);
25422 } 25422 }
25423 } 25423 }
25424 25424
25425 function native__WebKitTransitionEventWrappingImplementation__initWebKitTransiti onEvent(_this, typeArg, canBubbleArg, cancelableArg, propertyNameArg, elapsedTim eArg) { 25425 function native__WebKitTransitionEventWrappingImplementation__initWebKitTransiti onEvent(_this, typeArg, canBubbleArg, cancelableArg, propertyNameArg, elapsedTim eArg) {
25426 try { 25426 try {
25427 return __dom_wrap(_this.$dom.initWebKitTransitionEvent(__dom_unwrap(typeArg) , __dom_unwrap(canBubbleArg), __dom_unwrap(cancelableArg), __dom_unwrap(property NameArg), __dom_unwrap(elapsedTimeArg))); 25427 return __dom_wrap(_this.$dom.initWebKitTransitionEvent(__dom_unwrap(typeArg) , __dom_unwrap(canBubbleArg), __dom_unwrap(cancelableArg), __dom_unwrap(property NameArg), __dom_unwrap(elapsedTimeArg)));
25428 } catch (e) { 25428 } catch (e) {
25429 throw __dom_wrap_exception(e); 25429 throw __dom_wrap_exception(e);
25430 } 25430 }
25431 } 25431 }
25432 25432
25433 function native__WebSocketWrappingImplementation__get__WebSocket_URL(_this) { 25433 function native__WebSocketWrappingImplementation__get_URL(_this) {
25434 try { 25434 try {
25435 return __dom_wrap(_this.$dom.URL); 25435 return __dom_wrap(_this.$dom.URL);
25436 } catch (e) { 25436 } catch (e) {
25437 throw __dom_wrap_exception(e); 25437 throw __dom_wrap_exception(e);
25438 } 25438 }
25439 } 25439 }
25440 25440
25441 function native__WebSocketWrappingImplementation__get__WebSocket_binaryType(_thi s) { 25441 function native__WebSocketWrappingImplementation__get_binaryType(_this) {
25442 try { 25442 try {
25443 return __dom_wrap(_this.$dom.binaryType); 25443 return __dom_wrap(_this.$dom.binaryType);
25444 } catch (e) { 25444 } catch (e) {
25445 throw __dom_wrap_exception(e); 25445 throw __dom_wrap_exception(e);
25446 } 25446 }
25447 } 25447 }
25448 25448
25449 function native__WebSocketWrappingImplementation__set__WebSocket_binaryType(_thi s, value) { 25449 function native__WebSocketWrappingImplementation__set_binaryType(_this, value) {
25450 try { 25450 try {
25451 _this.$dom.binaryType = __dom_unwrap(value); 25451 _this.$dom.binaryType = __dom_unwrap(value);
25452 } catch (e) { 25452 } catch (e) {
25453 throw __dom_wrap_exception(e); 25453 throw __dom_wrap_exception(e);
25454 } 25454 }
25455 } 25455 }
25456 25456
25457 function native__WebSocketWrappingImplementation__get__WebSocket_bufferedAmount( _this) { 25457 function native__WebSocketWrappingImplementation__get_bufferedAmount(_this) {
25458 try { 25458 try {
25459 return __dom_wrap(_this.$dom.bufferedAmount); 25459 return __dom_wrap(_this.$dom.bufferedAmount);
25460 } catch (e) { 25460 } catch (e) {
25461 throw __dom_wrap_exception(e); 25461 throw __dom_wrap_exception(e);
25462 } 25462 }
25463 } 25463 }
25464 25464
25465 function native__WebSocketWrappingImplementation__get__WebSocket_extensions(_thi s) { 25465 function native__WebSocketWrappingImplementation__get_extensions(_this) {
25466 try { 25466 try {
25467 return __dom_wrap(_this.$dom.extensions); 25467 return __dom_wrap(_this.$dom.extensions);
25468 } catch (e) { 25468 } catch (e) {
25469 throw __dom_wrap_exception(e); 25469 throw __dom_wrap_exception(e);
25470 } 25470 }
25471 } 25471 }
25472 25472
25473 function native__WebSocketWrappingImplementation__get__WebSocket_onclose(_this) { 25473 function native__WebSocketWrappingImplementation__get_onclose(_this) {
25474 try { 25474 try {
25475 return __dom_wrap(_this.$dom.onclose); 25475 return __dom_wrap(_this.$dom.onclose);
25476 } catch (e) { 25476 } catch (e) {
25477 throw __dom_wrap_exception(e); 25477 throw __dom_wrap_exception(e);
25478 } 25478 }
25479 } 25479 }
25480 25480
25481 function native__WebSocketWrappingImplementation__set__WebSocket_onclose(_this, value) { 25481 function native__WebSocketWrappingImplementation__set_onclose(_this, value) {
25482 try { 25482 try {
25483 _this.$dom.onclose = __dom_unwrap(value); 25483 _this.$dom.onclose = __dom_unwrap(value);
25484 } catch (e) { 25484 } catch (e) {
25485 throw __dom_wrap_exception(e); 25485 throw __dom_wrap_exception(e);
25486 } 25486 }
25487 } 25487 }
25488 25488
25489 function native__WebSocketWrappingImplementation__get__WebSocket_onerror(_this) { 25489 function native__WebSocketWrappingImplementation__get_onerror(_this) {
25490 try { 25490 try {
25491 return __dom_wrap(_this.$dom.onerror); 25491 return __dom_wrap(_this.$dom.onerror);
25492 } catch (e) { 25492 } catch (e) {
25493 throw __dom_wrap_exception(e); 25493 throw __dom_wrap_exception(e);
25494 } 25494 }
25495 } 25495 }
25496 25496
25497 function native__WebSocketWrappingImplementation__set__WebSocket_onerror(_this, value) { 25497 function native__WebSocketWrappingImplementation__set_onerror(_this, value) {
25498 try { 25498 try {
25499 _this.$dom.onerror = __dom_unwrap(value); 25499 _this.$dom.onerror = __dom_unwrap(value);
25500 } catch (e) { 25500 } catch (e) {
25501 throw __dom_wrap_exception(e); 25501 throw __dom_wrap_exception(e);
25502 } 25502 }
25503 } 25503 }
25504 25504
25505 function native__WebSocketWrappingImplementation__get__WebSocket_onmessage(_this ) { 25505 function native__WebSocketWrappingImplementation__get_onmessage(_this) {
25506 try { 25506 try {
25507 return __dom_wrap(_this.$dom.onmessage); 25507 return __dom_wrap(_this.$dom.onmessage);
25508 } catch (e) { 25508 } catch (e) {
25509 throw __dom_wrap_exception(e); 25509 throw __dom_wrap_exception(e);
25510 } 25510 }
25511 } 25511 }
25512 25512
25513 function native__WebSocketWrappingImplementation__set__WebSocket_onmessage(_this , value) { 25513 function native__WebSocketWrappingImplementation__set_onmessage(_this, value) {
25514 try { 25514 try {
25515 _this.$dom.onmessage = __dom_unwrap(value); 25515 _this.$dom.onmessage = __dom_unwrap(value);
25516 } catch (e) { 25516 } catch (e) {
25517 throw __dom_wrap_exception(e); 25517 throw __dom_wrap_exception(e);
25518 } 25518 }
25519 } 25519 }
25520 25520
25521 function native__WebSocketWrappingImplementation__get__WebSocket_onopen(_this) { 25521 function native__WebSocketWrappingImplementation__get_onopen(_this) {
25522 try { 25522 try {
25523 return __dom_wrap(_this.$dom.onopen); 25523 return __dom_wrap(_this.$dom.onopen);
25524 } catch (e) { 25524 } catch (e) {
25525 throw __dom_wrap_exception(e); 25525 throw __dom_wrap_exception(e);
25526 } 25526 }
25527 } 25527 }
25528 25528
25529 function native__WebSocketWrappingImplementation__set__WebSocket_onopen(_this, v alue) { 25529 function native__WebSocketWrappingImplementation__set_onopen(_this, value) {
25530 try { 25530 try {
25531 _this.$dom.onopen = __dom_unwrap(value); 25531 _this.$dom.onopen = __dom_unwrap(value);
25532 } catch (e) { 25532 } catch (e) {
25533 throw __dom_wrap_exception(e); 25533 throw __dom_wrap_exception(e);
25534 } 25534 }
25535 } 25535 }
25536 25536
25537 function native__WebSocketWrappingImplementation__get__WebSocket_protocol(_this) { 25537 function native__WebSocketWrappingImplementation__get_protocol(_this) {
25538 try { 25538 try {
25539 return __dom_wrap(_this.$dom.protocol); 25539 return __dom_wrap(_this.$dom.protocol);
25540 } catch (e) { 25540 } catch (e) {
25541 throw __dom_wrap_exception(e); 25541 throw __dom_wrap_exception(e);
25542 } 25542 }
25543 } 25543 }
25544 25544
25545 function native__WebSocketWrappingImplementation__get__WebSocket_readyState(_thi s) { 25545 function native__WebSocketWrappingImplementation__get_readyState(_this) {
25546 try { 25546 try {
25547 return __dom_wrap(_this.$dom.readyState); 25547 return __dom_wrap(_this.$dom.readyState);
25548 } catch (e) { 25548 } catch (e) {
25549 throw __dom_wrap_exception(e); 25549 throw __dom_wrap_exception(e);
25550 } 25550 }
25551 } 25551 }
25552 25552
25553 function native__WebSocketWrappingImplementation__addEventListener(_this, type, listener) { 25553 function native__WebSocketWrappingImplementation__addEventListener_WebSocket(_th is, type, listener) {
25554 try { 25554 try {
25555 return __dom_wrap(_this.$dom.addEventListener(__dom_unwrap(type), __dom_unwr ap(listener))); 25555 return __dom_wrap(_this.$dom.addEventListener(__dom_unwrap(type), __dom_unwr ap(listener)));
25556 } catch (e) { 25556 } catch (e) {
25557 throw __dom_wrap_exception(e); 25557 throw __dom_wrap_exception(e);
25558 } 25558 }
25559 } 25559 }
25560 25560
25561 function native__WebSocketWrappingImplementation__addEventListener_2(_this, type , listener, useCapture) { 25561 function native__WebSocketWrappingImplementation__addEventListener_WebSocket_2(_ this, type, listener, useCapture) {
25562 try { 25562 try {
25563 return __dom_wrap(_this.$dom.addEventListener(__dom_unwrap(type), __dom_unwr ap(listener), __dom_unwrap(useCapture))); 25563 return __dom_wrap(_this.$dom.addEventListener(__dom_unwrap(type), __dom_unwr ap(listener), __dom_unwrap(useCapture)));
25564 } catch (e) { 25564 } catch (e) {
25565 throw __dom_wrap_exception(e); 25565 throw __dom_wrap_exception(e);
25566 } 25566 }
25567 } 25567 }
25568 25568
25569 function native__WebSocketWrappingImplementation__close(_this) { 25569 function native__WebSocketWrappingImplementation__close(_this) {
25570 try { 25570 try {
25571 return __dom_wrap(_this.$dom.close()); 25571 return __dom_wrap(_this.$dom.close());
(...skipping 11 matching lines...) Expand all
25583 } 25583 }
25584 25584
25585 function native__WebSocketWrappingImplementation__close_3(_this, code, reason) { 25585 function native__WebSocketWrappingImplementation__close_3(_this, code, reason) {
25586 try { 25586 try {
25587 return __dom_wrap(_this.$dom.close(__dom_unwrap(code), __dom_unwrap(reason)) ); 25587 return __dom_wrap(_this.$dom.close(__dom_unwrap(code), __dom_unwrap(reason)) );
25588 } catch (e) { 25588 } catch (e) {
25589 throw __dom_wrap_exception(e); 25589 throw __dom_wrap_exception(e);
25590 } 25590 }
25591 } 25591 }
25592 25592
25593 function native__WebSocketWrappingImplementation__dispatchEvent(_this, evt) { 25593 function native__WebSocketWrappingImplementation__dispatchEvent_WebSocket(_this, evt) {
25594 try { 25594 try {
25595 return __dom_wrap(_this.$dom.dispatchEvent(__dom_unwrap(evt))); 25595 return __dom_wrap(_this.$dom.dispatchEvent(__dom_unwrap(evt)));
25596 } catch (e) { 25596 } catch (e) {
25597 throw __dom_wrap_exception(e); 25597 throw __dom_wrap_exception(e);
25598 } 25598 }
25599 } 25599 }
25600 25600
25601 function native__WebSocketWrappingImplementation__removeEventListener(_this, typ e, listener) { 25601 function native__WebSocketWrappingImplementation__removeEventListener_WebSocket( _this, type, listener) {
25602 try { 25602 try {
25603 return __dom_wrap(_this.$dom.removeEventListener(__dom_unwrap(type), __dom_u nwrap(listener))); 25603 return __dom_wrap(_this.$dom.removeEventListener(__dom_unwrap(type), __dom_u nwrap(listener)));
25604 } catch (e) { 25604 } catch (e) {
25605 throw __dom_wrap_exception(e); 25605 throw __dom_wrap_exception(e);
25606 } 25606 }
25607 } 25607 }
25608 25608
25609 function native__WebSocketWrappingImplementation__removeEventListener_2(_this, t ype, listener, useCapture) { 25609 function native__WebSocketWrappingImplementation__removeEventListener_WebSocket_ 2(_this, type, listener, useCapture) {
25610 try { 25610 try {
25611 return __dom_wrap(_this.$dom.removeEventListener(__dom_unwrap(type), __dom_u nwrap(listener), __dom_unwrap(useCapture))); 25611 return __dom_wrap(_this.$dom.removeEventListener(__dom_unwrap(type), __dom_u nwrap(listener), __dom_unwrap(useCapture)));
25612 } catch (e) { 25612 } catch (e) {
25613 throw __dom_wrap_exception(e); 25613 throw __dom_wrap_exception(e);
25614 } 25614 }
25615 } 25615 }
25616 25616
25617 function native__WebSocketWrappingImplementation__send(_this, data) { 25617 function native__WebSocketWrappingImplementation__send(_this, data) {
25618 try { 25618 try {
25619 return __dom_wrap(_this.$dom.send(__dom_unwrap(data))); 25619 return __dom_wrap(_this.$dom.send(__dom_unwrap(data)));
25620 } catch (e) { 25620 } catch (e) {
25621 throw __dom_wrap_exception(e); 25621 throw __dom_wrap_exception(e);
25622 } 25622 }
25623 } 25623 }
25624 25624
25625 function native__WheelEventWrappingImplementation__get__WheelEvent_altKey(_this) { 25625 function native__WheelEventWrappingImplementation__get_altKey(_this) {
25626 try { 25626 try {
25627 return __dom_wrap(_this.$dom.altKey); 25627 return __dom_wrap(_this.$dom.altKey);
25628 } catch (e) { 25628 } catch (e) {
25629 throw __dom_wrap_exception(e); 25629 throw __dom_wrap_exception(e);
25630 } 25630 }
25631 } 25631 }
25632 25632
25633 function native__WheelEventWrappingImplementation__get__WheelEvent_clientX(_this ) { 25633 function native__WheelEventWrappingImplementation__get_clientX(_this) {
25634 try { 25634 try {
25635 return __dom_wrap(_this.$dom.clientX); 25635 return __dom_wrap(_this.$dom.clientX);
25636 } catch (e) { 25636 } catch (e) {
25637 throw __dom_wrap_exception(e); 25637 throw __dom_wrap_exception(e);
25638 } 25638 }
25639 } 25639 }
25640 25640
25641 function native__WheelEventWrappingImplementation__get__WheelEvent_clientY(_this ) { 25641 function native__WheelEventWrappingImplementation__get_clientY(_this) {
25642 try { 25642 try {
25643 return __dom_wrap(_this.$dom.clientY); 25643 return __dom_wrap(_this.$dom.clientY);
25644 } catch (e) { 25644 } catch (e) {
25645 throw __dom_wrap_exception(e); 25645 throw __dom_wrap_exception(e);
25646 } 25646 }
25647 } 25647 }
25648 25648
25649 function native__WheelEventWrappingImplementation__get__WheelEvent_ctrlKey(_this ) { 25649 function native__WheelEventWrappingImplementation__get_ctrlKey(_this) {
25650 try { 25650 try {
25651 return __dom_wrap(_this.$dom.ctrlKey); 25651 return __dom_wrap(_this.$dom.ctrlKey);
25652 } catch (e) { 25652 } catch (e) {
25653 throw __dom_wrap_exception(e); 25653 throw __dom_wrap_exception(e);
25654 } 25654 }
25655 } 25655 }
25656 25656
25657 function native__WheelEventWrappingImplementation__get__WheelEvent_metaKey(_this ) { 25657 function native__WheelEventWrappingImplementation__get_metaKey(_this) {
25658 try { 25658 try {
25659 return __dom_wrap(_this.$dom.metaKey); 25659 return __dom_wrap(_this.$dom.metaKey);
25660 } catch (e) { 25660 } catch (e) {
25661 throw __dom_wrap_exception(e); 25661 throw __dom_wrap_exception(e);
25662 } 25662 }
25663 } 25663 }
25664 25664
25665 function native__WheelEventWrappingImplementation__get__WheelEvent_offsetX(_this ) { 25665 function native__WheelEventWrappingImplementation__get_offsetX(_this) {
25666 try { 25666 try {
25667 return __dom_wrap(_this.$dom.offsetX); 25667 return __dom_wrap(_this.$dom.offsetX);
25668 } catch (e) { 25668 } catch (e) {
25669 throw __dom_wrap_exception(e); 25669 throw __dom_wrap_exception(e);
25670 } 25670 }
25671 } 25671 }
25672 25672
25673 function native__WheelEventWrappingImplementation__get__WheelEvent_offsetY(_this ) { 25673 function native__WheelEventWrappingImplementation__get_offsetY(_this) {
25674 try { 25674 try {
25675 return __dom_wrap(_this.$dom.offsetY); 25675 return __dom_wrap(_this.$dom.offsetY);
25676 } catch (e) { 25676 } catch (e) {
25677 throw __dom_wrap_exception(e); 25677 throw __dom_wrap_exception(e);
25678 } 25678 }
25679 } 25679 }
25680 25680
25681 function native__WheelEventWrappingImplementation__get__WheelEvent_screenX(_this ) { 25681 function native__WheelEventWrappingImplementation__get_screenX(_this) {
25682 try { 25682 try {
25683 return __dom_wrap(_this.$dom.screenX); 25683 return __dom_wrap(_this.$dom.screenX);
25684 } catch (e) { 25684 } catch (e) {
25685 throw __dom_wrap_exception(e); 25685 throw __dom_wrap_exception(e);
25686 } 25686 }
25687 } 25687 }
25688 25688
25689 function native__WheelEventWrappingImplementation__get__WheelEvent_screenY(_this ) { 25689 function native__WheelEventWrappingImplementation__get_screenY(_this) {
25690 try { 25690 try {
25691 return __dom_wrap(_this.$dom.screenY); 25691 return __dom_wrap(_this.$dom.screenY);
25692 } catch (e) { 25692 } catch (e) {
25693 throw __dom_wrap_exception(e); 25693 throw __dom_wrap_exception(e);
25694 } 25694 }
25695 } 25695 }
25696 25696
25697 function native__WheelEventWrappingImplementation__get__WheelEvent_shiftKey(_thi s) { 25697 function native__WheelEventWrappingImplementation__get_shiftKey(_this) {
25698 try { 25698 try {
25699 return __dom_wrap(_this.$dom.shiftKey); 25699 return __dom_wrap(_this.$dom.shiftKey);
25700 } catch (e) { 25700 } catch (e) {
25701 throw __dom_wrap_exception(e); 25701 throw __dom_wrap_exception(e);
25702 } 25702 }
25703 } 25703 }
25704 25704
25705 function native__WheelEventWrappingImplementation__get__WheelEvent_webkitDirecti onInvertedFromDevice(_this) { 25705 function native__WheelEventWrappingImplementation__get_webkitDirectionInvertedFr omDevice(_this) {
25706 try { 25706 try {
25707 return __dom_wrap(_this.$dom.webkitDirectionInvertedFromDevice); 25707 return __dom_wrap(_this.$dom.webkitDirectionInvertedFromDevice);
25708 } catch (e) { 25708 } catch (e) {
25709 throw __dom_wrap_exception(e); 25709 throw __dom_wrap_exception(e);
25710 } 25710 }
25711 } 25711 }
25712 25712
25713 function native__WheelEventWrappingImplementation__get__WheelEvent_wheelDelta(_t his) { 25713 function native__WheelEventWrappingImplementation__get_wheelDelta(_this) {
25714 try { 25714 try {
25715 return __dom_wrap(_this.$dom.wheelDelta); 25715 return __dom_wrap(_this.$dom.wheelDelta);
25716 } catch (e) { 25716 } catch (e) {
25717 throw __dom_wrap_exception(e); 25717 throw __dom_wrap_exception(e);
25718 } 25718 }
25719 } 25719 }
25720 25720
25721 function native__WheelEventWrappingImplementation__get__WheelEvent_wheelDeltaX(_ this) { 25721 function native__WheelEventWrappingImplementation__get_wheelDeltaX(_this) {
25722 try { 25722 try {
25723 return __dom_wrap(_this.$dom.wheelDeltaX); 25723 return __dom_wrap(_this.$dom.wheelDeltaX);
25724 } catch (e) { 25724 } catch (e) {
25725 throw __dom_wrap_exception(e); 25725 throw __dom_wrap_exception(e);
25726 } 25726 }
25727 } 25727 }
25728 25728
25729 function native__WheelEventWrappingImplementation__get__WheelEvent_wheelDeltaY(_ this) { 25729 function native__WheelEventWrappingImplementation__get_wheelDeltaY(_this) {
25730 try { 25730 try {
25731 return __dom_wrap(_this.$dom.wheelDeltaY); 25731 return __dom_wrap(_this.$dom.wheelDeltaY);
25732 } catch (e) { 25732 } catch (e) {
25733 throw __dom_wrap_exception(e); 25733 throw __dom_wrap_exception(e);
25734 } 25734 }
25735 } 25735 }
25736 25736
25737 function native__WheelEventWrappingImplementation__get__WheelEvent_x(_this) { 25737 function native__WheelEventWrappingImplementation__get_x(_this) {
25738 try { 25738 try {
25739 return __dom_wrap(_this.$dom.x); 25739 return __dom_wrap(_this.$dom.x);
25740 } catch (e) { 25740 } catch (e) {
25741 throw __dom_wrap_exception(e); 25741 throw __dom_wrap_exception(e);
25742 } 25742 }
25743 } 25743 }
25744 25744
25745 function native__WheelEventWrappingImplementation__get__WheelEvent_y(_this) { 25745 function native__WheelEventWrappingImplementation__get_y(_this) {
25746 try { 25746 try {
25747 return __dom_wrap(_this.$dom.y); 25747 return __dom_wrap(_this.$dom.y);
25748 } catch (e) { 25748 } catch (e) {
25749 throw __dom_wrap_exception(e); 25749 throw __dom_wrap_exception(e);
25750 } 25750 }
25751 } 25751 }
25752 25752
25753 function native__WheelEventWrappingImplementation__initWebKitWheelEvent(_this, w heelDeltaX, wheelDeltaY, view, screenX, screenY, clientX, clientY, ctrlKey, altK ey, shiftKey, metaKey) { 25753 function native__WheelEventWrappingImplementation__initWebKitWheelEvent(_this, w heelDeltaX, wheelDeltaY, view, screenX, screenY, clientX, clientY, ctrlKey, altK ey, shiftKey, metaKey) {
25754 try { 25754 try {
25755 return __dom_wrap(_this.$dom.initWebKitWheelEvent(__dom_unwrap(wheelDeltaX), __dom_unwrap(wheelDeltaY), __dom_unwrap(view), __dom_unwrap(screenX), __dom_unw rap(screenY), __dom_unwrap(clientX), __dom_unwrap(clientY), __dom_unwrap(ctrlKey ), __dom_unwrap(altKey), __dom_unwrap(shiftKey), __dom_unwrap(metaKey))); 25755 return __dom_wrap(_this.$dom.initWebKitWheelEvent(__dom_unwrap(wheelDeltaX), __dom_unwrap(wheelDeltaY), __dom_unwrap(view), __dom_unwrap(screenX), __dom_unw rap(screenY), __dom_unwrap(clientX), __dom_unwrap(clientY), __dom_unwrap(ctrlKey ), __dom_unwrap(altKey), __dom_unwrap(shiftKey), __dom_unwrap(metaKey)));
25756 } catch (e) { 25756 } catch (e) {
25757 throw __dom_wrap_exception(e); 25757 throw __dom_wrap_exception(e);
25758 } 25758 }
25759 } 25759 }
25760 25760
25761 function native__WorkerWrappingImplementation__get__Worker_onmessage(_this) { 25761 function native__WorkerWrappingImplementation__get_onmessage(_this) {
25762 try { 25762 try {
25763 return __dom_wrap(_this.$dom.onmessage); 25763 return __dom_wrap(_this.$dom.onmessage);
25764 } catch (e) { 25764 } catch (e) {
25765 throw __dom_wrap_exception(e); 25765 throw __dom_wrap_exception(e);
25766 } 25766 }
25767 } 25767 }
25768 25768
25769 function native__WorkerWrappingImplementation__set__Worker_onmessage(_this, valu e) { 25769 function native__WorkerWrappingImplementation__set_onmessage(_this, value) {
25770 try { 25770 try {
25771 _this.$dom.onmessage = __dom_unwrap(value); 25771 _this.$dom.onmessage = __dom_unwrap(value);
25772 } catch (e) { 25772 } catch (e) {
25773 throw __dom_wrap_exception(e); 25773 throw __dom_wrap_exception(e);
25774 } 25774 }
25775 } 25775 }
25776 25776
25777 function native__WorkerWrappingImplementation__postMessage(_this, message) { 25777 function native__WorkerWrappingImplementation__postMessage(_this, message) {
25778 try { 25778 try {
25779 return __dom_wrap(_this.$dom.postMessage(__dom_unwrap(message))); 25779 return __dom_wrap(_this.$dom.postMessage(__dom_unwrap(message)));
(...skipping 27 matching lines...) Expand all
25807 } 25807 }
25808 25808
25809 function native__WorkerWrappingImplementation__webkitPostMessage_2(_this, messag e, messagePorts) { 25809 function native__WorkerWrappingImplementation__webkitPostMessage_2(_this, messag e, messagePorts) {
25810 try { 25810 try {
25811 return __dom_wrap(_this.$dom.webkitPostMessage(__dom_unwrap(message), __dom_ unwrap(messagePorts))); 25811 return __dom_wrap(_this.$dom.webkitPostMessage(__dom_unwrap(message), __dom_ unwrap(messagePorts)));
25812 } catch (e) { 25812 } catch (e) {
25813 throw __dom_wrap_exception(e); 25813 throw __dom_wrap_exception(e);
25814 } 25814 }
25815 } 25815 }
25816 25816
25817 function native__WorkerContextWrappingImplementation__get__WorkerContext_locatio n(_this) { 25817 function native__WorkerContextWrappingImplementation__get_location(_this) {
25818 try { 25818 try {
25819 return __dom_wrap(_this.$dom.location); 25819 return __dom_wrap(_this.$dom.location);
25820 } catch (e) { 25820 } catch (e) {
25821 throw __dom_wrap_exception(e); 25821 throw __dom_wrap_exception(e);
25822 } 25822 }
25823 } 25823 }
25824 25824
25825 function native__WorkerContextWrappingImplementation__set__WorkerContext_locatio n(_this, value) { 25825 function native__WorkerContextWrappingImplementation__set_location(_this, value) {
25826 try { 25826 try {
25827 _this.$dom.location = __dom_unwrap(value); 25827 _this.$dom.location = __dom_unwrap(value);
25828 } catch (e) { 25828 } catch (e) {
25829 throw __dom_wrap_exception(e); 25829 throw __dom_wrap_exception(e);
25830 } 25830 }
25831 } 25831 }
25832 25832
25833 function native__WorkerContextWrappingImplementation__get__WorkerContext_navigat or(_this) { 25833 function native__WorkerContextWrappingImplementation__get_navigator(_this) {
25834 try { 25834 try {
25835 return __dom_wrap(_this.$dom.navigator); 25835 return __dom_wrap(_this.$dom.navigator);
25836 } catch (e) { 25836 } catch (e) {
25837 throw __dom_wrap_exception(e); 25837 throw __dom_wrap_exception(e);
25838 } 25838 }
25839 } 25839 }
25840 25840
25841 function native__WorkerContextWrappingImplementation__set__WorkerContext_navigat or(_this, value) { 25841 function native__WorkerContextWrappingImplementation__set_navigator(_this, value ) {
25842 try { 25842 try {
25843 _this.$dom.navigator = __dom_unwrap(value); 25843 _this.$dom.navigator = __dom_unwrap(value);
25844 } catch (e) { 25844 } catch (e) {
25845 throw __dom_wrap_exception(e); 25845 throw __dom_wrap_exception(e);
25846 } 25846 }
25847 } 25847 }
25848 25848
25849 function native__WorkerContextWrappingImplementation__get__WorkerContext_onerror (_this) { 25849 function native__WorkerContextWrappingImplementation__get_onerror(_this) {
25850 try { 25850 try {
25851 return __dom_wrap(_this.$dom.onerror); 25851 return __dom_wrap(_this.$dom.onerror);
25852 } catch (e) { 25852 } catch (e) {
25853 throw __dom_wrap_exception(e); 25853 throw __dom_wrap_exception(e);
25854 } 25854 }
25855 } 25855 }
25856 25856
25857 function native__WorkerContextWrappingImplementation__set__WorkerContext_onerror (_this, value) { 25857 function native__WorkerContextWrappingImplementation__set_onerror(_this, value) {
25858 try { 25858 try {
25859 _this.$dom.onerror = __dom_unwrap(value); 25859 _this.$dom.onerror = __dom_unwrap(value);
25860 } catch (e) { 25860 } catch (e) {
25861 throw __dom_wrap_exception(e); 25861 throw __dom_wrap_exception(e);
25862 } 25862 }
25863 } 25863 }
25864 25864
25865 function native__WorkerContextWrappingImplementation__get__WorkerContext_self(_t his) { 25865 function native__WorkerContextWrappingImplementation__get_self(_this) {
25866 try { 25866 try {
25867 return __dom_wrap(_this.$dom.self); 25867 return __dom_wrap(_this.$dom.self);
25868 } catch (e) { 25868 } catch (e) {
25869 throw __dom_wrap_exception(e); 25869 throw __dom_wrap_exception(e);
25870 } 25870 }
25871 } 25871 }
25872 25872
25873 function native__WorkerContextWrappingImplementation__set__WorkerContext_self(_t his, value) { 25873 function native__WorkerContextWrappingImplementation__set_self(_this, value) {
25874 try { 25874 try {
25875 _this.$dom.self = __dom_unwrap(value); 25875 _this.$dom.self = __dom_unwrap(value);
25876 } catch (e) { 25876 } catch (e) {
25877 throw __dom_wrap_exception(e); 25877 throw __dom_wrap_exception(e);
25878 } 25878 }
25879 } 25879 }
25880 25880
25881 function native__WorkerContextWrappingImplementation__get__WorkerContext_webkitN otifications(_this) { 25881 function native__WorkerContextWrappingImplementation__get_webkitNotifications(_t his) {
25882 try { 25882 try {
25883 return __dom_wrap(_this.$dom.webkitNotifications); 25883 return __dom_wrap(_this.$dom.webkitNotifications);
25884 } catch (e) { 25884 } catch (e) {
25885 throw __dom_wrap_exception(e); 25885 throw __dom_wrap_exception(e);
25886 } 25886 }
25887 } 25887 }
25888 25888
25889 function native__WorkerContextWrappingImplementation__get__WorkerContext_webkitU RL(_this) { 25889 function native__WorkerContextWrappingImplementation__get_webkitURL(_this) {
25890 try { 25890 try {
25891 return __dom_wrap(_this.$dom.webkitURL); 25891 return __dom_wrap(_this.$dom.webkitURL);
25892 } catch (e) { 25892 } catch (e) {
25893 throw __dom_wrap_exception(e); 25893 throw __dom_wrap_exception(e);
25894 } 25894 }
25895 } 25895 }
25896 25896
25897 function native__WorkerContextWrappingImplementation__addEventListener(_this, ty pe, listener) { 25897 function native__WorkerContextWrappingImplementation__addEventListener(_this, ty pe, listener) {
25898 try { 25898 try {
25899 return __dom_wrap(_this.$dom.addEventListener(__dom_unwrap(type), __dom_unwr ap(listener))); 25899 return __dom_wrap(_this.$dom.addEventListener(__dom_unwrap(type), __dom_unwr ap(listener)));
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
25959 } 25959 }
25960 25960
25961 function native__WorkerContextWrappingImplementation__removeEventListener_2(_thi s, type, listener, useCapture) { 25961 function native__WorkerContextWrappingImplementation__removeEventListener_2(_thi s, type, listener, useCapture) {
25962 try { 25962 try {
25963 return __dom_wrap(_this.$dom.removeEventListener(__dom_unwrap(type), __dom_u nwrap(listener), __dom_unwrap(useCapture))); 25963 return __dom_wrap(_this.$dom.removeEventListener(__dom_unwrap(type), __dom_u nwrap(listener), __dom_unwrap(useCapture)));
25964 } catch (e) { 25964 } catch (e) {
25965 throw __dom_wrap_exception(e); 25965 throw __dom_wrap_exception(e);
25966 } 25966 }
25967 } 25967 }
25968 25968
25969 function native__WorkerLocationWrappingImplementation__get__WorkerLocation_hash( _this) { 25969 function native__WorkerLocationWrappingImplementation__get_hash(_this) {
25970 try { 25970 try {
25971 return __dom_wrap(_this.$dom.hash); 25971 return __dom_wrap(_this.$dom.hash);
25972 } catch (e) { 25972 } catch (e) {
25973 throw __dom_wrap_exception(e); 25973 throw __dom_wrap_exception(e);
25974 } 25974 }
25975 } 25975 }
25976 25976
25977 function native__WorkerLocationWrappingImplementation__get__WorkerLocation_host( _this) { 25977 function native__WorkerLocationWrappingImplementation__get_host(_this) {
25978 try { 25978 try {
25979 return __dom_wrap(_this.$dom.host); 25979 return __dom_wrap(_this.$dom.host);
25980 } catch (e) { 25980 } catch (e) {
25981 throw __dom_wrap_exception(e); 25981 throw __dom_wrap_exception(e);
25982 } 25982 }
25983 } 25983 }
25984 25984
25985 function native__WorkerLocationWrappingImplementation__get__WorkerLocation_hostn ame(_this) { 25985 function native__WorkerLocationWrappingImplementation__get_hostname(_this) {
25986 try { 25986 try {
25987 return __dom_wrap(_this.$dom.hostname); 25987 return __dom_wrap(_this.$dom.hostname);
25988 } catch (e) { 25988 } catch (e) {
25989 throw __dom_wrap_exception(e); 25989 throw __dom_wrap_exception(e);
25990 } 25990 }
25991 } 25991 }
25992 25992
25993 function native__WorkerLocationWrappingImplementation__get__WorkerLocation_href( _this) { 25993 function native__WorkerLocationWrappingImplementation__get_href(_this) {
25994 try { 25994 try {
25995 return __dom_wrap(_this.$dom.href); 25995 return __dom_wrap(_this.$dom.href);
25996 } catch (e) { 25996 } catch (e) {
25997 throw __dom_wrap_exception(e); 25997 throw __dom_wrap_exception(e);
25998 } 25998 }
25999 } 25999 }
26000 26000
26001 function native__WorkerLocationWrappingImplementation__get__WorkerLocation_pathn ame(_this) { 26001 function native__WorkerLocationWrappingImplementation__get_pathname(_this) {
26002 try { 26002 try {
26003 return __dom_wrap(_this.$dom.pathname); 26003 return __dom_wrap(_this.$dom.pathname);
26004 } catch (e) { 26004 } catch (e) {
26005 throw __dom_wrap_exception(e); 26005 throw __dom_wrap_exception(e);
26006 } 26006 }
26007 } 26007 }
26008 26008
26009 function native__WorkerLocationWrappingImplementation__get__WorkerLocation_port( _this) { 26009 function native__WorkerLocationWrappingImplementation__get_port(_this) {
26010 try { 26010 try {
26011 return __dom_wrap(_this.$dom.port); 26011 return __dom_wrap(_this.$dom.port);
26012 } catch (e) { 26012 } catch (e) {
26013 throw __dom_wrap_exception(e); 26013 throw __dom_wrap_exception(e);
26014 } 26014 }
26015 } 26015 }
26016 26016
26017 function native__WorkerLocationWrappingImplementation__get__WorkerLocation_proto col(_this) { 26017 function native__WorkerLocationWrappingImplementation__get_protocol(_this) {
26018 try { 26018 try {
26019 return __dom_wrap(_this.$dom.protocol); 26019 return __dom_wrap(_this.$dom.protocol);
26020 } catch (e) { 26020 } catch (e) {
26021 throw __dom_wrap_exception(e); 26021 throw __dom_wrap_exception(e);
26022 } 26022 }
26023 } 26023 }
26024 26024
26025 function native__WorkerLocationWrappingImplementation__get__WorkerLocation_searc h(_this) { 26025 function native__WorkerLocationWrappingImplementation__get_search(_this) {
26026 try { 26026 try {
26027 return __dom_wrap(_this.$dom.search); 26027 return __dom_wrap(_this.$dom.search);
26028 } catch (e) { 26028 } catch (e) {
26029 throw __dom_wrap_exception(e); 26029 throw __dom_wrap_exception(e);
26030 } 26030 }
26031 } 26031 }
26032 26032
26033 function native__WorkerLocationWrappingImplementation__toString(_this) { 26033 function native__WorkerLocationWrappingImplementation__toString(_this) {
26034 try { 26034 try {
26035 return __dom_wrap(_this.$dom.toString()); 26035 return __dom_wrap(_this.$dom.toString());
26036 } catch (e) { 26036 } catch (e) {
26037 throw __dom_wrap_exception(e); 26037 throw __dom_wrap_exception(e);
26038 } 26038 }
26039 } 26039 }
26040 26040
26041 function native__WorkerNavigatorWrappingImplementation__get__WorkerNavigator_app Name(_this) { 26041 function native__WorkerNavigatorWrappingImplementation__get_appName(_this) {
26042 try { 26042 try {
26043 return __dom_wrap(_this.$dom.appName); 26043 return __dom_wrap(_this.$dom.appName);
26044 } catch (e) { 26044 } catch (e) {
26045 throw __dom_wrap_exception(e); 26045 throw __dom_wrap_exception(e);
26046 } 26046 }
26047 } 26047 }
26048 26048
26049 function native__WorkerNavigatorWrappingImplementation__get__WorkerNavigator_app Version(_this) { 26049 function native__WorkerNavigatorWrappingImplementation__get_appVersion(_this) {
26050 try { 26050 try {
26051 return __dom_wrap(_this.$dom.appVersion); 26051 return __dom_wrap(_this.$dom.appVersion);
26052 } catch (e) { 26052 } catch (e) {
26053 throw __dom_wrap_exception(e); 26053 throw __dom_wrap_exception(e);
26054 } 26054 }
26055 } 26055 }
26056 26056
26057 function native__WorkerNavigatorWrappingImplementation__get__WorkerNavigator_onL ine(_this) { 26057 function native__WorkerNavigatorWrappingImplementation__get_onLine(_this) {
26058 try { 26058 try {
26059 return __dom_wrap(_this.$dom.onLine); 26059 return __dom_wrap(_this.$dom.onLine);
26060 } catch (e) { 26060 } catch (e) {
26061 throw __dom_wrap_exception(e); 26061 throw __dom_wrap_exception(e);
26062 } 26062 }
26063 } 26063 }
26064 26064
26065 function native__WorkerNavigatorWrappingImplementation__get__WorkerNavigator_pla tform(_this) { 26065 function native__WorkerNavigatorWrappingImplementation__get_platform(_this) {
26066 try { 26066 try {
26067 return __dom_wrap(_this.$dom.platform); 26067 return __dom_wrap(_this.$dom.platform);
26068 } catch (e) { 26068 } catch (e) {
26069 throw __dom_wrap_exception(e); 26069 throw __dom_wrap_exception(e);
26070 } 26070 }
26071 } 26071 }
26072 26072
26073 function native__WorkerNavigatorWrappingImplementation__get__WorkerNavigator_use rAgent(_this) { 26073 function native__WorkerNavigatorWrappingImplementation__get_userAgent(_this) {
26074 try { 26074 try {
26075 return __dom_wrap(_this.$dom.userAgent); 26075 return __dom_wrap(_this.$dom.userAgent);
26076 } catch (e) { 26076 } catch (e) {
26077 throw __dom_wrap_exception(e); 26077 throw __dom_wrap_exception(e);
26078 } 26078 }
26079 } 26079 }
26080 26080
26081 function native__XMLHttpRequestWrappingImplementation__get__XMLHttpRequest_asBlo b(_this) { 26081 function native__XMLHttpRequestWrappingImplementation__get_asBlob(_this) {
26082 try { 26082 try {
26083 return __dom_wrap(_this.$dom.asBlob); 26083 return __dom_wrap(_this.$dom.asBlob);
26084 } catch (e) { 26084 } catch (e) {
26085 throw __dom_wrap_exception(e); 26085 throw __dom_wrap_exception(e);
26086 } 26086 }
26087 } 26087 }
26088 26088
26089 function native__XMLHttpRequestWrappingImplementation__set__XMLHttpRequest_asBlo b(_this, value) { 26089 function native__XMLHttpRequestWrappingImplementation__set_asBlob(_this, value) {
26090 try { 26090 try {
26091 _this.$dom.asBlob = __dom_unwrap(value); 26091 _this.$dom.asBlob = __dom_unwrap(value);
26092 } catch (e) { 26092 } catch (e) {
26093 throw __dom_wrap_exception(e); 26093 throw __dom_wrap_exception(e);
26094 } 26094 }
26095 } 26095 }
26096 26096
26097 function native__XMLHttpRequestWrappingImplementation__get__XMLHttpRequest_onabo rt(_this) { 26097 function native__XMLHttpRequestWrappingImplementation__get_onabort(_this) {
26098 try { 26098 try {
26099 return __dom_wrap(_this.$dom.onabort); 26099 return __dom_wrap(_this.$dom.onabort);
26100 } catch (e) { 26100 } catch (e) {
26101 throw __dom_wrap_exception(e); 26101 throw __dom_wrap_exception(e);
26102 } 26102 }
26103 } 26103 }
26104 26104
26105 function native__XMLHttpRequestWrappingImplementation__set__XMLHttpRequest_onabo rt(_this, value) { 26105 function native__XMLHttpRequestWrappingImplementation__set_onabort(_this, value) {
26106 try { 26106 try {
26107 _this.$dom.onabort = __dom_unwrap(value); 26107 _this.$dom.onabort = __dom_unwrap(value);
26108 } catch (e) { 26108 } catch (e) {
26109 throw __dom_wrap_exception(e); 26109 throw __dom_wrap_exception(e);
26110 } 26110 }
26111 } 26111 }
26112 26112
26113 function native__XMLHttpRequestWrappingImplementation__get__XMLHttpRequest_onerr or(_this) { 26113 function native__XMLHttpRequestWrappingImplementation__get_onerror(_this) {
26114 try { 26114 try {
26115 return __dom_wrap(_this.$dom.onerror); 26115 return __dom_wrap(_this.$dom.onerror);
26116 } catch (e) { 26116 } catch (e) {
26117 throw __dom_wrap_exception(e); 26117 throw __dom_wrap_exception(e);
26118 } 26118 }
26119 } 26119 }
26120 26120
26121 function native__XMLHttpRequestWrappingImplementation__set__XMLHttpRequest_onerr or(_this, value) { 26121 function native__XMLHttpRequestWrappingImplementation__set_onerror(_this, value) {
26122 try { 26122 try {
26123 _this.$dom.onerror = __dom_unwrap(value); 26123 _this.$dom.onerror = __dom_unwrap(value);
26124 } catch (e) { 26124 } catch (e) {
26125 throw __dom_wrap_exception(e); 26125 throw __dom_wrap_exception(e);
26126 } 26126 }
26127 } 26127 }
26128 26128
26129 function native__XMLHttpRequestWrappingImplementation__get__XMLHttpRequest_onloa d(_this) { 26129 function native__XMLHttpRequestWrappingImplementation__get_onload(_this) {
26130 try { 26130 try {
26131 return __dom_wrap(_this.$dom.onload); 26131 return __dom_wrap(_this.$dom.onload);
26132 } catch (e) { 26132 } catch (e) {
26133 throw __dom_wrap_exception(e); 26133 throw __dom_wrap_exception(e);
26134 } 26134 }
26135 } 26135 }
26136 26136
26137 function native__XMLHttpRequestWrappingImplementation__set__XMLHttpRequest_onloa d(_this, value) { 26137 function native__XMLHttpRequestWrappingImplementation__set_onload(_this, value) {
26138 try { 26138 try {
26139 _this.$dom.onload = __dom_unwrap(value); 26139 _this.$dom.onload = __dom_unwrap(value);
26140 } catch (e) { 26140 } catch (e) {
26141 throw __dom_wrap_exception(e); 26141 throw __dom_wrap_exception(e);
26142 } 26142 }
26143 } 26143 }
26144 26144
26145 function native__XMLHttpRequestWrappingImplementation__get__XMLHttpRequest_onloa dstart(_this) { 26145 function native__XMLHttpRequestWrappingImplementation__get_onloadstart(_this) {
26146 try { 26146 try {
26147 return __dom_wrap(_this.$dom.onloadstart); 26147 return __dom_wrap(_this.$dom.onloadstart);
26148 } catch (e) { 26148 } catch (e) {
26149 throw __dom_wrap_exception(e); 26149 throw __dom_wrap_exception(e);
26150 } 26150 }
26151 } 26151 }
26152 26152
26153 function native__XMLHttpRequestWrappingImplementation__set__XMLHttpRequest_onloa dstart(_this, value) { 26153 function native__XMLHttpRequestWrappingImplementation__set_onloadstart(_this, va lue) {
26154 try { 26154 try {
26155 _this.$dom.onloadstart = __dom_unwrap(value); 26155 _this.$dom.onloadstart = __dom_unwrap(value);
26156 } catch (e) { 26156 } catch (e) {
26157 throw __dom_wrap_exception(e); 26157 throw __dom_wrap_exception(e);
26158 } 26158 }
26159 } 26159 }
26160 26160
26161 function native__XMLHttpRequestWrappingImplementation__get__XMLHttpRequest_onpro gress(_this) { 26161 function native__XMLHttpRequestWrappingImplementation__get_onprogress(_this) {
26162 try { 26162 try {
26163 return __dom_wrap(_this.$dom.onprogress); 26163 return __dom_wrap(_this.$dom.onprogress);
26164 } catch (e) { 26164 } catch (e) {
26165 throw __dom_wrap_exception(e); 26165 throw __dom_wrap_exception(e);
26166 } 26166 }
26167 } 26167 }
26168 26168
26169 function native__XMLHttpRequestWrappingImplementation__set__XMLHttpRequest_onpro gress(_this, value) { 26169 function native__XMLHttpRequestWrappingImplementation__set_onprogress(_this, val ue) {
26170 try { 26170 try {
26171 _this.$dom.onprogress = __dom_unwrap(value); 26171 _this.$dom.onprogress = __dom_unwrap(value);
26172 } catch (e) { 26172 } catch (e) {
26173 throw __dom_wrap_exception(e); 26173 throw __dom_wrap_exception(e);
26174 } 26174 }
26175 } 26175 }
26176 26176
26177 function native__XMLHttpRequestWrappingImplementation__get__XMLHttpRequest_onrea dystatechange(_this) { 26177 function native__XMLHttpRequestWrappingImplementation__get_onreadystatechange(_t his) {
26178 try { 26178 try {
26179 return __dom_wrap(_this.$dom.onreadystatechange); 26179 return __dom_wrap(_this.$dom.onreadystatechange);
26180 } catch (e) { 26180 } catch (e) {
26181 throw __dom_wrap_exception(e); 26181 throw __dom_wrap_exception(e);
26182 } 26182 }
26183 } 26183 }
26184 26184
26185 function native__XMLHttpRequestWrappingImplementation__set__XMLHttpRequest_onrea dystatechange(_this, value) { 26185 function native__XMLHttpRequestWrappingImplementation__set_onreadystatechange(_t his, value) {
26186 try { 26186 try {
26187 _this.$dom.onreadystatechange = __dom_unwrap(value); 26187 _this.$dom.onreadystatechange = __dom_unwrap(value);
26188 } catch (e) { 26188 } catch (e) {
26189 throw __dom_wrap_exception(e); 26189 throw __dom_wrap_exception(e);
26190 } 26190 }
26191 } 26191 }
26192 26192
26193 function native__XMLHttpRequestWrappingImplementation__get__XMLHttpRequest_ready State(_this) { 26193 function native__XMLHttpRequestWrappingImplementation__get_readyState(_this) {
26194 try { 26194 try {
26195 return __dom_wrap(_this.$dom.readyState); 26195 return __dom_wrap(_this.$dom.readyState);
26196 } catch (e) { 26196 } catch (e) {
26197 throw __dom_wrap_exception(e); 26197 throw __dom_wrap_exception(e);
26198 } 26198 }
26199 } 26199 }
26200 26200
26201 function native__XMLHttpRequestWrappingImplementation__get__XMLHttpRequest_respo nseBlob(_this) { 26201 function native__XMLHttpRequestWrappingImplementation__get_responseBlob(_this) {
26202 try { 26202 try {
26203 return __dom_wrap(_this.$dom.responseBlob); 26203 return __dom_wrap(_this.$dom.responseBlob);
26204 } catch (e) { 26204 } catch (e) {
26205 throw __dom_wrap_exception(e); 26205 throw __dom_wrap_exception(e);
26206 } 26206 }
26207 } 26207 }
26208 26208
26209 function native__XMLHttpRequestWrappingImplementation__get__XMLHttpRequest_respo nseText(_this) { 26209 function native__XMLHttpRequestWrappingImplementation__get_responseText(_this) {
26210 try { 26210 try {
26211 return __dom_wrap(_this.$dom.responseText); 26211 return __dom_wrap(_this.$dom.responseText);
26212 } catch (e) { 26212 } catch (e) {
26213 throw __dom_wrap_exception(e); 26213 throw __dom_wrap_exception(e);
26214 } 26214 }
26215 } 26215 }
26216 26216
26217 function native__XMLHttpRequestWrappingImplementation__get__XMLHttpRequest_respo nseType(_this) { 26217 function native__XMLHttpRequestWrappingImplementation__get_responseType(_this) {
26218 try { 26218 try {
26219 return __dom_wrap(_this.$dom.responseType); 26219 return __dom_wrap(_this.$dom.responseType);
26220 } catch (e) { 26220 } catch (e) {
26221 throw __dom_wrap_exception(e); 26221 throw __dom_wrap_exception(e);
26222 } 26222 }
26223 } 26223 }
26224 26224
26225 function native__XMLHttpRequestWrappingImplementation__set__XMLHttpRequest_respo nseType(_this, value) { 26225 function native__XMLHttpRequestWrappingImplementation__set_responseType(_this, v alue) {
26226 try { 26226 try {
26227 _this.$dom.responseType = __dom_unwrap(value); 26227 _this.$dom.responseType = __dom_unwrap(value);
26228 } catch (e) { 26228 } catch (e) {
26229 throw __dom_wrap_exception(e); 26229 throw __dom_wrap_exception(e);
26230 } 26230 }
26231 } 26231 }
26232 26232
26233 function native__XMLHttpRequestWrappingImplementation__get__XMLHttpRequest_respo nseXML(_this) { 26233 function native__XMLHttpRequestWrappingImplementation__get_responseXML(_this) {
26234 try { 26234 try {
26235 return __dom_wrap(_this.$dom.responseXML); 26235 return __dom_wrap(_this.$dom.responseXML);
26236 } catch (e) { 26236 } catch (e) {
26237 throw __dom_wrap_exception(e); 26237 throw __dom_wrap_exception(e);
26238 } 26238 }
26239 } 26239 }
26240 26240
26241 function native__XMLHttpRequestWrappingImplementation__get__XMLHttpRequest_statu s(_this) { 26241 function native__XMLHttpRequestWrappingImplementation__get_status(_this) {
26242 try { 26242 try {
26243 return __dom_wrap(_this.$dom.status); 26243 return __dom_wrap(_this.$dom.status);
26244 } catch (e) { 26244 } catch (e) {
26245 throw __dom_wrap_exception(e); 26245 throw __dom_wrap_exception(e);
26246 } 26246 }
26247 } 26247 }
26248 26248
26249 function native__XMLHttpRequestWrappingImplementation__get__XMLHttpRequest_statu sText(_this) { 26249 function native__XMLHttpRequestWrappingImplementation__get_statusText(_this) {
26250 try { 26250 try {
26251 return __dom_wrap(_this.$dom.statusText); 26251 return __dom_wrap(_this.$dom.statusText);
26252 } catch (e) { 26252 } catch (e) {
26253 throw __dom_wrap_exception(e); 26253 throw __dom_wrap_exception(e);
26254 } 26254 }
26255 } 26255 }
26256 26256
26257 function native__XMLHttpRequestWrappingImplementation__get__XMLHttpRequest_uploa d(_this) { 26257 function native__XMLHttpRequestWrappingImplementation__get_upload(_this) {
26258 try { 26258 try {
26259 return __dom_wrap(_this.$dom.upload); 26259 return __dom_wrap(_this.$dom.upload);
26260 } catch (e) { 26260 } catch (e) {
26261 throw __dom_wrap_exception(e); 26261 throw __dom_wrap_exception(e);
26262 } 26262 }
26263 } 26263 }
26264 26264
26265 function native__XMLHttpRequestWrappingImplementation__get__XMLHttpRequest_withC redentials(_this) { 26265 function native__XMLHttpRequestWrappingImplementation__get_withCredentials(_this ) {
26266 try { 26266 try {
26267 return __dom_wrap(_this.$dom.withCredentials); 26267 return __dom_wrap(_this.$dom.withCredentials);
26268 } catch (e) { 26268 } catch (e) {
26269 throw __dom_wrap_exception(e); 26269 throw __dom_wrap_exception(e);
26270 } 26270 }
26271 } 26271 }
26272 26272
26273 function native__XMLHttpRequestWrappingImplementation__set__XMLHttpRequest_withC redentials(_this, value) { 26273 function native__XMLHttpRequestWrappingImplementation__set_withCredentials(_this , value) {
26274 try { 26274 try {
26275 _this.$dom.withCredentials = __dom_unwrap(value); 26275 _this.$dom.withCredentials = __dom_unwrap(value);
26276 } catch (e) { 26276 } catch (e) {
26277 throw __dom_wrap_exception(e); 26277 throw __dom_wrap_exception(e);
26278 } 26278 }
26279 } 26279 }
26280 26280
26281 function native__XMLHttpRequestWrappingImplementation__abort(_this) { 26281 function native__XMLHttpRequestWrappingImplementation__abort(_this) {
26282 try { 26282 try {
26283 return __dom_wrap(_this.$dom.abort()); 26283 return __dom_wrap(_this.$dom.abort());
26284 } catch (e) { 26284 } catch (e) {
26285 throw __dom_wrap_exception(e); 26285 throw __dom_wrap_exception(e);
26286 } 26286 }
26287 } 26287 }
26288 26288
26289 function native__XMLHttpRequestWrappingImplementation__addEventListener(_this, t ype, listener) { 26289 function native__XMLHttpRequestWrappingImplementation__addEventListener_XMLHttpR equest(_this, type, listener) {
26290 try { 26290 try {
26291 return __dom_wrap(_this.$dom.addEventListener(__dom_unwrap(type), __dom_unwr ap(listener))); 26291 return __dom_wrap(_this.$dom.addEventListener(__dom_unwrap(type), __dom_unwr ap(listener)));
26292 } catch (e) { 26292 } catch (e) {
26293 throw __dom_wrap_exception(e); 26293 throw __dom_wrap_exception(e);
26294 } 26294 }
26295 } 26295 }
26296 26296
26297 function native__XMLHttpRequestWrappingImplementation__addEventListener_2(_this, type, listener, useCapture) { 26297 function native__XMLHttpRequestWrappingImplementation__addEventListener_XMLHttpR equest_2(_this, type, listener, useCapture) {
26298 try { 26298 try {
26299 return __dom_wrap(_this.$dom.addEventListener(__dom_unwrap(type), __dom_unwr ap(listener), __dom_unwrap(useCapture))); 26299 return __dom_wrap(_this.$dom.addEventListener(__dom_unwrap(type), __dom_unwr ap(listener), __dom_unwrap(useCapture)));
26300 } catch (e) { 26300 } catch (e) {
26301 throw __dom_wrap_exception(e); 26301 throw __dom_wrap_exception(e);
26302 } 26302 }
26303 } 26303 }
26304 26304
26305 function native__XMLHttpRequestWrappingImplementation__dispatchEvent(_this, evt) { 26305 function native__XMLHttpRequestWrappingImplementation__dispatchEvent_XMLHttpRequ est(_this, evt) {
26306 try { 26306 try {
26307 return __dom_wrap(_this.$dom.dispatchEvent(__dom_unwrap(evt))); 26307 return __dom_wrap(_this.$dom.dispatchEvent(__dom_unwrap(evt)));
26308 } catch (e) { 26308 } catch (e) {
26309 throw __dom_wrap_exception(e); 26309 throw __dom_wrap_exception(e);
26310 } 26310 }
26311 } 26311 }
26312 26312
26313 function native__XMLHttpRequestWrappingImplementation__getAllResponseHeaders(_th is) { 26313 function native__XMLHttpRequestWrappingImplementation__getAllResponseHeaders(_th is) {
26314 try { 26314 try {
26315 return __dom_wrap(_this.$dom.getAllResponseHeaders()); 26315 return __dom_wrap(_this.$dom.getAllResponseHeaders());
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
26359 } 26359 }
26360 26360
26361 function native__XMLHttpRequestWrappingImplementation__overrideMimeType(_this, o verride) { 26361 function native__XMLHttpRequestWrappingImplementation__overrideMimeType(_this, o verride) {
26362 try { 26362 try {
26363 return __dom_wrap(_this.$dom.overrideMimeType(__dom_unwrap(override))); 26363 return __dom_wrap(_this.$dom.overrideMimeType(__dom_unwrap(override)));
26364 } catch (e) { 26364 } catch (e) {
26365 throw __dom_wrap_exception(e); 26365 throw __dom_wrap_exception(e);
26366 } 26366 }
26367 } 26367 }
26368 26368
26369 function native__XMLHttpRequestWrappingImplementation__removeEventListener(_this , type, listener) { 26369 function native__XMLHttpRequestWrappingImplementation__removeEventListener_XMLHt tpRequest(_this, type, listener) {
26370 try { 26370 try {
26371 return __dom_wrap(_this.$dom.removeEventListener(__dom_unwrap(type), __dom_u nwrap(listener))); 26371 return __dom_wrap(_this.$dom.removeEventListener(__dom_unwrap(type), __dom_u nwrap(listener)));
26372 } catch (e) { 26372 } catch (e) {
26373 throw __dom_wrap_exception(e); 26373 throw __dom_wrap_exception(e);
26374 } 26374 }
26375 } 26375 }
26376 26376
26377 function native__XMLHttpRequestWrappingImplementation__removeEventListener_2(_th is, type, listener, useCapture) { 26377 function native__XMLHttpRequestWrappingImplementation__removeEventListener_XMLHt tpRequest_2(_this, type, listener, useCapture) {
26378 try { 26378 try {
26379 return __dom_wrap(_this.$dom.removeEventListener(__dom_unwrap(type), __dom_u nwrap(listener), __dom_unwrap(useCapture))); 26379 return __dom_wrap(_this.$dom.removeEventListener(__dom_unwrap(type), __dom_u nwrap(listener), __dom_unwrap(useCapture)));
26380 } catch (e) { 26380 } catch (e) {
26381 throw __dom_wrap_exception(e); 26381 throw __dom_wrap_exception(e);
26382 } 26382 }
26383 } 26383 }
26384 26384
26385 function native__XMLHttpRequestWrappingImplementation__send(_this) { 26385 function native__XMLHttpRequestWrappingImplementation__send(_this) {
26386 try { 26386 try {
26387 return __dom_wrap(_this.$dom.send()); 26387 return __dom_wrap(_this.$dom.send());
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
26431 } 26431 }
26432 26432
26433 function native__XMLHttpRequestWrappingImplementation__setRequestHeader(_this, h eader, value) { 26433 function native__XMLHttpRequestWrappingImplementation__setRequestHeader(_this, h eader, value) {
26434 try { 26434 try {
26435 return __dom_wrap(_this.$dom.setRequestHeader(__dom_unwrap(header), __dom_un wrap(value))); 26435 return __dom_wrap(_this.$dom.setRequestHeader(__dom_unwrap(header), __dom_un wrap(value)));
26436 } catch (e) { 26436 } catch (e) {
26437 throw __dom_wrap_exception(e); 26437 throw __dom_wrap_exception(e);
26438 } 26438 }
26439 } 26439 }
26440 26440
26441 function native__XMLHttpRequestExceptionWrappingImplementation__get__XMLHttpRequ estException_code(_this) { 26441 function native__XMLHttpRequestExceptionWrappingImplementation__get_code(_this) {
26442 try { 26442 try {
26443 return __dom_wrap(_this.$dom.code); 26443 return __dom_wrap(_this.$dom.code);
26444 } catch (e) { 26444 } catch (e) {
26445 throw __dom_wrap_exception(e); 26445 throw __dom_wrap_exception(e);
26446 } 26446 }
26447 } 26447 }
26448 26448
26449 function native__XMLHttpRequestExceptionWrappingImplementation__get__XMLHttpRequ estException_message(_this) { 26449 function native__XMLHttpRequestExceptionWrappingImplementation__get_message(_thi s) {
26450 try { 26450 try {
26451 return __dom_wrap(_this.$dom.message); 26451 return __dom_wrap(_this.$dom.message);
26452 } catch (e) { 26452 } catch (e) {
26453 throw __dom_wrap_exception(e); 26453 throw __dom_wrap_exception(e);
26454 } 26454 }
26455 } 26455 }
26456 26456
26457 function native__XMLHttpRequestExceptionWrappingImplementation__get__XMLHttpRequ estException_name(_this) { 26457 function native__XMLHttpRequestExceptionWrappingImplementation__get_name(_this) {
26458 try { 26458 try {
26459 return __dom_wrap(_this.$dom.name); 26459 return __dom_wrap(_this.$dom.name);
26460 } catch (e) { 26460 } catch (e) {
26461 throw __dom_wrap_exception(e); 26461 throw __dom_wrap_exception(e);
26462 } 26462 }
26463 } 26463 }
26464 26464
26465 function native__XMLHttpRequestExceptionWrappingImplementation__toString(_this) { 26465 function native__XMLHttpRequestExceptionWrappingImplementation__toString(_this) {
26466 try { 26466 try {
26467 return __dom_wrap(_this.$dom.toString()); 26467 return __dom_wrap(_this.$dom.toString());
26468 } catch (e) { 26468 } catch (e) {
26469 throw __dom_wrap_exception(e); 26469 throw __dom_wrap_exception(e);
26470 } 26470 }
26471 } 26471 }
26472 26472
26473 function native__XMLHttpRequestProgressEventWrappingImplementation__get__XMLHttp RequestProgressEvent_position(_this) { 26473 function native__XMLHttpRequestProgressEventWrappingImplementation__get_position (_this) {
26474 try { 26474 try {
26475 return __dom_wrap(_this.$dom.position); 26475 return __dom_wrap(_this.$dom.position);
26476 } catch (e) { 26476 } catch (e) {
26477 throw __dom_wrap_exception(e); 26477 throw __dom_wrap_exception(e);
26478 } 26478 }
26479 } 26479 }
26480 26480
26481 function native__XMLHttpRequestProgressEventWrappingImplementation__get__XMLHttp RequestProgressEvent_totalSize(_this) { 26481 function native__XMLHttpRequestProgressEventWrappingImplementation__get_totalSiz e(_this) {
26482 try { 26482 try {
26483 return __dom_wrap(_this.$dom.totalSize); 26483 return __dom_wrap(_this.$dom.totalSize);
26484 } catch (e) { 26484 } catch (e) {
26485 throw __dom_wrap_exception(e); 26485 throw __dom_wrap_exception(e);
26486 } 26486 }
26487 } 26487 }
26488 26488
26489 function native__XMLHttpRequestUploadWrappingImplementation__get__XMLHttpRequest Upload_onabort(_this) { 26489 function native__XMLHttpRequestUploadWrappingImplementation__get_onabort(_this) {
26490 try { 26490 try {
26491 return __dom_wrap(_this.$dom.onabort); 26491 return __dom_wrap(_this.$dom.onabort);
26492 } catch (e) { 26492 } catch (e) {
26493 throw __dom_wrap_exception(e); 26493 throw __dom_wrap_exception(e);
26494 } 26494 }
26495 } 26495 }
26496 26496
26497 function native__XMLHttpRequestUploadWrappingImplementation__set__XMLHttpRequest Upload_onabort(_this, value) { 26497 function native__XMLHttpRequestUploadWrappingImplementation__set_onabort(_this, value) {
26498 try { 26498 try {
26499 _this.$dom.onabort = __dom_unwrap(value); 26499 _this.$dom.onabort = __dom_unwrap(value);
26500 } catch (e) { 26500 } catch (e) {
26501 throw __dom_wrap_exception(e); 26501 throw __dom_wrap_exception(e);
26502 } 26502 }
26503 } 26503 }
26504 26504
26505 function native__XMLHttpRequestUploadWrappingImplementation__get__XMLHttpRequest Upload_onerror(_this) { 26505 function native__XMLHttpRequestUploadWrappingImplementation__get_onerror(_this) {
26506 try { 26506 try {
26507 return __dom_wrap(_this.$dom.onerror); 26507 return __dom_wrap(_this.$dom.onerror);
26508 } catch (e) { 26508 } catch (e) {
26509 throw __dom_wrap_exception(e); 26509 throw __dom_wrap_exception(e);
26510 } 26510 }
26511 } 26511 }
26512 26512
26513 function native__XMLHttpRequestUploadWrappingImplementation__set__XMLHttpRequest Upload_onerror(_this, value) { 26513 function native__XMLHttpRequestUploadWrappingImplementation__set_onerror(_this, value) {
26514 try { 26514 try {
26515 _this.$dom.onerror = __dom_unwrap(value); 26515 _this.$dom.onerror = __dom_unwrap(value);
26516 } catch (e) { 26516 } catch (e) {
26517 throw __dom_wrap_exception(e); 26517 throw __dom_wrap_exception(e);
26518 } 26518 }
26519 } 26519 }
26520 26520
26521 function native__XMLHttpRequestUploadWrappingImplementation__get__XMLHttpRequest Upload_onload(_this) { 26521 function native__XMLHttpRequestUploadWrappingImplementation__get_onload(_this) {
26522 try { 26522 try {
26523 return __dom_wrap(_this.$dom.onload); 26523 return __dom_wrap(_this.$dom.onload);
26524 } catch (e) { 26524 } catch (e) {
26525 throw __dom_wrap_exception(e); 26525 throw __dom_wrap_exception(e);
26526 } 26526 }
26527 } 26527 }
26528 26528
26529 function native__XMLHttpRequestUploadWrappingImplementation__set__XMLHttpRequest Upload_onload(_this, value) { 26529 function native__XMLHttpRequestUploadWrappingImplementation__set_onload(_this, v alue) {
26530 try { 26530 try {
26531 _this.$dom.onload = __dom_unwrap(value); 26531 _this.$dom.onload = __dom_unwrap(value);
26532 } catch (e) { 26532 } catch (e) {
26533 throw __dom_wrap_exception(e); 26533 throw __dom_wrap_exception(e);
26534 } 26534 }
26535 } 26535 }
26536 26536
26537 function native__XMLHttpRequestUploadWrappingImplementation__get__XMLHttpRequest Upload_onloadstart(_this) { 26537 function native__XMLHttpRequestUploadWrappingImplementation__get_onloadstart(_th is) {
26538 try { 26538 try {
26539 return __dom_wrap(_this.$dom.onloadstart); 26539 return __dom_wrap(_this.$dom.onloadstart);
26540 } catch (e) { 26540 } catch (e) {
26541 throw __dom_wrap_exception(e); 26541 throw __dom_wrap_exception(e);
26542 } 26542 }
26543 } 26543 }
26544 26544
26545 function native__XMLHttpRequestUploadWrappingImplementation__set__XMLHttpRequest Upload_onloadstart(_this, value) { 26545 function native__XMLHttpRequestUploadWrappingImplementation__set_onloadstart(_th is, value) {
26546 try { 26546 try {
26547 _this.$dom.onloadstart = __dom_unwrap(value); 26547 _this.$dom.onloadstart = __dom_unwrap(value);
26548 } catch (e) { 26548 } catch (e) {
26549 throw __dom_wrap_exception(e); 26549 throw __dom_wrap_exception(e);
26550 } 26550 }
26551 } 26551 }
26552 26552
26553 function native__XMLHttpRequestUploadWrappingImplementation__get__XMLHttpRequest Upload_onprogress(_this) { 26553 function native__XMLHttpRequestUploadWrappingImplementation__get_onprogress(_thi s) {
26554 try { 26554 try {
26555 return __dom_wrap(_this.$dom.onprogress); 26555 return __dom_wrap(_this.$dom.onprogress);
26556 } catch (e) { 26556 } catch (e) {
26557 throw __dom_wrap_exception(e); 26557 throw __dom_wrap_exception(e);
26558 } 26558 }
26559 } 26559 }
26560 26560
26561 function native__XMLHttpRequestUploadWrappingImplementation__set__XMLHttpRequest Upload_onprogress(_this, value) { 26561 function native__XMLHttpRequestUploadWrappingImplementation__set_onprogress(_thi s, value) {
26562 try { 26562 try {
26563 _this.$dom.onprogress = __dom_unwrap(value); 26563 _this.$dom.onprogress = __dom_unwrap(value);
26564 } catch (e) { 26564 } catch (e) {
26565 throw __dom_wrap_exception(e); 26565 throw __dom_wrap_exception(e);
26566 } 26566 }
26567 } 26567 }
26568 26568
26569 function native__XMLHttpRequestUploadWrappingImplementation__addEventListener(_t his, type, listener) { 26569 function native__XMLHttpRequestUploadWrappingImplementation__addEventListener_XM LHttpRequestUpload(_this, type, listener) {
26570 try { 26570 try {
26571 return __dom_wrap(_this.$dom.addEventListener(__dom_unwrap(type), __dom_unwr ap(listener))); 26571 return __dom_wrap(_this.$dom.addEventListener(__dom_unwrap(type), __dom_unwr ap(listener)));
26572 } catch (e) { 26572 } catch (e) {
26573 throw __dom_wrap_exception(e); 26573 throw __dom_wrap_exception(e);
26574 } 26574 }
26575 } 26575 }
26576 26576
26577 function native__XMLHttpRequestUploadWrappingImplementation__addEventListener_2( _this, type, listener, useCapture) { 26577 function native__XMLHttpRequestUploadWrappingImplementation__addEventListener_XM LHttpRequestUpload_2(_this, type, listener, useCapture) {
26578 try { 26578 try {
26579 return __dom_wrap(_this.$dom.addEventListener(__dom_unwrap(type), __dom_unwr ap(listener), __dom_unwrap(useCapture))); 26579 return __dom_wrap(_this.$dom.addEventListener(__dom_unwrap(type), __dom_unwr ap(listener), __dom_unwrap(useCapture)));
26580 } catch (e) { 26580 } catch (e) {
26581 throw __dom_wrap_exception(e); 26581 throw __dom_wrap_exception(e);
26582 } 26582 }
26583 } 26583 }
26584 26584
26585 function native__XMLHttpRequestUploadWrappingImplementation__dispatchEvent(_this , evt) { 26585 function native__XMLHttpRequestUploadWrappingImplementation__dispatchEvent_XMLHt tpRequestUpload(_this, evt) {
26586 try { 26586 try {
26587 return __dom_wrap(_this.$dom.dispatchEvent(__dom_unwrap(evt))); 26587 return __dom_wrap(_this.$dom.dispatchEvent(__dom_unwrap(evt)));
26588 } catch (e) { 26588 } catch (e) {
26589 throw __dom_wrap_exception(e); 26589 throw __dom_wrap_exception(e);
26590 } 26590 }
26591 } 26591 }
26592 26592
26593 function native__XMLHttpRequestUploadWrappingImplementation__removeEventListener (_this, type, listener) { 26593 function native__XMLHttpRequestUploadWrappingImplementation__removeEventListener _XMLHttpRequestUpload(_this, type, listener) {
26594 try { 26594 try {
26595 return __dom_wrap(_this.$dom.removeEventListener(__dom_unwrap(type), __dom_u nwrap(listener))); 26595 return __dom_wrap(_this.$dom.removeEventListener(__dom_unwrap(type), __dom_u nwrap(listener)));
26596 } catch (e) { 26596 } catch (e) {
26597 throw __dom_wrap_exception(e); 26597 throw __dom_wrap_exception(e);
26598 } 26598 }
26599 } 26599 }
26600 26600
26601 function native__XMLHttpRequestUploadWrappingImplementation__removeEventListener _2(_this, type, listener, useCapture) { 26601 function native__XMLHttpRequestUploadWrappingImplementation__removeEventListener _XMLHttpRequestUpload_2(_this, type, listener, useCapture) {
26602 try { 26602 try {
26603 return __dom_wrap(_this.$dom.removeEventListener(__dom_unwrap(type), __dom_u nwrap(listener), __dom_unwrap(useCapture))); 26603 return __dom_wrap(_this.$dom.removeEventListener(__dom_unwrap(type), __dom_u nwrap(listener), __dom_unwrap(useCapture)));
26604 } catch (e) { 26604 } catch (e) {
26605 throw __dom_wrap_exception(e); 26605 throw __dom_wrap_exception(e);
26606 } 26606 }
26607 } 26607 }
26608 26608
26609 function native__XMLSerializerWrappingImplementation__serializeToString(_this, n ode) { 26609 function native__XMLSerializerWrappingImplementation__serializeToString(_this, n ode) {
26610 try { 26610 try {
26611 return __dom_wrap(_this.$dom.serializeToString(__dom_unwrap(node))); 26611 return __dom_wrap(_this.$dom.serializeToString(__dom_unwrap(node)));
(...skipping 19 matching lines...) Expand all
26631 } 26631 }
26632 26632
26633 function native__XPathEvaluatorWrappingImplementation__evaluate(_this, expressio n, contextNode, resolver, type, inResult) { 26633 function native__XPathEvaluatorWrappingImplementation__evaluate(_this, expressio n, contextNode, resolver, type, inResult) {
26634 try { 26634 try {
26635 return __dom_wrap(_this.$dom.evaluate(__dom_unwrap(expression), __dom_unwrap (contextNode), __dom_unwrap(resolver), __dom_unwrap(type), __dom_unwrap(inResult ))); 26635 return __dom_wrap(_this.$dom.evaluate(__dom_unwrap(expression), __dom_unwrap (contextNode), __dom_unwrap(resolver), __dom_unwrap(type), __dom_unwrap(inResult )));
26636 } catch (e) { 26636 } catch (e) {
26637 throw __dom_wrap_exception(e); 26637 throw __dom_wrap_exception(e);
26638 } 26638 }
26639 } 26639 }
26640 26640
26641 function native__XPathExceptionWrappingImplementation__get__XPathException_code( _this) { 26641 function native__XPathExceptionWrappingImplementation__get_code(_this) {
26642 try { 26642 try {
26643 return __dom_wrap(_this.$dom.code); 26643 return __dom_wrap(_this.$dom.code);
26644 } catch (e) { 26644 } catch (e) {
26645 throw __dom_wrap_exception(e); 26645 throw __dom_wrap_exception(e);
26646 } 26646 }
26647 } 26647 }
26648 26648
26649 function native__XPathExceptionWrappingImplementation__get__XPathException_messa ge(_this) { 26649 function native__XPathExceptionWrappingImplementation__get_message(_this) {
26650 try { 26650 try {
26651 return __dom_wrap(_this.$dom.message); 26651 return __dom_wrap(_this.$dom.message);
26652 } catch (e) { 26652 } catch (e) {
26653 throw __dom_wrap_exception(e); 26653 throw __dom_wrap_exception(e);
26654 } 26654 }
26655 } 26655 }
26656 26656
26657 function native__XPathExceptionWrappingImplementation__get__XPathException_name( _this) { 26657 function native__XPathExceptionWrappingImplementation__get_name(_this) {
26658 try { 26658 try {
26659 return __dom_wrap(_this.$dom.name); 26659 return __dom_wrap(_this.$dom.name);
26660 } catch (e) { 26660 } catch (e) {
26661 throw __dom_wrap_exception(e); 26661 throw __dom_wrap_exception(e);
26662 } 26662 }
26663 } 26663 }
26664 26664
26665 function native__XPathExceptionWrappingImplementation__toString(_this) { 26665 function native__XPathExceptionWrappingImplementation__toString(_this) {
26666 try { 26666 try {
26667 return __dom_wrap(_this.$dom.toString()); 26667 return __dom_wrap(_this.$dom.toString());
(...skipping 11 matching lines...) Expand all
26679 } 26679 }
26680 26680
26681 function native__XPathNSResolverWrappingImplementation__lookupNamespaceURI(_this , prefix) { 26681 function native__XPathNSResolverWrappingImplementation__lookupNamespaceURI(_this , prefix) {
26682 try { 26682 try {
26683 return __dom_wrap(_this.$dom.lookupNamespaceURI(__dom_unwrap(prefix))); 26683 return __dom_wrap(_this.$dom.lookupNamespaceURI(__dom_unwrap(prefix)));
26684 } catch (e) { 26684 } catch (e) {
26685 throw __dom_wrap_exception(e); 26685 throw __dom_wrap_exception(e);
26686 } 26686 }
26687 } 26687 }
26688 26688
26689 function native__XPathResultWrappingImplementation__get__XPathResult_booleanValu e(_this) { 26689 function native__XPathResultWrappingImplementation__get_booleanValue(_this) {
26690 try { 26690 try {
26691 return __dom_wrap(_this.$dom.booleanValue); 26691 return __dom_wrap(_this.$dom.booleanValue);
26692 } catch (e) { 26692 } catch (e) {
26693 throw __dom_wrap_exception(e); 26693 throw __dom_wrap_exception(e);
26694 } 26694 }
26695 } 26695 }
26696 26696
26697 function native__XPathResultWrappingImplementation__get__XPathResult_invalidIter atorState(_this) { 26697 function native__XPathResultWrappingImplementation__get_invalidIteratorState(_th is) {
26698 try { 26698 try {
26699 return __dom_wrap(_this.$dom.invalidIteratorState); 26699 return __dom_wrap(_this.$dom.invalidIteratorState);
26700 } catch (e) { 26700 } catch (e) {
26701 throw __dom_wrap_exception(e); 26701 throw __dom_wrap_exception(e);
26702 } 26702 }
26703 } 26703 }
26704 26704
26705 function native__XPathResultWrappingImplementation__get__XPathResult_numberValue (_this) { 26705 function native__XPathResultWrappingImplementation__get_numberValue(_this) {
26706 try { 26706 try {
26707 return __dom_wrap(_this.$dom.numberValue); 26707 return __dom_wrap(_this.$dom.numberValue);
26708 } catch (e) { 26708 } catch (e) {
26709 throw __dom_wrap_exception(e); 26709 throw __dom_wrap_exception(e);
26710 } 26710 }
26711 } 26711 }
26712 26712
26713 function native__XPathResultWrappingImplementation__get__XPathResult_resultType( _this) { 26713 function native__XPathResultWrappingImplementation__get_resultType(_this) {
26714 try { 26714 try {
26715 return __dom_wrap(_this.$dom.resultType); 26715 return __dom_wrap(_this.$dom.resultType);
26716 } catch (e) { 26716 } catch (e) {
26717 throw __dom_wrap_exception(e); 26717 throw __dom_wrap_exception(e);
26718 } 26718 }
26719 } 26719 }
26720 26720
26721 function native__XPathResultWrappingImplementation__get__XPathResult_singleNodeV alue(_this) { 26721 function native__XPathResultWrappingImplementation__get_singleNodeValue(_this) {
26722 try { 26722 try {
26723 return __dom_wrap(_this.$dom.singleNodeValue); 26723 return __dom_wrap(_this.$dom.singleNodeValue);
26724 } catch (e) { 26724 } catch (e) {
26725 throw __dom_wrap_exception(e); 26725 throw __dom_wrap_exception(e);
26726 } 26726 }
26727 } 26727 }
26728 26728
26729 function native__XPathResultWrappingImplementation__get__XPathResult_snapshotLen gth(_this) { 26729 function native__XPathResultWrappingImplementation__get_snapshotLength(_this) {
26730 try { 26730 try {
26731 return __dom_wrap(_this.$dom.snapshotLength); 26731 return __dom_wrap(_this.$dom.snapshotLength);
26732 } catch (e) { 26732 } catch (e) {
26733 throw __dom_wrap_exception(e); 26733 throw __dom_wrap_exception(e);
26734 } 26734 }
26735 } 26735 }
26736 26736
26737 function native__XPathResultWrappingImplementation__get__XPathResult_stringValue (_this) { 26737 function native__XPathResultWrappingImplementation__get_stringValue(_this) {
26738 try { 26738 try {
26739 return __dom_wrap(_this.$dom.stringValue); 26739 return __dom_wrap(_this.$dom.stringValue);
26740 } catch (e) { 26740 } catch (e) {
26741 throw __dom_wrap_exception(e); 26741 throw __dom_wrap_exception(e);
26742 } 26742 }
26743 } 26743 }
26744 26744
26745 function native__XPathResultWrappingImplementation__iterateNext(_this) { 26745 function native__XPathResultWrappingImplementation__iterateNext(_this) {
26746 try { 26746 try {
26747 return __dom_wrap(_this.$dom.iterateNext()); 26747 return __dom_wrap(_this.$dom.iterateNext());
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
26889 } 26889 }
26890 26890
26891 function native__CanvasRenderingContext2DWrappingImplementation__setStrokeStyle_ 3(_this, color_OR_gradient_OR_pattern) { 26891 function native__CanvasRenderingContext2DWrappingImplementation__setStrokeStyle_ 3(_this, color_OR_gradient_OR_pattern) {
26892 try { 26892 try {
26893 _this.$dom.strokeStyle = __dom_unwrap(color_OR_gradient_OR_pattern); 26893 _this.$dom.strokeStyle = __dom_unwrap(color_OR_gradient_OR_pattern);
26894 } catch (e) { 26894 } catch (e) {
26895 throw __dom_wrap_exception(e); 26895 throw __dom_wrap_exception(e);
26896 } 26896 }
26897 } 26897 }
26898 26898
26899 function native__DOMWindowWrappingImplementation__get__DOMWindow_localStorage(_t his) { 26899 function native__DOMWindowWrappingImplementation__get_localStorage(_this) {
26900 var domWindow = _this.$dom; 26900 var domWindow = _this.$dom;
26901 try { 26901 try {
26902 var isolatetoken = __dom_isolate_token(); 26902 var isolatetoken = __dom_isolate_token();
26903 var wrapper = __dom_get_cached('dart_storage', domWindow, isolatetoken); 26903 var wrapper = __dom_get_cached('dart_storage', domWindow, isolatetoken);
26904 if (wrapper) return wrapper; 26904 if (wrapper) return wrapper;
26905 wrapper = native__StorageWrappingImplementation_create__StorageWrappingImple mentation(); 26905 wrapper = native__StorageWrappingImplementation_create__StorageWrappingImple mentation();
26906 wrapper.$dom = domWindow.localStorage; 26906 wrapper.$dom = domWindow.localStorage;
26907 __dom_set_cached('dart_storage', domWindow, isolatetoken, wrapper) 26907 __dom_set_cached('dart_storage', domWindow, isolatetoken, wrapper)
26908 return wrapper; 26908 return wrapper;
26909 } catch (e) { 26909 } catch (e) {
(...skipping 546 matching lines...) Expand 10 before | Expand all | Expand 10 after
27456 function native__NativeDomGlobalProperties_getWindow() { 27456 function native__NativeDomGlobalProperties_getWindow() {
27457 // TODO: Should the window be obtained from an isolate? 27457 // TODO: Should the window be obtained from an isolate?
27458 return __dom_wrap(window); 27458 return __dom_wrap(window);
27459 } 27459 }
27460 27460
27461 // Declared in src/GlobalProperties.dart 27461 // Declared in src/GlobalProperties.dart
27462 function native__NativeDomGlobalProperties_getDocument() { 27462 function native__NativeDomGlobalProperties_getDocument() {
27463 // TODO: Should the window be obtained from an isolate? 27463 // TODO: Should the window be obtained from an isolate?
27464 return __dom_wrap(window.document); 27464 return __dom_wrap(window.document);
27465 } 27465 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698