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

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

Issue 8665012: Switch to " native '*Class' " (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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
« no previous file with comments | « no previous file | client/dom/generated/src/frog/AbstractWorker.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #library('dom'); 1 #library('dom');
2 2
3 #native('frog_dom.js'); 3 #native('frog_dom.js');
4 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 4 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
5 // for details. All rights reserved. Use of this source code is governed by a 5 // for details. All rights reserved. Use of this source code is governed by a
6 // BSD-style license that can be found in the LICENSE file. 6 // BSD-style license that can be found in the LICENSE file.
7 7
8 // DO NOT EDIT 8 // DO NOT EDIT
9 // Auto-generated Dart DOM library. 9 // Auto-generated Dart DOM library.
10 10
11 11
12 12
13 13
14 class Window extends DOMWindow {} 14 class Window extends DOMWindow {}
15 DOMWindow get window() native "return window;"; 15 DOMWindow get window() native "return window;";
16 // TODO(vsm): Revert to Dart method when 508 is fixed. 16 // TODO(vsm): Revert to Dart method when 508 is fixed.
17 HTMLDocument get document() native "return window.document;"; 17 HTMLDocument get document() native "return window.document;";
18 18
19 class AbstractWorker native "AbstractWorker" { 19 class AbstractWorker native "*AbstractWorker" {
20 20
21 EventListener onerror; 21 EventListener onerror;
22 22
23 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native; 23 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
24 24
25 bool dispatchEvent(Event evt) native; 25 bool dispatchEvent(Event evt) native;
26 26
27 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native; 27 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
28 28
29 var dartObjectLocalStorage; 29 var dartObjectLocalStorage;
30 30
31 String get typeName() native; 31 String get typeName() native;
32 } 32 }
33 33
34 class ArrayBuffer native "ArrayBuffer" { 34 class ArrayBuffer native "*ArrayBuffer" {
35 35
36 int byteLength; 36 int byteLength;
37 37
38 ArrayBuffer slice(int begin, [int end = null]) native; 38 ArrayBuffer slice(int begin, [int end = null]) native;
39 39
40 var dartObjectLocalStorage; 40 var dartObjectLocalStorage;
41 41
42 String get typeName() native; 42 String get typeName() native;
43 } 43 }
44 44
45 class ArrayBufferView native "ArrayBufferView" { 45 class ArrayBufferView native "*ArrayBufferView" {
46 46
47 ArrayBuffer buffer; 47 ArrayBuffer buffer;
48 48
49 int byteLength; 49 int byteLength;
50 50
51 int byteOffset; 51 int byteOffset;
52 52
53 var dartObjectLocalStorage; 53 var dartObjectLocalStorage;
54 54
55 String get typeName() native; 55 String get typeName() native;
56 } 56 }
57 57
58 class Attr extends Node native "Attr" { 58 class Attr extends Node native "*Attr" {
59 59
60 bool isId; 60 bool isId;
61 61
62 String name; 62 String name;
63 63
64 Element ownerElement; 64 Element ownerElement;
65 65
66 bool specified; 66 bool specified;
67 67
68 String value; 68 String value;
69 } 69 }
70 70
71 class BarInfo native "BarInfo" { 71 class BarInfo native "*BarInfo" {
72 72
73 bool visible; 73 bool visible;
74 74
75 var dartObjectLocalStorage; 75 var dartObjectLocalStorage;
76 76
77 String get typeName() native; 77 String get typeName() native;
78 } 78 }
79 79
80 class BeforeLoadEvent extends Event native "BeforeLoadEvent" { 80 class BeforeLoadEvent extends Event native "*BeforeLoadEvent" {
81 81
82 String url; 82 String url;
83 83
84 void initBeforeLoadEvent(String type, bool canBubble, bool cancelable, String url) native; 84 void initBeforeLoadEvent(String type, bool canBubble, bool cancelable, String url) native;
85 } 85 }
86 86
87 class Blob native "Blob" { 87 class Blob native "*Blob" {
88 88
89 int size; 89 int size;
90 90
91 String type; 91 String type;
92 92
93 var dartObjectLocalStorage; 93 var dartObjectLocalStorage;
94 94
95 String get typeName() native; 95 String get typeName() native;
96 } 96 }
97 97
98 class CDATASection extends Text native "CDATASection" { 98 class CDATASection extends Text native "*CDATASection" {
99 } 99 }
100 100
101 class CSSCharsetRule extends CSSRule native "CSSCharsetRule" { 101 class CSSCharsetRule extends CSSRule native "*CSSCharsetRule" {
102 102
103 String encoding; 103 String encoding;
104 } 104 }
105 105
106 class CSSFontFaceRule extends CSSRule native "CSSFontFaceRule" { 106 class CSSFontFaceRule extends CSSRule native "*CSSFontFaceRule" {
107 107
108 CSSStyleDeclaration style; 108 CSSStyleDeclaration style;
109 } 109 }
110 110
111 class CSSImportRule extends CSSRule native "CSSImportRule" { 111 class CSSImportRule extends CSSRule native "*CSSImportRule" {
112 112
113 String href; 113 String href;
114 114
115 MediaList media; 115 MediaList media;
116 116
117 CSSStyleSheet styleSheet; 117 CSSStyleSheet styleSheet;
118 } 118 }
119 119
120 class CSSMediaRule extends CSSRule native "CSSMediaRule" { 120 class CSSMediaRule extends CSSRule native "*CSSMediaRule" {
121 121
122 CSSRuleList cssRules; 122 CSSRuleList cssRules;
123 123
124 MediaList media; 124 MediaList media;
125 125
126 void deleteRule(int index) native; 126 void deleteRule(int index) native;
127 127
128 int insertRule(String rule, int index) native; 128 int insertRule(String rule, int index) native;
129 } 129 }
130 130
131 class CSSPageRule extends CSSRule native "CSSPageRule" { 131 class CSSPageRule extends CSSRule native "*CSSPageRule" {
132 132
133 String selectorText; 133 String selectorText;
134 134
135 CSSStyleDeclaration style; 135 CSSStyleDeclaration style;
136 } 136 }
137 137
138 class CSSPrimitiveValue extends CSSValue native "CSSPrimitiveValue" { 138 class CSSPrimitiveValue extends CSSValue native "*CSSPrimitiveValue" {
139 139
140 int primitiveType; 140 int primitiveType;
141 141
142 Counter getCounterValue() native; 142 Counter getCounterValue() native;
143 143
144 num getFloatValue(int unitType) native; 144 num getFloatValue(int unitType) native;
145 145
146 RGBColor getRGBColorValue() native; 146 RGBColor getRGBColorValue() native;
147 147
148 Rect getRectValue() native; 148 Rect getRectValue() native;
149 149
150 String getStringValue() native; 150 String getStringValue() native;
151 151
152 void setFloatValue(int unitType, num floatValue) native; 152 void setFloatValue(int unitType, num floatValue) native;
153 153
154 void setStringValue(int stringType, String stringValue) native; 154 void setStringValue(int stringType, String stringValue) native;
155 } 155 }
156 156
157 class CSSRule native "CSSRule" { 157 class CSSRule native "*CSSRule" {
158 158
159 String cssText; 159 String cssText;
160 160
161 CSSRule parentRule; 161 CSSRule parentRule;
162 162
163 CSSStyleSheet parentStyleSheet; 163 CSSStyleSheet parentStyleSheet;
164 164
165 int type; 165 int type;
166 166
167 var dartObjectLocalStorage; 167 var dartObjectLocalStorage;
168 168
169 String get typeName() native; 169 String get typeName() native;
170 } 170 }
171 171
172 class CSSRuleList native "CSSRuleList" { 172 class CSSRuleList native "*CSSRuleList" {
173 173
174 int length; 174 int length;
175 175
176 CSSRule item(int index) native; 176 CSSRule item(int index) native;
177 177
178 var dartObjectLocalStorage; 178 var dartObjectLocalStorage;
179 179
180 String get typeName() native; 180 String get typeName() native;
181 } 181 }
182 182
183 class CSSStyleDeclaration native "CSSStyleDeclaration" { 183 class CSSStyleDeclaration native "*CSSStyleDeclaration" {
184 184
185 String cssText; 185 String cssText;
186 186
187 int length; 187 int length;
188 188
189 CSSRule parentRule; 189 CSSRule parentRule;
190 190
191 CSSValue getPropertyCSSValue(String propertyName) native; 191 CSSValue getPropertyCSSValue(String propertyName) native;
192 192
193 String getPropertyPriority(String propertyName) native; 193 String getPropertyPriority(String propertyName) native;
194 194
195 String getPropertyShorthand(String propertyName) native; 195 String getPropertyShorthand(String propertyName) native;
196 196
197 String getPropertyValue(String propertyName) native; 197 String getPropertyValue(String propertyName) native;
198 198
199 bool isPropertyImplicit(String propertyName) native; 199 bool isPropertyImplicit(String propertyName) native;
200 200
201 String item(int index) native; 201 String item(int index) native;
202 202
203 String removeProperty(String propertyName) native; 203 String removeProperty(String propertyName) native;
204 204
205 void setProperty(String propertyName, String value, [String priority = null]) native; 205 void setProperty(String propertyName, String value, [String priority = null]) native;
206 206
207 var dartObjectLocalStorage; 207 var dartObjectLocalStorage;
208 208
209 String get typeName() native; 209 String get typeName() native;
210 } 210 }
211 211
212 class CSSStyleRule extends CSSRule native "CSSStyleRule" { 212 class CSSStyleRule extends CSSRule native "*CSSStyleRule" {
213 213
214 String selectorText; 214 String selectorText;
215 215
216 CSSStyleDeclaration style; 216 CSSStyleDeclaration style;
217 } 217 }
218 218
219 class CSSStyleSheet extends StyleSheet native "CSSStyleSheet" { 219 class CSSStyleSheet extends StyleSheet native "*CSSStyleSheet" {
220 220
221 CSSRuleList cssRules; 221 CSSRuleList cssRules;
222 222
223 CSSRule ownerRule; 223 CSSRule ownerRule;
224 224
225 CSSRuleList rules; 225 CSSRuleList rules;
226 226
227 int addRule(String selector, String style, [int index = null]) native; 227 int addRule(String selector, String style, [int index = null]) native;
228 228
229 void deleteRule(int index) native; 229 void deleteRule(int index) native;
230 230
231 int insertRule(String rule, int index) native; 231 int insertRule(String rule, int index) native;
232 232
233 void removeRule(int index) native; 233 void removeRule(int index) native;
234 } 234 }
235 235
236 class CSSUnknownRule extends CSSRule native "CSSUnknownRule" { 236 class CSSUnknownRule extends CSSRule native "*CSSUnknownRule" {
237 } 237 }
238 238
239 class CSSValue native "CSSValue" { 239 class CSSValue native "*CSSValue" {
240 240
241 String cssText; 241 String cssText;
242 242
243 int cssValueType; 243 int cssValueType;
244 244
245 var dartObjectLocalStorage; 245 var dartObjectLocalStorage;
246 246
247 String get typeName() native; 247 String get typeName() native;
248 } 248 }
249 249
250 class CSSValueList extends CSSValue native "CSSValueList" { 250 class CSSValueList extends CSSValue native "*CSSValueList" {
251 251
252 int length; 252 int length;
253 253
254 CSSValue item(int index) native; 254 CSSValue item(int index) native;
255 } 255 }
256 256
257 class CanvasGradient native "CanvasGradient" { 257 class CanvasGradient native "*CanvasGradient" {
258 258
259 void addColorStop(num offset, String color) native; 259 void addColorStop(num offset, String color) native;
260 260
261 var dartObjectLocalStorage; 261 var dartObjectLocalStorage;
262 262
263 String get typeName() native; 263 String get typeName() native;
264 } 264 }
265 265
266 class CanvasPattern native "CanvasPattern" { 266 class CanvasPattern native "*CanvasPattern" {
267 267
268 var dartObjectLocalStorage; 268 var dartObjectLocalStorage;
269 269
270 String get typeName() native; 270 String get typeName() native;
271 } 271 }
272 272
273 class CanvasPixelArray native "CanvasPixelArray" { 273 class CanvasPixelArray native "*CanvasPixelArray" {
274 274
275 int length; 275 int length;
276 276
277 int operator[](int index) native; 277 int operator[](int index) native;
278 278
279 int item(int index) native; 279 int item(int index) native;
280 280
281 var dartObjectLocalStorage; 281 var dartObjectLocalStorage;
282 282
283 String get typeName() native; 283 String get typeName() native;
284 } 284 }
285 285
286 class CanvasRenderingContext native "CanvasRenderingContext" { 286 class CanvasRenderingContext native "*CanvasRenderingContext" {
287 287
288 HTMLCanvasElement canvas; 288 HTMLCanvasElement canvas;
289 289
290 var dartObjectLocalStorage; 290 var dartObjectLocalStorage;
291 291
292 String get typeName() native; 292 String get typeName() native;
293 } 293 }
294 294
295 class CanvasRenderingContext2D extends CanvasRenderingContext native "CanvasRend eringContext2D" { 295 class CanvasRenderingContext2D extends CanvasRenderingContext native "*CanvasRen deringContext2D" {
296 296
297 Object fillStyle; 297 Object fillStyle;
298 298
299 String font; 299 String font;
300 300
301 num globalAlpha; 301 num globalAlpha;
302 302
303 String globalCompositeOperation; 303 String globalCompositeOperation;
304 304
305 String lineCap; 305 String lineCap;
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
410 410
411 void strokeRect(num x, num y, num width, num height, [num lineWidth = null]) n ative; 411 void strokeRect(num x, num y, num width, num height, [num lineWidth = null]) n ative;
412 412
413 void strokeText(String text, num x, num y, [num maxWidth = null]) native; 413 void strokeText(String text, num x, num y, [num maxWidth = null]) native;
414 414
415 void transform(num m11, num m12, num m21, num m22, num dx, num dy) native; 415 void transform(num m11, num m12, num m21, num m22, num dx, num dy) native;
416 416
417 void translate(num tx, num ty) native; 417 void translate(num tx, num ty) native;
418 } 418 }
419 419
420 class CharacterData extends Node native "CharacterData" { 420 class CharacterData extends Node native "*CharacterData" {
421 421
422 String data; 422 String data;
423 423
424 int length; 424 int length;
425 425
426 void appendData(String data) native; 426 void appendData(String data) native;
427 427
428 void deleteData(int offset, int length) native; 428 void deleteData(int offset, int length) native;
429 429
430 void insertData(int offset, String data) native; 430 void insertData(int offset, String data) native;
431 431
432 void replaceData(int offset, int length, String data) native; 432 void replaceData(int offset, int length, String data) native;
433 433
434 String substringData(int offset, int length) native; 434 String substringData(int offset, int length) native;
435 } 435 }
436 436
437 class ClientRect native "ClientRect" { 437 class ClientRect native "*ClientRect" {
438 438
439 num bottom; 439 num bottom;
440 440
441 num height; 441 num height;
442 442
443 num left; 443 num left;
444 444
445 num right; 445 num right;
446 446
447 num top; 447 num top;
448 448
449 num width; 449 num width;
450 450
451 var dartObjectLocalStorage; 451 var dartObjectLocalStorage;
452 452
453 String get typeName() native; 453 String get typeName() native;
454 } 454 }
455 455
456 class ClientRectList native "ClientRectList" { 456 class ClientRectList native "*ClientRectList" {
457 457
458 int length; 458 int length;
459 459
460 ClientRect item(int index) native; 460 ClientRect item(int index) native;
461 461
462 var dartObjectLocalStorage; 462 var dartObjectLocalStorage;
463 463
464 String get typeName() native; 464 String get typeName() native;
465 } 465 }
466 466
467 class Clipboard native "Clipboard" { 467 class Clipboard native "*Clipboard" {
468 468
469 String dropEffect; 469 String dropEffect;
470 470
471 String effectAllowed; 471 String effectAllowed;
472 472
473 FileList files; 473 FileList files;
474 474
475 DataTransferItemList items; 475 DataTransferItemList items;
476 476
477 List types; 477 List types;
478 478
479 void clearData([String type = null]) native; 479 void clearData([String type = null]) native;
480 480
481 void getData(String type) native; 481 void getData(String type) native;
482 482
483 bool setData(String type, String data) native; 483 bool setData(String type, String data) native;
484 484
485 void setDragImage(HTMLImageElement image, int x, int y) native; 485 void setDragImage(HTMLImageElement image, int x, int y) native;
486 486
487 var dartObjectLocalStorage; 487 var dartObjectLocalStorage;
488 488
489 String get typeName() native; 489 String get typeName() native;
490 } 490 }
491 491
492 class CloseEvent extends Event native "CloseEvent" { 492 class CloseEvent extends Event native "*CloseEvent" {
493 493
494 int code; 494 int code;
495 495
496 String reason; 496 String reason;
497 497
498 bool wasClean; 498 bool wasClean;
499 499
500 void initCloseEvent(String typeArg, bool canBubbleArg, bool cancelableArg, boo l wasCleanArg, int codeArg, String reasonArg) native; 500 void initCloseEvent(String typeArg, bool canBubbleArg, bool cancelableArg, boo l wasCleanArg, int codeArg, String reasonArg) native;
501 } 501 }
502 502
503 class Comment extends CharacterData native "Comment" { 503 class Comment extends CharacterData native "*Comment" {
504 } 504 }
505 505
506 class CompositionEvent extends UIEvent native "CompositionEvent" { 506 class CompositionEvent extends UIEvent native "*CompositionEvent" {
507 507
508 String data; 508 String data;
509 509
510 void initCompositionEvent(String typeArg, bool canBubbleArg, bool cancelableAr g, DOMWindow viewArg, String dataArg) native; 510 void initCompositionEvent(String typeArg, bool canBubbleArg, bool cancelableAr g, DOMWindow viewArg, String dataArg) native;
511 } 511 }
512 512
513 class Console native "Console" { 513 class Console native "*Console" {
514 514
515 MemoryInfo memory; 515 MemoryInfo memory;
516 516
517 void assert(bool condition) native; 517 void assert(bool condition) native;
518 518
519 void count() native; 519 void count() native;
520 520
521 void debug(Object arg) native; 521 void debug(Object arg) native;
522 522
523 void dir() native; 523 void dir() native;
(...skipping 22 matching lines...) Expand all
546 546
547 void trace(Object arg) native; 547 void trace(Object arg) native;
548 548
549 void warn(Object arg) native; 549 void warn(Object arg) native;
550 550
551 var dartObjectLocalStorage; 551 var dartObjectLocalStorage;
552 552
553 String get typeName() native; 553 String get typeName() native;
554 } 554 }
555 555
556 class Coordinates native "Coordinates" { 556 class Coordinates native "*Coordinates" {
557 557
558 num accuracy; 558 num accuracy;
559 559
560 num altitude; 560 num altitude;
561 561
562 num altitudeAccuracy; 562 num altitudeAccuracy;
563 563
564 num heading; 564 num heading;
565 565
566 num latitude; 566 num latitude;
567 567
568 num longitude; 568 num longitude;
569 569
570 num speed; 570 num speed;
571 571
572 var dartObjectLocalStorage; 572 var dartObjectLocalStorage;
573 573
574 String get typeName() native; 574 String get typeName() native;
575 } 575 }
576 576
577 class Counter native "Counter" { 577 class Counter native "*Counter" {
578 578
579 String identifier; 579 String identifier;
580 580
581 String listStyle; 581 String listStyle;
582 582
583 String separator; 583 String separator;
584 584
585 var dartObjectLocalStorage; 585 var dartObjectLocalStorage;
586 586
587 String get typeName() native; 587 String get typeName() native;
588 } 588 }
589 589
590 class Crypto native "Crypto" { 590 class Crypto native "*Crypto" {
591 591
592 void getRandomValues(ArrayBufferView array) native; 592 void getRandomValues(ArrayBufferView array) native;
593 593
594 var dartObjectLocalStorage; 594 var dartObjectLocalStorage;
595 595
596 String get typeName() native; 596 String get typeName() native;
597 } 597 }
598 598
599 class CustomEvent extends Event native "CustomEvent" { 599 class CustomEvent extends Event native "*CustomEvent" {
600 600
601 Object detail; 601 Object detail;
602 602
603 void initCustomEvent(String typeArg, bool canBubbleArg, bool cancelableArg, Ob ject detailArg) native; 603 void initCustomEvent(String typeArg, bool canBubbleArg, bool cancelableArg, Ob ject detailArg) native;
604 } 604 }
605 605
606 class DOMApplicationCache native "DOMApplicationCache" { 606 class DOMApplicationCache native "*DOMApplicationCache" {
607 607
608 EventListener oncached; 608 EventListener oncached;
609 609
610 EventListener onchecking; 610 EventListener onchecking;
611 611
612 EventListener ondownloading; 612 EventListener ondownloading;
613 613
614 EventListener onerror; 614 EventListener onerror;
615 615
616 EventListener onnoupdate; 616 EventListener onnoupdate;
(...skipping 14 matching lines...) Expand all
631 631
632 void swapCache() native; 632 void swapCache() native;
633 633
634 void update() native; 634 void update() native;
635 635
636 var dartObjectLocalStorage; 636 var dartObjectLocalStorage;
637 637
638 String get typeName() native; 638 String get typeName() native;
639 } 639 }
640 640
641 class DOMException native "DOMException" { 641 class DOMException native "*DOMException" {
642 642
643 int code; 643 int code;
644 644
645 String message; 645 String message;
646 646
647 String name; 647 String name;
648 648
649 String toString() native; 649 String toString() native;
650 650
651 var dartObjectLocalStorage; 651 var dartObjectLocalStorage;
652 652
653 String get typeName() native; 653 String get typeName() native;
654 } 654 }
655 655
656 class DOMFileSystem native "DOMFileSystem" { 656 class DOMFileSystem native "*DOMFileSystem" {
657 657
658 String name; 658 String name;
659 659
660 DirectoryEntry root; 660 DirectoryEntry root;
661 661
662 var dartObjectLocalStorage; 662 var dartObjectLocalStorage;
663 663
664 String get typeName() native; 664 String get typeName() native;
665 } 665 }
666 666
667 class DOMFileSystemSync native "DOMFileSystemSync" { 667 class DOMFileSystemSync native "*DOMFileSystemSync" {
668 668
669 String name; 669 String name;
670 670
671 DirectoryEntrySync root; 671 DirectoryEntrySync root;
672 672
673 var dartObjectLocalStorage; 673 var dartObjectLocalStorage;
674 674
675 String get typeName() native; 675 String get typeName() native;
676 } 676 }
677 677
678 class DOMFormData native "DOMFormData" { 678 class DOMFormData native "*DOMFormData" {
679 679
680 void append(String name, String value, String filename) native; 680 void append(String name, String value, String filename) native;
681 681
682 var dartObjectLocalStorage; 682 var dartObjectLocalStorage;
683 683
684 String get typeName() native; 684 String get typeName() native;
685 } 685 }
686 686
687 class DOMImplementation native "DOMImplementation" { 687 class DOMImplementation native "*DOMImplementation" {
688 688
689 CSSStyleSheet createCSSStyleSheet(String title, String media) native; 689 CSSStyleSheet createCSSStyleSheet(String title, String media) native;
690 690
691 Document createDocument(String namespaceURI, String qualifiedName, DocumentTyp e doctype) native; 691 Document createDocument(String namespaceURI, String qualifiedName, DocumentTyp e doctype) native;
692 692
693 DocumentType createDocumentType(String qualifiedName, String publicId, String systemId) native; 693 DocumentType createDocumentType(String qualifiedName, String publicId, String systemId) native;
694 694
695 HTMLDocument createHTMLDocument(String title) native; 695 HTMLDocument createHTMLDocument(String title) native;
696 696
697 bool hasFeature(String feature, String version) native; 697 bool hasFeature(String feature, String version) native;
698 698
699 var dartObjectLocalStorage; 699 var dartObjectLocalStorage;
700 700
701 String get typeName() native; 701 String get typeName() native;
702 } 702 }
703 703
704 class DOMMimeType native "DOMMimeType" { 704 class DOMMimeType native "*DOMMimeType" {
705 705
706 String description; 706 String description;
707 707
708 DOMPlugin enabledPlugin; 708 DOMPlugin enabledPlugin;
709 709
710 String suffixes; 710 String suffixes;
711 711
712 String type; 712 String type;
713 713
714 var dartObjectLocalStorage; 714 var dartObjectLocalStorage;
715 715
716 String get typeName() native; 716 String get typeName() native;
717 } 717 }
718 718
719 class DOMMimeTypeArray native "DOMMimeTypeArray" { 719 class DOMMimeTypeArray native "*DOMMimeTypeArray" {
720 720
721 int length; 721 int length;
722 722
723 DOMMimeType item(int index) native; 723 DOMMimeType item(int index) native;
724 724
725 DOMMimeType namedItem(String name) native; 725 DOMMimeType namedItem(String name) native;
726 726
727 var dartObjectLocalStorage; 727 var dartObjectLocalStorage;
728 728
729 String get typeName() native; 729 String get typeName() native;
730 } 730 }
731 731
732 class DOMParser native "DOMParser" { 732 class DOMParser native "*DOMParser" {
733 733
734 Document parseFromString(String str, String contentType) native; 734 Document parseFromString(String str, String contentType) native;
735 735
736 var dartObjectLocalStorage; 736 var dartObjectLocalStorage;
737 737
738 String get typeName() native; 738 String get typeName() native;
739 } 739 }
740 740
741 class DOMPlugin native "DOMPlugin" { 741 class DOMPlugin native "*DOMPlugin" {
742 742
743 String description; 743 String description;
744 744
745 String filename; 745 String filename;
746 746
747 int length; 747 int length;
748 748
749 String name; 749 String name;
750 750
751 DOMMimeType item(int index) native; 751 DOMMimeType item(int index) native;
752 752
753 DOMMimeType namedItem(String name) native; 753 DOMMimeType namedItem(String name) native;
754 754
755 var dartObjectLocalStorage; 755 var dartObjectLocalStorage;
756 756
757 String get typeName() native; 757 String get typeName() native;
758 } 758 }
759 759
760 class DOMPluginArray native "DOMPluginArray" { 760 class DOMPluginArray native "*DOMPluginArray" {
761 761
762 int length; 762 int length;
763 763
764 DOMPlugin item(int index) native; 764 DOMPlugin item(int index) native;
765 765
766 DOMPlugin namedItem(String name) native; 766 DOMPlugin namedItem(String name) native;
767 767
768 void refresh(bool reload) native; 768 void refresh(bool reload) native;
769 769
770 var dartObjectLocalStorage; 770 var dartObjectLocalStorage;
771 771
772 String get typeName() native; 772 String get typeName() native;
773 } 773 }
774 774
775 class DOMSelection native "DOMSelection" { 775 class DOMSelection native "*DOMSelection" {
776 776
777 Node anchorNode; 777 Node anchorNode;
778 778
779 int anchorOffset; 779 int anchorOffset;
780 780
781 Node baseNode; 781 Node baseNode;
782 782
783 int baseOffset; 783 int baseOffset;
784 784
785 Node extentNode; 785 Node extentNode;
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
824 824
825 void setPosition(Node node, int offset) native; 825 void setPosition(Node node, int offset) native;
826 826
827 String toString() native; 827 String toString() native;
828 828
829 var dartObjectLocalStorage; 829 var dartObjectLocalStorage;
830 830
831 String get typeName() native; 831 String get typeName() native;
832 } 832 }
833 833
834 class DOMSettableTokenList extends DOMTokenList native "DOMSettableTokenList" { 834 class DOMSettableTokenList extends DOMTokenList native "*DOMSettableTokenList" {
835 835
836 String value; 836 String value;
837 } 837 }
838 838
839 class DOMTokenList native "DOMTokenList" { 839 class DOMTokenList native "*DOMTokenList" {
840 840
841 int length; 841 int length;
842 842
843 void add(String token) native; 843 void add(String token) native;
844 844
845 bool contains(String token) native; 845 bool contains(String token) native;
846 846
847 String item(int index) native; 847 String item(int index) native;
848 848
849 void remove(String token) native; 849 void remove(String token) native;
850 850
851 String toString() native; 851 String toString() native;
852 852
853 bool toggle(String token) native; 853 bool toggle(String token) native;
854 854
855 var dartObjectLocalStorage; 855 var dartObjectLocalStorage;
856 856
857 String get typeName() native; 857 String get typeName() native;
858 } 858 }
859 859
860 class DOMURL native "DOMURL" { 860 class DOMURL native "*DOMURL" {
861 861
862 String createObjectURL(Blob blob) native; 862 String createObjectURL(Blob blob) native;
863 863
864 void revokeObjectURL(String url) native; 864 void revokeObjectURL(String url) native;
865 865
866 var dartObjectLocalStorage; 866 var dartObjectLocalStorage;
867 867
868 String get typeName() native; 868 String get typeName() native;
869 } 869 }
870 870
871 class DOMWindow native "DOMWindow" { 871 class DOMWindow native "*DOMWindow" {
872 872
873 DOMApplicationCache applicationCache; 873 DOMApplicationCache applicationCache;
874 874
875 Navigator clientInformation; 875 Navigator clientInformation;
876 876
877 bool closed; 877 bool closed;
878 878
879 Console console; 879 Console console;
880 880
881 Crypto crypto; 881 Crypto crypto;
(...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after
1190 1190
1191 void webkitPostMessage(String message, var targetOrigin_OR_transferList, [Stri ng targetOrigin = null]) native; 1191 void webkitPostMessage(String message, var targetOrigin_OR_transferList, [Stri ng targetOrigin = null]) native;
1192 1192
1193 int webkitRequestAnimationFrame(RequestAnimationFrameCallback callback, Elemen t element) native; 1193 int webkitRequestAnimationFrame(RequestAnimationFrameCallback callback, Elemen t element) native;
1194 1194
1195 var dartObjectLocalStorage; 1195 var dartObjectLocalStorage;
1196 1196
1197 String get typeName() native; 1197 String get typeName() native;
1198 } 1198 }
1199 1199
1200 class DataTransferItem native "DataTransferItem" { 1200 class DataTransferItem native "*DataTransferItem" {
1201 1201
1202 String kind; 1202 String kind;
1203 1203
1204 String type; 1204 String type;
1205 1205
1206 Blob getAsFile() native; 1206 Blob getAsFile() native;
1207 1207
1208 void getAsString(StringCallback callback) native; 1208 void getAsString(StringCallback callback) native;
1209 1209
1210 var dartObjectLocalStorage; 1210 var dartObjectLocalStorage;
1211 1211
1212 String get typeName() native; 1212 String get typeName() native;
1213 } 1213 }
1214 1214
1215 class DataTransferItemList native "DataTransferItemList" { 1215 class DataTransferItemList native "*DataTransferItemList" {
1216 1216
1217 int length; 1217 int length;
1218 1218
1219 void add(String data, String type) native; 1219 void add(String data, String type) native;
1220 1220
1221 void clear() native; 1221 void clear() native;
1222 1222
1223 DataTransferItem item(int index) native; 1223 DataTransferItem item(int index) native;
1224 1224
1225 var dartObjectLocalStorage; 1225 var dartObjectLocalStorage;
1226 1226
1227 String get typeName() native; 1227 String get typeName() native;
1228 } 1228 }
1229 1229
1230 class DataView extends ArrayBufferView native "DataView" { 1230 class DataView extends ArrayBufferView native "*DataView" {
1231 1231
1232 num getFloat32(int byteOffset, [bool littleEndian = null]) native; 1232 num getFloat32(int byteOffset, [bool littleEndian = null]) native;
1233 1233
1234 num getFloat64(int byteOffset, [bool littleEndian = null]) native; 1234 num getFloat64(int byteOffset, [bool littleEndian = null]) native;
1235 1235
1236 int getInt16(int byteOffset, [bool littleEndian = null]) native; 1236 int getInt16(int byteOffset, [bool littleEndian = null]) native;
1237 1237
1238 int getInt32(int byteOffset, [bool littleEndian = null]) native; 1238 int getInt32(int byteOffset, [bool littleEndian = null]) native;
1239 1239
1240 Object getInt8() native; 1240 Object getInt8() native;
(...skipping 14 matching lines...) Expand all
1255 1255
1256 void setInt8() native; 1256 void setInt8() native;
1257 1257
1258 void setUint16(int byteOffset, int value, [bool littleEndian = null]) native; 1258 void setUint16(int byteOffset, int value, [bool littleEndian = null]) native;
1259 1259
1260 void setUint32(int byteOffset, int value, [bool littleEndian = null]) native; 1260 void setUint32(int byteOffset, int value, [bool littleEndian = null]) native;
1261 1261
1262 void setUint8() native; 1262 void setUint8() native;
1263 } 1263 }
1264 1264
1265 class Database native "Database" { 1265 class Database native "*Database" {
1266 1266
1267 String version; 1267 String version;
1268 1268
1269 void changeVersion(String oldVersion, String newVersion, [SQLTransactionCallba ck callback = null, SQLTransactionErrorCallback errorCallback = null, VoidCallba ck successCallback = null]) native; 1269 void changeVersion(String oldVersion, String newVersion, [SQLTransactionCallba ck callback = null, SQLTransactionErrorCallback errorCallback = null, VoidCallba ck successCallback = null]) native;
1270 1270
1271 void readTransaction(SQLTransactionCallback callback, [SQLTransactionErrorCall back errorCallback = null, VoidCallback successCallback = null]) native; 1271 void readTransaction(SQLTransactionCallback callback, [SQLTransactionErrorCall back errorCallback = null, VoidCallback successCallback = null]) native;
1272 1272
1273 void transaction(SQLTransactionCallback callback, [SQLTransactionErrorCallback errorCallback = null, VoidCallback successCallback = null]) native; 1273 void transaction(SQLTransactionCallback callback, [SQLTransactionErrorCallback errorCallback = null, VoidCallback successCallback = null]) native;
1274 1274
1275 var dartObjectLocalStorage; 1275 var dartObjectLocalStorage;
1276 1276
1277 String get typeName() native; 1277 String get typeName() native;
1278 } 1278 }
1279 1279
1280 class DatabaseCallback native "DatabaseCallback" { 1280 class DatabaseCallback native "*DatabaseCallback" {
1281 1281
1282 bool handleEvent(var database) native; 1282 bool handleEvent(var database) native;
1283 1283
1284 var dartObjectLocalStorage; 1284 var dartObjectLocalStorage;
1285 1285
1286 String get typeName() native; 1286 String get typeName() native;
1287 } 1287 }
1288 1288
1289 class DatabaseSync native "DatabaseSync" { 1289 class DatabaseSync native "*DatabaseSync" {
1290 1290
1291 String version; 1291 String version;
1292 1292
1293 void changeVersion(String oldVersion, String newVersion, [SQLTransactionSyncCa llback callback = null]) native; 1293 void changeVersion(String oldVersion, String newVersion, [SQLTransactionSyncCa llback callback = null]) native;
1294 1294
1295 void readTransaction(SQLTransactionSyncCallback callback) native; 1295 void readTransaction(SQLTransactionSyncCallback callback) native;
1296 1296
1297 void transaction(SQLTransactionSyncCallback callback) native; 1297 void transaction(SQLTransactionSyncCallback callback) native;
1298 1298
1299 var dartObjectLocalStorage; 1299 var dartObjectLocalStorage;
1300 1300
1301 String get typeName() native; 1301 String get typeName() native;
1302 } 1302 }
1303 1303
1304 class DedicatedWorkerContext extends WorkerContext native "DedicatedWorkerContex t" { 1304 class DedicatedWorkerContext extends WorkerContext native "*DedicatedWorkerConte xt" {
1305 1305
1306 EventListener onmessage; 1306 EventListener onmessage;
1307 1307
1308 void postMessage(Object message, [List messagePorts = null]) native; 1308 void postMessage(Object message, [List messagePorts = null]) native;
1309 1309
1310 void webkitPostMessage(Object message, [List transferList = null]) native; 1310 void webkitPostMessage(Object message, [List transferList = null]) native;
1311 } 1311 }
1312 1312
1313 class DeviceMotionEvent extends Event native "DeviceMotionEvent" { 1313 class DeviceMotionEvent extends Event native "*DeviceMotionEvent" {
1314 1314
1315 num interval; 1315 num interval;
1316 } 1316 }
1317 1317
1318 class DeviceOrientationEvent extends Event native "DeviceOrientationEvent" { 1318 class DeviceOrientationEvent extends Event native "*DeviceOrientationEvent" {
1319 1319
1320 num alpha; 1320 num alpha;
1321 1321
1322 num beta; 1322 num beta;
1323 1323
1324 num gamma; 1324 num gamma;
1325 1325
1326 void initDeviceOrientationEvent(String type, bool bubbles, bool cancelable, nu m alpha, num beta, num gamma) native; 1326 void initDeviceOrientationEvent(String type, bool bubbles, bool cancelable, nu m alpha, num beta, num gamma) native;
1327 } 1327 }
1328 1328
1329 class DirectoryEntry extends Entry native "DirectoryEntry" { 1329 class DirectoryEntry extends Entry native "*DirectoryEntry" {
1330 1330
1331 DirectoryReader createReader() native; 1331 DirectoryReader createReader() native;
1332 1332
1333 void getDirectory(String path, [WebKitFlags flags = null, EntryCallback succes sCallback = null, ErrorCallback errorCallback = null]) native; 1333 void getDirectory(String path, [WebKitFlags flags = null, EntryCallback succes sCallback = null, ErrorCallback errorCallback = null]) native;
1334 1334
1335 void getFile(String path, [WebKitFlags flags = null, EntryCallback successCall back = null, ErrorCallback errorCallback = null]) native; 1335 void getFile(String path, [WebKitFlags flags = null, EntryCallback successCall back = null, ErrorCallback errorCallback = null]) native;
1336 1336
1337 void removeRecursively([VoidCallback successCallback = null, ErrorCallback err orCallback = null]) native; 1337 void removeRecursively([VoidCallback successCallback = null, ErrorCallback err orCallback = null]) native;
1338 } 1338 }
1339 1339
1340 class DirectoryEntrySync extends EntrySync native "DirectoryEntrySync" { 1340 class DirectoryEntrySync extends EntrySync native "*DirectoryEntrySync" {
1341 1341
1342 DirectoryReaderSync createReader() native; 1342 DirectoryReaderSync createReader() native;
1343 1343
1344 DirectoryEntrySync getDirectory(String path, WebKitFlags flags) native; 1344 DirectoryEntrySync getDirectory(String path, WebKitFlags flags) native;
1345 1345
1346 FileEntrySync getFile(String path, WebKitFlags flags) native; 1346 FileEntrySync getFile(String path, WebKitFlags flags) native;
1347 1347
1348 void removeRecursively() native; 1348 void removeRecursively() native;
1349 } 1349 }
1350 1350
1351 class DirectoryReader native "DirectoryReader" { 1351 class DirectoryReader native "*DirectoryReader" {
1352 1352
1353 void readEntries(EntriesCallback successCallback, [ErrorCallback errorCallback = null]) native; 1353 void readEntries(EntriesCallback successCallback, [ErrorCallback errorCallback = null]) native;
1354 1354
1355 var dartObjectLocalStorage; 1355 var dartObjectLocalStorage;
1356 1356
1357 String get typeName() native; 1357 String get typeName() native;
1358 } 1358 }
1359 1359
1360 class DirectoryReaderSync native "DirectoryReaderSync" { 1360 class DirectoryReaderSync native "*DirectoryReaderSync" {
1361 1361
1362 EntryArraySync readEntries() native; 1362 EntryArraySync readEntries() native;
1363 1363
1364 var dartObjectLocalStorage; 1364 var dartObjectLocalStorage;
1365 1365
1366 String get typeName() native; 1366 String get typeName() native;
1367 } 1367 }
1368 1368
1369 class Document extends Node native "Document" { 1369 class Document extends Node native "*Document" {
1370 1370
1371 String URL; 1371 String URL;
1372 1372
1373 HTMLCollection anchors; 1373 HTMLCollection anchors;
1374 1374
1375 HTMLCollection applets; 1375 HTMLCollection applets;
1376 1376
1377 HTMLElement body; 1377 HTMLElement body;
1378 1378
1379 String characterSet; 1379 String characterSet;
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after
1594 1594
1595 bool queryCommandSupported(String command) native; 1595 bool queryCommandSupported(String command) native;
1596 1596
1597 String queryCommandValue(String command) native; 1597 String queryCommandValue(String command) native;
1598 1598
1599 Element querySelector(String selectors) native; 1599 Element querySelector(String selectors) native;
1600 1600
1601 NodeList querySelectorAll(String selectors) native; 1601 NodeList querySelectorAll(String selectors) native;
1602 } 1602 }
1603 1603
1604 class DocumentFragment extends Node native "DocumentFragment" { 1604 class DocumentFragment extends Node native "*DocumentFragment" {
1605 1605
1606 Element querySelector(String selectors) native; 1606 Element querySelector(String selectors) native;
1607 1607
1608 NodeList querySelectorAll(String selectors) native; 1608 NodeList querySelectorAll(String selectors) native;
1609 } 1609 }
1610 1610
1611 class DocumentType extends Node native "DocumentType" { 1611 class DocumentType extends Node native "*DocumentType" {
1612 1612
1613 NamedNodeMap entities; 1613 NamedNodeMap entities;
1614 1614
1615 String internalSubset; 1615 String internalSubset;
1616 1616
1617 String name; 1617 String name;
1618 1618
1619 NamedNodeMap notations; 1619 NamedNodeMap notations;
1620 1620
1621 String publicId; 1621 String publicId;
1622 1622
1623 String systemId; 1623 String systemId;
1624 } 1624 }
1625 1625
1626 class Element extends Node native "Element" { 1626 class Element extends Node native "*Element" {
1627 1627
1628 int childElementCount; 1628 int childElementCount;
1629 1629
1630 int clientHeight; 1630 int clientHeight;
1631 1631
1632 int clientLeft; 1632 int clientLeft;
1633 1633
1634 int clientTop; 1634 int clientTop;
1635 1635
1636 int clientWidth; 1636 int clientWidth;
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
1801 1801
1802 void setAttributeNS(String namespaceURI, String qualifiedName, String value) n ative; 1802 void setAttributeNS(String namespaceURI, String qualifiedName, String value) n ative;
1803 1803
1804 Attr setAttributeNode(Attr newAttr) native; 1804 Attr setAttributeNode(Attr newAttr) native;
1805 1805
1806 Attr setAttributeNodeNS(Attr newAttr) native; 1806 Attr setAttributeNodeNS(Attr newAttr) native;
1807 1807
1808 bool webkitMatchesSelector(String selectors) native; 1808 bool webkitMatchesSelector(String selectors) native;
1809 } 1809 }
1810 1810
1811 class ElementTimeControl native "ElementTimeControl" { 1811 class ElementTimeControl native "*ElementTimeControl" {
1812 1812
1813 void beginElement() native; 1813 void beginElement() native;
1814 1814
1815 void beginElementAt(num offset) native; 1815 void beginElementAt(num offset) native;
1816 1816
1817 void endElement() native; 1817 void endElement() native;
1818 1818
1819 void endElementAt(num offset) native; 1819 void endElementAt(num offset) native;
1820 1820
1821 var dartObjectLocalStorage; 1821 var dartObjectLocalStorage;
1822 1822
1823 String get typeName() native; 1823 String get typeName() native;
1824 } 1824 }
1825 1825
1826 class ElementTraversal native "ElementTraversal" { 1826 class ElementTraversal native "*ElementTraversal" {
1827 1827
1828 int childElementCount; 1828 int childElementCount;
1829 1829
1830 Element firstElementChild; 1830 Element firstElementChild;
1831 1831
1832 Element lastElementChild; 1832 Element lastElementChild;
1833 1833
1834 Element nextElementSibling; 1834 Element nextElementSibling;
1835 1835
1836 Element previousElementSibling; 1836 Element previousElementSibling;
1837 1837
1838 var dartObjectLocalStorage; 1838 var dartObjectLocalStorage;
1839 1839
1840 String get typeName() native; 1840 String get typeName() native;
1841 } 1841 }
1842 1842
1843 class Entity extends Node native "Entity" { 1843 class Entity extends Node native "*Entity" {
1844 1844
1845 String notationName; 1845 String notationName;
1846 1846
1847 String publicId; 1847 String publicId;
1848 1848
1849 String systemId; 1849 String systemId;
1850 } 1850 }
1851 1851
1852 class EntityReference extends Node native "EntityReference" { 1852 class EntityReference extends Node native "*EntityReference" {
1853 } 1853 }
1854 1854
1855 class EntriesCallback native "EntriesCallback" { 1855 class EntriesCallback native "*EntriesCallback" {
1856 1856
1857 bool handleEvent(EntryArray entries) native; 1857 bool handleEvent(EntryArray entries) native;
1858 1858
1859 var dartObjectLocalStorage; 1859 var dartObjectLocalStorage;
1860 1860
1861 String get typeName() native; 1861 String get typeName() native;
1862 } 1862 }
1863 1863
1864 class Entry native "Entry" { 1864 class Entry native "*Entry" {
1865 1865
1866 DOMFileSystem filesystem; 1866 DOMFileSystem filesystem;
1867 1867
1868 String fullPath; 1868 String fullPath;
1869 1869
1870 bool isDirectory; 1870 bool isDirectory;
1871 1871
1872 bool isFile; 1872 bool isFile;
1873 1873
1874 String name; 1874 String name;
1875 1875
1876 void copyTo(DirectoryEntry parent, [String name = null, EntryCallback successC allback = null, ErrorCallback errorCallback = null]) native; 1876 void copyTo(DirectoryEntry parent, [String name = null, EntryCallback successC allback = null, ErrorCallback errorCallback = null]) native;
1877 1877
1878 void getMetadata([MetadataCallback successCallback = null, ErrorCallback error Callback = null]) native; 1878 void getMetadata([MetadataCallback successCallback = null, ErrorCallback error Callback = null]) native;
1879 1879
1880 void getParent([EntryCallback successCallback = null, ErrorCallback errorCallb ack = null]) native; 1880 void getParent([EntryCallback successCallback = null, ErrorCallback errorCallb ack = null]) native;
1881 1881
1882 void moveTo(DirectoryEntry parent, [String name = null, EntryCallback successC allback = null, ErrorCallback errorCallback = null]) native; 1882 void moveTo(DirectoryEntry parent, [String name = null, EntryCallback successC allback = null, ErrorCallback errorCallback = null]) native;
1883 1883
1884 void remove([VoidCallback successCallback = null, ErrorCallback errorCallback = null]) native; 1884 void remove([VoidCallback successCallback = null, ErrorCallback errorCallback = null]) native;
1885 1885
1886 String toURL() native; 1886 String toURL() native;
1887 1887
1888 var dartObjectLocalStorage; 1888 var dartObjectLocalStorage;
1889 1889
1890 String get typeName() native; 1890 String get typeName() native;
1891 } 1891 }
1892 1892
1893 class EntryArray native "EntryArray" { 1893 class EntryArray native "*EntryArray" {
1894 1894
1895 int length; 1895 int length;
1896 1896
1897 Entry item(int index) native; 1897 Entry item(int index) native;
1898 1898
1899 var dartObjectLocalStorage; 1899 var dartObjectLocalStorage;
1900 1900
1901 String get typeName() native; 1901 String get typeName() native;
1902 } 1902 }
1903 1903
1904 class EntryArraySync native "EntryArraySync" { 1904 class EntryArraySync native "*EntryArraySync" {
1905 1905
1906 int length; 1906 int length;
1907 1907
1908 EntrySync item(int index) native; 1908 EntrySync item(int index) native;
1909 1909
1910 var dartObjectLocalStorage; 1910 var dartObjectLocalStorage;
1911 1911
1912 String get typeName() native; 1912 String get typeName() native;
1913 } 1913 }
1914 1914
1915 class EntryCallback native "EntryCallback" { 1915 class EntryCallback native "*EntryCallback" {
1916 1916
1917 bool handleEvent(Entry entry) native; 1917 bool handleEvent(Entry entry) native;
1918 1918
1919 var dartObjectLocalStorage; 1919 var dartObjectLocalStorage;
1920 1920
1921 String get typeName() native; 1921 String get typeName() native;
1922 } 1922 }
1923 1923
1924 class EntrySync native "EntrySync" { 1924 class EntrySync native "*EntrySync" {
1925 1925
1926 DOMFileSystemSync filesystem; 1926 DOMFileSystemSync filesystem;
1927 1927
1928 String fullPath; 1928 String fullPath;
1929 1929
1930 bool isDirectory; 1930 bool isDirectory;
1931 1931
1932 bool isFile; 1932 bool isFile;
1933 1933
1934 String name; 1934 String name;
1935 1935
1936 EntrySync copyTo(DirectoryEntrySync parent, String name) native; 1936 EntrySync copyTo(DirectoryEntrySync parent, String name) native;
1937 1937
1938 Metadata getMetadata() native; 1938 Metadata getMetadata() native;
1939 1939
1940 DirectoryEntrySync getParent() native; 1940 DirectoryEntrySync getParent() native;
1941 1941
1942 EntrySync moveTo(DirectoryEntrySync parent, String name) native; 1942 EntrySync moveTo(DirectoryEntrySync parent, String name) native;
1943 1943
1944 void remove() native; 1944 void remove() native;
1945 1945
1946 String toURL() native; 1946 String toURL() native;
1947 1947
1948 var dartObjectLocalStorage; 1948 var dartObjectLocalStorage;
1949 1949
1950 String get typeName() native; 1950 String get typeName() native;
1951 } 1951 }
1952 1952
1953 class ErrorCallback native "ErrorCallback" { 1953 class ErrorCallback native "*ErrorCallback" {
1954 1954
1955 bool handleEvent(FileError error) native; 1955 bool handleEvent(FileError error) native;
1956 1956
1957 var dartObjectLocalStorage; 1957 var dartObjectLocalStorage;
1958 1958
1959 String get typeName() native; 1959 String get typeName() native;
1960 } 1960 }
1961 1961
1962 class ErrorEvent extends Event native "ErrorEvent" { 1962 class ErrorEvent extends Event native "*ErrorEvent" {
1963 1963
1964 String filename; 1964 String filename;
1965 1965
1966 int lineno; 1966 int lineno;
1967 1967
1968 String message; 1968 String message;
1969 1969
1970 void initErrorEvent(String typeArg, bool canBubbleArg, bool cancelableArg, Str ing messageArg, String filenameArg, int linenoArg) native; 1970 void initErrorEvent(String typeArg, bool canBubbleArg, bool cancelableArg, Str ing messageArg, String filenameArg, int linenoArg) native;
1971 } 1971 }
1972 1972
1973 class Event native "Event" { 1973 class Event native "*Event" {
1974 1974
1975 bool bubbles; 1975 bool bubbles;
1976 1976
1977 bool cancelBubble; 1977 bool cancelBubble;
1978 1978
1979 bool cancelable; 1979 bool cancelable;
1980 1980
1981 Clipboard clipboardData; 1981 Clipboard clipboardData;
1982 1982
1983 EventTarget currentTarget; 1983 EventTarget currentTarget;
(...skipping 18 matching lines...) Expand all
2002 2002
2003 void stopImmediatePropagation() native; 2003 void stopImmediatePropagation() native;
2004 2004
2005 void stopPropagation() native; 2005 void stopPropagation() native;
2006 2006
2007 var dartObjectLocalStorage; 2007 var dartObjectLocalStorage;
2008 2008
2009 String get typeName() native; 2009 String get typeName() native;
2010 } 2010 }
2011 2011
2012 class EventException native "EventException" { 2012 class EventException native "*EventException" {
2013 2013
2014 int code; 2014 int code;
2015 2015
2016 String message; 2016 String message;
2017 2017
2018 String name; 2018 String name;
2019 2019
2020 String toString() native; 2020 String toString() native;
2021 2021
2022 var dartObjectLocalStorage; 2022 var dartObjectLocalStorage;
2023 2023
2024 String get typeName() native; 2024 String get typeName() native;
2025 } 2025 }
2026 2026
2027 class EventSource native "EventSource" { 2027 class EventSource native "*EventSource" {
2028 2028
2029 String URL; 2029 String URL;
2030 2030
2031 EventListener onerror; 2031 EventListener onerror;
2032 2032
2033 EventListener onmessage; 2033 EventListener onmessage;
2034 2034
2035 EventListener onopen; 2035 EventListener onopen;
2036 2036
2037 int readyState; 2037 int readyState;
2038 2038
2039 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native; 2039 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
2040 2040
2041 void close() native; 2041 void close() native;
2042 2042
2043 bool dispatchEvent(Event evt) native; 2043 bool dispatchEvent(Event evt) native;
2044 2044
2045 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native; 2045 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
2046 2046
2047 var dartObjectLocalStorage; 2047 var dartObjectLocalStorage;
2048 2048
2049 String get typeName() native; 2049 String get typeName() native;
2050 } 2050 }
2051 2051
2052 class EventTarget native "EventTarget" { 2052 class EventTarget native "*EventTarget" {
2053 2053
2054 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native; 2054 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
2055 2055
2056 bool dispatchEvent(Event event) native; 2056 bool dispatchEvent(Event event) native;
2057 2057
2058 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native; 2058 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
2059 2059
2060 var dartObjectLocalStorage; 2060 var dartObjectLocalStorage;
2061 2061
2062 String get typeName() native; 2062 String get typeName() native;
2063 } 2063 }
2064 2064
2065 class File extends Blob native "File" { 2065 class File extends Blob native "*File" {
2066 2066
2067 String fileName; 2067 String fileName;
2068 2068
2069 int fileSize; 2069 int fileSize;
2070 2070
2071 Date lastModifiedDate; 2071 Date lastModifiedDate;
2072 2072
2073 String name; 2073 String name;
2074 } 2074 }
2075 2075
2076 class FileCallback native "FileCallback" { 2076 class FileCallback native "*FileCallback" {
2077 2077
2078 bool handleEvent(File file) native; 2078 bool handleEvent(File file) native;
2079 2079
2080 var dartObjectLocalStorage; 2080 var dartObjectLocalStorage;
2081 2081
2082 String get typeName() native; 2082 String get typeName() native;
2083 } 2083 }
2084 2084
2085 class FileEntry extends Entry native "FileEntry" { 2085 class FileEntry extends Entry native "*FileEntry" {
2086 2086
2087 void createWriter(FileWriterCallback successCallback, [ErrorCallback errorCall back = null]) native; 2087 void createWriter(FileWriterCallback successCallback, [ErrorCallback errorCall back = null]) native;
2088 2088
2089 void file(FileCallback successCallback, [ErrorCallback errorCallback = null]) native; 2089 void file(FileCallback successCallback, [ErrorCallback errorCallback = null]) native;
2090 } 2090 }
2091 2091
2092 class FileEntrySync extends EntrySync native "FileEntrySync" { 2092 class FileEntrySync extends EntrySync native "*FileEntrySync" {
2093 2093
2094 FileWriterSync createWriter() native; 2094 FileWriterSync createWriter() native;
2095 2095
2096 File file() native; 2096 File file() native;
2097 } 2097 }
2098 2098
2099 class FileError native "FileError" { 2099 class FileError native "*FileError" {
2100 2100
2101 int code; 2101 int code;
2102 2102
2103 var dartObjectLocalStorage; 2103 var dartObjectLocalStorage;
2104 2104
2105 String get typeName() native; 2105 String get typeName() native;
2106 } 2106 }
2107 2107
2108 class FileException native "FileException" { 2108 class FileException native "*FileException" {
2109 2109
2110 int code; 2110 int code;
2111 2111
2112 String message; 2112 String message;
2113 2113
2114 String name; 2114 String name;
2115 2115
2116 String toString() native; 2116 String toString() native;
2117 2117
2118 var dartObjectLocalStorage; 2118 var dartObjectLocalStorage;
2119 2119
2120 String get typeName() native; 2120 String get typeName() native;
2121 } 2121 }
2122 2122
2123 class FileList native "FileList" { 2123 class FileList native "*FileList" {
2124 2124
2125 int length; 2125 int length;
2126 2126
2127 File item(int index) native; 2127 File item(int index) native;
2128 2128
2129 var dartObjectLocalStorage; 2129 var dartObjectLocalStorage;
2130 2130
2131 String get typeName() native; 2131 String get typeName() native;
2132 } 2132 }
2133 2133
2134 class FileReader native "FileReader" { 2134 class FileReader native "*FileReader" {
2135 FileReader() native; 2135 FileReader() native;
2136 2136
2137 2137
2138 FileError error; 2138 FileError error;
2139 2139
2140 EventListener onabort; 2140 EventListener onabort;
2141 2141
2142 EventListener onerror; 2142 EventListener onerror;
2143 2143
2144 EventListener onload; 2144 EventListener onload;
(...skipping 16 matching lines...) Expand all
2161 2161
2162 void readAsDataURL(Blob blob) native; 2162 void readAsDataURL(Blob blob) native;
2163 2163
2164 void readAsText(Blob blob, [String encoding = null]) native; 2164 void readAsText(Blob blob, [String encoding = null]) native;
2165 2165
2166 var dartObjectLocalStorage; 2166 var dartObjectLocalStorage;
2167 2167
2168 String get typeName() native; 2168 String get typeName() native;
2169 } 2169 }
2170 2170
2171 class FileReaderSync native "FileReaderSync" { 2171 class FileReaderSync native "*FileReaderSync" {
2172 2172
2173 ArrayBuffer readAsArrayBuffer(Blob blob) native; 2173 ArrayBuffer readAsArrayBuffer(Blob blob) native;
2174 2174
2175 String readAsBinaryString(Blob blob) native; 2175 String readAsBinaryString(Blob blob) native;
2176 2176
2177 String readAsDataURL(Blob blob) native; 2177 String readAsDataURL(Blob blob) native;
2178 2178
2179 String readAsText(Blob blob, [String encoding = null]) native; 2179 String readAsText(Blob blob, [String encoding = null]) native;
2180 2180
2181 var dartObjectLocalStorage; 2181 var dartObjectLocalStorage;
2182 2182
2183 String get typeName() native; 2183 String get typeName() native;
2184 } 2184 }
2185 2185
2186 class FileSystemCallback native "FileSystemCallback" { 2186 class FileSystemCallback native "*FileSystemCallback" {
2187 2187
2188 bool handleEvent(DOMFileSystem fileSystem) native; 2188 bool handleEvent(DOMFileSystem fileSystem) native;
2189 2189
2190 var dartObjectLocalStorage; 2190 var dartObjectLocalStorage;
2191 2191
2192 String get typeName() native; 2192 String get typeName() native;
2193 } 2193 }
2194 2194
2195 class FileWriter native "FileWriter" { 2195 class FileWriter native "*FileWriter" {
2196 2196
2197 FileError error; 2197 FileError error;
2198 2198
2199 int length; 2199 int length;
2200 2200
2201 EventListener onabort; 2201 EventListener onabort;
2202 2202
2203 EventListener onerror; 2203 EventListener onerror;
2204 2204
2205 EventListener onprogress; 2205 EventListener onprogress;
(...skipping 14 matching lines...) Expand all
2220 2220
2221 void truncate(int size) native; 2221 void truncate(int size) native;
2222 2222
2223 void write(Blob data) native; 2223 void write(Blob data) native;
2224 2224
2225 var dartObjectLocalStorage; 2225 var dartObjectLocalStorage;
2226 2226
2227 String get typeName() native; 2227 String get typeName() native;
2228 } 2228 }
2229 2229
2230 class FileWriterCallback native "FileWriterCallback" { 2230 class FileWriterCallback native "*FileWriterCallback" {
2231 2231
2232 bool handleEvent(FileWriter fileWriter) native; 2232 bool handleEvent(FileWriter fileWriter) native;
2233 2233
2234 var dartObjectLocalStorage; 2234 var dartObjectLocalStorage;
2235 2235
2236 String get typeName() native; 2236 String get typeName() native;
2237 } 2237 }
2238 2238
2239 class FileWriterSync native "FileWriterSync" { 2239 class FileWriterSync native "*FileWriterSync" {
2240 2240
2241 int length; 2241 int length;
2242 2242
2243 int position; 2243 int position;
2244 2244
2245 void seek(int position) native; 2245 void seek(int position) native;
2246 2246
2247 void truncate(int size) native; 2247 void truncate(int size) native;
2248 2248
2249 void write(Blob data) native; 2249 void write(Blob data) native;
2250 2250
2251 var dartObjectLocalStorage; 2251 var dartObjectLocalStorage;
2252 2252
2253 String get typeName() native; 2253 String get typeName() native;
2254 } 2254 }
2255 2255
2256 class Float32Array extends ArrayBufferView native "Float32Array" { 2256 class Float32Array extends ArrayBufferView native "*Float32Array" {
2257 2257
2258 int length; 2258 int length;
2259 2259
2260 Float32Array subarray(int start, [int end = null]) native; 2260 Float32Array subarray(int start, [int end = null]) native;
2261 } 2261 }
2262 2262
2263 class Float64Array extends ArrayBufferView native "Float64Array" { 2263 class Float64Array extends ArrayBufferView native "*Float64Array" {
2264 2264
2265 int length; 2265 int length;
2266 2266
2267 Float64Array subarray(int start, [int end = null]) native; 2267 Float64Array subarray(int start, [int end = null]) native;
2268 } 2268 }
2269 2269
2270 class Geolocation native "Geolocation" { 2270 class Geolocation native "*Geolocation" {
2271 2271
2272 void clearWatch(int watchId) native; 2272 void clearWatch(int watchId) native;
2273 2273
2274 void getCurrentPosition(PositionCallback successCallback, [PositionErrorCallba ck errorCallback = null]) native; 2274 void getCurrentPosition(PositionCallback successCallback, [PositionErrorCallba ck errorCallback = null]) native;
2275 2275
2276 int watchPosition(PositionCallback successCallback, [PositionErrorCallback err orCallback = null]) native; 2276 int watchPosition(PositionCallback successCallback, [PositionErrorCallback err orCallback = null]) native;
2277 2277
2278 var dartObjectLocalStorage; 2278 var dartObjectLocalStorage;
2279 2279
2280 String get typeName() native; 2280 String get typeName() native;
2281 } 2281 }
2282 2282
2283 class Geoposition native "Geoposition" { 2283 class Geoposition native "*Geoposition" {
2284 2284
2285 Coordinates coords; 2285 Coordinates coords;
2286 2286
2287 int timestamp; 2287 int timestamp;
2288 2288
2289 var dartObjectLocalStorage; 2289 var dartObjectLocalStorage;
2290 2290
2291 String get typeName() native; 2291 String get typeName() native;
2292 } 2292 }
2293 2293
2294 class HTMLAllCollection native "HTMLAllCollection" { 2294 class HTMLAllCollection native "*HTMLAllCollection" {
2295 2295
2296 int length; 2296 int length;
2297 2297
2298 Node item(int index) native; 2298 Node item(int index) native;
2299 2299
2300 Node namedItem(String name) native; 2300 Node namedItem(String name) native;
2301 2301
2302 NodeList tags(String name) native; 2302 NodeList tags(String name) native;
2303 2303
2304 var dartObjectLocalStorage; 2304 var dartObjectLocalStorage;
2305 2305
2306 String get typeName() native; 2306 String get typeName() native;
2307 } 2307 }
2308 2308
2309 class HTMLAnchorElement extends HTMLElement native "HTMLAnchorElement" { 2309 class HTMLAnchorElement extends HTMLElement native "*HTMLAnchorElement" {
2310 2310
2311 String accessKey; 2311 String accessKey;
2312 2312
2313 String charset; 2313 String charset;
2314 2314
2315 String coords; 2315 String coords;
2316 2316
2317 String download; 2317 String download;
2318 2318
2319 String hash; 2319 String hash;
(...skipping 30 matching lines...) Expand all
2350 2350
2351 String text; 2351 String text;
2352 2352
2353 String type; 2353 String type;
2354 2354
2355 String getParameter(String name) native; 2355 String getParameter(String name) native;
2356 2356
2357 String toString() native; 2357 String toString() native;
2358 } 2358 }
2359 2359
2360 class HTMLAppletElement extends HTMLElement native "HTMLAppletElement" { 2360 class HTMLAppletElement extends HTMLElement native "*HTMLAppletElement" {
2361 2361
2362 String align; 2362 String align;
2363 2363
2364 String alt; 2364 String alt;
2365 2365
2366 String archive; 2366 String archive;
2367 2367
2368 String code; 2368 String code;
2369 2369
2370 String codeBase; 2370 String codeBase;
2371 2371
2372 String height; 2372 String height;
2373 2373
2374 String hspace; 2374 String hspace;
2375 2375
2376 String name; 2376 String name;
2377 2377
2378 String object; 2378 String object;
2379 2379
2380 String vspace; 2380 String vspace;
2381 2381
2382 String width; 2382 String width;
2383 } 2383 }
2384 2384
2385 class HTMLAreaElement extends HTMLElement native "HTMLAreaElement" { 2385 class HTMLAreaElement extends HTMLElement native "*HTMLAreaElement" {
2386 2386
2387 String accessKey; 2387 String accessKey;
2388 2388
2389 String alt; 2389 String alt;
2390 2390
2391 String coords; 2391 String coords;
2392 2392
2393 String hash; 2393 String hash;
2394 2394
2395 String host; 2395 String host;
(...skipping 12 matching lines...) Expand all
2408 2408
2409 String protocol; 2409 String protocol;
2410 2410
2411 String search; 2411 String search;
2412 2412
2413 String shape; 2413 String shape;
2414 2414
2415 String target; 2415 String target;
2416 } 2416 }
2417 2417
2418 class HTMLAudioElement extends HTMLMediaElement native "HTMLAudioElement" { 2418 class HTMLAudioElement extends HTMLMediaElement native "*HTMLAudioElement" {
2419 } 2419 }
2420 2420
2421 class HTMLBRElement extends HTMLElement native "HTMLBRElement" { 2421 class HTMLBRElement extends HTMLElement native "*HTMLBRElement" {
2422 2422
2423 String clear; 2423 String clear;
2424 } 2424 }
2425 2425
2426 class HTMLBaseElement extends HTMLElement native "HTMLBaseElement" { 2426 class HTMLBaseElement extends HTMLElement native "*HTMLBaseElement" {
2427 2427
2428 String href; 2428 String href;
2429 2429
2430 String target; 2430 String target;
2431 } 2431 }
2432 2432
2433 class HTMLBaseFontElement extends HTMLElement native "HTMLBaseFontElement" { 2433 class HTMLBaseFontElement extends HTMLElement native "*HTMLBaseFontElement" {
2434 2434
2435 String color; 2435 String color;
2436 2436
2437 String face; 2437 String face;
2438 2438
2439 int size; 2439 int size;
2440 } 2440 }
2441 2441
2442 class HTMLBodyElement extends HTMLElement native "HTMLBodyElement" { 2442 class HTMLBodyElement extends HTMLElement native "*HTMLBodyElement" {
2443 2443
2444 String aLink; 2444 String aLink;
2445 2445
2446 String background; 2446 String background;
2447 2447
2448 String bgColor; 2448 String bgColor;
2449 2449
2450 String link; 2450 String link;
2451 2451
2452 EventListener onbeforeunload; 2452 EventListener onbeforeunload;
(...skipping 22 matching lines...) Expand all
2475 2475
2476 EventListener onstorage; 2476 EventListener onstorage;
2477 2477
2478 EventListener onunload; 2478 EventListener onunload;
2479 2479
2480 String text; 2480 String text;
2481 2481
2482 String vLink; 2482 String vLink;
2483 } 2483 }
2484 2484
2485 class HTMLButtonElement extends HTMLElement native "HTMLButtonElement" { 2485 class HTMLButtonElement extends HTMLElement native "*HTMLButtonElement" {
2486 2486
2487 String accessKey; 2487 String accessKey;
2488 2488
2489 bool autofocus; 2489 bool autofocus;
2490 2490
2491 bool disabled; 2491 bool disabled;
2492 2492
2493 HTMLFormElement form; 2493 HTMLFormElement form;
2494 2494
2495 String formAction; 2495 String formAction;
(...skipping 20 matching lines...) Expand all
2516 2516
2517 bool willValidate; 2517 bool willValidate;
2518 2518
2519 bool checkValidity() native; 2519 bool checkValidity() native;
2520 2520
2521 void click() native; 2521 void click() native;
2522 2522
2523 void setCustomValidity(String error) native; 2523 void setCustomValidity(String error) native;
2524 } 2524 }
2525 2525
2526 class HTMLCanvasElement extends HTMLElement native "HTMLCanvasElement" { 2526 class HTMLCanvasElement extends HTMLElement native "*HTMLCanvasElement" {
2527 2527
2528 int height; 2528 int height;
2529 2529
2530 int width; 2530 int width;
2531 2531
2532 Object getContext(String contextId) native; 2532 Object getContext(String contextId) native;
2533 2533
2534 String toDataURL(String type) native; 2534 String toDataURL(String type) native;
2535 } 2535 }
2536 2536
2537 class HTMLCollection native "HTMLCollection" { 2537 class HTMLCollection native "*HTMLCollection" {
2538 2538
2539 int length; 2539 int length;
2540 2540
2541 Node operator[](int index) native; 2541 Node operator[](int index) native;
2542 2542
2543 Node item(int index) native; 2543 Node item(int index) native;
2544 2544
2545 Node namedItem(String name) native; 2545 Node namedItem(String name) native;
2546 2546
2547 var dartObjectLocalStorage; 2547 var dartObjectLocalStorage;
2548 2548
2549 String get typeName() native; 2549 String get typeName() native;
2550 } 2550 }
2551 2551
2552 class HTMLDListElement extends HTMLElement native "HTMLDListElement" { 2552 class HTMLDListElement extends HTMLElement native "*HTMLDListElement" {
2553 2553
2554 bool compact; 2554 bool compact;
2555 } 2555 }
2556 2556
2557 class HTMLDataListElement extends HTMLElement native "HTMLDataListElement" { 2557 class HTMLDataListElement extends HTMLElement native "*HTMLDataListElement" {
2558 2558
2559 HTMLCollection options; 2559 HTMLCollection options;
2560 } 2560 }
2561 2561
2562 class HTMLDetailsElement extends HTMLElement native "HTMLDetailsElement" { 2562 class HTMLDetailsElement extends HTMLElement native "*HTMLDetailsElement" {
2563 2563
2564 bool open; 2564 bool open;
2565 } 2565 }
2566 2566
2567 class HTMLDirectoryElement extends HTMLElement native "HTMLDirectoryElement" { 2567 class HTMLDirectoryElement extends HTMLElement native "*HTMLDirectoryElement" {
2568 2568
2569 bool compact; 2569 bool compact;
2570 } 2570 }
2571 2571
2572 class HTMLDivElement extends HTMLElement native "HTMLDivElement" { 2572 class HTMLDivElement extends HTMLElement native "*HTMLDivElement" {
2573 2573
2574 String align; 2574 String align;
2575 } 2575 }
2576 2576
2577 class HTMLDocument extends Document native "HTMLDocument" { 2577 class HTMLDocument extends Document native "*HTMLDocument" {
2578 2578
2579 Element activeElement; 2579 Element activeElement;
2580 2580
2581 String alinkColor; 2581 String alinkColor;
2582 2582
2583 HTMLAllCollection all; 2583 HTMLAllCollection all;
2584 2584
2585 String bgColor; 2585 String bgColor;
2586 2586
2587 String compatMode; 2587 String compatMode;
(...skipping 28 matching lines...) Expand all
2616 2616
2617 void open() native; 2617 void open() native;
2618 2618
2619 void releaseEvents() native; 2619 void releaseEvents() native;
2620 2620
2621 void write(String text) native; 2621 void write(String text) native;
2622 2622
2623 void writeln(String text) native; 2623 void writeln(String text) native;
2624 } 2624 }
2625 2625
2626 class HTMLElement extends Element native "HTMLElement" { 2626 class HTMLElement extends Element native "*HTMLElement" {
2627 2627
2628 HTMLCollection children; 2628 HTMLCollection children;
2629 2629
2630 DOMTokenList classList; 2630 DOMTokenList classList;
2631 2631
2632 String className; 2632 String className;
2633 2633
2634 String contentEditable; 2634 String contentEditable;
2635 2635
2636 String dir; 2636 String dir;
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
2673 2673
2674 String webkitdropzone; 2674 String webkitdropzone;
2675 2675
2676 Element insertAdjacentElement(String where, Element element) native; 2676 Element insertAdjacentElement(String where, Element element) native;
2677 2677
2678 void insertAdjacentHTML(String where, String html) native; 2678 void insertAdjacentHTML(String where, String html) native;
2679 2679
2680 void insertAdjacentText(String where, String text) native; 2680 void insertAdjacentText(String where, String text) native;
2681 } 2681 }
2682 2682
2683 class HTMLEmbedElement extends HTMLElement native "HTMLEmbedElement" { 2683 class HTMLEmbedElement extends HTMLElement native "*HTMLEmbedElement" {
2684 2684
2685 String align; 2685 String align;
2686 2686
2687 String height; 2687 String height;
2688 2688
2689 String name; 2689 String name;
2690 2690
2691 String src; 2691 String src;
2692 2692
2693 String type; 2693 String type;
2694 2694
2695 String width; 2695 String width;
2696 } 2696 }
2697 2697
2698 class HTMLFieldSetElement extends HTMLElement native "HTMLFieldSetElement" { 2698 class HTMLFieldSetElement extends HTMLElement native "*HTMLFieldSetElement" {
2699 2699
2700 HTMLFormElement form; 2700 HTMLFormElement form;
2701 2701
2702 String validationMessage; 2702 String validationMessage;
2703 2703
2704 ValidityState validity; 2704 ValidityState validity;
2705 2705
2706 bool willValidate; 2706 bool willValidate;
2707 2707
2708 bool checkValidity() native; 2708 bool checkValidity() native;
2709 2709
2710 void setCustomValidity(String error) native; 2710 void setCustomValidity(String error) native;
2711 } 2711 }
2712 2712
2713 class HTMLFontElement extends HTMLElement native "HTMLFontElement" { 2713 class HTMLFontElement extends HTMLElement native "*HTMLFontElement" {
2714 2714
2715 String color; 2715 String color;
2716 2716
2717 String face; 2717 String face;
2718 2718
2719 String size; 2719 String size;
2720 } 2720 }
2721 2721
2722 class HTMLFormElement extends HTMLElement native "HTMLFormElement" { 2722 class HTMLFormElement extends HTMLElement native "*HTMLFormElement" {
2723 2723
2724 String acceptCharset; 2724 String acceptCharset;
2725 2725
2726 String action; 2726 String action;
2727 2727
2728 String autocomplete; 2728 String autocomplete;
2729 2729
2730 HTMLCollection elements; 2730 HTMLCollection elements;
2731 2731
2732 String encoding; 2732 String encoding;
(...skipping 10 matching lines...) Expand all
2743 2743
2744 String target; 2744 String target;
2745 2745
2746 bool checkValidity() native; 2746 bool checkValidity() native;
2747 2747
2748 void reset() native; 2748 void reset() native;
2749 2749
2750 void submit() native; 2750 void submit() native;
2751 } 2751 }
2752 2752
2753 class HTMLFrameElement extends HTMLElement native "HTMLFrameElement" { 2753 class HTMLFrameElement extends HTMLElement native "*HTMLFrameElement" {
2754 2754
2755 Document contentDocument; 2755 Document contentDocument;
2756 2756
2757 DOMWindow contentWindow; 2757 DOMWindow contentWindow;
2758 2758
2759 String frameBorder; 2759 String frameBorder;
2760 2760
2761 int height; 2761 int height;
2762 2762
2763 String location; 2763 String location;
2764 2764
2765 String longDesc; 2765 String longDesc;
2766 2766
2767 String marginHeight; 2767 String marginHeight;
2768 2768
2769 String marginWidth; 2769 String marginWidth;
2770 2770
2771 String name; 2771 String name;
2772 2772
2773 bool noResize; 2773 bool noResize;
2774 2774
2775 String scrolling; 2775 String scrolling;
2776 2776
2777 String src; 2777 String src;
2778 2778
2779 int width; 2779 int width;
2780 } 2780 }
2781 2781
2782 class HTMLFrameSetElement extends HTMLElement native "HTMLFrameSetElement" { 2782 class HTMLFrameSetElement extends HTMLElement native "*HTMLFrameSetElement" {
2783 2783
2784 String cols; 2784 String cols;
2785 2785
2786 EventListener onbeforeunload; 2786 EventListener onbeforeunload;
2787 2787
2788 EventListener onblur; 2788 EventListener onblur;
2789 2789
2790 EventListener onerror; 2790 EventListener onerror;
2791 2791
2792 EventListener onfocus; 2792 EventListener onfocus;
(...skipping 14 matching lines...) Expand all
2807 2807
2808 EventListener onresize; 2808 EventListener onresize;
2809 2809
2810 EventListener onstorage; 2810 EventListener onstorage;
2811 2811
2812 EventListener onunload; 2812 EventListener onunload;
2813 2813
2814 String rows; 2814 String rows;
2815 } 2815 }
2816 2816
2817 class HTMLHRElement extends HTMLElement native "HTMLHRElement" { 2817 class HTMLHRElement extends HTMLElement native "*HTMLHRElement" {
2818 2818
2819 String align; 2819 String align;
2820 2820
2821 bool noShade; 2821 bool noShade;
2822 2822
2823 String size; 2823 String size;
2824 2824
2825 String width; 2825 String width;
2826 } 2826 }
2827 2827
2828 class HTMLHeadElement extends HTMLElement native "HTMLHeadElement" { 2828 class HTMLHeadElement extends HTMLElement native "*HTMLHeadElement" {
2829 2829
2830 String profile; 2830 String profile;
2831 } 2831 }
2832 2832
2833 class HTMLHeadingElement extends HTMLElement native "HTMLHeadingElement" { 2833 class HTMLHeadingElement extends HTMLElement native "*HTMLHeadingElement" {
2834 2834
2835 String align; 2835 String align;
2836 } 2836 }
2837 2837
2838 class HTMLHtmlElement extends HTMLElement native "HTMLHtmlElement" { 2838 class HTMLHtmlElement extends HTMLElement native "*HTMLHtmlElement" {
2839 2839
2840 String manifest; 2840 String manifest;
2841 2841
2842 String version; 2842 String version;
2843 } 2843 }
2844 2844
2845 class HTMLIFrameElement extends HTMLElement native "HTMLIFrameElement" { 2845 class HTMLIFrameElement extends HTMLElement native "*HTMLIFrameElement" {
2846 2846
2847 String align; 2847 String align;
2848 2848
2849 Document contentDocument; 2849 Document contentDocument;
2850 2850
2851 DOMWindow contentWindow; 2851 DOMWindow contentWindow;
2852 2852
2853 String frameBorder; 2853 String frameBorder;
2854 2854
2855 String height; 2855 String height;
2856 2856
2857 String longDesc; 2857 String longDesc;
2858 2858
2859 String marginHeight; 2859 String marginHeight;
2860 2860
2861 String marginWidth; 2861 String marginWidth;
2862 2862
2863 String name; 2863 String name;
2864 2864
2865 String sandbox; 2865 String sandbox;
2866 2866
2867 String scrolling; 2867 String scrolling;
2868 2868
2869 String src; 2869 String src;
2870 2870
2871 String width; 2871 String width;
2872 } 2872 }
2873 2873
2874 class HTMLImageElement extends HTMLElement native "HTMLImageElement" { 2874 class HTMLImageElement extends HTMLElement native "*HTMLImageElement" {
2875 2875
2876 String align; 2876 String align;
2877 2877
2878 String alt; 2878 String alt;
2879 2879
2880 String border; 2880 String border;
2881 2881
2882 bool complete; 2882 bool complete;
2883 2883
2884 String crossOrigin; 2884 String crossOrigin;
(...skipping 20 matching lines...) Expand all
2905 2905
2906 int vspace; 2906 int vspace;
2907 2907
2908 int width; 2908 int width;
2909 2909
2910 int x; 2910 int x;
2911 2911
2912 int y; 2912 int y;
2913 } 2913 }
2914 2914
2915 class HTMLInputElement extends HTMLElement native "HTMLInputElement" { 2915 class HTMLInputElement extends HTMLElement native "*HTMLInputElement" {
2916 2916
2917 String accept; 2917 String accept;
2918 2918
2919 String accessKey; 2919 String accessKey;
2920 2920
2921 String align; 2921 String align;
2922 2922
2923 String alt; 2923 String alt;
2924 2924
2925 String autocomplete; 2925 String autocomplete;
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
3020 3020
3021 void setCustomValidity(String error) native; 3021 void setCustomValidity(String error) native;
3022 3022
3023 void setSelectionRange(int start, int end, [String direction = null]) native; 3023 void setSelectionRange(int start, int end, [String direction = null]) native;
3024 3024
3025 void stepDown([int n = null]) native; 3025 void stepDown([int n = null]) native;
3026 3026
3027 void stepUp([int n = null]) native; 3027 void stepUp([int n = null]) native;
3028 } 3028 }
3029 3029
3030 class HTMLIsIndexElement extends HTMLInputElement native "HTMLIsIndexElement" { 3030 class HTMLIsIndexElement extends HTMLInputElement native "*HTMLIsIndexElement" {
3031 3031
3032 HTMLFormElement form; 3032 HTMLFormElement form;
3033 3033
3034 String prompt; 3034 String prompt;
3035 } 3035 }
3036 3036
3037 class HTMLKeygenElement extends HTMLElement native "HTMLKeygenElement" { 3037 class HTMLKeygenElement extends HTMLElement native "*HTMLKeygenElement" {
3038 3038
3039 bool autofocus; 3039 bool autofocus;
3040 3040
3041 String challenge; 3041 String challenge;
3042 3042
3043 bool disabled; 3043 bool disabled;
3044 3044
3045 HTMLFormElement form; 3045 HTMLFormElement form;
3046 3046
3047 String keytype; 3047 String keytype;
3048 3048
3049 NodeList labels; 3049 NodeList labels;
3050 3050
3051 String name; 3051 String name;
3052 3052
3053 String type; 3053 String type;
3054 3054
3055 String validationMessage; 3055 String validationMessage;
3056 3056
3057 ValidityState validity; 3057 ValidityState validity;
3058 3058
3059 bool willValidate; 3059 bool willValidate;
3060 3060
3061 bool checkValidity() native; 3061 bool checkValidity() native;
3062 3062
3063 void setCustomValidity(String error) native; 3063 void setCustomValidity(String error) native;
3064 } 3064 }
3065 3065
3066 class HTMLLIElement extends HTMLElement native "HTMLLIElement" { 3066 class HTMLLIElement extends HTMLElement native "*HTMLLIElement" {
3067 3067
3068 String type; 3068 String type;
3069 3069
3070 int value; 3070 int value;
3071 } 3071 }
3072 3072
3073 class HTMLLabelElement extends HTMLElement native "HTMLLabelElement" { 3073 class HTMLLabelElement extends HTMLElement native "*HTMLLabelElement" {
3074 3074
3075 String accessKey; 3075 String accessKey;
3076 3076
3077 HTMLElement control; 3077 HTMLElement control;
3078 3078
3079 HTMLFormElement form; 3079 HTMLFormElement form;
3080 3080
3081 String htmlFor; 3081 String htmlFor;
3082 } 3082 }
3083 3083
3084 class HTMLLegendElement extends HTMLElement native "HTMLLegendElement" { 3084 class HTMLLegendElement extends HTMLElement native "*HTMLLegendElement" {
3085 3085
3086 String accessKey; 3086 String accessKey;
3087 3087
3088 String align; 3088 String align;
3089 3089
3090 HTMLFormElement form; 3090 HTMLFormElement form;
3091 } 3091 }
3092 3092
3093 class HTMLLinkElement extends HTMLElement native "HTMLLinkElement" { 3093 class HTMLLinkElement extends HTMLElement native "*HTMLLinkElement" {
3094 3094
3095 String charset; 3095 String charset;
3096 3096
3097 bool disabled; 3097 bool disabled;
3098 3098
3099 String href; 3099 String href;
3100 3100
3101 String hreflang; 3101 String hreflang;
3102 3102
3103 String media; 3103 String media;
3104 3104
3105 String rel; 3105 String rel;
3106 3106
3107 String rev; 3107 String rev;
3108 3108
3109 StyleSheet sheet; 3109 StyleSheet sheet;
3110 3110
3111 DOMSettableTokenList sizes; 3111 DOMSettableTokenList sizes;
3112 3112
3113 String target; 3113 String target;
3114 3114
3115 String type; 3115 String type;
3116 } 3116 }
3117 3117
3118 class HTMLMapElement extends HTMLElement native "HTMLMapElement" { 3118 class HTMLMapElement extends HTMLElement native "*HTMLMapElement" {
3119 3119
3120 HTMLCollection areas; 3120 HTMLCollection areas;
3121 3121
3122 String name; 3122 String name;
3123 } 3123 }
3124 3124
3125 class HTMLMarqueeElement extends HTMLElement native "HTMLMarqueeElement" { 3125 class HTMLMarqueeElement extends HTMLElement native "*HTMLMarqueeElement" {
3126 3126
3127 String behavior; 3127 String behavior;
3128 3128
3129 String bgColor; 3129 String bgColor;
3130 3130
3131 String direction; 3131 String direction;
3132 3132
3133 String height; 3133 String height;
3134 3134
3135 int hspace; 3135 int hspace;
3136 3136
3137 int loop; 3137 int loop;
3138 3138
3139 int scrollAmount; 3139 int scrollAmount;
3140 3140
3141 int scrollDelay; 3141 int scrollDelay;
3142 3142
3143 bool trueSpeed; 3143 bool trueSpeed;
3144 3144
3145 int vspace; 3145 int vspace;
3146 3146
3147 String width; 3147 String width;
3148 3148
3149 void start() native; 3149 void start() native;
3150 3150
3151 void stop() native; 3151 void stop() native;
3152 } 3152 }
3153 3153
3154 class HTMLMediaElement extends HTMLElement native "HTMLMediaElement" { 3154 class HTMLMediaElement extends HTMLElement native "*HTMLMediaElement" {
3155 3155
3156 bool autoplay; 3156 bool autoplay;
3157 3157
3158 TimeRanges buffered; 3158 TimeRanges buffered;
3159 3159
3160 bool controls; 3160 bool controls;
3161 3161
3162 String currentSrc; 3162 String currentSrc;
3163 3163
3164 num currentTime; 3164 num currentTime;
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
3213 3213
3214 String canPlayType(String type) native; 3214 String canPlayType(String type) native;
3215 3215
3216 void load() native; 3216 void load() native;
3217 3217
3218 void pause() native; 3218 void pause() native;
3219 3219
3220 void play() native; 3220 void play() native;
3221 } 3221 }
3222 3222
3223 class HTMLMenuElement extends HTMLElement native "HTMLMenuElement" { 3223 class HTMLMenuElement extends HTMLElement native "*HTMLMenuElement" {
3224 3224
3225 bool compact; 3225 bool compact;
3226 } 3226 }
3227 3227
3228 class HTMLMetaElement extends HTMLElement native "HTMLMetaElement" { 3228 class HTMLMetaElement extends HTMLElement native "*HTMLMetaElement" {
3229 3229
3230 String content; 3230 String content;
3231 3231
3232 String httpEquiv; 3232 String httpEquiv;
3233 3233
3234 String name; 3234 String name;
3235 3235
3236 String scheme; 3236 String scheme;
3237 } 3237 }
3238 3238
3239 class HTMLMeterElement extends HTMLElement native "HTMLMeterElement" { 3239 class HTMLMeterElement extends HTMLElement native "*HTMLMeterElement" {
3240 3240
3241 HTMLFormElement form; 3241 HTMLFormElement form;
3242 3242
3243 num high; 3243 num high;
3244 3244
3245 NodeList labels; 3245 NodeList labels;
3246 3246
3247 num low; 3247 num low;
3248 3248
3249 num max; 3249 num max;
3250 3250
3251 num min; 3251 num min;
3252 3252
3253 num optimum; 3253 num optimum;
3254 3254
3255 num value; 3255 num value;
3256 } 3256 }
3257 3257
3258 class HTMLModElement extends HTMLElement native "HTMLModElement" { 3258 class HTMLModElement extends HTMLElement native "*HTMLModElement" {
3259 3259
3260 String cite; 3260 String cite;
3261 3261
3262 String dateTime; 3262 String dateTime;
3263 } 3263 }
3264 3264
3265 class HTMLOListElement extends HTMLElement native "HTMLOListElement" { 3265 class HTMLOListElement extends HTMLElement native "*HTMLOListElement" {
3266 3266
3267 bool compact; 3267 bool compact;
3268 3268
3269 int start; 3269 int start;
3270 3270
3271 String type; 3271 String type;
3272 } 3272 }
3273 3273
3274 class HTMLObjectElement extends HTMLElement native "HTMLObjectElement" { 3274 class HTMLObjectElement extends HTMLElement native "*HTMLObjectElement" {
3275 3275
3276 String align; 3276 String align;
3277 3277
3278 String archive; 3278 String archive;
3279 3279
3280 String border; 3280 String border;
3281 3281
3282 String code; 3282 String code;
3283 3283
3284 String codeBase; 3284 String codeBase;
(...skipping 28 matching lines...) Expand all
3313 3313
3314 String width; 3314 String width;
3315 3315
3316 bool willValidate; 3316 bool willValidate;
3317 3317
3318 bool checkValidity() native; 3318 bool checkValidity() native;
3319 3319
3320 void setCustomValidity(String error) native; 3320 void setCustomValidity(String error) native;
3321 } 3321 }
3322 3322
3323 class HTMLOptGroupElement extends HTMLElement native "HTMLOptGroupElement" { 3323 class HTMLOptGroupElement extends HTMLElement native "*HTMLOptGroupElement" {
3324 3324
3325 bool disabled; 3325 bool disabled;
3326 3326
3327 String label; 3327 String label;
3328 } 3328 }
3329 3329
3330 class HTMLOptionElement extends HTMLElement native "HTMLOptionElement" { 3330 class HTMLOptionElement extends HTMLElement native "*HTMLOptionElement" {
3331 3331
3332 bool defaultSelected; 3332 bool defaultSelected;
3333 3333
3334 bool disabled; 3334 bool disabled;
3335 3335
3336 HTMLFormElement form; 3336 HTMLFormElement form;
3337 3337
3338 int index; 3338 int index;
3339 3339
3340 String label; 3340 String label;
3341 3341
3342 bool selected; 3342 bool selected;
3343 3343
3344 String text; 3344 String text;
3345 3345
3346 String value; 3346 String value;
3347 } 3347 }
3348 3348
3349 class HTMLOptionsCollection extends HTMLCollection native "HTMLOptionsCollection " { 3349 class HTMLOptionsCollection extends HTMLCollection native "*HTMLOptionsCollectio n" {
3350 3350
3351 int length; 3351 int length;
3352 3352
3353 int selectedIndex; 3353 int selectedIndex;
3354 3354
3355 void remove(int index) native; 3355 void remove(int index) native;
3356 } 3356 }
3357 3357
3358 class HTMLOutputElement extends HTMLElement native "HTMLOutputElement" { 3358 class HTMLOutputElement extends HTMLElement native "*HTMLOutputElement" {
3359 3359
3360 String defaultValue; 3360 String defaultValue;
3361 3361
3362 HTMLFormElement form; 3362 HTMLFormElement form;
3363 3363
3364 DOMSettableTokenList htmlFor; 3364 DOMSettableTokenList htmlFor;
3365 3365
3366 NodeList labels; 3366 NodeList labels;
3367 3367
3368 String name; 3368 String name;
3369 3369
3370 String type; 3370 String type;
3371 3371
3372 String validationMessage; 3372 String validationMessage;
3373 3373
3374 ValidityState validity; 3374 ValidityState validity;
3375 3375
3376 String value; 3376 String value;
3377 3377
3378 bool willValidate; 3378 bool willValidate;
3379 3379
3380 bool checkValidity() native; 3380 bool checkValidity() native;
3381 3381
3382 void setCustomValidity(String error) native; 3382 void setCustomValidity(String error) native;
3383 } 3383 }
3384 3384
3385 class HTMLParagraphElement extends HTMLElement native "HTMLParagraphElement" { 3385 class HTMLParagraphElement extends HTMLElement native "*HTMLParagraphElement" {
3386 3386
3387 String align; 3387 String align;
3388 } 3388 }
3389 3389
3390 class HTMLParamElement extends HTMLElement native "HTMLParamElement" { 3390 class HTMLParamElement extends HTMLElement native "*HTMLParamElement" {
3391 3391
3392 String name; 3392 String name;
3393 3393
3394 String type; 3394 String type;
3395 3395
3396 String value; 3396 String value;
3397 3397
3398 String valueType; 3398 String valueType;
3399 } 3399 }
3400 3400
3401 class HTMLPreElement extends HTMLElement native "HTMLPreElement" { 3401 class HTMLPreElement extends HTMLElement native "*HTMLPreElement" {
3402 3402
3403 int width; 3403 int width;
3404 3404
3405 bool wrap; 3405 bool wrap;
3406 } 3406 }
3407 3407
3408 class HTMLProgressElement extends HTMLElement native "HTMLProgressElement" { 3408 class HTMLProgressElement extends HTMLElement native "*HTMLProgressElement" {
3409 3409
3410 HTMLFormElement form; 3410 HTMLFormElement form;
3411 3411
3412 NodeList labels; 3412 NodeList labels;
3413 3413
3414 num max; 3414 num max;
3415 3415
3416 num position; 3416 num position;
3417 3417
3418 num value; 3418 num value;
3419 } 3419 }
3420 3420
3421 class HTMLQuoteElement extends HTMLElement native "HTMLQuoteElement" { 3421 class HTMLQuoteElement extends HTMLElement native "*HTMLQuoteElement" {
3422 3422
3423 String cite; 3423 String cite;
3424 } 3424 }
3425 3425
3426 class HTMLScriptElement extends HTMLElement native "HTMLScriptElement" { 3426 class HTMLScriptElement extends HTMLElement native "*HTMLScriptElement" {
3427 3427
3428 bool async; 3428 bool async;
3429 3429
3430 String charset; 3430 String charset;
3431 3431
3432 bool defer; 3432 bool defer;
3433 3433
3434 String event; 3434 String event;
3435 3435
3436 String htmlFor; 3436 String htmlFor;
3437 3437
3438 String src; 3438 String src;
3439 3439
3440 String text; 3440 String text;
3441 3441
3442 String type; 3442 String type;
3443 } 3443 }
3444 3444
3445 class HTMLSelectElement extends HTMLElement native "HTMLSelectElement" { 3445 class HTMLSelectElement extends HTMLElement native "*HTMLSelectElement" {
3446 3446
3447 bool autofocus; 3447 bool autofocus;
3448 3448
3449 bool disabled; 3449 bool disabled;
3450 3450
3451 HTMLFormElement form; 3451 HTMLFormElement form;
3452 3452
3453 NodeList labels; 3453 NodeList labels;
3454 3454
3455 int length; 3455 int length;
(...skipping 26 matching lines...) Expand all
3482 3482
3483 Node item(int index) native; 3483 Node item(int index) native;
3484 3484
3485 Node namedItem(String name) native; 3485 Node namedItem(String name) native;
3486 3486
3487 void remove(var index_OR_option) native; 3487 void remove(var index_OR_option) native;
3488 3488
3489 void setCustomValidity(String error) native; 3489 void setCustomValidity(String error) native;
3490 } 3490 }
3491 3491
3492 class HTMLSourceElement extends HTMLElement native "HTMLSourceElement" { 3492 class HTMLSourceElement extends HTMLElement native "*HTMLSourceElement" {
3493 3493
3494 String media; 3494 String media;
3495 3495
3496 String src; 3496 String src;
3497 3497
3498 String type; 3498 String type;
3499 } 3499 }
3500 3500
3501 class HTMLSpanElement extends HTMLElement native "HTMLSpanElement" { 3501 class HTMLSpanElement extends HTMLElement native "*HTMLSpanElement" {
3502 } 3502 }
3503 3503
3504 class HTMLStyleElement extends HTMLElement native "HTMLStyleElement" { 3504 class HTMLStyleElement extends HTMLElement native "*HTMLStyleElement" {
3505 3505
3506 bool disabled; 3506 bool disabled;
3507 3507
3508 String media; 3508 String media;
3509 3509
3510 StyleSheet sheet; 3510 StyleSheet sheet;
3511 3511
3512 String type; 3512 String type;
3513 } 3513 }
3514 3514
3515 class HTMLTableCaptionElement extends HTMLElement native "HTMLTableCaptionElemen t" { 3515 class HTMLTableCaptionElement extends HTMLElement native "*HTMLTableCaptionEleme nt" {
3516 3516
3517 String align; 3517 String align;
3518 } 3518 }
3519 3519
3520 class HTMLTableCellElement extends HTMLElement native "HTMLTableCellElement" { 3520 class HTMLTableCellElement extends HTMLElement native "*HTMLTableCellElement" {
3521 3521
3522 String abbr; 3522 String abbr;
3523 3523
3524 String align; 3524 String align;
3525 3525
3526 String axis; 3526 String axis;
3527 3527
3528 String bgColor; 3528 String bgColor;
3529 3529
3530 int cellIndex; 3530 int cellIndex;
(...skipping 12 matching lines...) Expand all
3543 3543
3544 int rowSpan; 3544 int rowSpan;
3545 3545
3546 String scope; 3546 String scope;
3547 3547
3548 String vAlign; 3548 String vAlign;
3549 3549
3550 String width; 3550 String width;
3551 } 3551 }
3552 3552
3553 class HTMLTableColElement extends HTMLElement native "HTMLTableColElement" { 3553 class HTMLTableColElement extends HTMLElement native "*HTMLTableColElement" {
3554 3554
3555 String align; 3555 String align;
3556 3556
3557 String ch; 3557 String ch;
3558 3558
3559 String chOff; 3559 String chOff;
3560 3560
3561 int span; 3561 int span;
3562 3562
3563 String vAlign; 3563 String vAlign;
3564 3564
3565 String width; 3565 String width;
3566 } 3566 }
3567 3567
3568 class HTMLTableElement extends HTMLElement native "HTMLTableElement" { 3568 class HTMLTableElement extends HTMLElement native "*HTMLTableElement" {
3569 3569
3570 String align; 3570 String align;
3571 3571
3572 String bgColor; 3572 String bgColor;
3573 3573
3574 String border; 3574 String border;
3575 3575
3576 HTMLTableCaptionElement caption; 3576 HTMLTableCaptionElement caption;
3577 3577
3578 String cellPadding; 3578 String cellPadding;
(...skipping 26 matching lines...) Expand all
3605 3605
3606 void deleteRow(int index) native; 3606 void deleteRow(int index) native;
3607 3607
3608 void deleteTFoot() native; 3608 void deleteTFoot() native;
3609 3609
3610 void deleteTHead() native; 3610 void deleteTHead() native;
3611 3611
3612 HTMLElement insertRow(int index) native; 3612 HTMLElement insertRow(int index) native;
3613 } 3613 }
3614 3614
3615 class HTMLTableRowElement extends HTMLElement native "HTMLTableRowElement" { 3615 class HTMLTableRowElement extends HTMLElement native "*HTMLTableRowElement" {
3616 3616
3617 String align; 3617 String align;
3618 3618
3619 String bgColor; 3619 String bgColor;
3620 3620
3621 HTMLCollection cells; 3621 HTMLCollection cells;
3622 3622
3623 String ch; 3623 String ch;
3624 3624
3625 String chOff; 3625 String chOff;
3626 3626
3627 int rowIndex; 3627 int rowIndex;
3628 3628
3629 int sectionRowIndex; 3629 int sectionRowIndex;
3630 3630
3631 String vAlign; 3631 String vAlign;
3632 3632
3633 void deleteCell(int index) native; 3633 void deleteCell(int index) native;
3634 3634
3635 HTMLElement insertCell(int index) native; 3635 HTMLElement insertCell(int index) native;
3636 } 3636 }
3637 3637
3638 class HTMLTableSectionElement extends HTMLElement native "HTMLTableSectionElemen t" { 3638 class HTMLTableSectionElement extends HTMLElement native "*HTMLTableSectionEleme nt" {
3639 3639
3640 String align; 3640 String align;
3641 3641
3642 String ch; 3642 String ch;
3643 3643
3644 String chOff; 3644 String chOff;
3645 3645
3646 HTMLCollection rows; 3646 HTMLCollection rows;
3647 3647
3648 String vAlign; 3648 String vAlign;
3649 3649
3650 void deleteRow(int index) native; 3650 void deleteRow(int index) native;
3651 3651
3652 HTMLElement insertRow(int index) native; 3652 HTMLElement insertRow(int index) native;
3653 } 3653 }
3654 3654
3655 class HTMLTextAreaElement extends HTMLElement native "HTMLTextAreaElement" { 3655 class HTMLTextAreaElement extends HTMLElement native "*HTMLTextAreaElement" {
3656 3656
3657 String accessKey; 3657 String accessKey;
3658 3658
3659 bool autofocus; 3659 bool autofocus;
3660 3660
3661 int cols; 3661 int cols;
3662 3662
3663 String defaultValue; 3663 String defaultValue;
3664 3664
3665 bool disabled; 3665 bool disabled;
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
3702 3702
3703 bool checkValidity() native; 3703 bool checkValidity() native;
3704 3704
3705 void select() native; 3705 void select() native;
3706 3706
3707 void setCustomValidity(String error) native; 3707 void setCustomValidity(String error) native;
3708 3708
3709 void setSelectionRange(int start, int end, [String direction = null]) native; 3709 void setSelectionRange(int start, int end, [String direction = null]) native;
3710 } 3710 }
3711 3711
3712 class HTMLTitleElement extends HTMLElement native "HTMLTitleElement" { 3712 class HTMLTitleElement extends HTMLElement native "*HTMLTitleElement" {
3713 3713
3714 String text; 3714 String text;
3715 } 3715 }
3716 3716
3717 class HTMLTrackElement extends HTMLElement native "HTMLTrackElement" { 3717 class HTMLTrackElement extends HTMLElement native "*HTMLTrackElement" {
3718 3718
3719 bool isDefault; 3719 bool isDefault;
3720 3720
3721 String kind; 3721 String kind;
3722 3722
3723 String label; 3723 String label;
3724 3724
3725 String src; 3725 String src;
3726 3726
3727 String srclang; 3727 String srclang;
3728 3728
3729 TextTrack track; 3729 TextTrack track;
3730 } 3730 }
3731 3731
3732 class HTMLUListElement extends HTMLElement native "HTMLUListElement" { 3732 class HTMLUListElement extends HTMLElement native "*HTMLUListElement" {
3733 3733
3734 bool compact; 3734 bool compact;
3735 3735
3736 String type; 3736 String type;
3737 } 3737 }
3738 3738
3739 class HTMLUnknownElement extends HTMLElement native "HTMLUnknownElement" { 3739 class HTMLUnknownElement extends HTMLElement native "*HTMLUnknownElement" {
3740 } 3740 }
3741 3741
3742 class HTMLVideoElement extends HTMLMediaElement native "HTMLVideoElement" { 3742 class HTMLVideoElement extends HTMLMediaElement native "*HTMLVideoElement" {
3743 3743
3744 int height; 3744 int height;
3745 3745
3746 String poster; 3746 String poster;
3747 3747
3748 int videoHeight; 3748 int videoHeight;
3749 3749
3750 int videoWidth; 3750 int videoWidth;
3751 3751
3752 int webkitDecodedFrameCount; 3752 int webkitDecodedFrameCount;
3753 3753
3754 bool webkitDisplayingFullscreen; 3754 bool webkitDisplayingFullscreen;
3755 3755
3756 int webkitDroppedFrameCount; 3756 int webkitDroppedFrameCount;
3757 3757
3758 bool webkitSupportsFullscreen; 3758 bool webkitSupportsFullscreen;
3759 3759
3760 int width; 3760 int width;
3761 3761
3762 void webkitEnterFullScreen() native; 3762 void webkitEnterFullScreen() native;
3763 3763
3764 void webkitEnterFullscreen() native; 3764 void webkitEnterFullscreen() native;
3765 3765
3766 void webkitExitFullScreen() native; 3766 void webkitExitFullScreen() native;
3767 3767
3768 void webkitExitFullscreen() native; 3768 void webkitExitFullscreen() native;
3769 } 3769 }
3770 3770
3771 class HashChangeEvent extends Event native "HashChangeEvent" { 3771 class HashChangeEvent extends Event native "*HashChangeEvent" {
3772 3772
3773 String newURL; 3773 String newURL;
3774 3774
3775 String oldURL; 3775 String oldURL;
3776 3776
3777 void initHashChangeEvent(String type, bool canBubble, bool cancelable, String oldURL, String newURL) native; 3777 void initHashChangeEvent(String type, bool canBubble, bool cancelable, String oldURL, String newURL) native;
3778 } 3778 }
3779 3779
3780 class History native "History" { 3780 class History native "*History" {
3781 3781
3782 int length; 3782 int length;
3783 3783
3784 void back() native; 3784 void back() native;
3785 3785
3786 void forward() native; 3786 void forward() native;
3787 3787
3788 void go(int distance) native; 3788 void go(int distance) native;
3789 3789
3790 void pushState(Object data, String title, [String url = null]) native; 3790 void pushState(Object data, String title, [String url = null]) native;
3791 3791
3792 void replaceState(Object data, String title, [String url = null]) native; 3792 void replaceState(Object data, String title, [String url = null]) native;
3793 3793
3794 var dartObjectLocalStorage; 3794 var dartObjectLocalStorage;
3795 3795
3796 String get typeName() native; 3796 String get typeName() native;
3797 } 3797 }
3798 3798
3799 class IDBAny native "IDBAny" { 3799 class IDBAny native "*IDBAny" {
3800 3800
3801 var dartObjectLocalStorage; 3801 var dartObjectLocalStorage;
3802 3802
3803 String get typeName() native; 3803 String get typeName() native;
3804 } 3804 }
3805 3805
3806 class IDBCursor native "IDBCursor" { 3806 class IDBCursor native "*IDBCursor" {
3807 3807
3808 int direction; 3808 int direction;
3809 3809
3810 IDBKey key; 3810 IDBKey key;
3811 3811
3812 IDBKey primaryKey; 3812 IDBKey primaryKey;
3813 3813
3814 IDBAny source; 3814 IDBAny source;
3815 3815
3816 void continueFunction([IDBKey key = null]) native; 3816 void continueFunction([IDBKey key = null]) native;
3817 3817
3818 IDBRequest delete() native; 3818 IDBRequest delete() native;
3819 3819
3820 IDBRequest update(String value) native; 3820 IDBRequest update(String value) native;
3821 3821
3822 var dartObjectLocalStorage; 3822 var dartObjectLocalStorage;
3823 3823
3824 String get typeName() native; 3824 String get typeName() native;
3825 } 3825 }
3826 3826
3827 class IDBCursorWithValue extends IDBCursor native "IDBCursorWithValue" { 3827 class IDBCursorWithValue extends IDBCursor native "*IDBCursorWithValue" {
3828 3828
3829 IDBAny value; 3829 IDBAny value;
3830 } 3830 }
3831 3831
3832 class IDBDatabase native "IDBDatabase" { 3832 class IDBDatabase native "*IDBDatabase" {
3833 3833
3834 String name; 3834 String name;
3835 3835
3836 EventListener onabort; 3836 EventListener onabort;
3837 3837
3838 EventListener onerror; 3838 EventListener onerror;
3839 3839
3840 EventListener onversionchange; 3840 EventListener onversionchange;
3841 3841
3842 String version; 3842 String version;
(...skipping 12 matching lines...) Expand all
3855 3855
3856 IDBVersionChangeRequest setVersion(String version) native; 3856 IDBVersionChangeRequest setVersion(String version) native;
3857 3857
3858 IDBTransaction transaction(String storeName, int mode) native; 3858 IDBTransaction transaction(String storeName, int mode) native;
3859 3859
3860 var dartObjectLocalStorage; 3860 var dartObjectLocalStorage;
3861 3861
3862 String get typeName() native; 3862 String get typeName() native;
3863 } 3863 }
3864 3864
3865 class IDBDatabaseError native "IDBDatabaseError" { 3865 class IDBDatabaseError native "*IDBDatabaseError" {
3866 3866
3867 int code; 3867 int code;
3868 3868
3869 String message; 3869 String message;
3870 3870
3871 var dartObjectLocalStorage; 3871 var dartObjectLocalStorage;
3872 3872
3873 String get typeName() native; 3873 String get typeName() native;
3874 } 3874 }
3875 3875
3876 class IDBDatabaseException native "IDBDatabaseException" { 3876 class IDBDatabaseException native "*IDBDatabaseException" {
3877 3877
3878 int code; 3878 int code;
3879 3879
3880 String message; 3880 String message;
3881 3881
3882 String name; 3882 String name;
3883 3883
3884 String toString() native; 3884 String toString() native;
3885 3885
3886 var dartObjectLocalStorage; 3886 var dartObjectLocalStorage;
3887 3887
3888 String get typeName() native; 3888 String get typeName() native;
3889 } 3889 }
3890 3890
3891 class IDBFactory native "IDBFactory" { 3891 class IDBFactory native "*IDBFactory" {
3892 3892
3893 int cmp(IDBKey first, IDBKey second) native; 3893 int cmp(IDBKey first, IDBKey second) native;
3894 3894
3895 IDBVersionChangeRequest deleteDatabase(String name) native; 3895 IDBVersionChangeRequest deleteDatabase(String name) native;
3896 3896
3897 IDBRequest getDatabaseNames() native; 3897 IDBRequest getDatabaseNames() native;
3898 3898
3899 IDBRequest open(String name) native; 3899 IDBRequest open(String name) native;
3900 3900
3901 var dartObjectLocalStorage; 3901 var dartObjectLocalStorage;
3902 3902
3903 String get typeName() native; 3903 String get typeName() native;
3904 } 3904 }
3905 3905
3906 class IDBIndex native "IDBIndex" { 3906 class IDBIndex native "*IDBIndex" {
3907 3907
3908 String keyPath; 3908 String keyPath;
3909 3909
3910 String name; 3910 String name;
3911 3911
3912 IDBObjectStore objectStore; 3912 IDBObjectStore objectStore;
3913 3913
3914 bool unique; 3914 bool unique;
3915 3915
3916 IDBRequest getObject(IDBKey key) native; 3916 IDBRequest getObject(IDBKey key) native;
3917 3917
3918 IDBRequest getKey(IDBKey key) native; 3918 IDBRequest getKey(IDBKey key) native;
3919 3919
3920 IDBRequest openCursor([IDBKeyRange range = null, int direction = null]) native ; 3920 IDBRequest openCursor([IDBKeyRange range = null, int direction = null]) native ;
3921 3921
3922 IDBRequest openKeyCursor([IDBKeyRange range = null, int direction = null]) nat ive; 3922 IDBRequest openKeyCursor([IDBKeyRange range = null, int direction = null]) nat ive;
3923 3923
3924 var dartObjectLocalStorage; 3924 var dartObjectLocalStorage;
3925 3925
3926 String get typeName() native; 3926 String get typeName() native;
3927 } 3927 }
3928 3928
3929 class IDBKey native "IDBKey" { 3929 class IDBKey native "*IDBKey" {
3930 3930
3931 var dartObjectLocalStorage; 3931 var dartObjectLocalStorage;
3932 3932
3933 String get typeName() native; 3933 String get typeName() native;
3934 } 3934 }
3935 3935
3936 class IDBKeyRange native "IDBKeyRange" { 3936 class IDBKeyRange native "*IDBKeyRange" {
3937 3937
3938 IDBKey lower; 3938 IDBKey lower;
3939 3939
3940 bool lowerOpen; 3940 bool lowerOpen;
3941 3941
3942 IDBKey upper; 3942 IDBKey upper;
3943 3943
3944 bool upperOpen; 3944 bool upperOpen;
3945 3945
3946 IDBKeyRange bound(IDBKey lower, IDBKey upper, [bool lowerOpen = null, bool upp erOpen = null]) native; 3946 IDBKeyRange bound(IDBKey lower, IDBKey upper, [bool lowerOpen = null, bool upp erOpen = null]) native;
3947 3947
3948 IDBKeyRange lowerBound(IDBKey bound, [bool open = null]) native; 3948 IDBKeyRange lowerBound(IDBKey bound, [bool open = null]) native;
3949 3949
3950 IDBKeyRange only(IDBKey value) native; 3950 IDBKeyRange only(IDBKey value) native;
3951 3951
3952 IDBKeyRange upperBound(IDBKey bound, [bool open = null]) native; 3952 IDBKeyRange upperBound(IDBKey bound, [bool open = null]) native;
3953 3953
3954 var dartObjectLocalStorage; 3954 var dartObjectLocalStorage;
3955 3955
3956 String get typeName() native; 3956 String get typeName() native;
3957 } 3957 }
3958 3958
3959 class IDBObjectStore native "IDBObjectStore" { 3959 class IDBObjectStore native "*IDBObjectStore" {
3960 3960
3961 String keyPath; 3961 String keyPath;
3962 3962
3963 String name; 3963 String name;
3964 3964
3965 IDBTransaction transaction; 3965 IDBTransaction transaction;
3966 3966
3967 IDBRequest add(String value, [IDBKey key = null]) native; 3967 IDBRequest add(String value, [IDBKey key = null]) native;
3968 3968
3969 IDBRequest clear() native; 3969 IDBRequest clear() native;
(...skipping 10 matching lines...) Expand all
3980 3980
3981 IDBRequest openCursor([IDBKeyRange range = null, int direction = null]) native ; 3981 IDBRequest openCursor([IDBKeyRange range = null, int direction = null]) native ;
3982 3982
3983 IDBRequest put(String value, [IDBKey key = null]) native; 3983 IDBRequest put(String value, [IDBKey key = null]) native;
3984 3984
3985 var dartObjectLocalStorage; 3985 var dartObjectLocalStorage;
3986 3986
3987 String get typeName() native; 3987 String get typeName() native;
3988 } 3988 }
3989 3989
3990 class IDBRequest native "IDBRequest" { 3990 class IDBRequest native "*IDBRequest" {
3991 3991
3992 int errorCode; 3992 int errorCode;
3993 3993
3994 EventListener onerror; 3994 EventListener onerror;
3995 3995
3996 EventListener onsuccess; 3996 EventListener onsuccess;
3997 3997
3998 int readyState; 3998 int readyState;
3999 3999
4000 IDBAny result; 4000 IDBAny result;
4001 4001
4002 IDBAny source; 4002 IDBAny source;
4003 4003
4004 IDBTransaction transaction; 4004 IDBTransaction transaction;
4005 4005
4006 String webkitErrorMessage; 4006 String webkitErrorMessage;
4007 4007
4008 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native; 4008 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
4009 4009
4010 bool dispatchEvent(Event evt) native; 4010 bool dispatchEvent(Event evt) native;
4011 4011
4012 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native; 4012 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
4013 4013
4014 var dartObjectLocalStorage; 4014 var dartObjectLocalStorage;
4015 4015
4016 String get typeName() native; 4016 String get typeName() native;
4017 } 4017 }
4018 4018
4019 class IDBTransaction native "IDBTransaction" { 4019 class IDBTransaction native "*IDBTransaction" {
4020 4020
4021 IDBDatabase db; 4021 IDBDatabase db;
4022 4022
4023 int mode; 4023 int mode;
4024 4024
4025 EventListener onabort; 4025 EventListener onabort;
4026 4026
4027 EventListener oncomplete; 4027 EventListener oncomplete;
4028 4028
4029 EventListener onerror; 4029 EventListener onerror;
4030 4030
4031 void abort() native; 4031 void abort() native;
4032 4032
4033 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native; 4033 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
4034 4034
4035 bool dispatchEvent(Event evt) native; 4035 bool dispatchEvent(Event evt) native;
4036 4036
4037 IDBObjectStore objectStore(String name) native; 4037 IDBObjectStore objectStore(String name) native;
4038 4038
4039 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native; 4039 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
4040 4040
4041 var dartObjectLocalStorage; 4041 var dartObjectLocalStorage;
4042 4042
4043 String get typeName() native; 4043 String get typeName() native;
4044 } 4044 }
4045 4045
4046 class IDBVersionChangeEvent extends Event native "IDBVersionChangeEvent" { 4046 class IDBVersionChangeEvent extends Event native "*IDBVersionChangeEvent" {
4047 4047
4048 String version; 4048 String version;
4049 } 4049 }
4050 4050
4051 class IDBVersionChangeRequest extends IDBRequest native "IDBVersionChangeRequest " { 4051 class IDBVersionChangeRequest extends IDBRequest native "*IDBVersionChangeReques t" {
4052 4052
4053 EventListener onblocked; 4053 EventListener onblocked;
4054 } 4054 }
4055 4055
4056 class ImageData native "ImageData" { 4056 class ImageData native "*ImageData" {
4057 4057
4058 CanvasPixelArray data; 4058 CanvasPixelArray data;
4059 4059
4060 int height; 4060 int height;
4061 4061
4062 int width; 4062 int width;
4063 4063
4064 var dartObjectLocalStorage; 4064 var dartObjectLocalStorage;
4065 4065
4066 String get typeName() native; 4066 String get typeName() native;
4067 } 4067 }
4068 4068
4069 class InjectedScriptHost native "InjectedScriptHost" { 4069 class InjectedScriptHost native "*InjectedScriptHost" {
4070 4070
4071 void clearConsoleMessages() native; 4071 void clearConsoleMessages() native;
4072 4072
4073 void copyText(String text) native; 4073 void copyText(String text) native;
4074 4074
4075 int databaseId(Object database) native; 4075 int databaseId(Object database) native;
4076 4076
4077 Object evaluate(String text) native; 4077 Object evaluate(String text) native;
4078 4078
4079 void inspect(Object objectId, Object hints) native; 4079 void inspect(Object objectId, Object hints) native;
4080 4080
4081 Object inspectedNode(int num) native; 4081 Object inspectedNode(int num) native;
4082 4082
4083 Object internalConstructorName(Object object) native; 4083 Object internalConstructorName(Object object) native;
4084 4084
4085 bool isHTMLAllCollection(Object object) native; 4085 bool isHTMLAllCollection(Object object) native;
4086 4086
4087 int storageId(Object storage) native; 4087 int storageId(Object storage) native;
4088 4088
4089 String type(Object object) native; 4089 String type(Object object) native;
4090 4090
4091 var dartObjectLocalStorage; 4091 var dartObjectLocalStorage;
4092 4092
4093 String get typeName() native; 4093 String get typeName() native;
4094 } 4094 }
4095 4095
4096 class InspectorFrontendHost native "InspectorFrontendHost" { 4096 class InspectorFrontendHost native "*InspectorFrontendHost" {
4097 4097
4098 void bringToFront() native; 4098 void bringToFront() native;
4099 4099
4100 void closeWindow() native; 4100 void closeWindow() native;
4101 4101
4102 void copyText(String text) native; 4102 void copyText(String text) native;
4103 4103
4104 void disconnectFromBackend() native; 4104 void disconnectFromBackend() native;
4105 4105
4106 String hiddenPanels() native; 4106 String hiddenPanels() native;
(...skipping 28 matching lines...) Expand all
4135 4135
4136 void setExtensionAPI(String script) native; 4136 void setExtensionAPI(String script) native;
4137 4137
4138 void showContextMenu(MouseEvent event, Object items) native; 4138 void showContextMenu(MouseEvent event, Object items) native;
4139 4139
4140 var dartObjectLocalStorage; 4140 var dartObjectLocalStorage;
4141 4141
4142 String get typeName() native; 4142 String get typeName() native;
4143 } 4143 }
4144 4144
4145 class Int16Array extends ArrayBufferView native "Int16Array" { 4145 class Int16Array extends ArrayBufferView native "*Int16Array" {
4146 4146
4147 int length; 4147 int length;
4148 4148
4149 Int16Array subarray(int start, [int end = null]) native; 4149 Int16Array subarray(int start, [int end = null]) native;
4150 } 4150 }
4151 4151
4152 class Int32Array extends ArrayBufferView native "Int32Array" { 4152 class Int32Array extends ArrayBufferView native "*Int32Array" {
4153 4153
4154 int length; 4154 int length;
4155 4155
4156 Int32Array subarray(int start, [int end = null]) native; 4156 Int32Array subarray(int start, [int end = null]) native;
4157 } 4157 }
4158 4158
4159 class Int8Array extends ArrayBufferView native "Int8Array" { 4159 class Int8Array extends ArrayBufferView native "*Int8Array" {
4160 4160
4161 int length; 4161 int length;
4162 4162
4163 Int8Array subarray(int start, [int end = null]) native; 4163 Int8Array subarray(int start, [int end = null]) native;
4164 } 4164 }
4165 4165
4166 class JavaScriptCallFrame native "JavaScriptCallFrame" { 4166 class JavaScriptCallFrame native "*JavaScriptCallFrame" {
4167 4167
4168 JavaScriptCallFrame caller; 4168 JavaScriptCallFrame caller;
4169 4169
4170 int column; 4170 int column;
4171 4171
4172 String functionName; 4172 String functionName;
4173 4173
4174 int line; 4174 int line;
4175 4175
4176 List scopeChain; 4176 List scopeChain;
4177 4177
4178 int sourceID; 4178 int sourceID;
4179 4179
4180 String type; 4180 String type;
4181 4181
4182 void evaluate(String script) native; 4182 void evaluate(String script) native;
4183 4183
4184 int scopeType(int scopeIndex) native; 4184 int scopeType(int scopeIndex) native;
4185 4185
4186 var dartObjectLocalStorage; 4186 var dartObjectLocalStorage;
4187 4187
4188 String get typeName() native; 4188 String get typeName() native;
4189 } 4189 }
4190 4190
4191 class KeyboardEvent extends UIEvent native "KeyboardEvent" { 4191 class KeyboardEvent extends UIEvent native "*KeyboardEvent" {
4192 4192
4193 bool altGraphKey; 4193 bool altGraphKey;
4194 4194
4195 bool altKey; 4195 bool altKey;
4196 4196
4197 bool ctrlKey; 4197 bool ctrlKey;
4198 4198
4199 String keyIdentifier; 4199 String keyIdentifier;
4200 4200
4201 int keyLocation; 4201 int keyLocation;
4202 4202
4203 bool metaKey; 4203 bool metaKey;
4204 4204
4205 bool shiftKey; 4205 bool shiftKey;
4206 4206
4207 void initKeyboardEvent(String type, bool canBubble, bool cancelable, DOMWindow view, String keyIdentifier, int keyLocation, bool ctrlKey, bool altKey, bool sh iftKey, bool metaKey, bool altGraphKey) native; 4207 void initKeyboardEvent(String type, bool canBubble, bool cancelable, DOMWindow view, String keyIdentifier, int keyLocation, bool ctrlKey, bool altKey, bool sh iftKey, bool metaKey, bool altGraphKey) native;
4208 } 4208 }
4209 4209
4210 class Location native "Location" { 4210 class Location native "*Location" {
4211 4211
4212 String hash; 4212 String hash;
4213 4213
4214 String host; 4214 String host;
4215 4215
4216 String hostname; 4216 String hostname;
4217 4217
4218 String href; 4218 String href;
4219 4219
4220 String origin; 4220 String origin;
(...skipping 14 matching lines...) Expand all
4235 4235
4236 void replace(String url) native; 4236 void replace(String url) native;
4237 4237
4238 String toString() native; 4238 String toString() native;
4239 4239
4240 var dartObjectLocalStorage; 4240 var dartObjectLocalStorage;
4241 4241
4242 String get typeName() native; 4242 String get typeName() native;
4243 } 4243 }
4244 4244
4245 class MediaError native "MediaError" { 4245 class MediaError native "*MediaError" {
4246 4246
4247 int code; 4247 int code;
4248 4248
4249 var dartObjectLocalStorage; 4249 var dartObjectLocalStorage;
4250 4250
4251 String get typeName() native; 4251 String get typeName() native;
4252 } 4252 }
4253 4253
4254 class MediaList native "MediaList" { 4254 class MediaList native "*MediaList" {
4255 4255
4256 int length; 4256 int length;
4257 4257
4258 String mediaText; 4258 String mediaText;
4259 4259
4260 String operator[](int index) native; 4260 String operator[](int index) native;
4261 4261
4262 void appendMedium(String newMedium) native; 4262 void appendMedium(String newMedium) native;
4263 4263
4264 void deleteMedium(String oldMedium) native; 4264 void deleteMedium(String oldMedium) native;
4265 4265
4266 String item(int index) native; 4266 String item(int index) native;
4267 4267
4268 var dartObjectLocalStorage; 4268 var dartObjectLocalStorage;
4269 4269
4270 String get typeName() native; 4270 String get typeName() native;
4271 } 4271 }
4272 4272
4273 class MediaQueryList native "MediaQueryList" { 4273 class MediaQueryList native "*MediaQueryList" {
4274 4274
4275 bool matches; 4275 bool matches;
4276 4276
4277 String media; 4277 String media;
4278 4278
4279 void addListener(MediaQueryListListener listener) native; 4279 void addListener(MediaQueryListListener listener) native;
4280 4280
4281 void removeListener(MediaQueryListListener listener) native; 4281 void removeListener(MediaQueryListListener listener) native;
4282 4282
4283 var dartObjectLocalStorage; 4283 var dartObjectLocalStorage;
4284 4284
4285 String get typeName() native; 4285 String get typeName() native;
4286 } 4286 }
4287 4287
4288 class MediaQueryListListener native "MediaQueryListListener" { 4288 class MediaQueryListListener native "*MediaQueryListListener" {
4289 4289
4290 void queryChanged(MediaQueryList list) native; 4290 void queryChanged(MediaQueryList list) native;
4291 4291
4292 var dartObjectLocalStorage; 4292 var dartObjectLocalStorage;
4293 4293
4294 String get typeName() native; 4294 String get typeName() native;
4295 } 4295 }
4296 4296
4297 class MemoryInfo native "MemoryInfo" { 4297 class MemoryInfo native "*MemoryInfo" {
4298 4298
4299 int jsHeapSizeLimit; 4299 int jsHeapSizeLimit;
4300 4300
4301 int totalJSHeapSize; 4301 int totalJSHeapSize;
4302 4302
4303 int usedJSHeapSize; 4303 int usedJSHeapSize;
4304 4304
4305 var dartObjectLocalStorage; 4305 var dartObjectLocalStorage;
4306 4306
4307 String get typeName() native; 4307 String get typeName() native;
4308 } 4308 }
4309 4309
4310 class MessageChannel native "MessageChannel" { 4310 class MessageChannel native "*MessageChannel" {
4311 4311
4312 MessagePort port1; 4312 MessagePort port1;
4313 4313
4314 MessagePort port2; 4314 MessagePort port2;
4315 4315
4316 var dartObjectLocalStorage; 4316 var dartObjectLocalStorage;
4317 4317
4318 String get typeName() native; 4318 String get typeName() native;
4319 } 4319 }
4320 4320
4321 class MessageEvent extends Event native "MessageEvent" { 4321 class MessageEvent extends Event native "*MessageEvent" {
4322 4322
4323 Object data; 4323 Object data;
4324 4324
4325 String lastEventId; 4325 String lastEventId;
4326 4326
4327 String origin; 4327 String origin;
4328 4328
4329 List ports; 4329 List ports;
4330 4330
4331 DOMWindow source; 4331 DOMWindow source;
4332 4332
4333 void initMessageEvent(String typeArg, bool canBubbleArg, bool cancelableArg, O bject dataArg, String originArg, String lastEventIdArg, DOMWindow sourceArg, Lis t messagePorts) native; 4333 void initMessageEvent(String typeArg, bool canBubbleArg, bool cancelableArg, O bject dataArg, String originArg, String lastEventIdArg, DOMWindow sourceArg, Lis t messagePorts) native;
4334 4334
4335 void webkitInitMessageEvent(String typeArg, bool canBubbleArg, bool cancelable Arg, Object dataArg, String originArg, String lastEventIdArg, DOMWindow sourceAr g, List transferables) native; 4335 void webkitInitMessageEvent(String typeArg, bool canBubbleArg, bool cancelable Arg, Object dataArg, String originArg, String lastEventIdArg, DOMWindow sourceAr g, List transferables) native;
4336 } 4336 }
4337 4337
4338 class MessagePort native "MessagePort" { 4338 class MessagePort native "*MessagePort" {
4339 4339
4340 EventListener onmessage; 4340 EventListener onmessage;
4341 4341
4342 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native; 4342 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
4343 4343
4344 void close() native; 4344 void close() native;
4345 4345
4346 bool dispatchEvent(Event evt) native; 4346 bool dispatchEvent(Event evt) native;
4347 4347
4348 void postMessage(String message, [List messagePorts = null]) native; 4348 void postMessage(String message, [List messagePorts = null]) native;
4349 4349
4350 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native; 4350 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
4351 4351
4352 void start() native; 4352 void start() native;
4353 4353
4354 void webkitPostMessage(String message, [List transfer = null]) native; 4354 void webkitPostMessage(String message, [List transfer = null]) native;
4355 4355
4356 var dartObjectLocalStorage; 4356 var dartObjectLocalStorage;
4357 4357
4358 String get typeName() native; 4358 String get typeName() native;
4359 } 4359 }
4360 4360
4361 class Metadata native "Metadata" { 4361 class Metadata native "*Metadata" {
4362 4362
4363 Date modificationTime; 4363 Date modificationTime;
4364 4364
4365 var dartObjectLocalStorage; 4365 var dartObjectLocalStorage;
4366 4366
4367 String get typeName() native; 4367 String get typeName() native;
4368 } 4368 }
4369 4369
4370 class MetadataCallback native "MetadataCallback" { 4370 class MetadataCallback native "*MetadataCallback" {
4371 4371
4372 bool handleEvent(Metadata metadata) native; 4372 bool handleEvent(Metadata metadata) native;
4373 4373
4374 var dartObjectLocalStorage; 4374 var dartObjectLocalStorage;
4375 4375
4376 String get typeName() native; 4376 String get typeName() native;
4377 } 4377 }
4378 4378
4379 class MouseEvent extends UIEvent native "MouseEvent" { 4379 class MouseEvent extends UIEvent native "*MouseEvent" {
4380 4380
4381 bool altKey; 4381 bool altKey;
4382 4382
4383 int button; 4383 int button;
4384 4384
4385 int clientX; 4385 int clientX;
4386 4386
4387 int clientY; 4387 int clientY;
4388 4388
4389 bool ctrlKey; 4389 bool ctrlKey;
(...skipping 18 matching lines...) Expand all
4408 4408
4409 Node toElement; 4409 Node toElement;
4410 4410
4411 int x; 4411 int x;
4412 4412
4413 int y; 4413 int y;
4414 4414
4415 void initMouseEvent(String type, bool canBubble, bool cancelable, DOMWindow vi ew, int detail, int screenX, int screenY, int clientX, int clientY, bool ctrlKey , bool altKey, bool shiftKey, bool metaKey, int button, EventTarget relatedTarge t) native; 4415 void initMouseEvent(String type, bool canBubble, bool cancelable, DOMWindow vi ew, int detail, int screenX, int screenY, int clientX, int clientY, bool ctrlKey , bool altKey, bool shiftKey, bool metaKey, int button, EventTarget relatedTarge t) native;
4416 } 4416 }
4417 4417
4418 class MutationCallback native "MutationCallback" { 4418 class MutationCallback native "*MutationCallback" {
4419 4419
4420 var dartObjectLocalStorage; 4420 var dartObjectLocalStorage;
4421 4421
4422 String get typeName() native; 4422 String get typeName() native;
4423 } 4423 }
4424 4424
4425 class MutationEvent extends Event native "MutationEvent" { 4425 class MutationEvent extends Event native "*MutationEvent" {
4426 4426
4427 int attrChange; 4427 int attrChange;
4428 4428
4429 String attrName; 4429 String attrName;
4430 4430
4431 String newValue; 4431 String newValue;
4432 4432
4433 String prevValue; 4433 String prevValue;
4434 4434
4435 Node relatedNode; 4435 Node relatedNode;
4436 4436
4437 void initMutationEvent(String type, bool canBubble, bool cancelable, Node rela tedNode, String prevValue, String newValue, String attrName, int attrChange) nat ive; 4437 void initMutationEvent(String type, bool canBubble, bool cancelable, Node rela tedNode, String prevValue, String newValue, String attrName, int attrChange) nat ive;
4438 } 4438 }
4439 4439
4440 class MutationRecord native "MutationRecord" { 4440 class MutationRecord native "*MutationRecord" {
4441 4441
4442 NodeList addedNodes; 4442 NodeList addedNodes;
4443 4443
4444 String attributeName; 4444 String attributeName;
4445 4445
4446 String attributeNamespace; 4446 String attributeNamespace;
4447 4447
4448 Node nextSibling; 4448 Node nextSibling;
4449 4449
4450 String oldValue; 4450 String oldValue;
4451 4451
4452 Node previousSibling; 4452 Node previousSibling;
4453 4453
4454 NodeList removedNodes; 4454 NodeList removedNodes;
4455 4455
4456 Node target; 4456 Node target;
4457 4457
4458 String type; 4458 String type;
4459 4459
4460 var dartObjectLocalStorage; 4460 var dartObjectLocalStorage;
4461 4461
4462 String get typeName() native; 4462 String get typeName() native;
4463 } 4463 }
4464 4464
4465 class NamedNodeMap native "NamedNodeMap" { 4465 class NamedNodeMap native "*NamedNodeMap" {
4466 4466
4467 int length; 4467 int length;
4468 4468
4469 Node operator[](int index) native; 4469 Node operator[](int index) native;
4470 4470
4471 Node getNamedItem(String name) native; 4471 Node getNamedItem(String name) native;
4472 4472
4473 Node getNamedItemNS(String namespaceURI, String localName) native; 4473 Node getNamedItemNS(String namespaceURI, String localName) native;
4474 4474
4475 Node item(int index) native; 4475 Node item(int index) native;
4476 4476
4477 Node removeNamedItem(String name) native; 4477 Node removeNamedItem(String name) native;
4478 4478
4479 Node removeNamedItemNS(String namespaceURI, String localName) native; 4479 Node removeNamedItemNS(String namespaceURI, String localName) native;
4480 4480
4481 Node setNamedItem(Node node) native; 4481 Node setNamedItem(Node node) native;
4482 4482
4483 Node setNamedItemNS(Node node) native; 4483 Node setNamedItemNS(Node node) native;
4484 4484
4485 var dartObjectLocalStorage; 4485 var dartObjectLocalStorage;
4486 4486
4487 String get typeName() native; 4487 String get typeName() native;
4488 } 4488 }
4489 4489
4490 class Navigator native "Navigator" { 4490 class Navigator native "*Navigator" {
4491 4491
4492 String appCodeName; 4492 String appCodeName;
4493 4493
4494 String appName; 4494 String appName;
4495 4495
4496 String appVersion; 4496 String appVersion;
4497 4497
4498 bool cookieEnabled; 4498 bool cookieEnabled;
4499 4499
4500 String language; 4500 String language;
(...skipping 18 matching lines...) Expand all
4519 4519
4520 void getStorageUpdates() native; 4520 void getStorageUpdates() native;
4521 4521
4522 bool javaEnabled() native; 4522 bool javaEnabled() native;
4523 4523
4524 var dartObjectLocalStorage; 4524 var dartObjectLocalStorage;
4525 4525
4526 String get typeName() native; 4526 String get typeName() native;
4527 } 4527 }
4528 4528
4529 class NavigatorUserMediaError native "NavigatorUserMediaError" { 4529 class NavigatorUserMediaError native "*NavigatorUserMediaError" {
4530 4530
4531 int code; 4531 int code;
4532 4532
4533 var dartObjectLocalStorage; 4533 var dartObjectLocalStorage;
4534 4534
4535 String get typeName() native; 4535 String get typeName() native;
4536 } 4536 }
4537 4537
4538 class NavigatorUserMediaErrorCallback native "NavigatorUserMediaErrorCallback" { 4538 class NavigatorUserMediaErrorCallback native "*NavigatorUserMediaErrorCallback" {
4539 4539
4540 bool handleEvent(NavigatorUserMediaError error) native; 4540 bool handleEvent(NavigatorUserMediaError error) native;
4541 4541
4542 var dartObjectLocalStorage; 4542 var dartObjectLocalStorage;
4543 4543
4544 String get typeName() native; 4544 String get typeName() native;
4545 } 4545 }
4546 4546
4547 class NavigatorUserMediaSuccessCallback native "NavigatorUserMediaSuccessCallbac k" { 4547 class NavigatorUserMediaSuccessCallback native "*NavigatorUserMediaSuccessCallba ck" {
4548 4548
4549 var dartObjectLocalStorage; 4549 var dartObjectLocalStorage;
4550 4550
4551 String get typeName() native; 4551 String get typeName() native;
4552 } 4552 }
4553 4553
4554 class Node native "Node" { 4554 class Node native "*Node" {
4555 4555
4556 NamedNodeMap attributes; 4556 NamedNodeMap attributes;
4557 4557
4558 String baseURI; 4558 String baseURI;
4559 4559
4560 NodeList childNodes; 4560 NodeList childNodes;
4561 4561
4562 Node firstChild; 4562 Node firstChild;
4563 4563
4564 Node lastChild; 4564 Node lastChild;
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
4623 4623
4624 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native; 4624 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
4625 4625
4626 Node replaceChild(Node newChild, Node oldChild) native; 4626 Node replaceChild(Node newChild, Node oldChild) native;
4627 4627
4628 var dartObjectLocalStorage; 4628 var dartObjectLocalStorage;
4629 4629
4630 String get typeName() native; 4630 String get typeName() native;
4631 } 4631 }
4632 4632
4633 class NodeFilter native "NodeFilter" { 4633 class NodeFilter native "*NodeFilter" {
4634 4634
4635 int acceptNode(Node n) native; 4635 int acceptNode(Node n) native;
4636 4636
4637 var dartObjectLocalStorage; 4637 var dartObjectLocalStorage;
4638 4638
4639 String get typeName() native; 4639 String get typeName() native;
4640 } 4640 }
4641 4641
4642 class NodeIterator native "NodeIterator" { 4642 class NodeIterator native "*NodeIterator" {
4643 4643
4644 bool expandEntityReferences; 4644 bool expandEntityReferences;
4645 4645
4646 NodeFilter filter; 4646 NodeFilter filter;
4647 4647
4648 bool pointerBeforeReferenceNode; 4648 bool pointerBeforeReferenceNode;
4649 4649
4650 Node referenceNode; 4650 Node referenceNode;
4651 4651
4652 Node root; 4652 Node root;
4653 4653
4654 int whatToShow; 4654 int whatToShow;
4655 4655
4656 void detach() native; 4656 void detach() native;
4657 4657
4658 Node nextNode() native; 4658 Node nextNode() native;
4659 4659
4660 Node previousNode() native; 4660 Node previousNode() native;
4661 4661
4662 var dartObjectLocalStorage; 4662 var dartObjectLocalStorage;
4663 4663
4664 String get typeName() native; 4664 String get typeName() native;
4665 } 4665 }
4666 4666
4667 class NodeList native "NodeList" { 4667 class NodeList native "*NodeList" {
4668 4668
4669 int length; 4669 int length;
4670 4670
4671 Node operator[](int index) native; 4671 Node operator[](int index) native;
4672 4672
4673 Node item(int index) native; 4673 Node item(int index) native;
4674 4674
4675 var dartObjectLocalStorage; 4675 var dartObjectLocalStorage;
4676 4676
4677 String get typeName() native; 4677 String get typeName() native;
4678 } 4678 }
4679 4679
4680 class NodeSelector native "NodeSelector" { 4680 class NodeSelector native "*NodeSelector" {
4681 4681
4682 Element querySelector(String selectors) native; 4682 Element querySelector(String selectors) native;
4683 4683
4684 NodeList querySelectorAll(String selectors) native; 4684 NodeList querySelectorAll(String selectors) native;
4685 4685
4686 var dartObjectLocalStorage; 4686 var dartObjectLocalStorage;
4687 4687
4688 String get typeName() native; 4688 String get typeName() native;
4689 } 4689 }
4690 4690
4691 class Notation extends Node native "Notation" { 4691 class Notation extends Node native "*Notation" {
4692 4692
4693 String publicId; 4693 String publicId;
4694 4694
4695 String systemId; 4695 String systemId;
4696 } 4696 }
4697 4697
4698 class Notification native "Notification" { 4698 class Notification native "*Notification" {
4699 4699
4700 String dir; 4700 String dir;
4701 4701
4702 EventListener onclick; 4702 EventListener onclick;
4703 4703
4704 EventListener onclose; 4704 EventListener onclose;
4705 4705
4706 EventListener ondisplay; 4706 EventListener ondisplay;
4707 4707
4708 EventListener onerror; 4708 EventListener onerror;
4709 4709
4710 String replaceId; 4710 String replaceId;
4711 4711
4712 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native; 4712 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
4713 4713
4714 void cancel() native; 4714 void cancel() native;
4715 4715
4716 bool dispatchEvent(Event evt) native; 4716 bool dispatchEvent(Event evt) native;
4717 4717
4718 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native; 4718 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
4719 4719
4720 void show() native; 4720 void show() native;
4721 4721
4722 var dartObjectLocalStorage; 4722 var dartObjectLocalStorage;
4723 4723
4724 String get typeName() native; 4724 String get typeName() native;
4725 } 4725 }
4726 4726
4727 class NotificationCenter native "NotificationCenter" { 4727 class NotificationCenter native "*NotificationCenter" {
4728 4728
4729 int checkPermission() native; 4729 int checkPermission() native;
4730 4730
4731 Notification createHTMLNotification(String url) native; 4731 Notification createHTMLNotification(String url) native;
4732 4732
4733 Notification createNotification(String iconUrl, String title, String body) nat ive; 4733 Notification createNotification(String iconUrl, String title, String body) nat ive;
4734 4734
4735 void requestPermission(VoidCallback callback) native; 4735 void requestPermission(VoidCallback callback) native;
4736 4736
4737 var dartObjectLocalStorage; 4737 var dartObjectLocalStorage;
4738 4738
4739 String get typeName() native; 4739 String get typeName() native;
4740 } 4740 }
4741 4741
4742 class OESStandardDerivatives native "OESStandardDerivatives" { 4742 class OESStandardDerivatives native "*OESStandardDerivatives" {
4743 4743
4744 var dartObjectLocalStorage; 4744 var dartObjectLocalStorage;
4745 4745
4746 String get typeName() native; 4746 String get typeName() native;
4747 } 4747 }
4748 4748
4749 class OESTextureFloat native "OESTextureFloat" { 4749 class OESTextureFloat native "*OESTextureFloat" {
4750 4750
4751 var dartObjectLocalStorage; 4751 var dartObjectLocalStorage;
4752 4752
4753 String get typeName() native; 4753 String get typeName() native;
4754 } 4754 }
4755 4755
4756 class OESVertexArrayObject native "OESVertexArrayObject" { 4756 class OESVertexArrayObject native "*OESVertexArrayObject" {
4757 4757
4758 void bindVertexArrayOES(WebGLVertexArrayObjectOES arrayObject) native; 4758 void bindVertexArrayOES(WebGLVertexArrayObjectOES arrayObject) native;
4759 4759
4760 WebGLVertexArrayObjectOES createVertexArrayOES() native; 4760 WebGLVertexArrayObjectOES createVertexArrayOES() native;
4761 4761
4762 void deleteVertexArrayOES(WebGLVertexArrayObjectOES arrayObject) native; 4762 void deleteVertexArrayOES(WebGLVertexArrayObjectOES arrayObject) native;
4763 4763
4764 bool isVertexArrayOES(WebGLVertexArrayObjectOES arrayObject) native; 4764 bool isVertexArrayOES(WebGLVertexArrayObjectOES arrayObject) native;
4765 4765
4766 var dartObjectLocalStorage; 4766 var dartObjectLocalStorage;
4767 4767
4768 String get typeName() native; 4768 String get typeName() native;
4769 } 4769 }
4770 4770
4771 class OperationNotAllowedException native "OperationNotAllowedException" { 4771 class OperationNotAllowedException native "*OperationNotAllowedException" {
4772 4772
4773 int code; 4773 int code;
4774 4774
4775 String message; 4775 String message;
4776 4776
4777 String name; 4777 String name;
4778 4778
4779 String toString() native; 4779 String toString() native;
4780 4780
4781 var dartObjectLocalStorage; 4781 var dartObjectLocalStorage;
4782 4782
4783 String get typeName() native; 4783 String get typeName() native;
4784 } 4784 }
4785 4785
4786 class OverflowEvent extends Event native "OverflowEvent" { 4786 class OverflowEvent extends Event native "*OverflowEvent" {
4787 4787
4788 bool horizontalOverflow; 4788 bool horizontalOverflow;
4789 4789
4790 int orient; 4790 int orient;
4791 4791
4792 bool verticalOverflow; 4792 bool verticalOverflow;
4793 4793
4794 void initOverflowEvent(int orient, bool horizontalOverflow, bool verticalOverf low) native; 4794 void initOverflowEvent(int orient, bool horizontalOverflow, bool verticalOverf low) native;
4795 } 4795 }
4796 4796
4797 class PageTransitionEvent extends Event native "PageTransitionEvent" { 4797 class PageTransitionEvent extends Event native "*PageTransitionEvent" {
4798 4798
4799 bool persisted; 4799 bool persisted;
4800 4800
4801 void initPageTransitionEvent(String typeArg, bool canBubbleArg, bool cancelabl eArg, bool persisted) native; 4801 void initPageTransitionEvent(String typeArg, bool canBubbleArg, bool cancelabl eArg, bool persisted) native;
4802 } 4802 }
4803 4803
4804 class Performance native "Performance" { 4804 class Performance native "*Performance" {
4805 4805
4806 MemoryInfo memory; 4806 MemoryInfo memory;
4807 4807
4808 PerformanceNavigation navigation; 4808 PerformanceNavigation navigation;
4809 4809
4810 PerformanceTiming timing; 4810 PerformanceTiming timing;
4811 4811
4812 var dartObjectLocalStorage; 4812 var dartObjectLocalStorage;
4813 4813
4814 String get typeName() native; 4814 String get typeName() native;
4815 } 4815 }
4816 4816
4817 class PerformanceNavigation native "PerformanceNavigation" { 4817 class PerformanceNavigation native "*PerformanceNavigation" {
4818 4818
4819 int redirectCount; 4819 int redirectCount;
4820 4820
4821 int type; 4821 int type;
4822 4822
4823 var dartObjectLocalStorage; 4823 var dartObjectLocalStorage;
4824 4824
4825 String get typeName() native; 4825 String get typeName() native;
4826 } 4826 }
4827 4827
4828 class PerformanceTiming native "PerformanceTiming" { 4828 class PerformanceTiming native "*PerformanceTiming" {
4829 4829
4830 int connectEnd; 4830 int connectEnd;
4831 4831
4832 int connectStart; 4832 int connectStart;
4833 4833
4834 int domComplete; 4834 int domComplete;
4835 4835
4836 int domContentLoadedEventEnd; 4836 int domContentLoadedEventEnd;
4837 4837
4838 int domContentLoadedEventStart; 4838 int domContentLoadedEventStart;
(...skipping 28 matching lines...) Expand all
4867 4867
4868 int unloadEventEnd; 4868 int unloadEventEnd;
4869 4869
4870 int unloadEventStart; 4870 int unloadEventStart;
4871 4871
4872 var dartObjectLocalStorage; 4872 var dartObjectLocalStorage;
4873 4873
4874 String get typeName() native; 4874 String get typeName() native;
4875 } 4875 }
4876 4876
4877 class PopStateEvent extends Event native "PopStateEvent" { 4877 class PopStateEvent extends Event native "*PopStateEvent" {
4878 4878
4879 Object state; 4879 Object state;
4880 4880
4881 void initPopStateEvent(String typeArg, bool canBubbleArg, bool cancelableArg, Object stateArg) native; 4881 void initPopStateEvent(String typeArg, bool canBubbleArg, bool cancelableArg, Object stateArg) native;
4882 } 4882 }
4883 4883
4884 class PositionCallback native "PositionCallback" { 4884 class PositionCallback native "*PositionCallback" {
4885 4885
4886 bool handleEvent(Geoposition position) native; 4886 bool handleEvent(Geoposition position) native;
4887 4887
4888 var dartObjectLocalStorage; 4888 var dartObjectLocalStorage;
4889 4889
4890 String get typeName() native; 4890 String get typeName() native;
4891 } 4891 }
4892 4892
4893 class PositionError native "PositionError" { 4893 class PositionError native "*PositionError" {
4894 4894
4895 int code; 4895 int code;
4896 4896
4897 String message; 4897 String message;
4898 4898
4899 var dartObjectLocalStorage; 4899 var dartObjectLocalStorage;
4900 4900
4901 String get typeName() native; 4901 String get typeName() native;
4902 } 4902 }
4903 4903
4904 class PositionErrorCallback native "PositionErrorCallback" { 4904 class PositionErrorCallback native "*PositionErrorCallback" {
4905 4905
4906 bool handleEvent(PositionError error) native; 4906 bool handleEvent(PositionError error) native;
4907 4907
4908 var dartObjectLocalStorage; 4908 var dartObjectLocalStorage;
4909 4909
4910 String get typeName() native; 4910 String get typeName() native;
4911 } 4911 }
4912 4912
4913 class ProcessingInstruction extends Node native "ProcessingInstruction" { 4913 class ProcessingInstruction extends Node native "*ProcessingInstruction" {
4914 4914
4915 String data; 4915 String data;
4916 4916
4917 StyleSheet sheet; 4917 StyleSheet sheet;
4918 4918
4919 String target; 4919 String target;
4920 } 4920 }
4921 4921
4922 class ProgressEvent extends Event native "ProgressEvent" { 4922 class ProgressEvent extends Event native "*ProgressEvent" {
4923 4923
4924 bool lengthComputable; 4924 bool lengthComputable;
4925 4925
4926 int loaded; 4926 int loaded;
4927 4927
4928 int total; 4928 int total;
4929 4929
4930 void initProgressEvent(String typeArg, bool canBubbleArg, bool cancelableArg, bool lengthComputableArg, int loadedArg, int totalArg) native; 4930 void initProgressEvent(String typeArg, bool canBubbleArg, bool cancelableArg, bool lengthComputableArg, int loadedArg, int totalArg) native;
4931 } 4931 }
4932 4932
4933 class RGBColor native "RGBColor" { 4933 class RGBColor native "*RGBColor" {
4934 4934
4935 CSSPrimitiveValue blue; 4935 CSSPrimitiveValue blue;
4936 4936
4937 CSSPrimitiveValue green; 4937 CSSPrimitiveValue green;
4938 4938
4939 CSSPrimitiveValue red; 4939 CSSPrimitiveValue red;
4940 4940
4941 var dartObjectLocalStorage; 4941 var dartObjectLocalStorage;
4942 4942
4943 String get typeName() native; 4943 String get typeName() native;
4944 } 4944 }
4945 4945
4946 class Range native "Range" { 4946 class Range native "*Range" {
4947 4947
4948 bool collapsed; 4948 bool collapsed;
4949 4949
4950 Node commonAncestorContainer; 4950 Node commonAncestorContainer;
4951 4951
4952 Node endContainer; 4952 Node endContainer;
4953 4953
4954 int endOffset; 4954 int endOffset;
4955 4955
4956 Node startContainer; 4956 Node startContainer;
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
5005 5005
5006 void surroundContents(Node newParent) native; 5006 void surroundContents(Node newParent) native;
5007 5007
5008 String toString() native; 5008 String toString() native;
5009 5009
5010 var dartObjectLocalStorage; 5010 var dartObjectLocalStorage;
5011 5011
5012 String get typeName() native; 5012 String get typeName() native;
5013 } 5013 }
5014 5014
5015 class RangeException native "RangeException" { 5015 class RangeException native "*RangeException" {
5016 5016
5017 int code; 5017 int code;
5018 5018
5019 String message; 5019 String message;
5020 5020
5021 String name; 5021 String name;
5022 5022
5023 String toString() native; 5023 String toString() native;
5024 5024
5025 var dartObjectLocalStorage; 5025 var dartObjectLocalStorage;
5026 5026
5027 String get typeName() native; 5027 String get typeName() native;
5028 } 5028 }
5029 5029
5030 class Rect native "Rect" { 5030 class Rect native "*Rect" {
5031 5031
5032 CSSPrimitiveValue bottom; 5032 CSSPrimitiveValue bottom;
5033 5033
5034 CSSPrimitiveValue left; 5034 CSSPrimitiveValue left;
5035 5035
5036 CSSPrimitiveValue right; 5036 CSSPrimitiveValue right;
5037 5037
5038 CSSPrimitiveValue top; 5038 CSSPrimitiveValue top;
5039 5039
5040 var dartObjectLocalStorage; 5040 var dartObjectLocalStorage;
5041 5041
5042 String get typeName() native; 5042 String get typeName() native;
5043 } 5043 }
5044 5044
5045 class SQLError native "SQLError" { 5045 class SQLError native "*SQLError" {
5046 5046
5047 int code; 5047 int code;
5048 5048
5049 String message; 5049 String message;
5050 5050
5051 var dartObjectLocalStorage; 5051 var dartObjectLocalStorage;
5052 5052
5053 String get typeName() native; 5053 String get typeName() native;
5054 } 5054 }
5055 5055
5056 class SQLException native "SQLException" { 5056 class SQLException native "*SQLException" {
5057 5057
5058 int code; 5058 int code;
5059 5059
5060 String message; 5060 String message;
5061 5061
5062 var dartObjectLocalStorage; 5062 var dartObjectLocalStorage;
5063 5063
5064 String get typeName() native; 5064 String get typeName() native;
5065 } 5065 }
5066 5066
5067 class SQLResultSet native "SQLResultSet" { 5067 class SQLResultSet native "*SQLResultSet" {
5068 5068
5069 int insertId; 5069 int insertId;
5070 5070
5071 SQLResultSetRowList rows; 5071 SQLResultSetRowList rows;
5072 5072
5073 int rowsAffected; 5073 int rowsAffected;
5074 5074
5075 var dartObjectLocalStorage; 5075 var dartObjectLocalStorage;
5076 5076
5077 String get typeName() native; 5077 String get typeName() native;
5078 } 5078 }
5079 5079
5080 class SQLResultSetRowList native "SQLResultSetRowList" { 5080 class SQLResultSetRowList native "*SQLResultSetRowList" {
5081 5081
5082 int length; 5082 int length;
5083 5083
5084 Object item(int index) native; 5084 Object item(int index) native;
5085 5085
5086 var dartObjectLocalStorage; 5086 var dartObjectLocalStorage;
5087 5087
5088 String get typeName() native; 5088 String get typeName() native;
5089 } 5089 }
5090 5090
5091 class SQLStatementCallback native "SQLStatementCallback" { 5091 class SQLStatementCallback native "*SQLStatementCallback" {
5092 5092
5093 bool handleEvent(SQLTransaction transaction, SQLResultSet resultSet) native; 5093 bool handleEvent(SQLTransaction transaction, SQLResultSet resultSet) native;
5094 5094
5095 var dartObjectLocalStorage; 5095 var dartObjectLocalStorage;
5096 5096
5097 String get typeName() native; 5097 String get typeName() native;
5098 } 5098 }
5099 5099
5100 class SQLStatementErrorCallback native "SQLStatementErrorCallback" { 5100 class SQLStatementErrorCallback native "*SQLStatementErrorCallback" {
5101 5101
5102 bool handleEvent(SQLTransaction transaction, SQLError error) native; 5102 bool handleEvent(SQLTransaction transaction, SQLError error) native;
5103 5103
5104 var dartObjectLocalStorage; 5104 var dartObjectLocalStorage;
5105 5105
5106 String get typeName() native; 5106 String get typeName() native;
5107 } 5107 }
5108 5108
5109 class SQLTransaction native "SQLTransaction" { 5109 class SQLTransaction native "*SQLTransaction" {
5110 5110
5111 var dartObjectLocalStorage; 5111 var dartObjectLocalStorage;
5112 5112
5113 String get typeName() native; 5113 String get typeName() native;
5114 } 5114 }
5115 5115
5116 class SQLTransactionCallback native "SQLTransactionCallback" { 5116 class SQLTransactionCallback native "*SQLTransactionCallback" {
5117 5117
5118 bool handleEvent(SQLTransaction transaction) native; 5118 bool handleEvent(SQLTransaction transaction) native;
5119 5119
5120 var dartObjectLocalStorage; 5120 var dartObjectLocalStorage;
5121 5121
5122 String get typeName() native; 5122 String get typeName() native;
5123 } 5123 }
5124 5124
5125 class SQLTransactionErrorCallback native "SQLTransactionErrorCallback" { 5125 class SQLTransactionErrorCallback native "*SQLTransactionErrorCallback" {
5126 5126
5127 bool handleEvent(SQLError error) native; 5127 bool handleEvent(SQLError error) native;
5128 5128
5129 var dartObjectLocalStorage; 5129 var dartObjectLocalStorage;
5130 5130
5131 String get typeName() native; 5131 String get typeName() native;
5132 } 5132 }
5133 5133
5134 class SQLTransactionSync native "SQLTransactionSync" { 5134 class SQLTransactionSync native "*SQLTransactionSync" {
5135 5135
5136 var dartObjectLocalStorage; 5136 var dartObjectLocalStorage;
5137 5137
5138 String get typeName() native; 5138 String get typeName() native;
5139 } 5139 }
5140 5140
5141 class SQLTransactionSyncCallback native "SQLTransactionSyncCallback" { 5141 class SQLTransactionSyncCallback native "*SQLTransactionSyncCallback" {
5142 5142
5143 bool handleEvent(SQLTransactionSync transaction) native; 5143 bool handleEvent(SQLTransactionSync transaction) native;
5144 5144
5145 var dartObjectLocalStorage; 5145 var dartObjectLocalStorage;
5146 5146
5147 String get typeName() native; 5147 String get typeName() native;
5148 } 5148 }
5149 5149
5150 class SVGAElement extends SVGElement native "SVGAElement" { 5150 class SVGAElement extends SVGElement native "*SVGAElement" {
5151 5151
5152 SVGAnimatedString target; 5152 SVGAnimatedString target;
5153 5153
5154 // From SVGURIReference 5154 // From SVGURIReference
5155 5155
5156 SVGAnimatedString href; 5156 SVGAnimatedString href;
5157 5157
5158 // From SVGTests 5158 // From SVGTests
5159 5159
5160 SVGStringList requiredExtensions; 5160 SVGStringList requiredExtensions;
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
5195 5195
5196 SVGRect getBBox() native; 5196 SVGRect getBBox() native;
5197 5197
5198 SVGMatrix getCTM() native; 5198 SVGMatrix getCTM() native;
5199 5199
5200 SVGMatrix getScreenCTM() native; 5200 SVGMatrix getScreenCTM() native;
5201 5201
5202 SVGMatrix getTransformToElement(SVGElement element) native; 5202 SVGMatrix getTransformToElement(SVGElement element) native;
5203 } 5203 }
5204 5204
5205 class SVGAltGlyphDefElement extends SVGElement native "SVGAltGlyphDefElement" { 5205 class SVGAltGlyphDefElement extends SVGElement native "*SVGAltGlyphDefElement" {
5206 } 5206 }
5207 5207
5208 class SVGAltGlyphElement extends SVGTextPositioningElement native "SVGAltGlyphEl ement" { 5208 class SVGAltGlyphElement extends SVGTextPositioningElement native "*SVGAltGlyphE lement" {
5209 5209
5210 String format; 5210 String format;
5211 5211
5212 String glyphRef; 5212 String glyphRef;
5213 5213
5214 // From SVGURIReference 5214 // From SVGURIReference
5215 5215
5216 SVGAnimatedString href; 5216 SVGAnimatedString href;
5217 } 5217 }
5218 5218
5219 class SVGAltGlyphItemElement extends SVGElement native "SVGAltGlyphItemElement" { 5219 class SVGAltGlyphItemElement extends SVGElement native "*SVGAltGlyphItemElement" {
5220 } 5220 }
5221 5221
5222 class SVGAngle native "SVGAngle" { 5222 class SVGAngle native "*SVGAngle" {
5223 5223
5224 int unitType; 5224 int unitType;
5225 5225
5226 num value; 5226 num value;
5227 5227
5228 String valueAsString; 5228 String valueAsString;
5229 5229
5230 num valueInSpecifiedUnits; 5230 num valueInSpecifiedUnits;
5231 5231
5232 void convertToSpecifiedUnits(int unitType) native; 5232 void convertToSpecifiedUnits(int unitType) native;
5233 5233
5234 void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) native; 5234 void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) native;
5235 5235
5236 var dartObjectLocalStorage; 5236 var dartObjectLocalStorage;
5237 5237
5238 String get typeName() native; 5238 String get typeName() native;
5239 } 5239 }
5240 5240
5241 class SVGAnimateColorElement extends SVGAnimationElement native "SVGAnimateColor Element" { 5241 class SVGAnimateColorElement extends SVGAnimationElement native "*SVGAnimateColo rElement" {
5242 } 5242 }
5243 5243
5244 class SVGAnimateElement extends SVGAnimationElement native "SVGAnimateElement" { 5244 class SVGAnimateElement extends SVGAnimationElement native "*SVGAnimateElement" {
5245 } 5245 }
5246 5246
5247 class SVGAnimateMotionElement extends SVGAnimationElement native "SVGAnimateMoti onElement" { 5247 class SVGAnimateMotionElement extends SVGAnimationElement native "*SVGAnimateMot ionElement" {
5248 } 5248 }
5249 5249
5250 class SVGAnimateTransformElement extends SVGAnimationElement native "SVGAnimateT ransformElement" { 5250 class SVGAnimateTransformElement extends SVGAnimationElement native "*SVGAnimate TransformElement" {
5251 } 5251 }
5252 5252
5253 class SVGAnimatedAngle native "SVGAnimatedAngle" { 5253 class SVGAnimatedAngle native "*SVGAnimatedAngle" {
5254 5254
5255 SVGAngle animVal; 5255 SVGAngle animVal;
5256 5256
5257 SVGAngle baseVal; 5257 SVGAngle baseVal;
5258 5258
5259 var dartObjectLocalStorage; 5259 var dartObjectLocalStorage;
5260 5260
5261 String get typeName() native; 5261 String get typeName() native;
5262 } 5262 }
5263 5263
5264 class SVGAnimatedBoolean native "SVGAnimatedBoolean" { 5264 class SVGAnimatedBoolean native "*SVGAnimatedBoolean" {
5265 5265
5266 bool animVal; 5266 bool animVal;
5267 5267
5268 bool baseVal; 5268 bool baseVal;
5269 5269
5270 var dartObjectLocalStorage; 5270 var dartObjectLocalStorage;
5271 5271
5272 String get typeName() native; 5272 String get typeName() native;
5273 } 5273 }
5274 5274
5275 class SVGAnimatedEnumeration native "SVGAnimatedEnumeration" { 5275 class SVGAnimatedEnumeration native "*SVGAnimatedEnumeration" {
5276 5276
5277 int animVal; 5277 int animVal;
5278 5278
5279 int baseVal; 5279 int baseVal;
5280 5280
5281 var dartObjectLocalStorage; 5281 var dartObjectLocalStorage;
5282 5282
5283 String get typeName() native; 5283 String get typeName() native;
5284 } 5284 }
5285 5285
5286 class SVGAnimatedInteger native "SVGAnimatedInteger" { 5286 class SVGAnimatedInteger native "*SVGAnimatedInteger" {
5287 5287
5288 int animVal; 5288 int animVal;
5289 5289
5290 int baseVal; 5290 int baseVal;
5291 5291
5292 var dartObjectLocalStorage; 5292 var dartObjectLocalStorage;
5293 5293
5294 String get typeName() native; 5294 String get typeName() native;
5295 } 5295 }
5296 5296
5297 class SVGAnimatedLength native "SVGAnimatedLength" { 5297 class SVGAnimatedLength native "*SVGAnimatedLength" {
5298 5298
5299 SVGLength animVal; 5299 SVGLength animVal;
5300 5300
5301 SVGLength baseVal; 5301 SVGLength baseVal;
5302 5302
5303 var dartObjectLocalStorage; 5303 var dartObjectLocalStorage;
5304 5304
5305 String get typeName() native; 5305 String get typeName() native;
5306 } 5306 }
5307 5307
5308 class SVGAnimatedLengthList native "SVGAnimatedLengthList" { 5308 class SVGAnimatedLengthList native "*SVGAnimatedLengthList" {
5309 5309
5310 SVGLengthList animVal; 5310 SVGLengthList animVal;
5311 5311
5312 SVGLengthList baseVal; 5312 SVGLengthList baseVal;
5313 5313
5314 var dartObjectLocalStorage; 5314 var dartObjectLocalStorage;
5315 5315
5316 String get typeName() native; 5316 String get typeName() native;
5317 } 5317 }
5318 5318
5319 class SVGAnimatedNumber native "SVGAnimatedNumber" { 5319 class SVGAnimatedNumber native "*SVGAnimatedNumber" {
5320 5320
5321 num animVal; 5321 num animVal;
5322 5322
5323 num baseVal; 5323 num baseVal;
5324 5324
5325 var dartObjectLocalStorage; 5325 var dartObjectLocalStorage;
5326 5326
5327 String get typeName() native; 5327 String get typeName() native;
5328 } 5328 }
5329 5329
5330 class SVGAnimatedNumberList native "SVGAnimatedNumberList" { 5330 class SVGAnimatedNumberList native "*SVGAnimatedNumberList" {
5331 5331
5332 SVGNumberList animVal; 5332 SVGNumberList animVal;
5333 5333
5334 SVGNumberList baseVal; 5334 SVGNumberList baseVal;
5335 5335
5336 var dartObjectLocalStorage; 5336 var dartObjectLocalStorage;
5337 5337
5338 String get typeName() native; 5338 String get typeName() native;
5339 } 5339 }
5340 5340
5341 class SVGAnimatedPreserveAspectRatio native "SVGAnimatedPreserveAspectRatio" { 5341 class SVGAnimatedPreserveAspectRatio native "*SVGAnimatedPreserveAspectRatio" {
5342 5342
5343 SVGPreserveAspectRatio animVal; 5343 SVGPreserveAspectRatio animVal;
5344 5344
5345 SVGPreserveAspectRatio baseVal; 5345 SVGPreserveAspectRatio baseVal;
5346 5346
5347 var dartObjectLocalStorage; 5347 var dartObjectLocalStorage;
5348 5348
5349 String get typeName() native; 5349 String get typeName() native;
5350 } 5350 }
5351 5351
5352 class SVGAnimatedRect native "SVGAnimatedRect" { 5352 class SVGAnimatedRect native "*SVGAnimatedRect" {
5353 5353
5354 SVGRect animVal; 5354 SVGRect animVal;
5355 5355
5356 SVGRect baseVal; 5356 SVGRect baseVal;
5357 5357
5358 var dartObjectLocalStorage; 5358 var dartObjectLocalStorage;
5359 5359
5360 String get typeName() native; 5360 String get typeName() native;
5361 } 5361 }
5362 5362
5363 class SVGAnimatedString native "SVGAnimatedString" { 5363 class SVGAnimatedString native "*SVGAnimatedString" {
5364 5364
5365 String animVal; 5365 String animVal;
5366 5366
5367 String baseVal; 5367 String baseVal;
5368 5368
5369 var dartObjectLocalStorage; 5369 var dartObjectLocalStorage;
5370 5370
5371 String get typeName() native; 5371 String get typeName() native;
5372 } 5372 }
5373 5373
5374 class SVGAnimatedTransformList native "SVGAnimatedTransformList" { 5374 class SVGAnimatedTransformList native "*SVGAnimatedTransformList" {
5375 5375
5376 SVGTransformList animVal; 5376 SVGTransformList animVal;
5377 5377
5378 SVGTransformList baseVal; 5378 SVGTransformList baseVal;
5379 5379
5380 var dartObjectLocalStorage; 5380 var dartObjectLocalStorage;
5381 5381
5382 String get typeName() native; 5382 String get typeName() native;
5383 } 5383 }
5384 5384
5385 class SVGAnimationElement extends SVGElement native "SVGAnimationElement" { 5385 class SVGAnimationElement extends SVGElement native "*SVGAnimationElement" {
5386 5386
5387 SVGElement targetElement; 5387 SVGElement targetElement;
5388 5388
5389 num getCurrentTime() native; 5389 num getCurrentTime() native;
5390 5390
5391 num getSimpleDuration() native; 5391 num getSimpleDuration() native;
5392 5392
5393 num getStartTime() native; 5393 num getStartTime() native;
5394 5394
5395 // From SVGTests 5395 // From SVGTests
(...skipping 14 matching lines...) Expand all
5410 5410
5411 void beginElement() native; 5411 void beginElement() native;
5412 5412
5413 void beginElementAt(num offset) native; 5413 void beginElementAt(num offset) native;
5414 5414
5415 void endElement() native; 5415 void endElement() native;
5416 5416
5417 void endElementAt(num offset) native; 5417 void endElementAt(num offset) native;
5418 } 5418 }
5419 5419
5420 class SVGCircleElement extends SVGElement native "SVGCircleElement" { 5420 class SVGCircleElement extends SVGElement native "*SVGCircleElement" {
5421 5421
5422 SVGAnimatedLength cx; 5422 SVGAnimatedLength cx;
5423 5423
5424 SVGAnimatedLength cy; 5424 SVGAnimatedLength cy;
5425 5425
5426 SVGAnimatedLength r; 5426 SVGAnimatedLength r;
5427 5427
5428 // From SVGTests 5428 // From SVGTests
5429 5429
5430 SVGStringList requiredExtensions; 5430 SVGStringList requiredExtensions;
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
5465 5465
5466 SVGRect getBBox() native; 5466 SVGRect getBBox() native;
5467 5467
5468 SVGMatrix getCTM() native; 5468 SVGMatrix getCTM() native;
5469 5469
5470 SVGMatrix getScreenCTM() native; 5470 SVGMatrix getScreenCTM() native;
5471 5471
5472 SVGMatrix getTransformToElement(SVGElement element) native; 5472 SVGMatrix getTransformToElement(SVGElement element) native;
5473 } 5473 }
5474 5474
5475 class SVGClipPathElement extends SVGElement native "SVGClipPathElement" { 5475 class SVGClipPathElement extends SVGElement native "*SVGClipPathElement" {
5476 5476
5477 SVGAnimatedEnumeration clipPathUnits; 5477 SVGAnimatedEnumeration clipPathUnits;
5478 5478
5479 // From SVGTests 5479 // From SVGTests
5480 5480
5481 SVGStringList requiredExtensions; 5481 SVGStringList requiredExtensions;
5482 5482
5483 SVGStringList requiredFeatures; 5483 SVGStringList requiredFeatures;
5484 5484
5485 SVGStringList systemLanguage; 5485 SVGStringList systemLanguage;
(...skipping 30 matching lines...) Expand all
5516 5516
5517 SVGRect getBBox() native; 5517 SVGRect getBBox() native;
5518 5518
5519 SVGMatrix getCTM() native; 5519 SVGMatrix getCTM() native;
5520 5520
5521 SVGMatrix getScreenCTM() native; 5521 SVGMatrix getScreenCTM() native;
5522 5522
5523 SVGMatrix getTransformToElement(SVGElement element) native; 5523 SVGMatrix getTransformToElement(SVGElement element) native;
5524 } 5524 }
5525 5525
5526 class SVGColor extends CSSValue native "SVGColor" { 5526 class SVGColor extends CSSValue native "*SVGColor" {
5527 5527
5528 int colorType; 5528 int colorType;
5529 5529
5530 RGBColor rgbColor; 5530 RGBColor rgbColor;
5531 5531
5532 void setColor(int colorType, String rgbColor, String iccColor) native; 5532 void setColor(int colorType, String rgbColor, String iccColor) native;
5533 5533
5534 void setRGBColor(String rgbColor) native; 5534 void setRGBColor(String rgbColor) native;
5535 5535
5536 void setRGBColorICCColor(String rgbColor, String iccColor) native; 5536 void setRGBColorICCColor(String rgbColor, String iccColor) native;
5537 } 5537 }
5538 5538
5539 class SVGComponentTransferFunctionElement extends SVGElement native "SVGComponen tTransferFunctionElement" { 5539 class SVGComponentTransferFunctionElement extends SVGElement native "*SVGCompone ntTransferFunctionElement" {
5540 5540
5541 SVGAnimatedNumber amplitude; 5541 SVGAnimatedNumber amplitude;
5542 5542
5543 SVGAnimatedNumber exponent; 5543 SVGAnimatedNumber exponent;
5544 5544
5545 SVGAnimatedNumber intercept; 5545 SVGAnimatedNumber intercept;
5546 5546
5547 SVGAnimatedNumber offset; 5547 SVGAnimatedNumber offset;
5548 5548
5549 SVGAnimatedNumber slope; 5549 SVGAnimatedNumber slope;
5550 5550
5551 SVGAnimatedNumberList tableValues; 5551 SVGAnimatedNumberList tableValues;
5552 5552
5553 SVGAnimatedEnumeration type; 5553 SVGAnimatedEnumeration type;
5554 } 5554 }
5555 5555
5556 class SVGCursorElement extends SVGElement native "SVGCursorElement" { 5556 class SVGCursorElement extends SVGElement native "*SVGCursorElement" {
5557 5557
5558 SVGAnimatedLength x; 5558 SVGAnimatedLength x;
5559 5559
5560 SVGAnimatedLength y; 5560 SVGAnimatedLength y;
5561 5561
5562 // From SVGURIReference 5562 // From SVGURIReference
5563 5563
5564 SVGAnimatedString href; 5564 SVGAnimatedString href;
5565 5565
5566 // From SVGTests 5566 // From SVGTests
5567 5567
5568 SVGStringList requiredExtensions; 5568 SVGStringList requiredExtensions;
5569 5569
5570 SVGStringList requiredFeatures; 5570 SVGStringList requiredFeatures;
5571 5571
5572 SVGStringList systemLanguage; 5572 SVGStringList systemLanguage;
5573 5573
5574 bool hasExtension(String extension) native; 5574 bool hasExtension(String extension) native;
5575 5575
5576 // From SVGExternalResourcesRequired 5576 // From SVGExternalResourcesRequired
5577 5577
5578 SVGAnimatedBoolean externalResourcesRequired; 5578 SVGAnimatedBoolean externalResourcesRequired;
5579 } 5579 }
5580 5580
5581 class SVGDefsElement extends SVGElement native "SVGDefsElement" { 5581 class SVGDefsElement extends SVGElement native "*SVGDefsElement" {
5582 5582
5583 // From SVGTests 5583 // From SVGTests
5584 5584
5585 SVGStringList requiredExtensions; 5585 SVGStringList requiredExtensions;
5586 5586
5587 SVGStringList requiredFeatures; 5587 SVGStringList requiredFeatures;
5588 5588
5589 SVGStringList systemLanguage; 5589 SVGStringList systemLanguage;
5590 5590
5591 bool hasExtension(String extension) native; 5591 bool hasExtension(String extension) native;
(...skipping 28 matching lines...) Expand all
5620 5620
5621 SVGRect getBBox() native; 5621 SVGRect getBBox() native;
5622 5622
5623 SVGMatrix getCTM() native; 5623 SVGMatrix getCTM() native;
5624 5624
5625 SVGMatrix getScreenCTM() native; 5625 SVGMatrix getScreenCTM() native;
5626 5626
5627 SVGMatrix getTransformToElement(SVGElement element) native; 5627 SVGMatrix getTransformToElement(SVGElement element) native;
5628 } 5628 }
5629 5629
5630 class SVGDescElement extends SVGElement native "SVGDescElement" { 5630 class SVGDescElement extends SVGElement native "*SVGDescElement" {
5631 5631
5632 // From SVGLangSpace 5632 // From SVGLangSpace
5633 5633
5634 String xmllang; 5634 String xmllang;
5635 5635
5636 String xmlspace; 5636 String xmlspace;
5637 5637
5638 // From SVGStylable 5638 // From SVGStylable
5639 5639
5640 SVGAnimatedString className; 5640 SVGAnimatedString className;
5641 5641
5642 CSSStyleDeclaration style; 5642 CSSStyleDeclaration style;
5643 5643
5644 CSSValue getPresentationAttribute(String name) native; 5644 CSSValue getPresentationAttribute(String name) native;
5645 } 5645 }
5646 5646
5647 class SVGDocument extends Document native "SVGDocument" { 5647 class SVGDocument extends Document native "*SVGDocument" {
5648 5648
5649 SVGSVGElement rootElement; 5649 SVGSVGElement rootElement;
5650 5650
5651 Event createEvent(String eventType) native; 5651 Event createEvent(String eventType) native;
5652 } 5652 }
5653 5653
5654 class SVGElement extends Element native "SVGElement" { 5654 class SVGElement extends Element native "*SVGElement" {
5655 5655
5656 String id; 5656 String id;
5657 5657
5658 SVGSVGElement ownerSVGElement; 5658 SVGSVGElement ownerSVGElement;
5659 5659
5660 SVGElement viewportElement; 5660 SVGElement viewportElement;
5661 5661
5662 String xmlbase; 5662 String xmlbase;
5663 } 5663 }
5664 5664
5665 class SVGElementInstance native "SVGElementInstance" { 5665 class SVGElementInstance native "*SVGElementInstance" {
5666 5666
5667 SVGElementInstanceList childNodes; 5667 SVGElementInstanceList childNodes;
5668 5668
5669 SVGElement correspondingElement; 5669 SVGElement correspondingElement;
5670 5670
5671 SVGUseElement correspondingUseElement; 5671 SVGUseElement correspondingUseElement;
5672 5672
5673 SVGElementInstance firstChild; 5673 SVGElementInstance firstChild;
5674 5674
5675 SVGElementInstance lastChild; 5675 SVGElementInstance lastChild;
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
5764 5764
5765 bool dispatchEvent(Event event) native; 5765 bool dispatchEvent(Event event) native;
5766 5766
5767 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native; 5767 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
5768 5768
5769 var dartObjectLocalStorage; 5769 var dartObjectLocalStorage;
5770 5770
5771 String get typeName() native; 5771 String get typeName() native;
5772 } 5772 }
5773 5773
5774 class SVGElementInstanceList native "SVGElementInstanceList" { 5774 class SVGElementInstanceList native "*SVGElementInstanceList" {
5775 5775
5776 int length; 5776 int length;
5777 5777
5778 SVGElementInstance item(int index) native; 5778 SVGElementInstance item(int index) native;
5779 5779
5780 var dartObjectLocalStorage; 5780 var dartObjectLocalStorage;
5781 5781
5782 String get typeName() native; 5782 String get typeName() native;
5783 } 5783 }
5784 5784
5785 class SVGEllipseElement extends SVGElement native "SVGEllipseElement" { 5785 class SVGEllipseElement extends SVGElement native "*SVGEllipseElement" {
5786 5786
5787 SVGAnimatedLength cx; 5787 SVGAnimatedLength cx;
5788 5788
5789 SVGAnimatedLength cy; 5789 SVGAnimatedLength cy;
5790 5790
5791 SVGAnimatedLength rx; 5791 SVGAnimatedLength rx;
5792 5792
5793 SVGAnimatedLength ry; 5793 SVGAnimatedLength ry;
5794 5794
5795 // From SVGTests 5795 // From SVGTests
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
5832 5832
5833 SVGRect getBBox() native; 5833 SVGRect getBBox() native;
5834 5834
5835 SVGMatrix getCTM() native; 5835 SVGMatrix getCTM() native;
5836 5836
5837 SVGMatrix getScreenCTM() native; 5837 SVGMatrix getScreenCTM() native;
5838 5838
5839 SVGMatrix getTransformToElement(SVGElement element) native; 5839 SVGMatrix getTransformToElement(SVGElement element) native;
5840 } 5840 }
5841 5841
5842 class SVGException native "SVGException" { 5842 class SVGException native "*SVGException" {
5843 5843
5844 int code; 5844 int code;
5845 5845
5846 String message; 5846 String message;
5847 5847
5848 String name; 5848 String name;
5849 5849
5850 String toString() native; 5850 String toString() native;
5851 5851
5852 var dartObjectLocalStorage; 5852 var dartObjectLocalStorage;
5853 5853
5854 String get typeName() native; 5854 String get typeName() native;
5855 } 5855 }
5856 5856
5857 class SVGExternalResourcesRequired native "SVGExternalResourcesRequired" { 5857 class SVGExternalResourcesRequired native "*SVGExternalResourcesRequired" {
5858 5858
5859 SVGAnimatedBoolean externalResourcesRequired; 5859 SVGAnimatedBoolean externalResourcesRequired;
5860 5860
5861 var dartObjectLocalStorage; 5861 var dartObjectLocalStorage;
5862 5862
5863 String get typeName() native; 5863 String get typeName() native;
5864 } 5864 }
5865 5865
5866 class SVGFEBlendElement extends SVGElement native "SVGFEBlendElement" { 5866 class SVGFEBlendElement extends SVGElement native "*SVGFEBlendElement" {
5867 5867
5868 SVGAnimatedString in1; 5868 SVGAnimatedString in1;
5869 5869
5870 SVGAnimatedString in2; 5870 SVGAnimatedString in2;
5871 5871
5872 SVGAnimatedEnumeration mode; 5872 SVGAnimatedEnumeration mode;
5873 5873
5874 // From SVGFilterPrimitiveStandardAttributes 5874 // From SVGFilterPrimitiveStandardAttributes
5875 5875
5876 SVGAnimatedLength height; 5876 SVGAnimatedLength height;
5877 5877
5878 SVGAnimatedString result; 5878 SVGAnimatedString result;
5879 5879
5880 SVGAnimatedLength width; 5880 SVGAnimatedLength width;
5881 5881
5882 SVGAnimatedLength x; 5882 SVGAnimatedLength x;
5883 5883
5884 SVGAnimatedLength y; 5884 SVGAnimatedLength y;
5885 5885
5886 // From SVGStylable 5886 // From SVGStylable
5887 5887
5888 SVGAnimatedString className; 5888 SVGAnimatedString className;
5889 5889
5890 CSSStyleDeclaration style; 5890 CSSStyleDeclaration style;
5891 5891
5892 CSSValue getPresentationAttribute(String name) native; 5892 CSSValue getPresentationAttribute(String name) native;
5893 } 5893 }
5894 5894
5895 class SVGFEColorMatrixElement extends SVGElement native "SVGFEColorMatrixElement " { 5895 class SVGFEColorMatrixElement extends SVGElement native "*SVGFEColorMatrixElemen t" {
5896 5896
5897 SVGAnimatedString in1; 5897 SVGAnimatedString in1;
5898 5898
5899 SVGAnimatedEnumeration type; 5899 SVGAnimatedEnumeration type;
5900 5900
5901 SVGAnimatedNumberList values; 5901 SVGAnimatedNumberList values;
5902 5902
5903 // From SVGFilterPrimitiveStandardAttributes 5903 // From SVGFilterPrimitiveStandardAttributes
5904 5904
5905 SVGAnimatedLength height; 5905 SVGAnimatedLength height;
5906 5906
5907 SVGAnimatedString result; 5907 SVGAnimatedString result;
5908 5908
5909 SVGAnimatedLength width; 5909 SVGAnimatedLength width;
5910 5910
5911 SVGAnimatedLength x; 5911 SVGAnimatedLength x;
5912 5912
5913 SVGAnimatedLength y; 5913 SVGAnimatedLength y;
5914 5914
5915 // From SVGStylable 5915 // From SVGStylable
5916 5916
5917 SVGAnimatedString className; 5917 SVGAnimatedString className;
5918 5918
5919 CSSStyleDeclaration style; 5919 CSSStyleDeclaration style;
5920 5920
5921 CSSValue getPresentationAttribute(String name) native; 5921 CSSValue getPresentationAttribute(String name) native;
5922 } 5922 }
5923 5923
5924 class SVGFEComponentTransferElement extends SVGElement native "SVGFEComponentTra nsferElement" { 5924 class SVGFEComponentTransferElement extends SVGElement native "*SVGFEComponentTr ansferElement" {
5925 5925
5926 SVGAnimatedString in1; 5926 SVGAnimatedString in1;
5927 5927
5928 // From SVGFilterPrimitiveStandardAttributes 5928 // From SVGFilterPrimitiveStandardAttributes
5929 5929
5930 SVGAnimatedLength height; 5930 SVGAnimatedLength height;
5931 5931
5932 SVGAnimatedString result; 5932 SVGAnimatedString result;
5933 5933
5934 SVGAnimatedLength width; 5934 SVGAnimatedLength width;
5935 5935
5936 SVGAnimatedLength x; 5936 SVGAnimatedLength x;
5937 5937
5938 SVGAnimatedLength y; 5938 SVGAnimatedLength y;
5939 5939
5940 // From SVGStylable 5940 // From SVGStylable
5941 5941
5942 SVGAnimatedString className; 5942 SVGAnimatedString className;
5943 5943
5944 CSSStyleDeclaration style; 5944 CSSStyleDeclaration style;
5945 5945
5946 CSSValue getPresentationAttribute(String name) native; 5946 CSSValue getPresentationAttribute(String name) native;
5947 } 5947 }
5948 5948
5949 class SVGFECompositeElement extends SVGElement native "SVGFECompositeElement" { 5949 class SVGFECompositeElement extends SVGElement native "*SVGFECompositeElement" {
5950 5950
5951 SVGAnimatedString in1; 5951 SVGAnimatedString in1;
5952 5952
5953 SVGAnimatedString in2; 5953 SVGAnimatedString in2;
5954 5954
5955 SVGAnimatedNumber k1; 5955 SVGAnimatedNumber k1;
5956 5956
5957 SVGAnimatedNumber k2; 5957 SVGAnimatedNumber k2;
5958 5958
5959 SVGAnimatedNumber k3; 5959 SVGAnimatedNumber k3;
(...skipping 16 matching lines...) Expand all
5976 5976
5977 // From SVGStylable 5977 // From SVGStylable
5978 5978
5979 SVGAnimatedString className; 5979 SVGAnimatedString className;
5980 5980
5981 CSSStyleDeclaration style; 5981 CSSStyleDeclaration style;
5982 5982
5983 CSSValue getPresentationAttribute(String name) native; 5983 CSSValue getPresentationAttribute(String name) native;
5984 } 5984 }
5985 5985
5986 class SVGFEConvolveMatrixElement extends SVGElement native "SVGFEConvolveMatrixE lement" { 5986 class SVGFEConvolveMatrixElement extends SVGElement native "*SVGFEConvolveMatrix Element" {
5987 5987
5988 SVGAnimatedNumber bias; 5988 SVGAnimatedNumber bias;
5989 5989
5990 SVGAnimatedNumber divisor; 5990 SVGAnimatedNumber divisor;
5991 5991
5992 SVGAnimatedEnumeration edgeMode; 5992 SVGAnimatedEnumeration edgeMode;
5993 5993
5994 SVGAnimatedString in1; 5994 SVGAnimatedString in1;
5995 5995
5996 SVGAnimatedNumberList kernelMatrix; 5996 SVGAnimatedNumberList kernelMatrix;
(...skipping 26 matching lines...) Expand all
6023 6023
6024 // From SVGStylable 6024 // From SVGStylable
6025 6025
6026 SVGAnimatedString className; 6026 SVGAnimatedString className;
6027 6027
6028 CSSStyleDeclaration style; 6028 CSSStyleDeclaration style;
6029 6029
6030 CSSValue getPresentationAttribute(String name) native; 6030 CSSValue getPresentationAttribute(String name) native;
6031 } 6031 }
6032 6032
6033 class SVGFEDiffuseLightingElement extends SVGElement native "SVGFEDiffuseLightin gElement" { 6033 class SVGFEDiffuseLightingElement extends SVGElement native "*SVGFEDiffuseLighti ngElement" {
6034 6034
6035 SVGAnimatedNumber diffuseConstant; 6035 SVGAnimatedNumber diffuseConstant;
6036 6036
6037 SVGAnimatedString in1; 6037 SVGAnimatedString in1;
6038 6038
6039 SVGAnimatedNumber kernelUnitLengthX; 6039 SVGAnimatedNumber kernelUnitLengthX;
6040 6040
6041 SVGAnimatedNumber kernelUnitLengthY; 6041 SVGAnimatedNumber kernelUnitLengthY;
6042 6042
6043 SVGAnimatedNumber surfaceScale; 6043 SVGAnimatedNumber surfaceScale;
(...skipping 12 matching lines...) Expand all
6056 6056
6057 // From SVGStylable 6057 // From SVGStylable
6058 6058
6059 SVGAnimatedString className; 6059 SVGAnimatedString className;
6060 6060
6061 CSSStyleDeclaration style; 6061 CSSStyleDeclaration style;
6062 6062
6063 CSSValue getPresentationAttribute(String name) native; 6063 CSSValue getPresentationAttribute(String name) native;
6064 } 6064 }
6065 6065
6066 class SVGFEDisplacementMapElement extends SVGElement native "SVGFEDisplacementMa pElement" { 6066 class SVGFEDisplacementMapElement extends SVGElement native "*SVGFEDisplacementM apElement" {
6067 6067
6068 SVGAnimatedString in1; 6068 SVGAnimatedString in1;
6069 6069
6070 SVGAnimatedString in2; 6070 SVGAnimatedString in2;
6071 6071
6072 SVGAnimatedNumber scale; 6072 SVGAnimatedNumber scale;
6073 6073
6074 SVGAnimatedEnumeration xChannelSelector; 6074 SVGAnimatedEnumeration xChannelSelector;
6075 6075
6076 SVGAnimatedEnumeration yChannelSelector; 6076 SVGAnimatedEnumeration yChannelSelector;
(...skipping 12 matching lines...) Expand all
6089 6089
6090 // From SVGStylable 6090 // From SVGStylable
6091 6091
6092 SVGAnimatedString className; 6092 SVGAnimatedString className;
6093 6093
6094 CSSStyleDeclaration style; 6094 CSSStyleDeclaration style;
6095 6095
6096 CSSValue getPresentationAttribute(String name) native; 6096 CSSValue getPresentationAttribute(String name) native;
6097 } 6097 }
6098 6098
6099 class SVGFEDistantLightElement extends SVGElement native "SVGFEDistantLightEleme nt" { 6099 class SVGFEDistantLightElement extends SVGElement native "*SVGFEDistantLightElem ent" {
6100 6100
6101 SVGAnimatedNumber azimuth; 6101 SVGAnimatedNumber azimuth;
6102 6102
6103 SVGAnimatedNumber elevation; 6103 SVGAnimatedNumber elevation;
6104 } 6104 }
6105 6105
6106 class SVGFEDropShadowElement extends SVGElement native "SVGFEDropShadowElement" { 6106 class SVGFEDropShadowElement extends SVGElement native "*SVGFEDropShadowElement" {
6107 6107
6108 SVGAnimatedNumber dx; 6108 SVGAnimatedNumber dx;
6109 6109
6110 SVGAnimatedNumber dy; 6110 SVGAnimatedNumber dy;
6111 6111
6112 SVGAnimatedString in1; 6112 SVGAnimatedString in1;
6113 6113
6114 SVGAnimatedNumber stdDeviationX; 6114 SVGAnimatedNumber stdDeviationX;
6115 6115
6116 SVGAnimatedNumber stdDeviationY; 6116 SVGAnimatedNumber stdDeviationY;
(...skipping 14 matching lines...) Expand all
6131 6131
6132 // From SVGStylable 6132 // From SVGStylable
6133 6133
6134 SVGAnimatedString className; 6134 SVGAnimatedString className;
6135 6135
6136 CSSStyleDeclaration style; 6136 CSSStyleDeclaration style;
6137 6137
6138 CSSValue getPresentationAttribute(String name) native; 6138 CSSValue getPresentationAttribute(String name) native;
6139 } 6139 }
6140 6140
6141 class SVGFEFloodElement extends SVGElement native "SVGFEFloodElement" { 6141 class SVGFEFloodElement extends SVGElement native "*SVGFEFloodElement" {
6142 6142
6143 // From SVGFilterPrimitiveStandardAttributes 6143 // From SVGFilterPrimitiveStandardAttributes
6144 6144
6145 SVGAnimatedLength height; 6145 SVGAnimatedLength height;
6146 6146
6147 SVGAnimatedString result; 6147 SVGAnimatedString result;
6148 6148
6149 SVGAnimatedLength width; 6149 SVGAnimatedLength width;
6150 6150
6151 SVGAnimatedLength x; 6151 SVGAnimatedLength x;
6152 6152
6153 SVGAnimatedLength y; 6153 SVGAnimatedLength y;
6154 6154
6155 // From SVGStylable 6155 // From SVGStylable
6156 6156
6157 SVGAnimatedString className; 6157 SVGAnimatedString className;
6158 6158
6159 CSSStyleDeclaration style; 6159 CSSStyleDeclaration style;
6160 6160
6161 CSSValue getPresentationAttribute(String name) native; 6161 CSSValue getPresentationAttribute(String name) native;
6162 } 6162 }
6163 6163
6164 class SVGFEFuncAElement extends SVGComponentTransferFunctionElement native "SVGF EFuncAElement" { 6164 class SVGFEFuncAElement extends SVGComponentTransferFunctionElement native "*SVG FEFuncAElement" {
6165 } 6165 }
6166 6166
6167 class SVGFEFuncBElement extends SVGComponentTransferFunctionElement native "SVGF EFuncBElement" { 6167 class SVGFEFuncBElement extends SVGComponentTransferFunctionElement native "*SVG FEFuncBElement" {
6168 } 6168 }
6169 6169
6170 class SVGFEFuncGElement extends SVGComponentTransferFunctionElement native "SVGF EFuncGElement" { 6170 class SVGFEFuncGElement extends SVGComponentTransferFunctionElement native "*SVG FEFuncGElement" {
6171 } 6171 }
6172 6172
6173 class SVGFEFuncRElement extends SVGComponentTransferFunctionElement native "SVGF EFuncRElement" { 6173 class SVGFEFuncRElement extends SVGComponentTransferFunctionElement native "*SVG FEFuncRElement" {
6174 } 6174 }
6175 6175
6176 class SVGFEGaussianBlurElement extends SVGElement native "SVGFEGaussianBlurEleme nt" { 6176 class SVGFEGaussianBlurElement extends SVGElement native "*SVGFEGaussianBlurElem ent" {
6177 6177
6178 SVGAnimatedString in1; 6178 SVGAnimatedString in1;
6179 6179
6180 SVGAnimatedNumber stdDeviationX; 6180 SVGAnimatedNumber stdDeviationX;
6181 6181
6182 SVGAnimatedNumber stdDeviationY; 6182 SVGAnimatedNumber stdDeviationY;
6183 6183
6184 void setStdDeviation(num stdDeviationX, num stdDeviationY) native; 6184 void setStdDeviation(num stdDeviationX, num stdDeviationY) native;
6185 6185
6186 // From SVGFilterPrimitiveStandardAttributes 6186 // From SVGFilterPrimitiveStandardAttributes
(...skipping 10 matching lines...) Expand all
6197 6197
6198 // From SVGStylable 6198 // From SVGStylable
6199 6199
6200 SVGAnimatedString className; 6200 SVGAnimatedString className;
6201 6201
6202 CSSStyleDeclaration style; 6202 CSSStyleDeclaration style;
6203 6203
6204 CSSValue getPresentationAttribute(String name) native; 6204 CSSValue getPresentationAttribute(String name) native;
6205 } 6205 }
6206 6206
6207 class SVGFEImageElement extends SVGElement native "SVGFEImageElement" { 6207 class SVGFEImageElement extends SVGElement native "*SVGFEImageElement" {
6208 6208
6209 SVGAnimatedPreserveAspectRatio preserveAspectRatio; 6209 SVGAnimatedPreserveAspectRatio preserveAspectRatio;
6210 6210
6211 // From SVGURIReference 6211 // From SVGURIReference
6212 6212
6213 SVGAnimatedString href; 6213 SVGAnimatedString href;
6214 6214
6215 // From SVGLangSpace 6215 // From SVGLangSpace
6216 6216
6217 String xmllang; 6217 String xmllang;
(...skipping 18 matching lines...) Expand all
6236 6236
6237 // From SVGStylable 6237 // From SVGStylable
6238 6238
6239 SVGAnimatedString className; 6239 SVGAnimatedString className;
6240 6240
6241 CSSStyleDeclaration style; 6241 CSSStyleDeclaration style;
6242 6242
6243 CSSValue getPresentationAttribute(String name) native; 6243 CSSValue getPresentationAttribute(String name) native;
6244 } 6244 }
6245 6245
6246 class SVGFEMergeElement extends SVGElement native "SVGFEMergeElement" { 6246 class SVGFEMergeElement extends SVGElement native "*SVGFEMergeElement" {
6247 6247
6248 // From SVGFilterPrimitiveStandardAttributes 6248 // From SVGFilterPrimitiveStandardAttributes
6249 6249
6250 SVGAnimatedLength height; 6250 SVGAnimatedLength height;
6251 6251
6252 SVGAnimatedString result; 6252 SVGAnimatedString result;
6253 6253
6254 SVGAnimatedLength width; 6254 SVGAnimatedLength width;
6255 6255
6256 SVGAnimatedLength x; 6256 SVGAnimatedLength x;
6257 6257
6258 SVGAnimatedLength y; 6258 SVGAnimatedLength y;
6259 6259
6260 // From SVGStylable 6260 // From SVGStylable
6261 6261
6262 SVGAnimatedString className; 6262 SVGAnimatedString className;
6263 6263
6264 CSSStyleDeclaration style; 6264 CSSStyleDeclaration style;
6265 6265
6266 CSSValue getPresentationAttribute(String name) native; 6266 CSSValue getPresentationAttribute(String name) native;
6267 } 6267 }
6268 6268
6269 class SVGFEMergeNodeElement extends SVGElement native "SVGFEMergeNodeElement" { 6269 class SVGFEMergeNodeElement extends SVGElement native "*SVGFEMergeNodeElement" {
6270 6270
6271 SVGAnimatedString in1; 6271 SVGAnimatedString in1;
6272 } 6272 }
6273 6273
6274 class SVGFEMorphologyElement extends SVGElement native "SVGFEMorphologyElement" { 6274 class SVGFEMorphologyElement extends SVGElement native "*SVGFEMorphologyElement" {
6275 6275
6276 SVGAnimatedString in1; 6276 SVGAnimatedString in1;
6277 6277
6278 SVGAnimatedEnumeration operator; 6278 SVGAnimatedEnumeration operator;
6279 6279
6280 SVGAnimatedNumber radiusX; 6280 SVGAnimatedNumber radiusX;
6281 6281
6282 SVGAnimatedNumber radiusY; 6282 SVGAnimatedNumber radiusY;
6283 6283
6284 void setRadius(num radiusX, num radiusY) native; 6284 void setRadius(num radiusX, num radiusY) native;
(...skipping 12 matching lines...) Expand all
6297 6297
6298 // From SVGStylable 6298 // From SVGStylable
6299 6299
6300 SVGAnimatedString className; 6300 SVGAnimatedString className;
6301 6301
6302 CSSStyleDeclaration style; 6302 CSSStyleDeclaration style;
6303 6303
6304 CSSValue getPresentationAttribute(String name) native; 6304 CSSValue getPresentationAttribute(String name) native;
6305 } 6305 }
6306 6306
6307 class SVGFEOffsetElement extends SVGElement native "SVGFEOffsetElement" { 6307 class SVGFEOffsetElement extends SVGElement native "*SVGFEOffsetElement" {
6308 6308
6309 SVGAnimatedNumber dx; 6309 SVGAnimatedNumber dx;
6310 6310
6311 SVGAnimatedNumber dy; 6311 SVGAnimatedNumber dy;
6312 6312
6313 SVGAnimatedString in1; 6313 SVGAnimatedString in1;
6314 6314
6315 // From SVGFilterPrimitiveStandardAttributes 6315 // From SVGFilterPrimitiveStandardAttributes
6316 6316
6317 SVGAnimatedLength height; 6317 SVGAnimatedLength height;
6318 6318
6319 SVGAnimatedString result; 6319 SVGAnimatedString result;
6320 6320
6321 SVGAnimatedLength width; 6321 SVGAnimatedLength width;
6322 6322
6323 SVGAnimatedLength x; 6323 SVGAnimatedLength x;
6324 6324
6325 SVGAnimatedLength y; 6325 SVGAnimatedLength y;
6326 6326
6327 // From SVGStylable 6327 // From SVGStylable
6328 6328
6329 SVGAnimatedString className; 6329 SVGAnimatedString className;
6330 6330
6331 CSSStyleDeclaration style; 6331 CSSStyleDeclaration style;
6332 6332
6333 CSSValue getPresentationAttribute(String name) native; 6333 CSSValue getPresentationAttribute(String name) native;
6334 } 6334 }
6335 6335
6336 class SVGFEPointLightElement extends SVGElement native "SVGFEPointLightElement" { 6336 class SVGFEPointLightElement extends SVGElement native "*SVGFEPointLightElement" {
6337 6337
6338 SVGAnimatedNumber x; 6338 SVGAnimatedNumber x;
6339 6339
6340 SVGAnimatedNumber y; 6340 SVGAnimatedNumber y;
6341 6341
6342 SVGAnimatedNumber z; 6342 SVGAnimatedNumber z;
6343 } 6343 }
6344 6344
6345 class SVGFESpecularLightingElement extends SVGElement native "SVGFESpecularLight ingElement" { 6345 class SVGFESpecularLightingElement extends SVGElement native "*SVGFESpecularLigh tingElement" {
6346 6346
6347 SVGAnimatedString in1; 6347 SVGAnimatedString in1;
6348 6348
6349 SVGAnimatedNumber specularConstant; 6349 SVGAnimatedNumber specularConstant;
6350 6350
6351 SVGAnimatedNumber specularExponent; 6351 SVGAnimatedNumber specularExponent;
6352 6352
6353 SVGAnimatedNumber surfaceScale; 6353 SVGAnimatedNumber surfaceScale;
6354 6354
6355 // From SVGFilterPrimitiveStandardAttributes 6355 // From SVGFilterPrimitiveStandardAttributes
(...skipping 10 matching lines...) Expand all
6366 6366
6367 // From SVGStylable 6367 // From SVGStylable
6368 6368
6369 SVGAnimatedString className; 6369 SVGAnimatedString className;
6370 6370
6371 CSSStyleDeclaration style; 6371 CSSStyleDeclaration style;
6372 6372
6373 CSSValue getPresentationAttribute(String name) native; 6373 CSSValue getPresentationAttribute(String name) native;
6374 } 6374 }
6375 6375
6376 class SVGFESpotLightElement extends SVGElement native "SVGFESpotLightElement" { 6376 class SVGFESpotLightElement extends SVGElement native "*SVGFESpotLightElement" {
6377 6377
6378 SVGAnimatedNumber limitingConeAngle; 6378 SVGAnimatedNumber limitingConeAngle;
6379 6379
6380 SVGAnimatedNumber pointsAtX; 6380 SVGAnimatedNumber pointsAtX;
6381 6381
6382 SVGAnimatedNumber pointsAtY; 6382 SVGAnimatedNumber pointsAtY;
6383 6383
6384 SVGAnimatedNumber pointsAtZ; 6384 SVGAnimatedNumber pointsAtZ;
6385 6385
6386 SVGAnimatedNumber specularExponent; 6386 SVGAnimatedNumber specularExponent;
6387 6387
6388 SVGAnimatedNumber x; 6388 SVGAnimatedNumber x;
6389 6389
6390 SVGAnimatedNumber y; 6390 SVGAnimatedNumber y;
6391 6391
6392 SVGAnimatedNumber z; 6392 SVGAnimatedNumber z;
6393 } 6393 }
6394 6394
6395 class SVGFETileElement extends SVGElement native "SVGFETileElement" { 6395 class SVGFETileElement extends SVGElement native "*SVGFETileElement" {
6396 6396
6397 SVGAnimatedString in1; 6397 SVGAnimatedString in1;
6398 6398
6399 // From SVGFilterPrimitiveStandardAttributes 6399 // From SVGFilterPrimitiveStandardAttributes
6400 6400
6401 SVGAnimatedLength height; 6401 SVGAnimatedLength height;
6402 6402
6403 SVGAnimatedString result; 6403 SVGAnimatedString result;
6404 6404
6405 SVGAnimatedLength width; 6405 SVGAnimatedLength width;
6406 6406
6407 SVGAnimatedLength x; 6407 SVGAnimatedLength x;
6408 6408
6409 SVGAnimatedLength y; 6409 SVGAnimatedLength y;
6410 6410
6411 // From SVGStylable 6411 // From SVGStylable
6412 6412
6413 SVGAnimatedString className; 6413 SVGAnimatedString className;
6414 6414
6415 CSSStyleDeclaration style; 6415 CSSStyleDeclaration style;
6416 6416
6417 CSSValue getPresentationAttribute(String name) native; 6417 CSSValue getPresentationAttribute(String name) native;
6418 } 6418 }
6419 6419
6420 class SVGFETurbulenceElement extends SVGElement native "SVGFETurbulenceElement" { 6420 class SVGFETurbulenceElement extends SVGElement native "*SVGFETurbulenceElement" {
6421 6421
6422 SVGAnimatedNumber baseFrequencyX; 6422 SVGAnimatedNumber baseFrequencyX;
6423 6423
6424 SVGAnimatedNumber baseFrequencyY; 6424 SVGAnimatedNumber baseFrequencyY;
6425 6425
6426 SVGAnimatedInteger numOctaves; 6426 SVGAnimatedInteger numOctaves;
6427 6427
6428 SVGAnimatedNumber seed; 6428 SVGAnimatedNumber seed;
6429 6429
6430 SVGAnimatedEnumeration stitchTiles; 6430 SVGAnimatedEnumeration stitchTiles;
(...skipping 14 matching lines...) Expand all
6445 6445
6446 // From SVGStylable 6446 // From SVGStylable
6447 6447
6448 SVGAnimatedString className; 6448 SVGAnimatedString className;
6449 6449
6450 CSSStyleDeclaration style; 6450 CSSStyleDeclaration style;
6451 6451
6452 CSSValue getPresentationAttribute(String name) native; 6452 CSSValue getPresentationAttribute(String name) native;
6453 } 6453 }
6454 6454
6455 class SVGFilterElement extends SVGElement native "SVGFilterElement" { 6455 class SVGFilterElement extends SVGElement native "*SVGFilterElement" {
6456 6456
6457 SVGAnimatedInteger filterResX; 6457 SVGAnimatedInteger filterResX;
6458 6458
6459 SVGAnimatedInteger filterResY; 6459 SVGAnimatedInteger filterResY;
6460 6460
6461 SVGAnimatedEnumeration filterUnits; 6461 SVGAnimatedEnumeration filterUnits;
6462 6462
6463 SVGAnimatedLength height; 6463 SVGAnimatedLength height;
6464 6464
6465 SVGAnimatedEnumeration primitiveUnits; 6465 SVGAnimatedEnumeration primitiveUnits;
(...skipping 22 matching lines...) Expand all
6488 6488
6489 // From SVGStylable 6489 // From SVGStylable
6490 6490
6491 SVGAnimatedString className; 6491 SVGAnimatedString className;
6492 6492
6493 CSSStyleDeclaration style; 6493 CSSStyleDeclaration style;
6494 6494
6495 CSSValue getPresentationAttribute(String name) native; 6495 CSSValue getPresentationAttribute(String name) native;
6496 } 6496 }
6497 6497
6498 class SVGFilterPrimitiveStandardAttributes extends SVGStylable native "SVGFilter PrimitiveStandardAttributes" { 6498 class SVGFilterPrimitiveStandardAttributes extends SVGStylable native "*SVGFilte rPrimitiveStandardAttributes" {
6499 6499
6500 SVGAnimatedLength height; 6500 SVGAnimatedLength height;
6501 6501
6502 SVGAnimatedString result; 6502 SVGAnimatedString result;
6503 6503
6504 SVGAnimatedLength width; 6504 SVGAnimatedLength width;
6505 6505
6506 SVGAnimatedLength x; 6506 SVGAnimatedLength x;
6507 6507
6508 SVGAnimatedLength y; 6508 SVGAnimatedLength y;
6509 } 6509 }
6510 6510
6511 class SVGFitToViewBox native "SVGFitToViewBox" { 6511 class SVGFitToViewBox native "*SVGFitToViewBox" {
6512 6512
6513 SVGAnimatedPreserveAspectRatio preserveAspectRatio; 6513 SVGAnimatedPreserveAspectRatio preserveAspectRatio;
6514 6514
6515 SVGAnimatedRect viewBox; 6515 SVGAnimatedRect viewBox;
6516 6516
6517 var dartObjectLocalStorage; 6517 var dartObjectLocalStorage;
6518 6518
6519 String get typeName() native; 6519 String get typeName() native;
6520 } 6520 }
6521 6521
6522 class SVGFontElement extends SVGElement native "SVGFontElement" { 6522 class SVGFontElement extends SVGElement native "*SVGFontElement" {
6523 } 6523 }
6524 6524
6525 class SVGFontFaceElement extends SVGElement native "SVGFontFaceElement" { 6525 class SVGFontFaceElement extends SVGElement native "*SVGFontFaceElement" {
6526 } 6526 }
6527 6527
6528 class SVGFontFaceFormatElement extends SVGElement native "SVGFontFaceFormatEleme nt" { 6528 class SVGFontFaceFormatElement extends SVGElement native "*SVGFontFaceFormatElem ent" {
6529 } 6529 }
6530 6530
6531 class SVGFontFaceNameElement extends SVGElement native "SVGFontFaceNameElement" { 6531 class SVGFontFaceNameElement extends SVGElement native "*SVGFontFaceNameElement" {
6532 } 6532 }
6533 6533
6534 class SVGFontFaceSrcElement extends SVGElement native "SVGFontFaceSrcElement" { 6534 class SVGFontFaceSrcElement extends SVGElement native "*SVGFontFaceSrcElement" {
6535 } 6535 }
6536 6536
6537 class SVGFontFaceUriElement extends SVGElement native "SVGFontFaceUriElement" { 6537 class SVGFontFaceUriElement extends SVGElement native "*SVGFontFaceUriElement" {
6538 } 6538 }
6539 6539
6540 class SVGForeignObjectElement extends SVGElement native "SVGForeignObjectElement " { 6540 class SVGForeignObjectElement extends SVGElement native "*SVGForeignObjectElemen t" {
6541 6541
6542 SVGAnimatedLength height; 6542 SVGAnimatedLength height;
6543 6543
6544 SVGAnimatedLength width; 6544 SVGAnimatedLength width;
6545 6545
6546 SVGAnimatedLength x; 6546 SVGAnimatedLength x;
6547 6547
6548 SVGAnimatedLength y; 6548 SVGAnimatedLength y;
6549 6549
6550 // From SVGTests 6550 // From SVGTests
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
6587 6587
6588 SVGRect getBBox() native; 6588 SVGRect getBBox() native;
6589 6589
6590 SVGMatrix getCTM() native; 6590 SVGMatrix getCTM() native;
6591 6591
6592 SVGMatrix getScreenCTM() native; 6592 SVGMatrix getScreenCTM() native;
6593 6593
6594 SVGMatrix getTransformToElement(SVGElement element) native; 6594 SVGMatrix getTransformToElement(SVGElement element) native;
6595 } 6595 }
6596 6596
6597 class SVGGElement extends SVGElement native "SVGGElement" { 6597 class SVGGElement extends SVGElement native "*SVGGElement" {
6598 6598
6599 // From SVGTests 6599 // From SVGTests
6600 6600
6601 SVGStringList requiredExtensions; 6601 SVGStringList requiredExtensions;
6602 6602
6603 SVGStringList requiredFeatures; 6603 SVGStringList requiredFeatures;
6604 6604
6605 SVGStringList systemLanguage; 6605 SVGStringList systemLanguage;
6606 6606
6607 bool hasExtension(String extension) native; 6607 bool hasExtension(String extension) native;
(...skipping 28 matching lines...) Expand all
6636 6636
6637 SVGRect getBBox() native; 6637 SVGRect getBBox() native;
6638 6638
6639 SVGMatrix getCTM() native; 6639 SVGMatrix getCTM() native;
6640 6640
6641 SVGMatrix getScreenCTM() native; 6641 SVGMatrix getScreenCTM() native;
6642 6642
6643 SVGMatrix getTransformToElement(SVGElement element) native; 6643 SVGMatrix getTransformToElement(SVGElement element) native;
6644 } 6644 }
6645 6645
6646 class SVGGlyphElement extends SVGElement native "SVGGlyphElement" { 6646 class SVGGlyphElement extends SVGElement native "*SVGGlyphElement" {
6647 } 6647 }
6648 6648
6649 class SVGGlyphRefElement extends SVGElement native "SVGGlyphRefElement" { 6649 class SVGGlyphRefElement extends SVGElement native "*SVGGlyphRefElement" {
6650 6650
6651 num dx; 6651 num dx;
6652 6652
6653 num dy; 6653 num dy;
6654 6654
6655 String format; 6655 String format;
6656 6656
6657 String glyphRef; 6657 String glyphRef;
6658 6658
6659 num x; 6659 num x;
6660 6660
6661 num y; 6661 num y;
6662 6662
6663 // From SVGURIReference 6663 // From SVGURIReference
6664 6664
6665 SVGAnimatedString href; 6665 SVGAnimatedString href;
6666 6666
6667 // From SVGStylable 6667 // From SVGStylable
6668 6668
6669 SVGAnimatedString className; 6669 SVGAnimatedString className;
6670 6670
6671 CSSStyleDeclaration style; 6671 CSSStyleDeclaration style;
6672 6672
6673 CSSValue getPresentationAttribute(String name) native; 6673 CSSValue getPresentationAttribute(String name) native;
6674 } 6674 }
6675 6675
6676 class SVGGradientElement extends SVGElement native "SVGGradientElement" { 6676 class SVGGradientElement extends SVGElement native "*SVGGradientElement" {
6677 6677
6678 SVGAnimatedTransformList gradientTransform; 6678 SVGAnimatedTransformList gradientTransform;
6679 6679
6680 SVGAnimatedEnumeration gradientUnits; 6680 SVGAnimatedEnumeration gradientUnits;
6681 6681
6682 SVGAnimatedEnumeration spreadMethod; 6682 SVGAnimatedEnumeration spreadMethod;
6683 6683
6684 // From SVGURIReference 6684 // From SVGURIReference
6685 6685
6686 SVGAnimatedString href; 6686 SVGAnimatedString href;
6687 6687
6688 // From SVGExternalResourcesRequired 6688 // From SVGExternalResourcesRequired
6689 6689
6690 SVGAnimatedBoolean externalResourcesRequired; 6690 SVGAnimatedBoolean externalResourcesRequired;
6691 6691
6692 // From SVGStylable 6692 // From SVGStylable
6693 6693
6694 SVGAnimatedString className; 6694 SVGAnimatedString className;
6695 6695
6696 CSSStyleDeclaration style; 6696 CSSStyleDeclaration style;
6697 6697
6698 CSSValue getPresentationAttribute(String name) native; 6698 CSSValue getPresentationAttribute(String name) native;
6699 } 6699 }
6700 6700
6701 class SVGHKernElement extends SVGElement native "SVGHKernElement" { 6701 class SVGHKernElement extends SVGElement native "*SVGHKernElement" {
6702 } 6702 }
6703 6703
6704 class SVGImageElement extends SVGElement native "SVGImageElement" { 6704 class SVGImageElement extends SVGElement native "*SVGImageElement" {
6705 6705
6706 SVGAnimatedLength height; 6706 SVGAnimatedLength height;
6707 6707
6708 SVGAnimatedPreserveAspectRatio preserveAspectRatio; 6708 SVGAnimatedPreserveAspectRatio preserveAspectRatio;
6709 6709
6710 SVGAnimatedLength width; 6710 SVGAnimatedLength width;
6711 6711
6712 SVGAnimatedLength x; 6712 SVGAnimatedLength x;
6713 6713
6714 SVGAnimatedLength y; 6714 SVGAnimatedLength y;
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
6757 6757
6758 SVGRect getBBox() native; 6758 SVGRect getBBox() native;
6759 6759
6760 SVGMatrix getCTM() native; 6760 SVGMatrix getCTM() native;
6761 6761
6762 SVGMatrix getScreenCTM() native; 6762 SVGMatrix getScreenCTM() native;
6763 6763
6764 SVGMatrix getTransformToElement(SVGElement element) native; 6764 SVGMatrix getTransformToElement(SVGElement element) native;
6765 } 6765 }
6766 6766
6767 class SVGLangSpace native "SVGLangSpace" { 6767 class SVGLangSpace native "*SVGLangSpace" {
6768 6768
6769 String xmllang; 6769 String xmllang;
6770 6770
6771 String xmlspace; 6771 String xmlspace;
6772 6772
6773 var dartObjectLocalStorage; 6773 var dartObjectLocalStorage;
6774 6774
6775 String get typeName() native; 6775 String get typeName() native;
6776 } 6776 }
6777 6777
6778 class SVGLength native "SVGLength" { 6778 class SVGLength native "*SVGLength" {
6779 6779
6780 int unitType; 6780 int unitType;
6781 6781
6782 num value; 6782 num value;
6783 6783
6784 String valueAsString; 6784 String valueAsString;
6785 6785
6786 num valueInSpecifiedUnits; 6786 num valueInSpecifiedUnits;
6787 6787
6788 void convertToSpecifiedUnits(int unitType) native; 6788 void convertToSpecifiedUnits(int unitType) native;
6789 6789
6790 void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) native; 6790 void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) native;
6791 6791
6792 var dartObjectLocalStorage; 6792 var dartObjectLocalStorage;
6793 6793
6794 String get typeName() native; 6794 String get typeName() native;
6795 } 6795 }
6796 6796
6797 class SVGLengthList native "SVGLengthList" { 6797 class SVGLengthList native "*SVGLengthList" {
6798 6798
6799 int numberOfItems; 6799 int numberOfItems;
6800 6800
6801 SVGLength appendItem(SVGLength item) native; 6801 SVGLength appendItem(SVGLength item) native;
6802 6802
6803 void clear() native; 6803 void clear() native;
6804 6804
6805 SVGLength getItem(int index) native; 6805 SVGLength getItem(int index) native;
6806 6806
6807 SVGLength initialize(SVGLength item) native; 6807 SVGLength initialize(SVGLength item) native;
6808 6808
6809 SVGLength insertItemBefore(SVGLength item, int index) native; 6809 SVGLength insertItemBefore(SVGLength item, int index) native;
6810 6810
6811 SVGLength removeItem(int index) native; 6811 SVGLength removeItem(int index) native;
6812 6812
6813 SVGLength replaceItem(SVGLength item, int index) native; 6813 SVGLength replaceItem(SVGLength item, int index) native;
6814 6814
6815 var dartObjectLocalStorage; 6815 var dartObjectLocalStorage;
6816 6816
6817 String get typeName() native; 6817 String get typeName() native;
6818 } 6818 }
6819 6819
6820 class SVGLineElement extends SVGElement native "SVGLineElement" { 6820 class SVGLineElement extends SVGElement native "*SVGLineElement" {
6821 6821
6822 SVGAnimatedLength x1; 6822 SVGAnimatedLength x1;
6823 6823
6824 SVGAnimatedLength x2; 6824 SVGAnimatedLength x2;
6825 6825
6826 SVGAnimatedLength y1; 6826 SVGAnimatedLength y1;
6827 6827
6828 SVGAnimatedLength y2; 6828 SVGAnimatedLength y2;
6829 6829
6830 // From SVGTests 6830 // From SVGTests
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
6867 6867
6868 SVGRect getBBox() native; 6868 SVGRect getBBox() native;
6869 6869
6870 SVGMatrix getCTM() native; 6870 SVGMatrix getCTM() native;
6871 6871
6872 SVGMatrix getScreenCTM() native; 6872 SVGMatrix getScreenCTM() native;
6873 6873
6874 SVGMatrix getTransformToElement(SVGElement element) native; 6874 SVGMatrix getTransformToElement(SVGElement element) native;
6875 } 6875 }
6876 6876
6877 class SVGLinearGradientElement extends SVGGradientElement native "SVGLinearGradi entElement" { 6877 class SVGLinearGradientElement extends SVGGradientElement native "*SVGLinearGrad ientElement" {
6878 6878
6879 SVGAnimatedLength x1; 6879 SVGAnimatedLength x1;
6880 6880
6881 SVGAnimatedLength x2; 6881 SVGAnimatedLength x2;
6882 6882
6883 SVGAnimatedLength y1; 6883 SVGAnimatedLength y1;
6884 6884
6885 SVGAnimatedLength y2; 6885 SVGAnimatedLength y2;
6886 } 6886 }
6887 6887
6888 class SVGLocatable native "SVGLocatable" { 6888 class SVGLocatable native "*SVGLocatable" {
6889 6889
6890 SVGElement farthestViewportElement; 6890 SVGElement farthestViewportElement;
6891 6891
6892 SVGElement nearestViewportElement; 6892 SVGElement nearestViewportElement;
6893 6893
6894 SVGRect getBBox() native; 6894 SVGRect getBBox() native;
6895 6895
6896 SVGMatrix getCTM() native; 6896 SVGMatrix getCTM() native;
6897 6897
6898 SVGMatrix getScreenCTM() native; 6898 SVGMatrix getScreenCTM() native;
6899 6899
6900 SVGMatrix getTransformToElement(SVGElement element) native; 6900 SVGMatrix getTransformToElement(SVGElement element) native;
6901 6901
6902 var dartObjectLocalStorage; 6902 var dartObjectLocalStorage;
6903 6903
6904 String get typeName() native; 6904 String get typeName() native;
6905 } 6905 }
6906 6906
6907 class SVGMPathElement extends SVGElement native "SVGMPathElement" { 6907 class SVGMPathElement extends SVGElement native "*SVGMPathElement" {
6908 6908
6909 // From SVGURIReference 6909 // From SVGURIReference
6910 6910
6911 SVGAnimatedString href; 6911 SVGAnimatedString href;
6912 6912
6913 // From SVGExternalResourcesRequired 6913 // From SVGExternalResourcesRequired
6914 6914
6915 SVGAnimatedBoolean externalResourcesRequired; 6915 SVGAnimatedBoolean externalResourcesRequired;
6916 } 6916 }
6917 6917
6918 class SVGMarkerElement extends SVGElement native "SVGMarkerElement" { 6918 class SVGMarkerElement extends SVGElement native "*SVGMarkerElement" {
6919 6919
6920 SVGAnimatedLength markerHeight; 6920 SVGAnimatedLength markerHeight;
6921 6921
6922 SVGAnimatedEnumeration markerUnits; 6922 SVGAnimatedEnumeration markerUnits;
6923 6923
6924 SVGAnimatedLength markerWidth; 6924 SVGAnimatedLength markerWidth;
6925 6925
6926 SVGAnimatedAngle orientAngle; 6926 SVGAnimatedAngle orientAngle;
6927 6927
6928 SVGAnimatedEnumeration orientType; 6928 SVGAnimatedEnumeration orientType;
(...skipping 24 matching lines...) Expand all
6953 6953
6954 CSSValue getPresentationAttribute(String name) native; 6954 CSSValue getPresentationAttribute(String name) native;
6955 6955
6956 // From SVGFitToViewBox 6956 // From SVGFitToViewBox
6957 6957
6958 SVGAnimatedPreserveAspectRatio preserveAspectRatio; 6958 SVGAnimatedPreserveAspectRatio preserveAspectRatio;
6959 6959
6960 SVGAnimatedRect viewBox; 6960 SVGAnimatedRect viewBox;
6961 } 6961 }
6962 6962
6963 class SVGMaskElement extends SVGElement native "SVGMaskElement" { 6963 class SVGMaskElement extends SVGElement native "*SVGMaskElement" {
6964 6964
6965 SVGAnimatedLength height; 6965 SVGAnimatedLength height;
6966 6966
6967 SVGAnimatedEnumeration maskContentUnits; 6967 SVGAnimatedEnumeration maskContentUnits;
6968 6968
6969 SVGAnimatedEnumeration maskUnits; 6969 SVGAnimatedEnumeration maskUnits;
6970 6970
6971 SVGAnimatedLength width; 6971 SVGAnimatedLength width;
6972 6972
6973 SVGAnimatedLength x; 6973 SVGAnimatedLength x;
(...skipping 22 matching lines...) Expand all
6996 6996
6997 // From SVGStylable 6997 // From SVGStylable
6998 6998
6999 SVGAnimatedString className; 6999 SVGAnimatedString className;
7000 7000
7001 CSSStyleDeclaration style; 7001 CSSStyleDeclaration style;
7002 7002
7003 CSSValue getPresentationAttribute(String name) native; 7003 CSSValue getPresentationAttribute(String name) native;
7004 } 7004 }
7005 7005
7006 class SVGMatrix native "SVGMatrix" { 7006 class SVGMatrix native "*SVGMatrix" {
7007 7007
7008 num a; 7008 num a;
7009 7009
7010 num b; 7010 num b;
7011 7011
7012 num c; 7012 num c;
7013 7013
7014 num d; 7014 num d;
7015 7015
7016 num e; 7016 num e;
(...skipping 20 matching lines...) Expand all
7037 7037
7038 SVGMatrix skewY(num angle) native; 7038 SVGMatrix skewY(num angle) native;
7039 7039
7040 SVGMatrix translate(num x, num y) native; 7040 SVGMatrix translate(num x, num y) native;
7041 7041
7042 var dartObjectLocalStorage; 7042 var dartObjectLocalStorage;
7043 7043
7044 String get typeName() native; 7044 String get typeName() native;
7045 } 7045 }
7046 7046
7047 class SVGMetadataElement extends SVGElement native "SVGMetadataElement" { 7047 class SVGMetadataElement extends SVGElement native "*SVGMetadataElement" {
7048 } 7048 }
7049 7049
7050 class SVGMissingGlyphElement extends SVGElement native "SVGMissingGlyphElement" { 7050 class SVGMissingGlyphElement extends SVGElement native "*SVGMissingGlyphElement" {
7051 } 7051 }
7052 7052
7053 class SVGNumber native "SVGNumber" { 7053 class SVGNumber native "*SVGNumber" {
7054 7054
7055 num value; 7055 num value;
7056 7056
7057 var dartObjectLocalStorage; 7057 var dartObjectLocalStorage;
7058 7058
7059 String get typeName() native; 7059 String get typeName() native;
7060 } 7060 }
7061 7061
7062 class SVGNumberList native "SVGNumberList" { 7062 class SVGNumberList native "*SVGNumberList" {
7063 7063
7064 int numberOfItems; 7064 int numberOfItems;
7065 7065
7066 SVGNumber appendItem(SVGNumber item) native; 7066 SVGNumber appendItem(SVGNumber item) native;
7067 7067
7068 void clear() native; 7068 void clear() native;
7069 7069
7070 SVGNumber getItem(int index) native; 7070 SVGNumber getItem(int index) native;
7071 7071
7072 SVGNumber initialize(SVGNumber item) native; 7072 SVGNumber initialize(SVGNumber item) native;
7073 7073
7074 SVGNumber insertItemBefore(SVGNumber item, int index) native; 7074 SVGNumber insertItemBefore(SVGNumber item, int index) native;
7075 7075
7076 SVGNumber removeItem(int index) native; 7076 SVGNumber removeItem(int index) native;
7077 7077
7078 SVGNumber replaceItem(SVGNumber item, int index) native; 7078 SVGNumber replaceItem(SVGNumber item, int index) native;
7079 7079
7080 var dartObjectLocalStorage; 7080 var dartObjectLocalStorage;
7081 7081
7082 String get typeName() native; 7082 String get typeName() native;
7083 } 7083 }
7084 7084
7085 class SVGPaint extends SVGColor native "SVGPaint" { 7085 class SVGPaint extends SVGColor native "*SVGPaint" {
7086 7086
7087 int paintType; 7087 int paintType;
7088 7088
7089 String uri; 7089 String uri;
7090 7090
7091 void setPaint(int paintType, String uri, String rgbColor, String iccColor) nat ive; 7091 void setPaint(int paintType, String uri, String rgbColor, String iccColor) nat ive;
7092 7092
7093 void setUri(String uri) native; 7093 void setUri(String uri) native;
7094 } 7094 }
7095 7095
7096 class SVGPathElement extends SVGElement native "SVGPathElement" { 7096 class SVGPathElement extends SVGElement native "*SVGPathElement" {
7097 7097
7098 SVGPathSegList animatedNormalizedPathSegList; 7098 SVGPathSegList animatedNormalizedPathSegList;
7099 7099
7100 SVGPathSegList animatedPathSegList; 7100 SVGPathSegList animatedPathSegList;
7101 7101
7102 SVGPathSegList normalizedPathSegList; 7102 SVGPathSegList normalizedPathSegList;
7103 7103
7104 SVGAnimatedNumber pathLength; 7104 SVGAnimatedNumber pathLength;
7105 7105
7106 SVGPathSegList pathSegList; 7106 SVGPathSegList pathSegList;
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
7189 7189
7190 SVGRect getBBox() native; 7190 SVGRect getBBox() native;
7191 7191
7192 SVGMatrix getCTM() native; 7192 SVGMatrix getCTM() native;
7193 7193
7194 SVGMatrix getScreenCTM() native; 7194 SVGMatrix getScreenCTM() native;
7195 7195
7196 SVGMatrix getTransformToElement(SVGElement element) native; 7196 SVGMatrix getTransformToElement(SVGElement element) native;
7197 } 7197 }
7198 7198
7199 class SVGPathSeg native "SVGPathSeg" { 7199 class SVGPathSeg native "*SVGPathSeg" {
7200 7200
7201 int pathSegType; 7201 int pathSegType;
7202 7202
7203 String pathSegTypeAsLetter; 7203 String pathSegTypeAsLetter;
7204 7204
7205 var dartObjectLocalStorage; 7205 var dartObjectLocalStorage;
7206 7206
7207 String get typeName() native; 7207 String get typeName() native;
7208 } 7208 }
7209 7209
7210 class SVGPathSegArcAbs extends SVGPathSeg native "SVGPathSegArcAbs" { 7210 class SVGPathSegArcAbs extends SVGPathSeg native "*SVGPathSegArcAbs" {
7211 7211
7212 num angle; 7212 num angle;
7213 7213
7214 bool largeArcFlag; 7214 bool largeArcFlag;
7215 7215
7216 num r1; 7216 num r1;
7217 7217
7218 num r2; 7218 num r2;
7219 7219
7220 bool sweepFlag; 7220 bool sweepFlag;
7221 7221
7222 num x; 7222 num x;
7223 7223
7224 num y; 7224 num y;
7225 } 7225 }
7226 7226
7227 class SVGPathSegArcRel extends SVGPathSeg native "SVGPathSegArcRel" { 7227 class SVGPathSegArcRel extends SVGPathSeg native "*SVGPathSegArcRel" {
7228 7228
7229 num angle; 7229 num angle;
7230 7230
7231 bool largeArcFlag; 7231 bool largeArcFlag;
7232 7232
7233 num r1; 7233 num r1;
7234 7234
7235 num r2; 7235 num r2;
7236 7236
7237 bool sweepFlag; 7237 bool sweepFlag;
7238 7238
7239 num x; 7239 num x;
7240 7240
7241 num y; 7241 num y;
7242 } 7242 }
7243 7243
7244 class SVGPathSegClosePath extends SVGPathSeg native "SVGPathSegClosePath" { 7244 class SVGPathSegClosePath extends SVGPathSeg native "*SVGPathSegClosePath" {
7245 } 7245 }
7246 7246
7247 class SVGPathSegCurvetoCubicAbs extends SVGPathSeg native "SVGPathSegCurvetoCubi cAbs" { 7247 class SVGPathSegCurvetoCubicAbs extends SVGPathSeg native "*SVGPathSegCurvetoCub icAbs" {
7248 7248
7249 num x; 7249 num x;
7250 7250
7251 num x1; 7251 num x1;
7252 7252
7253 num x2; 7253 num x2;
7254 7254
7255 num y; 7255 num y;
7256 7256
7257 num y1; 7257 num y1;
7258 7258
7259 num y2; 7259 num y2;
7260 } 7260 }
7261 7261
7262 class SVGPathSegCurvetoCubicRel extends SVGPathSeg native "SVGPathSegCurvetoCubi cRel" { 7262 class SVGPathSegCurvetoCubicRel extends SVGPathSeg native "*SVGPathSegCurvetoCub icRel" {
7263 7263
7264 num x; 7264 num x;
7265 7265
7266 num x1; 7266 num x1;
7267 7267
7268 num x2; 7268 num x2;
7269 7269
7270 num y; 7270 num y;
7271 7271
7272 num y1; 7272 num y1;
7273 7273
7274 num y2; 7274 num y2;
7275 } 7275 }
7276 7276
7277 class SVGPathSegCurvetoCubicSmoothAbs extends SVGPathSeg native "SVGPathSegCurve toCubicSmoothAbs" { 7277 class SVGPathSegCurvetoCubicSmoothAbs extends SVGPathSeg native "*SVGPathSegCurv etoCubicSmoothAbs" {
7278 7278
7279 num x; 7279 num x;
7280 7280
7281 num x2; 7281 num x2;
7282 7282
7283 num y; 7283 num y;
7284 7284
7285 num y2; 7285 num y2;
7286 } 7286 }
7287 7287
7288 class SVGPathSegCurvetoCubicSmoothRel extends SVGPathSeg native "SVGPathSegCurve toCubicSmoothRel" { 7288 class SVGPathSegCurvetoCubicSmoothRel extends SVGPathSeg native "*SVGPathSegCurv etoCubicSmoothRel" {
7289 7289
7290 num x; 7290 num x;
7291 7291
7292 num x2; 7292 num x2;
7293 7293
7294 num y; 7294 num y;
7295 7295
7296 num y2; 7296 num y2;
7297 } 7297 }
7298 7298
7299 class SVGPathSegCurvetoQuadraticAbs extends SVGPathSeg native "SVGPathSegCurveto QuadraticAbs" { 7299 class SVGPathSegCurvetoQuadraticAbs extends SVGPathSeg native "*SVGPathSegCurvet oQuadraticAbs" {
7300 7300
7301 num x; 7301 num x;
7302 7302
7303 num x1; 7303 num x1;
7304 7304
7305 num y; 7305 num y;
7306 7306
7307 num y1; 7307 num y1;
7308 } 7308 }
7309 7309
7310 class SVGPathSegCurvetoQuadraticRel extends SVGPathSeg native "SVGPathSegCurveto QuadraticRel" { 7310 class SVGPathSegCurvetoQuadraticRel extends SVGPathSeg native "*SVGPathSegCurvet oQuadraticRel" {
7311 7311
7312 num x; 7312 num x;
7313 7313
7314 num x1; 7314 num x1;
7315 7315
7316 num y; 7316 num y;
7317 7317
7318 num y1; 7318 num y1;
7319 } 7319 }
7320 7320
7321 class SVGPathSegCurvetoQuadraticSmoothAbs extends SVGPathSeg native "SVGPathSegC urvetoQuadraticSmoothAbs" { 7321 class SVGPathSegCurvetoQuadraticSmoothAbs extends SVGPathSeg native "*SVGPathSeg CurvetoQuadraticSmoothAbs" {
7322 7322
7323 num x; 7323 num x;
7324 7324
7325 num y; 7325 num y;
7326 } 7326 }
7327 7327
7328 class SVGPathSegCurvetoQuadraticSmoothRel extends SVGPathSeg native "SVGPathSegC urvetoQuadraticSmoothRel" { 7328 class SVGPathSegCurvetoQuadraticSmoothRel extends SVGPathSeg native "*SVGPathSeg CurvetoQuadraticSmoothRel" {
7329 7329
7330 num x; 7330 num x;
7331 7331
7332 num y; 7332 num y;
7333 } 7333 }
7334 7334
7335 class SVGPathSegLinetoAbs extends SVGPathSeg native "SVGPathSegLinetoAbs" { 7335 class SVGPathSegLinetoAbs extends SVGPathSeg native "*SVGPathSegLinetoAbs" {
7336 7336
7337 num x; 7337 num x;
7338 7338
7339 num y; 7339 num y;
7340 } 7340 }
7341 7341
7342 class SVGPathSegLinetoHorizontalAbs extends SVGPathSeg native "SVGPathSegLinetoH orizontalAbs" { 7342 class SVGPathSegLinetoHorizontalAbs extends SVGPathSeg native "*SVGPathSegLineto HorizontalAbs" {
7343 7343
7344 num x; 7344 num x;
7345 } 7345 }
7346 7346
7347 class SVGPathSegLinetoHorizontalRel extends SVGPathSeg native "SVGPathSegLinetoH orizontalRel" { 7347 class SVGPathSegLinetoHorizontalRel extends SVGPathSeg native "*SVGPathSegLineto HorizontalRel" {
7348 7348
7349 num x; 7349 num x;
7350 } 7350 }
7351 7351
7352 class SVGPathSegLinetoRel extends SVGPathSeg native "SVGPathSegLinetoRel" { 7352 class SVGPathSegLinetoRel extends SVGPathSeg native "*SVGPathSegLinetoRel" {
7353 7353
7354 num x; 7354 num x;
7355 7355
7356 num y; 7356 num y;
7357 } 7357 }
7358 7358
7359 class SVGPathSegLinetoVerticalAbs extends SVGPathSeg native "SVGPathSegLinetoVer ticalAbs" { 7359 class SVGPathSegLinetoVerticalAbs extends SVGPathSeg native "*SVGPathSegLinetoVe rticalAbs" {
7360 7360
7361 num y; 7361 num y;
7362 } 7362 }
7363 7363
7364 class SVGPathSegLinetoVerticalRel extends SVGPathSeg native "SVGPathSegLinetoVer ticalRel" { 7364 class SVGPathSegLinetoVerticalRel extends SVGPathSeg native "*SVGPathSegLinetoVe rticalRel" {
7365 7365
7366 num y; 7366 num y;
7367 } 7367 }
7368 7368
7369 class SVGPathSegList native "SVGPathSegList" { 7369 class SVGPathSegList native "*SVGPathSegList" {
7370 7370
7371 int numberOfItems; 7371 int numberOfItems;
7372 7372
7373 SVGPathSeg appendItem(SVGPathSeg newItem) native; 7373 SVGPathSeg appendItem(SVGPathSeg newItem) native;
7374 7374
7375 void clear() native; 7375 void clear() native;
7376 7376
7377 SVGPathSeg getItem(int index) native; 7377 SVGPathSeg getItem(int index) native;
7378 7378
7379 SVGPathSeg initialize(SVGPathSeg newItem) native; 7379 SVGPathSeg initialize(SVGPathSeg newItem) native;
7380 7380
7381 SVGPathSeg insertItemBefore(SVGPathSeg newItem, int index) native; 7381 SVGPathSeg insertItemBefore(SVGPathSeg newItem, int index) native;
7382 7382
7383 SVGPathSeg removeItem(int index) native; 7383 SVGPathSeg removeItem(int index) native;
7384 7384
7385 SVGPathSeg replaceItem(SVGPathSeg newItem, int index) native; 7385 SVGPathSeg replaceItem(SVGPathSeg newItem, int index) native;
7386 7386
7387 var dartObjectLocalStorage; 7387 var dartObjectLocalStorage;
7388 7388
7389 String get typeName() native; 7389 String get typeName() native;
7390 } 7390 }
7391 7391
7392 class SVGPathSegMovetoAbs extends SVGPathSeg native "SVGPathSegMovetoAbs" { 7392 class SVGPathSegMovetoAbs extends SVGPathSeg native "*SVGPathSegMovetoAbs" {
7393 7393
7394 num x; 7394 num x;
7395 7395
7396 num y; 7396 num y;
7397 } 7397 }
7398 7398
7399 class SVGPathSegMovetoRel extends SVGPathSeg native "SVGPathSegMovetoRel" { 7399 class SVGPathSegMovetoRel extends SVGPathSeg native "*SVGPathSegMovetoRel" {
7400 7400
7401 num x; 7401 num x;
7402 7402
7403 num y; 7403 num y;
7404 } 7404 }
7405 7405
7406 class SVGPatternElement extends SVGElement native "SVGPatternElement" { 7406 class SVGPatternElement extends SVGElement native "*SVGPatternElement" {
7407 7407
7408 SVGAnimatedLength height; 7408 SVGAnimatedLength height;
7409 7409
7410 SVGAnimatedEnumeration patternContentUnits; 7410 SVGAnimatedEnumeration patternContentUnits;
7411 7411
7412 SVGAnimatedTransformList patternTransform; 7412 SVGAnimatedTransformList patternTransform;
7413 7413
7414 SVGAnimatedEnumeration patternUnits; 7414 SVGAnimatedEnumeration patternUnits;
7415 7415
7416 SVGAnimatedLength width; 7416 SVGAnimatedLength width;
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
7451 7451
7452 CSSValue getPresentationAttribute(String name) native; 7452 CSSValue getPresentationAttribute(String name) native;
7453 7453
7454 // From SVGFitToViewBox 7454 // From SVGFitToViewBox
7455 7455
7456 SVGAnimatedPreserveAspectRatio preserveAspectRatio; 7456 SVGAnimatedPreserveAspectRatio preserveAspectRatio;
7457 7457
7458 SVGAnimatedRect viewBox; 7458 SVGAnimatedRect viewBox;
7459 } 7459 }
7460 7460
7461 class SVGPoint native "SVGPoint" { 7461 class SVGPoint native "*SVGPoint" {
7462 7462
7463 num x; 7463 num x;
7464 7464
7465 num y; 7465 num y;
7466 7466
7467 SVGPoint matrixTransform(SVGMatrix matrix) native; 7467 SVGPoint matrixTransform(SVGMatrix matrix) native;
7468 7468
7469 var dartObjectLocalStorage; 7469 var dartObjectLocalStorage;
7470 7470
7471 String get typeName() native; 7471 String get typeName() native;
7472 } 7472 }
7473 7473
7474 class SVGPointList native "SVGPointList" { 7474 class SVGPointList native "*SVGPointList" {
7475 7475
7476 int numberOfItems; 7476 int numberOfItems;
7477 7477
7478 SVGPoint appendItem(SVGPoint item) native; 7478 SVGPoint appendItem(SVGPoint item) native;
7479 7479
7480 void clear() native; 7480 void clear() native;
7481 7481
7482 SVGPoint getItem(int index) native; 7482 SVGPoint getItem(int index) native;
7483 7483
7484 SVGPoint initialize(SVGPoint item) native; 7484 SVGPoint initialize(SVGPoint item) native;
7485 7485
7486 SVGPoint insertItemBefore(SVGPoint item, int index) native; 7486 SVGPoint insertItemBefore(SVGPoint item, int index) native;
7487 7487
7488 SVGPoint removeItem(int index) native; 7488 SVGPoint removeItem(int index) native;
7489 7489
7490 SVGPoint replaceItem(SVGPoint item, int index) native; 7490 SVGPoint replaceItem(SVGPoint item, int index) native;
7491 7491
7492 var dartObjectLocalStorage; 7492 var dartObjectLocalStorage;
7493 7493
7494 String get typeName() native; 7494 String get typeName() native;
7495 } 7495 }
7496 7496
7497 class SVGPolygonElement extends SVGElement native "SVGPolygonElement" { 7497 class SVGPolygonElement extends SVGElement native "*SVGPolygonElement" {
7498 7498
7499 SVGPointList animatedPoints; 7499 SVGPointList animatedPoints;
7500 7500
7501 SVGPointList points; 7501 SVGPointList points;
7502 7502
7503 // From SVGTests 7503 // From SVGTests
7504 7504
7505 SVGStringList requiredExtensions; 7505 SVGStringList requiredExtensions;
7506 7506
7507 SVGStringList requiredFeatures; 7507 SVGStringList requiredFeatures;
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
7540 7540
7541 SVGRect getBBox() native; 7541 SVGRect getBBox() native;
7542 7542
7543 SVGMatrix getCTM() native; 7543 SVGMatrix getCTM() native;
7544 7544
7545 SVGMatrix getScreenCTM() native; 7545 SVGMatrix getScreenCTM() native;
7546 7546
7547 SVGMatrix getTransformToElement(SVGElement element) native; 7547 SVGMatrix getTransformToElement(SVGElement element) native;
7548 } 7548 }
7549 7549
7550 class SVGPolylineElement extends SVGElement native "SVGPolylineElement" { 7550 class SVGPolylineElement extends SVGElement native "*SVGPolylineElement" {
7551 7551
7552 SVGPointList animatedPoints; 7552 SVGPointList animatedPoints;
7553 7553
7554 SVGPointList points; 7554 SVGPointList points;
7555 7555
7556 // From SVGTests 7556 // From SVGTests
7557 7557
7558 SVGStringList requiredExtensions; 7558 SVGStringList requiredExtensions;
7559 7559
7560 SVGStringList requiredFeatures; 7560 SVGStringList requiredFeatures;
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
7593 7593
7594 SVGRect getBBox() native; 7594 SVGRect getBBox() native;
7595 7595
7596 SVGMatrix getCTM() native; 7596 SVGMatrix getCTM() native;
7597 7597
7598 SVGMatrix getScreenCTM() native; 7598 SVGMatrix getScreenCTM() native;
7599 7599
7600 SVGMatrix getTransformToElement(SVGElement element) native; 7600 SVGMatrix getTransformToElement(SVGElement element) native;
7601 } 7601 }
7602 7602
7603 class SVGPreserveAspectRatio native "SVGPreserveAspectRatio" { 7603 class SVGPreserveAspectRatio native "*SVGPreserveAspectRatio" {
7604 7604
7605 int align; 7605 int align;
7606 7606
7607 int meetOrSlice; 7607 int meetOrSlice;
7608 7608
7609 var dartObjectLocalStorage; 7609 var dartObjectLocalStorage;
7610 7610
7611 String get typeName() native; 7611 String get typeName() native;
7612 } 7612 }
7613 7613
7614 class SVGRadialGradientElement extends SVGGradientElement native "SVGRadialGradi entElement" { 7614 class SVGRadialGradientElement extends SVGGradientElement native "*SVGRadialGrad ientElement" {
7615 7615
7616 SVGAnimatedLength cx; 7616 SVGAnimatedLength cx;
7617 7617
7618 SVGAnimatedLength cy; 7618 SVGAnimatedLength cy;
7619 7619
7620 SVGAnimatedLength fx; 7620 SVGAnimatedLength fx;
7621 7621
7622 SVGAnimatedLength fy; 7622 SVGAnimatedLength fy;
7623 7623
7624 SVGAnimatedLength r; 7624 SVGAnimatedLength r;
7625 } 7625 }
7626 7626
7627 class SVGRect native "SVGRect" { 7627 class SVGRect native "*SVGRect" {
7628 7628
7629 num height; 7629 num height;
7630 7630
7631 num width; 7631 num width;
7632 7632
7633 num x; 7633 num x;
7634 7634
7635 num y; 7635 num y;
7636 7636
7637 var dartObjectLocalStorage; 7637 var dartObjectLocalStorage;
7638 7638
7639 String get typeName() native; 7639 String get typeName() native;
7640 } 7640 }
7641 7641
7642 class SVGRectElement extends SVGElement native "SVGRectElement" { 7642 class SVGRectElement extends SVGElement native "*SVGRectElement" {
7643 7643
7644 SVGAnimatedLength height; 7644 SVGAnimatedLength height;
7645 7645
7646 SVGAnimatedLength rx; 7646 SVGAnimatedLength rx;
7647 7647
7648 SVGAnimatedLength ry; 7648 SVGAnimatedLength ry;
7649 7649
7650 SVGAnimatedLength width; 7650 SVGAnimatedLength width;
7651 7651
7652 SVGAnimatedLength x; 7652 SVGAnimatedLength x;
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
7693 7693
7694 SVGRect getBBox() native; 7694 SVGRect getBBox() native;
7695 7695
7696 SVGMatrix getCTM() native; 7696 SVGMatrix getCTM() native;
7697 7697
7698 SVGMatrix getScreenCTM() native; 7698 SVGMatrix getScreenCTM() native;
7699 7699
7700 SVGMatrix getTransformToElement(SVGElement element) native; 7700 SVGMatrix getTransformToElement(SVGElement element) native;
7701 } 7701 }
7702 7702
7703 class SVGRenderingIntent native "SVGRenderingIntent" { 7703 class SVGRenderingIntent native "*SVGRenderingIntent" {
7704 7704
7705 var dartObjectLocalStorage; 7705 var dartObjectLocalStorage;
7706 7706
7707 String get typeName() native; 7707 String get typeName() native;
7708 } 7708 }
7709 7709
7710 class SVGSVGElement extends SVGElement native "SVGSVGElement" { 7710 class SVGSVGElement extends SVGElement native "*SVGSVGElement" {
7711 7711
7712 String contentScriptType; 7712 String contentScriptType;
7713 7713
7714 String contentStyleType; 7714 String contentStyleType;
7715 7715
7716 num currentScale; 7716 num currentScale;
7717 7717
7718 SVGPoint currentTranslate; 7718 SVGPoint currentTranslate;
7719 7719
7720 SVGAnimatedLength height; 7720 SVGAnimatedLength height;
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
7829 7829
7830 SVGAnimatedPreserveAspectRatio preserveAspectRatio; 7830 SVGAnimatedPreserveAspectRatio preserveAspectRatio;
7831 7831
7832 SVGAnimatedRect viewBox; 7832 SVGAnimatedRect viewBox;
7833 7833
7834 // From SVGZoomAndPan 7834 // From SVGZoomAndPan
7835 7835
7836 int zoomAndPan; 7836 int zoomAndPan;
7837 } 7837 }
7838 7838
7839 class SVGScriptElement extends SVGElement native "SVGScriptElement" { 7839 class SVGScriptElement extends SVGElement native "*SVGScriptElement" {
7840 7840
7841 String type; 7841 String type;
7842 7842
7843 // From SVGURIReference 7843 // From SVGURIReference
7844 7844
7845 SVGAnimatedString href; 7845 SVGAnimatedString href;
7846 7846
7847 // From SVGExternalResourcesRequired 7847 // From SVGExternalResourcesRequired
7848 7848
7849 SVGAnimatedBoolean externalResourcesRequired; 7849 SVGAnimatedBoolean externalResourcesRequired;
7850 } 7850 }
7851 7851
7852 class SVGSetElement extends SVGAnimationElement native "SVGSetElement" { 7852 class SVGSetElement extends SVGAnimationElement native "*SVGSetElement" {
7853 } 7853 }
7854 7854
7855 class SVGStopElement extends SVGElement native "SVGStopElement" { 7855 class SVGStopElement extends SVGElement native "*SVGStopElement" {
7856 7856
7857 SVGAnimatedNumber offset; 7857 SVGAnimatedNumber offset;
7858 7858
7859 // From SVGStylable 7859 // From SVGStylable
7860 7860
7861 SVGAnimatedString className; 7861 SVGAnimatedString className;
7862 7862
7863 CSSStyleDeclaration style; 7863 CSSStyleDeclaration style;
7864 7864
7865 CSSValue getPresentationAttribute(String name) native; 7865 CSSValue getPresentationAttribute(String name) native;
7866 } 7866 }
7867 7867
7868 class SVGStringList native "SVGStringList" { 7868 class SVGStringList native "*SVGStringList" {
7869 7869
7870 int numberOfItems; 7870 int numberOfItems;
7871 7871
7872 String appendItem(String item) native; 7872 String appendItem(String item) native;
7873 7873
7874 void clear() native; 7874 void clear() native;
7875 7875
7876 String getItem(int index) native; 7876 String getItem(int index) native;
7877 7877
7878 String initialize(String item) native; 7878 String initialize(String item) native;
7879 7879
7880 String insertItemBefore(String item, int index) native; 7880 String insertItemBefore(String item, int index) native;
7881 7881
7882 String removeItem(int index) native; 7882 String removeItem(int index) native;
7883 7883
7884 String replaceItem(String item, int index) native; 7884 String replaceItem(String item, int index) native;
7885 7885
7886 var dartObjectLocalStorage; 7886 var dartObjectLocalStorage;
7887 7887
7888 String get typeName() native; 7888 String get typeName() native;
7889 } 7889 }
7890 7890
7891 class SVGStylable native "SVGStylable" { 7891 class SVGStylable native "*SVGStylable" {
7892 7892
7893 SVGAnimatedString className; 7893 SVGAnimatedString className;
7894 7894
7895 CSSStyleDeclaration style; 7895 CSSStyleDeclaration style;
7896 7896
7897 CSSValue getPresentationAttribute(String name) native; 7897 CSSValue getPresentationAttribute(String name) native;
7898 7898
7899 var dartObjectLocalStorage; 7899 var dartObjectLocalStorage;
7900 7900
7901 String get typeName() native; 7901 String get typeName() native;
7902 } 7902 }
7903 7903
7904 class SVGStyleElement extends SVGElement native "SVGStyleElement" { 7904 class SVGStyleElement extends SVGElement native "*SVGStyleElement" {
7905 7905
7906 String media; 7906 String media;
7907 7907
7908 String title; 7908 String title;
7909 7909
7910 String type; 7910 String type;
7911 7911
7912 // From SVGLangSpace 7912 // From SVGLangSpace
7913 7913
7914 String xmllang; 7914 String xmllang;
7915 7915
7916 String xmlspace; 7916 String xmlspace;
7917 } 7917 }
7918 7918
7919 class SVGSwitchElement extends SVGElement native "SVGSwitchElement" { 7919 class SVGSwitchElement extends SVGElement native "*SVGSwitchElement" {
7920 7920
7921 // From SVGTests 7921 // From SVGTests
7922 7922
7923 SVGStringList requiredExtensions; 7923 SVGStringList requiredExtensions;
7924 7924
7925 SVGStringList requiredFeatures; 7925 SVGStringList requiredFeatures;
7926 7926
7927 SVGStringList systemLanguage; 7927 SVGStringList systemLanguage;
7928 7928
7929 bool hasExtension(String extension) native; 7929 bool hasExtension(String extension) native;
(...skipping 28 matching lines...) Expand all
7958 7958
7959 SVGRect getBBox() native; 7959 SVGRect getBBox() native;
7960 7960
7961 SVGMatrix getCTM() native; 7961 SVGMatrix getCTM() native;
7962 7962
7963 SVGMatrix getScreenCTM() native; 7963 SVGMatrix getScreenCTM() native;
7964 7964
7965 SVGMatrix getTransformToElement(SVGElement element) native; 7965 SVGMatrix getTransformToElement(SVGElement element) native;
7966 } 7966 }
7967 7967
7968 class SVGSymbolElement extends SVGElement native "SVGSymbolElement" { 7968 class SVGSymbolElement extends SVGElement native "*SVGSymbolElement" {
7969 7969
7970 // From SVGLangSpace 7970 // From SVGLangSpace
7971 7971
7972 String xmllang; 7972 String xmllang;
7973 7973
7974 String xmlspace; 7974 String xmlspace;
7975 7975
7976 // From SVGExternalResourcesRequired 7976 // From SVGExternalResourcesRequired
7977 7977
7978 SVGAnimatedBoolean externalResourcesRequired; 7978 SVGAnimatedBoolean externalResourcesRequired;
7979 7979
7980 // From SVGStylable 7980 // From SVGStylable
7981 7981
7982 SVGAnimatedString className; 7982 SVGAnimatedString className;
7983 7983
7984 CSSStyleDeclaration style; 7984 CSSStyleDeclaration style;
7985 7985
7986 CSSValue getPresentationAttribute(String name) native; 7986 CSSValue getPresentationAttribute(String name) native;
7987 7987
7988 // From SVGFitToViewBox 7988 // From SVGFitToViewBox
7989 7989
7990 SVGAnimatedPreserveAspectRatio preserveAspectRatio; 7990 SVGAnimatedPreserveAspectRatio preserveAspectRatio;
7991 7991
7992 SVGAnimatedRect viewBox; 7992 SVGAnimatedRect viewBox;
7993 } 7993 }
7994 7994
7995 class SVGTRefElement extends SVGTextPositioningElement native "SVGTRefElement" { 7995 class SVGTRefElement extends SVGTextPositioningElement native "*SVGTRefElement" {
7996 7996
7997 // From SVGURIReference 7997 // From SVGURIReference
7998 7998
7999 SVGAnimatedString href; 7999 SVGAnimatedString href;
8000 } 8000 }
8001 8001
8002 class SVGTSpanElement extends SVGTextPositioningElement native "SVGTSpanElement" { 8002 class SVGTSpanElement extends SVGTextPositioningElement native "*SVGTSpanElement " {
8003 } 8003 }
8004 8004
8005 class SVGTests native "SVGTests" { 8005 class SVGTests native "*SVGTests" {
8006 8006
8007 SVGStringList requiredExtensions; 8007 SVGStringList requiredExtensions;
8008 8008
8009 SVGStringList requiredFeatures; 8009 SVGStringList requiredFeatures;
8010 8010
8011 SVGStringList systemLanguage; 8011 SVGStringList systemLanguage;
8012 8012
8013 bool hasExtension(String extension) native; 8013 bool hasExtension(String extension) native;
8014 8014
8015 var dartObjectLocalStorage; 8015 var dartObjectLocalStorage;
8016 8016
8017 String get typeName() native; 8017 String get typeName() native;
8018 } 8018 }
8019 8019
8020 class SVGTextContentElement extends SVGElement native "SVGTextContentElement" { 8020 class SVGTextContentElement extends SVGElement native "*SVGTextContentElement" {
8021 8021
8022 SVGAnimatedEnumeration lengthAdjust; 8022 SVGAnimatedEnumeration lengthAdjust;
8023 8023
8024 SVGAnimatedLength textLength; 8024 SVGAnimatedLength textLength;
8025 8025
8026 int getCharNumAtPosition(SVGPoint point) native; 8026 int getCharNumAtPosition(SVGPoint point) native;
8027 8027
8028 num getComputedTextLength() native; 8028 num getComputedTextLength() native;
8029 8029
8030 SVGPoint getEndPositionOfChar(int offset) native; 8030 SVGPoint getEndPositionOfChar(int offset) native;
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
8063 8063
8064 // From SVGStylable 8064 // From SVGStylable
8065 8065
8066 SVGAnimatedString className; 8066 SVGAnimatedString className;
8067 8067
8068 CSSStyleDeclaration style; 8068 CSSStyleDeclaration style;
8069 8069
8070 CSSValue getPresentationAttribute(String name) native; 8070 CSSValue getPresentationAttribute(String name) native;
8071 } 8071 }
8072 8072
8073 class SVGTextElement extends SVGTextPositioningElement native "SVGTextElement" { 8073 class SVGTextElement extends SVGTextPositioningElement native "*SVGTextElement" {
8074 8074
8075 // From SVGTransformable 8075 // From SVGTransformable
8076 8076
8077 SVGAnimatedTransformList transform; 8077 SVGAnimatedTransformList transform;
8078 8078
8079 // From SVGLocatable 8079 // From SVGLocatable
8080 8080
8081 SVGElement farthestViewportElement; 8081 SVGElement farthestViewportElement;
8082 8082
8083 SVGElement nearestViewportElement; 8083 SVGElement nearestViewportElement;
8084 8084
8085 SVGRect getBBox() native; 8085 SVGRect getBBox() native;
8086 8086
8087 SVGMatrix getCTM() native; 8087 SVGMatrix getCTM() native;
8088 8088
8089 SVGMatrix getScreenCTM() native; 8089 SVGMatrix getScreenCTM() native;
8090 8090
8091 SVGMatrix getTransformToElement(SVGElement element) native; 8091 SVGMatrix getTransformToElement(SVGElement element) native;
8092 } 8092 }
8093 8093
8094 class SVGTextPathElement extends SVGTextContentElement native "SVGTextPathElemen t" { 8094 class SVGTextPathElement extends SVGTextContentElement native "*SVGTextPathEleme nt" {
8095 8095
8096 SVGAnimatedEnumeration method; 8096 SVGAnimatedEnumeration method;
8097 8097
8098 SVGAnimatedEnumeration spacing; 8098 SVGAnimatedEnumeration spacing;
8099 8099
8100 SVGAnimatedLength startOffset; 8100 SVGAnimatedLength startOffset;
8101 8101
8102 // From SVGURIReference 8102 // From SVGURIReference
8103 8103
8104 SVGAnimatedString href; 8104 SVGAnimatedString href;
8105 } 8105 }
8106 8106
8107 class SVGTextPositioningElement extends SVGTextContentElement native "SVGTextPos itioningElement" { 8107 class SVGTextPositioningElement extends SVGTextContentElement native "*SVGTextPo sitioningElement" {
8108 8108
8109 SVGAnimatedLengthList dx; 8109 SVGAnimatedLengthList dx;
8110 8110
8111 SVGAnimatedLengthList dy; 8111 SVGAnimatedLengthList dy;
8112 8112
8113 SVGAnimatedNumberList rotate; 8113 SVGAnimatedNumberList rotate;
8114 8114
8115 SVGAnimatedLengthList x; 8115 SVGAnimatedLengthList x;
8116 8116
8117 SVGAnimatedLengthList y; 8117 SVGAnimatedLengthList y;
8118 } 8118 }
8119 8119
8120 class SVGTitleElement extends SVGElement native "SVGTitleElement" { 8120 class SVGTitleElement extends SVGElement native "*SVGTitleElement" {
8121 8121
8122 // From SVGLangSpace 8122 // From SVGLangSpace
8123 8123
8124 String xmllang; 8124 String xmllang;
8125 8125
8126 String xmlspace; 8126 String xmlspace;
8127 8127
8128 // From SVGStylable 8128 // From SVGStylable
8129 8129
8130 SVGAnimatedString className; 8130 SVGAnimatedString className;
8131 8131
8132 CSSStyleDeclaration style; 8132 CSSStyleDeclaration style;
8133 8133
8134 CSSValue getPresentationAttribute(String name) native; 8134 CSSValue getPresentationAttribute(String name) native;
8135 } 8135 }
8136 8136
8137 class SVGTransform native "SVGTransform" { 8137 class SVGTransform native "*SVGTransform" {
8138 8138
8139 num angle; 8139 num angle;
8140 8140
8141 SVGMatrix matrix; 8141 SVGMatrix matrix;
8142 8142
8143 int type; 8143 int type;
8144 8144
8145 void setMatrix(SVGMatrix matrix) native; 8145 void setMatrix(SVGMatrix matrix) native;
8146 8146
8147 void setRotate(num angle, num cx, num cy) native; 8147 void setRotate(num angle, num cx, num cy) native;
8148 8148
8149 void setScale(num sx, num sy) native; 8149 void setScale(num sx, num sy) native;
8150 8150
8151 void setSkewX(num angle) native; 8151 void setSkewX(num angle) native;
8152 8152
8153 void setSkewY(num angle) native; 8153 void setSkewY(num angle) native;
8154 8154
8155 void setTranslate(num tx, num ty) native; 8155 void setTranslate(num tx, num ty) native;
8156 8156
8157 var dartObjectLocalStorage; 8157 var dartObjectLocalStorage;
8158 8158
8159 String get typeName() native; 8159 String get typeName() native;
8160 } 8160 }
8161 8161
8162 class SVGTransformList native "SVGTransformList" { 8162 class SVGTransformList native "*SVGTransformList" {
8163 8163
8164 int numberOfItems; 8164 int numberOfItems;
8165 8165
8166 SVGTransform appendItem(SVGTransform item) native; 8166 SVGTransform appendItem(SVGTransform item) native;
8167 8167
8168 void clear() native; 8168 void clear() native;
8169 8169
8170 SVGTransform consolidate() native; 8170 SVGTransform consolidate() native;
8171 8171
8172 SVGTransform createSVGTransformFromMatrix(SVGMatrix matrix) native; 8172 SVGTransform createSVGTransformFromMatrix(SVGMatrix matrix) native;
8173 8173
8174 SVGTransform getItem(int index) native; 8174 SVGTransform getItem(int index) native;
8175 8175
8176 SVGTransform initialize(SVGTransform item) native; 8176 SVGTransform initialize(SVGTransform item) native;
8177 8177
8178 SVGTransform insertItemBefore(SVGTransform item, int index) native; 8178 SVGTransform insertItemBefore(SVGTransform item, int index) native;
8179 8179
8180 SVGTransform removeItem(int index) native; 8180 SVGTransform removeItem(int index) native;
8181 8181
8182 SVGTransform replaceItem(SVGTransform item, int index) native; 8182 SVGTransform replaceItem(SVGTransform item, int index) native;
8183 8183
8184 var dartObjectLocalStorage; 8184 var dartObjectLocalStorage;
8185 8185
8186 String get typeName() native; 8186 String get typeName() native;
8187 } 8187 }
8188 8188
8189 class SVGTransformable extends SVGLocatable native "SVGTransformable" { 8189 class SVGTransformable extends SVGLocatable native "*SVGTransformable" {
8190 8190
8191 SVGAnimatedTransformList transform; 8191 SVGAnimatedTransformList transform;
8192 } 8192 }
8193 8193
8194 class SVGURIReference native "SVGURIReference" { 8194 class SVGURIReference native "*SVGURIReference" {
8195 8195
8196 SVGAnimatedString href; 8196 SVGAnimatedString href;
8197 8197
8198 var dartObjectLocalStorage; 8198 var dartObjectLocalStorage;
8199 8199
8200 String get typeName() native; 8200 String get typeName() native;
8201 } 8201 }
8202 8202
8203 class SVGUnitTypes native "SVGUnitTypes" { 8203 class SVGUnitTypes native "*SVGUnitTypes" {
8204 8204
8205 var dartObjectLocalStorage; 8205 var dartObjectLocalStorage;
8206 8206
8207 String get typeName() native; 8207 String get typeName() native;
8208 } 8208 }
8209 8209
8210 class SVGUseElement extends SVGElement native "SVGUseElement" { 8210 class SVGUseElement extends SVGElement native "*SVGUseElement" {
8211 8211
8212 SVGElementInstance animatedInstanceRoot; 8212 SVGElementInstance animatedInstanceRoot;
8213 8213
8214 SVGAnimatedLength height; 8214 SVGAnimatedLength height;
8215 8215
8216 SVGElementInstance instanceRoot; 8216 SVGElementInstance instanceRoot;
8217 8217
8218 SVGAnimatedLength width; 8218 SVGAnimatedLength width;
8219 8219
8220 SVGAnimatedLength x; 8220 SVGAnimatedLength x;
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
8265 8265
8266 SVGRect getBBox() native; 8266 SVGRect getBBox() native;
8267 8267
8268 SVGMatrix getCTM() native; 8268 SVGMatrix getCTM() native;
8269 8269
8270 SVGMatrix getScreenCTM() native; 8270 SVGMatrix getScreenCTM() native;
8271 8271
8272 SVGMatrix getTransformToElement(SVGElement element) native; 8272 SVGMatrix getTransformToElement(SVGElement element) native;
8273 } 8273 }
8274 8274
8275 class SVGVKernElement extends SVGElement native "SVGVKernElement" { 8275 class SVGVKernElement extends SVGElement native "*SVGVKernElement" {
8276 } 8276 }
8277 8277
8278 class SVGViewElement extends SVGElement native "SVGViewElement" { 8278 class SVGViewElement extends SVGElement native "*SVGViewElement" {
8279 8279
8280 SVGStringList viewTarget; 8280 SVGStringList viewTarget;
8281 8281
8282 // From SVGExternalResourcesRequired 8282 // From SVGExternalResourcesRequired
8283 8283
8284 SVGAnimatedBoolean externalResourcesRequired; 8284 SVGAnimatedBoolean externalResourcesRequired;
8285 8285
8286 // From SVGFitToViewBox 8286 // From SVGFitToViewBox
8287 8287
8288 SVGAnimatedPreserveAspectRatio preserveAspectRatio; 8288 SVGAnimatedPreserveAspectRatio preserveAspectRatio;
8289 8289
8290 SVGAnimatedRect viewBox; 8290 SVGAnimatedRect viewBox;
8291 8291
8292 // From SVGZoomAndPan 8292 // From SVGZoomAndPan
8293 8293
8294 int zoomAndPan; 8294 int zoomAndPan;
8295 } 8295 }
8296 8296
8297 class SVGViewSpec extends SVGZoomAndPan native "SVGViewSpec" { 8297 class SVGViewSpec extends SVGZoomAndPan native "*SVGViewSpec" {
8298 8298
8299 String preserveAspectRatioString; 8299 String preserveAspectRatioString;
8300 8300
8301 SVGTransformList transform; 8301 SVGTransformList transform;
8302 8302
8303 String transformString; 8303 String transformString;
8304 8304
8305 String viewBoxString; 8305 String viewBoxString;
8306 8306
8307 SVGElement viewTarget; 8307 SVGElement viewTarget;
8308 8308
8309 String viewTargetString; 8309 String viewTargetString;
8310 8310
8311 // From SVGFitToViewBox 8311 // From SVGFitToViewBox
8312 8312
8313 SVGAnimatedPreserveAspectRatio preserveAspectRatio; 8313 SVGAnimatedPreserveAspectRatio preserveAspectRatio;
8314 8314
8315 SVGAnimatedRect viewBox; 8315 SVGAnimatedRect viewBox;
8316 } 8316 }
8317 8317
8318 class SVGZoomAndPan native "SVGZoomAndPan" { 8318 class SVGZoomAndPan native "*SVGZoomAndPan" {
8319 8319
8320 int zoomAndPan; 8320 int zoomAndPan;
8321 8321
8322 var dartObjectLocalStorage; 8322 var dartObjectLocalStorage;
8323 8323
8324 String get typeName() native; 8324 String get typeName() native;
8325 } 8325 }
8326 8326
8327 class SVGZoomEvent extends UIEvent native "SVGZoomEvent" { 8327 class SVGZoomEvent extends UIEvent native "*SVGZoomEvent" {
8328 8328
8329 num newScale; 8329 num newScale;
8330 8330
8331 SVGPoint newTranslate; 8331 SVGPoint newTranslate;
8332 8332
8333 num previousScale; 8333 num previousScale;
8334 8334
8335 SVGPoint previousTranslate; 8335 SVGPoint previousTranslate;
8336 8336
8337 SVGRect zoomRectScreen; 8337 SVGRect zoomRectScreen;
8338 } 8338 }
8339 8339
8340 class Screen native "Screen" { 8340 class Screen native "*Screen" {
8341 8341
8342 int availHeight; 8342 int availHeight;
8343 8343
8344 int availLeft; 8344 int availLeft;
8345 8345
8346 int availTop; 8346 int availTop;
8347 8347
8348 int availWidth; 8348 int availWidth;
8349 8349
8350 int colorDepth; 8350 int colorDepth;
8351 8351
8352 int height; 8352 int height;
8353 8353
8354 int pixelDepth; 8354 int pixelDepth;
8355 8355
8356 int width; 8356 int width;
8357 8357
8358 var dartObjectLocalStorage; 8358 var dartObjectLocalStorage;
8359 8359
8360 String get typeName() native; 8360 String get typeName() native;
8361 } 8361 }
8362 8362
8363 class ScriptProfile native "ScriptProfile" { 8363 class ScriptProfile native "*ScriptProfile" {
8364 8364
8365 ScriptProfileNode head; 8365 ScriptProfileNode head;
8366 8366
8367 String title; 8367 String title;
8368 8368
8369 int uid; 8369 int uid;
8370 8370
8371 var dartObjectLocalStorage; 8371 var dartObjectLocalStorage;
8372 8372
8373 String get typeName() native; 8373 String get typeName() native;
8374 } 8374 }
8375 8375
8376 class ScriptProfileNode native "ScriptProfileNode" { 8376 class ScriptProfileNode native "*ScriptProfileNode" {
8377 8377
8378 int callUID; 8378 int callUID;
8379 8379
8380 List children; 8380 List children;
8381 8381
8382 String functionName; 8382 String functionName;
8383 8383
8384 int lineNumber; 8384 int lineNumber;
8385 8385
8386 int numberOfCalls; 8386 int numberOfCalls;
8387 8387
8388 num selfTime; 8388 num selfTime;
8389 8389
8390 num totalTime; 8390 num totalTime;
8391 8391
8392 String url; 8392 String url;
8393 8393
8394 bool visible; 8394 bool visible;
8395 8395
8396 var dartObjectLocalStorage; 8396 var dartObjectLocalStorage;
8397 8397
8398 String get typeName() native; 8398 String get typeName() native;
8399 } 8399 }
8400 8400
8401 class SharedWorker extends AbstractWorker native "SharedWorker" { 8401 class SharedWorker extends AbstractWorker native "*SharedWorker" {
8402 8402
8403 MessagePort port; 8403 MessagePort port;
8404 } 8404 }
8405 8405
8406 class SharedWorkercontext extends WorkerContext native "SharedWorkercontext" { 8406 class SharedWorkercontext extends WorkerContext native "*SharedWorkercontext" {
8407 8407
8408 String name; 8408 String name;
8409 8409
8410 EventListener onconnect; 8410 EventListener onconnect;
8411 } 8411 }
8412 8412
8413 class SpeechInputEvent extends Event native "SpeechInputEvent" { 8413 class SpeechInputEvent extends Event native "*SpeechInputEvent" {
8414 8414
8415 SpeechInputResultList results; 8415 SpeechInputResultList results;
8416 } 8416 }
8417 8417
8418 class SpeechInputResult native "SpeechInputResult" { 8418 class SpeechInputResult native "*SpeechInputResult" {
8419 8419
8420 num confidence; 8420 num confidence;
8421 8421
8422 String utterance; 8422 String utterance;
8423 8423
8424 var dartObjectLocalStorage; 8424 var dartObjectLocalStorage;
8425 8425
8426 String get typeName() native; 8426 String get typeName() native;
8427 } 8427 }
8428 8428
8429 class SpeechInputResultList native "SpeechInputResultList" { 8429 class SpeechInputResultList native "*SpeechInputResultList" {
8430 8430
8431 int length; 8431 int length;
8432 8432
8433 SpeechInputResult item(int index) native; 8433 SpeechInputResult item(int index) native;
8434 8434
8435 var dartObjectLocalStorage; 8435 var dartObjectLocalStorage;
8436 8436
8437 String get typeName() native; 8437 String get typeName() native;
8438 } 8438 }
8439 8439
8440 class Storage native "Storage" { 8440 class Storage native "*Storage" {
8441 8441
8442 int length; 8442 int length;
8443 8443
8444 void clear() native; 8444 void clear() native;
8445 8445
8446 String getItem(String key) native; 8446 String getItem(String key) native;
8447 8447
8448 String key(int index) native; 8448 String key(int index) native;
8449 8449
8450 void removeItem(String key) native; 8450 void removeItem(String key) native;
8451 8451
8452 void setItem(String key, String data) native; 8452 void setItem(String key, String data) native;
8453 8453
8454 var dartObjectLocalStorage; 8454 var dartObjectLocalStorage;
8455 8455
8456 String get typeName() native; 8456 String get typeName() native;
8457 } 8457 }
8458 8458
8459 class StorageEvent extends Event native "StorageEvent" { 8459 class StorageEvent extends Event native "*StorageEvent" {
8460 8460
8461 String key; 8461 String key;
8462 8462
8463 String newValue; 8463 String newValue;
8464 8464
8465 String oldValue; 8465 String oldValue;
8466 8466
8467 Storage storageArea; 8467 Storage storageArea;
8468 8468
8469 String url; 8469 String url;
8470 8470
8471 void initStorageEvent(String typeArg, bool canBubbleArg, bool cancelableArg, S tring keyArg, String oldValueArg, String newValueArg, String urlArg, Storage sto rageAreaArg) native; 8471 void initStorageEvent(String typeArg, bool canBubbleArg, bool cancelableArg, S tring keyArg, String oldValueArg, String newValueArg, String urlArg, Storage sto rageAreaArg) native;
8472 } 8472 }
8473 8473
8474 class StorageInfo native "StorageInfo" { 8474 class StorageInfo native "*StorageInfo" {
8475 8475
8476 void queryUsageAndQuota(int storageType, [StorageInfoUsageCallback usageCallba ck = null, StorageInfoErrorCallback errorCallback = null]) native; 8476 void queryUsageAndQuota(int storageType, [StorageInfoUsageCallback usageCallba ck = null, StorageInfoErrorCallback errorCallback = null]) native;
8477 8477
8478 void requestQuota(int storageType, int newQuotaInBytes, [StorageInfoQuotaCallb ack quotaCallback = null, StorageInfoErrorCallback errorCallback = null]) native ; 8478 void requestQuota(int storageType, int newQuotaInBytes, [StorageInfoQuotaCallb ack quotaCallback = null, StorageInfoErrorCallback errorCallback = null]) native ;
8479 8479
8480 var dartObjectLocalStorage; 8480 var dartObjectLocalStorage;
8481 8481
8482 String get typeName() native; 8482 String get typeName() native;
8483 } 8483 }
8484 8484
8485 class StorageInfoErrorCallback native "StorageInfoErrorCallback" { 8485 class StorageInfoErrorCallback native "*StorageInfoErrorCallback" {
8486 8486
8487 bool handleEvent(DOMException error) native; 8487 bool handleEvent(DOMException error) native;
8488 8488
8489 var dartObjectLocalStorage; 8489 var dartObjectLocalStorage;
8490 8490
8491 String get typeName() native; 8491 String get typeName() native;
8492 } 8492 }
8493 8493
8494 class StorageInfoQuotaCallback native "StorageInfoQuotaCallback" { 8494 class StorageInfoQuotaCallback native "*StorageInfoQuotaCallback" {
8495 8495
8496 bool handleEvent(int grantedQuotaInBytes) native; 8496 bool handleEvent(int grantedQuotaInBytes) native;
8497 8497
8498 var dartObjectLocalStorage; 8498 var dartObjectLocalStorage;
8499 8499
8500 String get typeName() native; 8500 String get typeName() native;
8501 } 8501 }
8502 8502
8503 class StorageInfoUsageCallback native "StorageInfoUsageCallback" { 8503 class StorageInfoUsageCallback native "*StorageInfoUsageCallback" {
8504 8504
8505 bool handleEvent(int currentUsageInBytes, int currentQuotaInBytes) native; 8505 bool handleEvent(int currentUsageInBytes, int currentQuotaInBytes) native;
8506 8506
8507 var dartObjectLocalStorage; 8507 var dartObjectLocalStorage;
8508 8508
8509 String get typeName() native; 8509 String get typeName() native;
8510 } 8510 }
8511 8511
8512 class StringCallback native "StringCallback" { 8512 class StringCallback native "*StringCallback" {
8513 8513
8514 bool handleEvent(String data) native; 8514 bool handleEvent(String data) native;
8515 8515
8516 var dartObjectLocalStorage; 8516 var dartObjectLocalStorage;
8517 8517
8518 String get typeName() native; 8518 String get typeName() native;
8519 } 8519 }
8520 8520
8521 class StyleMedia native "StyleMedia" { 8521 class StyleMedia native "*StyleMedia" {
8522 8522
8523 String type; 8523 String type;
8524 8524
8525 bool matchMedium(String mediaquery) native; 8525 bool matchMedium(String mediaquery) native;
8526 8526
8527 var dartObjectLocalStorage; 8527 var dartObjectLocalStorage;
8528 8528
8529 String get typeName() native; 8529 String get typeName() native;
8530 } 8530 }
8531 8531
8532 class StyleSheet native "StyleSheet" { 8532 class StyleSheet native "*StyleSheet" {
8533 8533
8534 bool disabled; 8534 bool disabled;
8535 8535
8536 String href; 8536 String href;
8537 8537
8538 MediaList media; 8538 MediaList media;
8539 8539
8540 Node ownerNode; 8540 Node ownerNode;
8541 8541
8542 StyleSheet parentStyleSheet; 8542 StyleSheet parentStyleSheet;
8543 8543
8544 String title; 8544 String title;
8545 8545
8546 String type; 8546 String type;
8547 8547
8548 var dartObjectLocalStorage; 8548 var dartObjectLocalStorage;
8549 8549
8550 String get typeName() native; 8550 String get typeName() native;
8551 } 8551 }
8552 8552
8553 class StyleSheetList native "StyleSheetList" { 8553 class StyleSheetList native "*StyleSheetList" {
8554 8554
8555 int length; 8555 int length;
8556 8556
8557 StyleSheet operator[](int index) native; 8557 StyleSheet operator[](int index) native;
8558 8558
8559 StyleSheet item(int index) native; 8559 StyleSheet item(int index) native;
8560 8560
8561 var dartObjectLocalStorage; 8561 var dartObjectLocalStorage;
8562 8562
8563 String get typeName() native; 8563 String get typeName() native;
8564 } 8564 }
8565 8565
8566 class Text extends CharacterData native "Text" { 8566 class Text extends CharacterData native "*Text" {
8567 8567
8568 String wholeText; 8568 String wholeText;
8569 8569
8570 Text replaceWholeText(String content) native; 8570 Text replaceWholeText(String content) native;
8571 8571
8572 Text splitText(int offset) native; 8572 Text splitText(int offset) native;
8573 } 8573 }
8574 8574
8575 class TextEvent extends UIEvent native "TextEvent" { 8575 class TextEvent extends UIEvent native "*TextEvent" {
8576 8576
8577 String data; 8577 String data;
8578 8578
8579 void initTextEvent(String typeArg, bool canBubbleArg, bool cancelableArg, DOMW indow viewArg, String dataArg) native; 8579 void initTextEvent(String typeArg, bool canBubbleArg, bool cancelableArg, DOMW indow viewArg, String dataArg) native;
8580 } 8580 }
8581 8581
8582 class TextMetrics native "TextMetrics" { 8582 class TextMetrics native "*TextMetrics" {
8583 8583
8584 num width; 8584 num width;
8585 8585
8586 var dartObjectLocalStorage; 8586 var dartObjectLocalStorage;
8587 8587
8588 String get typeName() native; 8588 String get typeName() native;
8589 } 8589 }
8590 8590
8591 class TextTrack native "TextTrack" { 8591 class TextTrack native "*TextTrack" {
8592 8592
8593 TextTrackCueList activeCues; 8593 TextTrackCueList activeCues;
8594 8594
8595 TextTrackCueList cues; 8595 TextTrackCueList cues;
8596 8596
8597 String kind; 8597 String kind;
8598 8598
8599 String label; 8599 String label;
8600 8600
8601 String language; 8601 String language;
8602 8602
8603 int mode; 8603 int mode;
8604 8604
8605 int readyState; 8605 int readyState;
8606 8606
8607 void addCue(TextTrackCue cue) native; 8607 void addCue(TextTrackCue cue) native;
8608 8608
8609 void removeCue(TextTrackCue cue) native; 8609 void removeCue(TextTrackCue cue) native;
8610 8610
8611 var dartObjectLocalStorage; 8611 var dartObjectLocalStorage;
8612 8612
8613 String get typeName() native; 8613 String get typeName() native;
8614 } 8614 }
8615 8615
8616 class TextTrackCue native "TextTrackCue" { 8616 class TextTrackCue native "*TextTrackCue" {
8617 8617
8618 String alignment; 8618 String alignment;
8619 8619
8620 String direction; 8620 String direction;
8621 8621
8622 num endTime; 8622 num endTime;
8623 8623
8624 String id; 8624 String id;
8625 8625
8626 int linePosition; 8626 int linePosition;
(...skipping 12 matching lines...) Expand all
8639 8639
8640 DocumentFragment getCueAsHTML() native; 8640 DocumentFragment getCueAsHTML() native;
8641 8641
8642 String getCueAsSource() native; 8642 String getCueAsSource() native;
8643 8643
8644 var dartObjectLocalStorage; 8644 var dartObjectLocalStorage;
8645 8645
8646 String get typeName() native; 8646 String get typeName() native;
8647 } 8647 }
8648 8648
8649 class TextTrackCueList native "TextTrackCueList" { 8649 class TextTrackCueList native "*TextTrackCueList" {
8650 8650
8651 int length; 8651 int length;
8652 8652
8653 TextTrackCue getCueById(String id) native; 8653 TextTrackCue getCueById(String id) native;
8654 8654
8655 TextTrackCue item(int index) native; 8655 TextTrackCue item(int index) native;
8656 8656
8657 var dartObjectLocalStorage; 8657 var dartObjectLocalStorage;
8658 8658
8659 String get typeName() native; 8659 String get typeName() native;
8660 } 8660 }
8661 8661
8662 class TimeRanges native "TimeRanges" { 8662 class TimeRanges native "*TimeRanges" {
8663 8663
8664 int length; 8664 int length;
8665 8665
8666 num end(int index) native; 8666 num end(int index) native;
8667 8667
8668 num start(int index) native; 8668 num start(int index) native;
8669 8669
8670 var dartObjectLocalStorage; 8670 var dartObjectLocalStorage;
8671 8671
8672 String get typeName() native; 8672 String get typeName() native;
8673 } 8673 }
8674 8674
8675 class Touch native "Touch" { 8675 class Touch native "*Touch" {
8676 8676
8677 int clientX; 8677 int clientX;
8678 8678
8679 int clientY; 8679 int clientY;
8680 8680
8681 int identifier; 8681 int identifier;
8682 8682
8683 int pageX; 8683 int pageX;
8684 8684
8685 int pageY; 8685 int pageY;
(...skipping 10 matching lines...) Expand all
8696 8696
8697 int webkitRadiusY; 8697 int webkitRadiusY;
8698 8698
8699 num webkitRotationAngle; 8699 num webkitRotationAngle;
8700 8700
8701 var dartObjectLocalStorage; 8701 var dartObjectLocalStorage;
8702 8702
8703 String get typeName() native; 8703 String get typeName() native;
8704 } 8704 }
8705 8705
8706 class TouchEvent extends UIEvent native "TouchEvent" { 8706 class TouchEvent extends UIEvent native "*TouchEvent" {
8707 8707
8708 bool altKey; 8708 bool altKey;
8709 8709
8710 TouchList changedTouches; 8710 TouchList changedTouches;
8711 8711
8712 bool ctrlKey; 8712 bool ctrlKey;
8713 8713
8714 bool metaKey; 8714 bool metaKey;
8715 8715
8716 bool shiftKey; 8716 bool shiftKey;
8717 8717
8718 TouchList targetTouches; 8718 TouchList targetTouches;
8719 8719
8720 TouchList touches; 8720 TouchList touches;
8721 8721
8722 void initTouchEvent(TouchList touches, TouchList targetTouches, TouchList chan gedTouches, String type, DOMWindow view, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) native; 8722 void initTouchEvent(TouchList touches, TouchList targetTouches, TouchList chan gedTouches, String type, DOMWindow view, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) native;
8723 } 8723 }
8724 8724
8725 class TouchList native "TouchList" { 8725 class TouchList native "*TouchList" {
8726 8726
8727 int length; 8727 int length;
8728 8728
8729 Touch operator[](int index) native; 8729 Touch operator[](int index) native;
8730 8730
8731 Touch item(int index) native; 8731 Touch item(int index) native;
8732 8732
8733 var dartObjectLocalStorage; 8733 var dartObjectLocalStorage;
8734 8734
8735 String get typeName() native; 8735 String get typeName() native;
8736 } 8736 }
8737 8737
8738 class TreeWalker native "TreeWalker" { 8738 class TreeWalker native "*TreeWalker" {
8739 8739
8740 Node currentNode; 8740 Node currentNode;
8741 8741
8742 bool expandEntityReferences; 8742 bool expandEntityReferences;
8743 8743
8744 NodeFilter filter; 8744 NodeFilter filter;
8745 8745
8746 Node root; 8746 Node root;
8747 8747
8748 int whatToShow; 8748 int whatToShow;
(...skipping 10 matching lines...) Expand all
8759 8759
8760 Node previousNode() native; 8760 Node previousNode() native;
8761 8761
8762 Node previousSibling() native; 8762 Node previousSibling() native;
8763 8763
8764 var dartObjectLocalStorage; 8764 var dartObjectLocalStorage;
8765 8765
8766 String get typeName() native; 8766 String get typeName() native;
8767 } 8767 }
8768 8768
8769 class UIEvent extends Event native "UIEvent" { 8769 class UIEvent extends Event native "*UIEvent" {
8770 8770
8771 int charCode; 8771 int charCode;
8772 8772
8773 int detail; 8773 int detail;
8774 8774
8775 int keyCode; 8775 int keyCode;
8776 8776
8777 int layerX; 8777 int layerX;
8778 8778
8779 int layerY; 8779 int layerY;
8780 8780
8781 int pageX; 8781 int pageX;
8782 8782
8783 int pageY; 8783 int pageY;
8784 8784
8785 DOMWindow view; 8785 DOMWindow view;
8786 8786
8787 int which; 8787 int which;
8788 8788
8789 void initUIEvent(String type, bool canBubble, bool cancelable, DOMWindow view, int detail) native; 8789 void initUIEvent(String type, bool canBubble, bool cancelable, DOMWindow view, int detail) native;
8790 } 8790 }
8791 8791
8792 class Uint16Array extends ArrayBufferView native "Uint16Array" { 8792 class Uint16Array extends ArrayBufferView native "*Uint16Array" {
8793 8793
8794 int length; 8794 int length;
8795 8795
8796 Uint16Array subarray(int start, [int end = null]) native; 8796 Uint16Array subarray(int start, [int end = null]) native;
8797 } 8797 }
8798 8798
8799 class Uint32Array extends ArrayBufferView native "Uint32Array" { 8799 class Uint32Array extends ArrayBufferView native "*Uint32Array" {
8800 8800
8801 int length; 8801 int length;
8802 8802
8803 Uint32Array subarray(int start, [int end = null]) native; 8803 Uint32Array subarray(int start, [int end = null]) native;
8804 } 8804 }
8805 8805
8806 class Uint8Array extends ArrayBufferView native "Uint8Array" { 8806 class Uint8Array extends ArrayBufferView native "*Uint8Array" {
8807 8807
8808 int length; 8808 int length;
8809 8809
8810 Uint8Array subarray(int start, [int end = null]) native; 8810 Uint8Array subarray(int start, [int end = null]) native;
8811 } 8811 }
8812 8812
8813 class ValidityState native "ValidityState" { 8813 class ValidityState native "*ValidityState" {
8814 8814
8815 bool customError; 8815 bool customError;
8816 8816
8817 bool patternMismatch; 8817 bool patternMismatch;
8818 8818
8819 bool rangeOverflow; 8819 bool rangeOverflow;
8820 8820
8821 bool rangeUnderflow; 8821 bool rangeUnderflow;
8822 8822
8823 bool stepMismatch; 8823 bool stepMismatch;
8824 8824
8825 bool tooLong; 8825 bool tooLong;
8826 8826
8827 bool typeMismatch; 8827 bool typeMismatch;
8828 8828
8829 bool valid; 8829 bool valid;
8830 8830
8831 bool valueMissing; 8831 bool valueMissing;
8832 8832
8833 var dartObjectLocalStorage; 8833 var dartObjectLocalStorage;
8834 8834
8835 String get typeName() native; 8835 String get typeName() native;
8836 } 8836 }
8837 8837
8838 class VoidCallback native "VoidCallback" { 8838 class VoidCallback native "*VoidCallback" {
8839 8839
8840 void handleEvent() native; 8840 void handleEvent() native;
8841 8841
8842 var dartObjectLocalStorage; 8842 var dartObjectLocalStorage;
8843 8843
8844 String get typeName() native; 8844 String get typeName() native;
8845 } 8845 }
8846 8846
8847 class WebGLActiveInfo native "WebGLActiveInfo" { 8847 class WebGLActiveInfo native "*WebGLActiveInfo" {
8848 8848
8849 String name; 8849 String name;
8850 8850
8851 int size; 8851 int size;
8852 8852
8853 int type; 8853 int type;
8854 8854
8855 var dartObjectLocalStorage; 8855 var dartObjectLocalStorage;
8856 8856
8857 String get typeName() native; 8857 String get typeName() native;
8858 } 8858 }
8859 8859
8860 class WebGLBuffer native "WebGLBuffer" { 8860 class WebGLBuffer native "*WebGLBuffer" {
8861 8861
8862 var dartObjectLocalStorage; 8862 var dartObjectLocalStorage;
8863 8863
8864 String get typeName() native; 8864 String get typeName() native;
8865 } 8865 }
8866 8866
8867 class WebGLContextAttributes native "WebGLContextAttributes" { 8867 class WebGLContextAttributes native "*WebGLContextAttributes" {
8868 8868
8869 bool alpha; 8869 bool alpha;
8870 8870
8871 bool antialias; 8871 bool antialias;
8872 8872
8873 bool depth; 8873 bool depth;
8874 8874
8875 bool premultipliedAlpha; 8875 bool premultipliedAlpha;
8876 8876
8877 bool preserveDrawingBuffer; 8877 bool preserveDrawingBuffer;
8878 8878
8879 bool stencil; 8879 bool stencil;
8880 8880
8881 var dartObjectLocalStorage; 8881 var dartObjectLocalStorage;
8882 8882
8883 String get typeName() native; 8883 String get typeName() native;
8884 } 8884 }
8885 8885
8886 class WebGLContextEvent extends Event native "WebGLContextEvent" { 8886 class WebGLContextEvent extends Event native "*WebGLContextEvent" {
8887 8887
8888 String statusMessage; 8888 String statusMessage;
8889 } 8889 }
8890 8890
8891 class WebGLDebugRendererInfo native "WebGLDebugRendererInfo" { 8891 class WebGLDebugRendererInfo native "*WebGLDebugRendererInfo" {
8892 8892
8893 var dartObjectLocalStorage; 8893 var dartObjectLocalStorage;
8894 8894
8895 String get typeName() native; 8895 String get typeName() native;
8896 } 8896 }
8897 8897
8898 class WebGLDebugShaders native "WebGLDebugShaders" { 8898 class WebGLDebugShaders native "*WebGLDebugShaders" {
8899 8899
8900 String getTranslatedShaderSource(WebGLShader shader) native; 8900 String getTranslatedShaderSource(WebGLShader shader) native;
8901 8901
8902 var dartObjectLocalStorage; 8902 var dartObjectLocalStorage;
8903 8903
8904 String get typeName() native; 8904 String get typeName() native;
8905 } 8905 }
8906 8906
8907 class WebGLFramebuffer native "WebGLFramebuffer" { 8907 class WebGLFramebuffer native "*WebGLFramebuffer" {
8908 8908
8909 var dartObjectLocalStorage; 8909 var dartObjectLocalStorage;
8910 8910
8911 String get typeName() native; 8911 String get typeName() native;
8912 } 8912 }
8913 8913
8914 class WebGLProgram native "WebGLProgram" { 8914 class WebGLProgram native "*WebGLProgram" {
8915 8915
8916 var dartObjectLocalStorage; 8916 var dartObjectLocalStorage;
8917 8917
8918 String get typeName() native; 8918 String get typeName() native;
8919 } 8919 }
8920 8920
8921 class WebGLRenderbuffer native "WebGLRenderbuffer" { 8921 class WebGLRenderbuffer native "*WebGLRenderbuffer" {
8922 8922
8923 var dartObjectLocalStorage; 8923 var dartObjectLocalStorage;
8924 8924
8925 String get typeName() native; 8925 String get typeName() native;
8926 } 8926 }
8927 8927
8928 class WebGLRenderingContext extends CanvasRenderingContext native "WebGLRenderin gContext" { 8928 class WebGLRenderingContext extends CanvasRenderingContext native "*WebGLRenderi ngContext" {
8929 8929
8930 int drawingBufferHeight; 8930 int drawingBufferHeight;
8931 8931
8932 int drawingBufferWidth; 8932 int drawingBufferWidth;
8933 8933
8934 void activeTexture(int texture) native; 8934 void activeTexture(int texture) native;
8935 8935
8936 void attachShader(WebGLProgram program, WebGLShader shader) native; 8936 void attachShader(WebGLProgram program, WebGLShader shader) native;
8937 8937
8938 void bindAttribLocation(WebGLProgram program, int index, String name) native; 8938 void bindAttribLocation(WebGLProgram program, int index, String name) native;
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after
9193 9193
9194 void vertexAttrib4f(int indx, num x, num y, num z, num w) native; 9194 void vertexAttrib4f(int indx, num x, num y, num z, num w) native;
9195 9195
9196 void vertexAttrib4fv(int indx, Float32Array values) native; 9196 void vertexAttrib4fv(int indx, Float32Array values) native;
9197 9197
9198 void vertexAttribPointer(int indx, int size, int type, bool normalized, int st ride, int offset) native; 9198 void vertexAttribPointer(int indx, int size, int type, bool normalized, int st ride, int offset) native;
9199 9199
9200 void viewport(int x, int y, int width, int height) native; 9200 void viewport(int x, int y, int width, int height) native;
9201 } 9201 }
9202 9202
9203 class WebGLShader native "WebGLShader" { 9203 class WebGLShader native "*WebGLShader" {
9204 9204
9205 var dartObjectLocalStorage; 9205 var dartObjectLocalStorage;
9206 9206
9207 String get typeName() native; 9207 String get typeName() native;
9208 } 9208 }
9209 9209
9210 class WebGLTexture native "WebGLTexture" { 9210 class WebGLTexture native "*WebGLTexture" {
9211 9211
9212 var dartObjectLocalStorage; 9212 var dartObjectLocalStorage;
9213 9213
9214 String get typeName() native; 9214 String get typeName() native;
9215 } 9215 }
9216 9216
9217 class WebGLUniformLocation native "WebGLUniformLocation" { 9217 class WebGLUniformLocation native "*WebGLUniformLocation" {
9218 9218
9219 var dartObjectLocalStorage; 9219 var dartObjectLocalStorage;
9220 9220
9221 String get typeName() native; 9221 String get typeName() native;
9222 } 9222 }
9223 9223
9224 class WebGLVertexArrayObjectOES native "WebGLVertexArrayObjectOES" { 9224 class WebGLVertexArrayObjectOES native "*WebGLVertexArrayObjectOES" {
9225 9225
9226 var dartObjectLocalStorage; 9226 var dartObjectLocalStorage;
9227 9227
9228 String get typeName() native; 9228 String get typeName() native;
9229 } 9229 }
9230 9230
9231 class WebKitAnimation native "WebKitAnimation" { 9231 class WebKitAnimation native "*WebKitAnimation" {
9232 9232
9233 num delay; 9233 num delay;
9234 9234
9235 int direction; 9235 int direction;
9236 9236
9237 num duration; 9237 num duration;
9238 9238
9239 num elapsedTime; 9239 num elapsedTime;
9240 9240
9241 bool ended; 9241 bool ended;
9242 9242
9243 int fillMode; 9243 int fillMode;
9244 9244
9245 int iterationCount; 9245 int iterationCount;
9246 9246
9247 String name; 9247 String name;
9248 9248
9249 bool paused; 9249 bool paused;
9250 9250
9251 void pause() native; 9251 void pause() native;
9252 9252
9253 void play() native; 9253 void play() native;
9254 9254
9255 var dartObjectLocalStorage; 9255 var dartObjectLocalStorage;
9256 9256
9257 String get typeName() native; 9257 String get typeName() native;
9258 } 9258 }
9259 9259
9260 class WebKitAnimationEvent extends Event native "WebKitAnimationEvent" { 9260 class WebKitAnimationEvent extends Event native "*WebKitAnimationEvent" {
9261 9261
9262 String animationName; 9262 String animationName;
9263 9263
9264 num elapsedTime; 9264 num elapsedTime;
9265 9265
9266 void initWebKitAnimationEvent(String typeArg, bool canBubbleArg, bool cancelab leArg, String animationNameArg, num elapsedTimeArg) native; 9266 void initWebKitAnimationEvent(String typeArg, bool canBubbleArg, bool cancelab leArg, String animationNameArg, num elapsedTimeArg) native;
9267 } 9267 }
9268 9268
9269 class WebKitAnimationList native "WebKitAnimationList" { 9269 class WebKitAnimationList native "*WebKitAnimationList" {
9270 9270
9271 int length; 9271 int length;
9272 9272
9273 WebKitAnimation item(int index) native; 9273 WebKitAnimation item(int index) native;
9274 9274
9275 var dartObjectLocalStorage; 9275 var dartObjectLocalStorage;
9276 9276
9277 String get typeName() native; 9277 String get typeName() native;
9278 } 9278 }
9279 9279
9280 class WebKitBlobBuilder native "WebKitBlobBuilder" { 9280 class WebKitBlobBuilder native "*WebKitBlobBuilder" {
9281 9281
9282 void append(var blob_OR_value, [String endings = null]) native; 9282 void append(var blob_OR_value, [String endings = null]) native;
9283 9283
9284 Blob getBlob([String contentType = null]) native; 9284 Blob getBlob([String contentType = null]) native;
9285 9285
9286 var dartObjectLocalStorage; 9286 var dartObjectLocalStorage;
9287 9287
9288 String get typeName() native; 9288 String get typeName() native;
9289 } 9289 }
9290 9290
9291 class WebKitCSSFilterValue extends CSSValueList native "WebKitCSSFilterValue" { 9291 class WebKitCSSFilterValue extends CSSValueList native "*WebKitCSSFilterValue" {
9292 9292
9293 int operationType; 9293 int operationType;
9294 } 9294 }
9295 9295
9296 class WebKitCSSKeyframeRule extends CSSRule native "WebKitCSSKeyframeRule" { 9296 class WebKitCSSKeyframeRule extends CSSRule native "*WebKitCSSKeyframeRule" {
9297 9297
9298 String keyText; 9298 String keyText;
9299 9299
9300 CSSStyleDeclaration style; 9300 CSSStyleDeclaration style;
9301 } 9301 }
9302 9302
9303 class WebKitCSSKeyframesRule extends CSSRule native "WebKitCSSKeyframesRule" { 9303 class WebKitCSSKeyframesRule extends CSSRule native "*WebKitCSSKeyframesRule" {
9304 9304
9305 CSSRuleList cssRules; 9305 CSSRuleList cssRules;
9306 9306
9307 String name; 9307 String name;
9308 9308
9309 void deleteRule(String key) native; 9309 void deleteRule(String key) native;
9310 9310
9311 WebKitCSSKeyframeRule findRule(String key) native; 9311 WebKitCSSKeyframeRule findRule(String key) native;
9312 9312
9313 void insertRule(String rule) native; 9313 void insertRule(String rule) native;
9314 } 9314 }
9315 9315
9316 class WebKitCSSMatrix native "WebKitCSSMatrix" { 9316 class WebKitCSSMatrix native "*WebKitCSSMatrix" {
9317 WebKitCSSMatrix([String spec]) native; 9317 WebKitCSSMatrix([String spec]) native;
9318 9318
9319 9319
9320 num a; 9320 num a;
9321 9321
9322 num b; 9322 num b;
9323 9323
9324 num c; 9324 num c;
9325 9325
9326 num d; 9326 num d;
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
9379 9379
9380 String toString() native; 9380 String toString() native;
9381 9381
9382 WebKitCSSMatrix translate(num x, num y, num z) native; 9382 WebKitCSSMatrix translate(num x, num y, num z) native;
9383 9383
9384 var dartObjectLocalStorage; 9384 var dartObjectLocalStorage;
9385 9385
9386 String get typeName() native; 9386 String get typeName() native;
9387 } 9387 }
9388 9388
9389 class WebKitCSSTransformValue extends CSSValueList native "WebKitCSSTransformVal ue" { 9389 class WebKitCSSTransformValue extends CSSValueList native "*WebKitCSSTransformVa lue" {
9390 9390
9391 int operationType; 9391 int operationType;
9392 } 9392 }
9393 9393
9394 class WebKitFlags native "WebKitFlags" { 9394 class WebKitFlags native "*WebKitFlags" {
9395 9395
9396 bool create; 9396 bool create;
9397 9397
9398 bool exclusive; 9398 bool exclusive;
9399 9399
9400 var dartObjectLocalStorage; 9400 var dartObjectLocalStorage;
9401 9401
9402 String get typeName() native; 9402 String get typeName() native;
9403 } 9403 }
9404 9404
9405 class WebKitLoseContext native "WebKitLoseContext" { 9405 class WebKitLoseContext native "*WebKitLoseContext" {
9406 9406
9407 void loseContext() native; 9407 void loseContext() native;
9408 9408
9409 void restoreContext() native; 9409 void restoreContext() native;
9410 9410
9411 var dartObjectLocalStorage; 9411 var dartObjectLocalStorage;
9412 9412
9413 String get typeName() native; 9413 String get typeName() native;
9414 } 9414 }
9415 9415
9416 class WebKitMutationObserver native "WebKitMutationObserver" { 9416 class WebKitMutationObserver native "*WebKitMutationObserver" {
9417 9417
9418 void disconnect() native; 9418 void disconnect() native;
9419 9419
9420 var dartObjectLocalStorage; 9420 var dartObjectLocalStorage;
9421 9421
9422 String get typeName() native; 9422 String get typeName() native;
9423 } 9423 }
9424 9424
9425 class WebKitPoint native "WebKitPoint" { 9425 class WebKitPoint native "*WebKitPoint" {
9426 WebKitPoint(num x, num y) native; 9426 WebKitPoint(num x, num y) native;
9427 9427
9428 9428
9429 num x; 9429 num x;
9430 9430
9431 num y; 9431 num y;
9432 9432
9433 var dartObjectLocalStorage; 9433 var dartObjectLocalStorage;
9434 9434
9435 String get typeName() native; 9435 String get typeName() native;
9436 } 9436 }
9437 9437
9438 class WebKitTransitionEvent extends Event native "WebKitTransitionEvent" { 9438 class WebKitTransitionEvent extends Event native "*WebKitTransitionEvent" {
9439 9439
9440 num elapsedTime; 9440 num elapsedTime;
9441 9441
9442 String propertyName; 9442 String propertyName;
9443 9443
9444 void initWebKitTransitionEvent(String typeArg, bool canBubbleArg, bool cancela bleArg, String propertyNameArg, num elapsedTimeArg) native; 9444 void initWebKitTransitionEvent(String typeArg, bool canBubbleArg, bool cancela bleArg, String propertyNameArg, num elapsedTimeArg) native;
9445 } 9445 }
9446 9446
9447 class WebSocket native "WebSocket" { 9447 class WebSocket native "*WebSocket" {
9448 9448
9449 String URL; 9449 String URL;
9450 9450
9451 String binaryType; 9451 String binaryType;
9452 9452
9453 int bufferedAmount; 9453 int bufferedAmount;
9454 9454
9455 String extensions; 9455 String extensions;
9456 9456
9457 EventListener onclose; 9457 EventListener onclose;
(...skipping 16 matching lines...) Expand all
9474 9474
9475 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native; 9475 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
9476 9476
9477 bool send(String data) native; 9477 bool send(String data) native;
9478 9478
9479 var dartObjectLocalStorage; 9479 var dartObjectLocalStorage;
9480 9480
9481 String get typeName() native; 9481 String get typeName() native;
9482 } 9482 }
9483 9483
9484 class WheelEvent extends UIEvent native "WheelEvent" { 9484 class WheelEvent extends UIEvent native "*WheelEvent" {
9485 9485
9486 bool altKey; 9486 bool altKey;
9487 9487
9488 int clientX; 9488 int clientX;
9489 9489
9490 int clientY; 9490 int clientY;
9491 9491
9492 bool ctrlKey; 9492 bool ctrlKey;
9493 9493
9494 bool metaKey; 9494 bool metaKey;
(...skipping 16 matching lines...) Expand all
9511 9511
9512 int wheelDeltaY; 9512 int wheelDeltaY;
9513 9513
9514 int x; 9514 int x;
9515 9515
9516 int y; 9516 int y;
9517 9517
9518 void initWebKitWheelEvent(int wheelDeltaX, int wheelDeltaY, DOMWindow view, in t screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, boo l shiftKey, bool metaKey) native; 9518 void initWebKitWheelEvent(int wheelDeltaX, int wheelDeltaY, DOMWindow view, in t screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, boo l shiftKey, bool metaKey) native;
9519 } 9519 }
9520 9520
9521 class Worker extends AbstractWorker native "Worker" { 9521 class Worker extends AbstractWorker native "*Worker" {
9522 9522
9523 EventListener onmessage; 9523 EventListener onmessage;
9524 9524
9525 void postMessage(String message, [List messagePorts = null]) native; 9525 void postMessage(String message, [List messagePorts = null]) native;
9526 9526
9527 void terminate() native; 9527 void terminate() native;
9528 9528
9529 void webkitPostMessage(String message, [List messagePorts = null]) native; 9529 void webkitPostMessage(String message, [List messagePorts = null]) native;
9530 } 9530 }
9531 9531
9532 class WorkerContext native "WorkerContext" { 9532 class WorkerContext native "*WorkerContext" {
9533 9533
9534 WorkerLocation location; 9534 WorkerLocation location;
9535 9535
9536 WorkerNavigator navigator; 9536 WorkerNavigator navigator;
9537 9537
9538 EventListener onerror; 9538 EventListener onerror;
9539 9539
9540 WorkerContext self; 9540 WorkerContext self;
9541 9541
9542 NotificationCenter webkitNotifications; 9542 NotificationCenter webkitNotifications;
(...skipping 16 matching lines...) Expand all
9559 9559
9560 int setInterval(TimeoutHandler handler, int timeout) native; 9560 int setInterval(TimeoutHandler handler, int timeout) native;
9561 9561
9562 int setTimeout(TimeoutHandler handler, int timeout) native; 9562 int setTimeout(TimeoutHandler handler, int timeout) native;
9563 9563
9564 var dartObjectLocalStorage; 9564 var dartObjectLocalStorage;
9565 9565
9566 String get typeName() native; 9566 String get typeName() native;
9567 } 9567 }
9568 9568
9569 class WorkerLocation native "WorkerLocation" { 9569 class WorkerLocation native "*WorkerLocation" {
9570 9570
9571 String hash; 9571 String hash;
9572 9572
9573 String host; 9573 String host;
9574 9574
9575 String hostname; 9575 String hostname;
9576 9576
9577 String href; 9577 String href;
9578 9578
9579 String pathname; 9579 String pathname;
9580 9580
9581 String port; 9581 String port;
9582 9582
9583 String protocol; 9583 String protocol;
9584 9584
9585 String search; 9585 String search;
9586 9586
9587 String toString() native; 9587 String toString() native;
9588 9588
9589 var dartObjectLocalStorage; 9589 var dartObjectLocalStorage;
9590 9590
9591 String get typeName() native; 9591 String get typeName() native;
9592 } 9592 }
9593 9593
9594 class WorkerNavigator native "WorkerNavigator" { 9594 class WorkerNavigator native "*WorkerNavigator" {
9595 9595
9596 String appName; 9596 String appName;
9597 9597
9598 String appVersion; 9598 String appVersion;
9599 9599
9600 bool onLine; 9600 bool onLine;
9601 9601
9602 String platform; 9602 String platform;
9603 9603
9604 String userAgent; 9604 String userAgent;
9605 9605
9606 var dartObjectLocalStorage; 9606 var dartObjectLocalStorage;
9607 9607
9608 String get typeName() native; 9608 String get typeName() native;
9609 } 9609 }
9610 9610
9611 class XMLHttpRequest native "XMLHttpRequest" { 9611 class XMLHttpRequest native "*XMLHttpRequest" {
9612 XMLHttpRequest() native; 9612 XMLHttpRequest() native;
9613 9613
9614 9614
9615 bool asBlob; 9615 bool asBlob;
9616 9616
9617 EventListener onabort; 9617 EventListener onabort;
9618 9618
9619 EventListener onerror; 9619 EventListener onerror;
9620 9620
9621 EventListener onload; 9621 EventListener onload;
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
9662 9662
9663 void send([var data = null]) native; 9663 void send([var data = null]) native;
9664 9664
9665 void setRequestHeader(String header, String value) native; 9665 void setRequestHeader(String header, String value) native;
9666 9666
9667 var dartObjectLocalStorage; 9667 var dartObjectLocalStorage;
9668 9668
9669 String get typeName() native; 9669 String get typeName() native;
9670 } 9670 }
9671 9671
9672 class XMLHttpRequestException native "XMLHttpRequestException" { 9672 class XMLHttpRequestException native "*XMLHttpRequestException" {
9673 9673
9674 int code; 9674 int code;
9675 9675
9676 String message; 9676 String message;
9677 9677
9678 String name; 9678 String name;
9679 9679
9680 String toString() native; 9680 String toString() native;
9681 9681
9682 var dartObjectLocalStorage; 9682 var dartObjectLocalStorage;
9683 9683
9684 String get typeName() native; 9684 String get typeName() native;
9685 } 9685 }
9686 9686
9687 class XMLHttpRequestProgressEvent extends ProgressEvent native "XMLHttpRequestPr ogressEvent" { 9687 class XMLHttpRequestProgressEvent extends ProgressEvent native "*XMLHttpRequestP rogressEvent" {
9688 9688
9689 int position; 9689 int position;
9690 9690
9691 int totalSize; 9691 int totalSize;
9692 } 9692 }
9693 9693
9694 class XMLHttpRequestUpload native "XMLHttpRequestUpload" { 9694 class XMLHttpRequestUpload native "*XMLHttpRequestUpload" {
9695 9695
9696 EventListener onabort; 9696 EventListener onabort;
9697 9697
9698 EventListener onerror; 9698 EventListener onerror;
9699 9699
9700 EventListener onload; 9700 EventListener onload;
9701 9701
9702 EventListener onloadstart; 9702 EventListener onloadstart;
9703 9703
9704 EventListener onprogress; 9704 EventListener onprogress;
9705 9705
9706 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native; 9706 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
9707 9707
9708 bool dispatchEvent(Event evt) native; 9708 bool dispatchEvent(Event evt) native;
9709 9709
9710 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native; 9710 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
9711 9711
9712 var dartObjectLocalStorage; 9712 var dartObjectLocalStorage;
9713 9713
9714 String get typeName() native; 9714 String get typeName() native;
9715 } 9715 }
9716 9716
9717 class XMLSerializer native "XMLSerializer" { 9717 class XMLSerializer native "*XMLSerializer" {
9718 9718
9719 String serializeToString(Node node) native; 9719 String serializeToString(Node node) native;
9720 9720
9721 var dartObjectLocalStorage; 9721 var dartObjectLocalStorage;
9722 9722
9723 String get typeName() native; 9723 String get typeName() native;
9724 } 9724 }
9725 9725
9726 class XPathEvaluator native "XPathEvaluator" { 9726 class XPathEvaluator native "*XPathEvaluator" {
9727 9727
9728 XPathExpression createExpression(String expression, XPathNSResolver resolver) native; 9728 XPathExpression createExpression(String expression, XPathNSResolver resolver) native;
9729 9729
9730 XPathNSResolver createNSResolver(Node nodeResolver) native; 9730 XPathNSResolver createNSResolver(Node nodeResolver) native;
9731 9731
9732 XPathResult evaluate(String expression, Node contextNode, XPathNSResolver reso lver, int type, XPathResult inResult) native; 9732 XPathResult evaluate(String expression, Node contextNode, XPathNSResolver reso lver, int type, XPathResult inResult) native;
9733 9733
9734 var dartObjectLocalStorage; 9734 var dartObjectLocalStorage;
9735 9735
9736 String get typeName() native; 9736 String get typeName() native;
9737 } 9737 }
9738 9738
9739 class XPathException native "XPathException" { 9739 class XPathException native "*XPathException" {
9740 9740
9741 int code; 9741 int code;
9742 9742
9743 String message; 9743 String message;
9744 9744
9745 String name; 9745 String name;
9746 9746
9747 String toString() native; 9747 String toString() native;
9748 9748
9749 var dartObjectLocalStorage; 9749 var dartObjectLocalStorage;
9750 9750
9751 String get typeName() native; 9751 String get typeName() native;
9752 } 9752 }
9753 9753
9754 class XPathExpression native "XPathExpression" { 9754 class XPathExpression native "*XPathExpression" {
9755 9755
9756 XPathResult evaluate(Node contextNode, int type, XPathResult inResult) native; 9756 XPathResult evaluate(Node contextNode, int type, XPathResult inResult) native;
9757 9757
9758 var dartObjectLocalStorage; 9758 var dartObjectLocalStorage;
9759 9759
9760 String get typeName() native; 9760 String get typeName() native;
9761 } 9761 }
9762 9762
9763 class XPathNSResolver native "XPathNSResolver" { 9763 class XPathNSResolver native "*XPathNSResolver" {
9764 9764
9765 String lookupNamespaceURI(String prefix) native; 9765 String lookupNamespaceURI(String prefix) native;
9766 9766
9767 var dartObjectLocalStorage; 9767 var dartObjectLocalStorage;
9768 9768
9769 String get typeName() native; 9769 String get typeName() native;
9770 } 9770 }
9771 9771
9772 class XPathResult native "XPathResult" { 9772 class XPathResult native "*XPathResult" {
9773 9773
9774 bool booleanValue; 9774 bool booleanValue;
9775 9775
9776 bool invalidIteratorState; 9776 bool invalidIteratorState;
9777 9777
9778 num numberValue; 9778 num numberValue;
9779 9779
9780 int resultType; 9780 int resultType;
9781 9781
9782 Node singleNodeValue; 9782 Node singleNodeValue;
9783 9783
9784 int snapshotLength; 9784 int snapshotLength;
9785 9785
9786 String stringValue; 9786 String stringValue;
9787 9787
9788 Node iterateNext() native; 9788 Node iterateNext() native;
9789 9789
9790 Node snapshotItem(int index) native; 9790 Node snapshotItem(int index) native;
9791 9791
9792 var dartObjectLocalStorage; 9792 var dartObjectLocalStorage;
9793 9793
9794 String get typeName() native; 9794 String get typeName() native;
9795 } 9795 }
9796 9796
9797 class XSLTProcessor native "XSLTProcessor" { 9797 class XSLTProcessor native "*XSLTProcessor" {
9798 9798
9799 void clearParameters() native; 9799 void clearParameters() native;
9800 9800
9801 String getParameter(String namespaceURI, String localName) native; 9801 String getParameter(String namespaceURI, String localName) native;
9802 9802
9803 void importStylesheet(Node stylesheet) native; 9803 void importStylesheet(Node stylesheet) native;
9804 9804
9805 void removeParameter(String namespaceURI, String localName) native; 9805 void removeParameter(String namespaceURI, String localName) native;
9806 9806
9807 void reset() native; 9807 void reset() native;
(...skipping 16 matching lines...) Expand all
9824 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 9824 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
9825 // for details. All rights reserved. Use of this source code is governed by a 9825 // for details. All rights reserved. Use of this source code is governed by a
9826 // BSD-style license that can be found in the LICENSE file. 9826 // BSD-style license that can be found in the LICENSE file.
9827 9827
9828 typedef bool RequestAnimationFrameCallback(int time); 9828 typedef bool RequestAnimationFrameCallback(int time);
9829 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 9829 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
9830 // for details. All rights reserved. Use of this source code is governed by a 9830 // for details. All rights reserved. Use of this source code is governed by a
9831 // BSD-style license that can be found in the LICENSE file. 9831 // BSD-style license that can be found in the LICENSE file.
9832 9832
9833 typedef void TimeoutHandler(); 9833 typedef void TimeoutHandler();
OLDNEW
« no previous file with comments | « no previous file | client/dom/generated/src/frog/AbstractWorker.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698