| OLD | NEW |
| 1 library html; | 1 library html; |
| 2 | 2 |
| 3 import 'dart:collection'; | 3 import 'dart:collection'; |
| 4 import 'dart:html_common'; | 4 import 'dart:html_common'; |
| 5 import 'dart:indexed_db'; | 5 import 'dart:indexed_db'; |
| 6 import 'dart:isolate'; | 6 import 'dart:isolate'; |
| 7 import 'dart:json'; | 7 import 'dart:json'; |
| 8 import 'dart:nativewrappers'; | 8 import 'dart:nativewrappers'; |
| 9 import 'dart:svg' as svg; | 9 import 'dart:svg' as svg; |
| 10 import 'dart:web_audio' as web_audio; | 10 import 'dart:web_audio' as web_audio; |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 101 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 102 // for details. All rights reserved. Use of this source code is governed by a | 102 // for details. All rights reserved. Use of this source code is governed by a |
| 103 // BSD-style license that can be found in the LICENSE file. | 103 // BSD-style license that can be found in the LICENSE file. |
| 104 | 104 |
| 105 // WARNING: Do not edit - generated code. | 105 // WARNING: Do not edit - generated code. |
| 106 | 106 |
| 107 | 107 |
| 108 /// @domName HTMLAnchorElement | 108 /// @domName HTMLAnchorElement |
| 109 class AnchorElement extends _Element_Merged { | 109 class AnchorElement extends _Element_Merged { |
| 110 | 110 |
| 111 ///@docsEditable true |
| 111 factory AnchorElement({String href}) { | 112 factory AnchorElement({String href}) { |
| 112 var e = document.$dom_createElement("a"); | 113 var e = document.$dom_createElement("a"); |
| 113 if (href != null) e.href = href; | 114 if (href != null) e.href = href; |
| 114 return e; | 115 return e; |
| 115 } | 116 } |
| 116 AnchorElement.internal(): super.internal(); | 117 AnchorElement.internal(): super.internal(); |
| 117 | 118 |
| 118 | 119 |
| 119 /** @domName HTMLAnchorElement.charset */ | 120 /** @domName HTMLAnchorElement.charset */ |
| 120 String get charset native "HTMLAnchorElement_charset_Getter"; | 121 String get charset native "HTMLAnchorElement_charset_Getter"; |
| (...skipping 426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 547 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 548 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 548 // for details. All rights reserved. Use of this source code is governed by a | 549 // for details. All rights reserved. Use of this source code is governed by a |
| 549 // BSD-style license that can be found in the LICENSE file. | 550 // BSD-style license that can be found in the LICENSE file. |
| 550 | 551 |
| 551 // WARNING: Do not edit - generated code. | 552 // WARNING: Do not edit - generated code. |
| 552 | 553 |
| 553 | 554 |
| 554 /// @domName HTMLAreaElement | 555 /// @domName HTMLAreaElement |
| 555 class AreaElement extends _Element_Merged { | 556 class AreaElement extends _Element_Merged { |
| 556 | 557 |
| 558 ///@docsEditable true |
| 557 factory AreaElement() => document.$dom_createElement("area"); | 559 factory AreaElement() => document.$dom_createElement("area"); |
| 558 AreaElement.internal(): super.internal(); | 560 AreaElement.internal(): super.internal(); |
| 559 | 561 |
| 560 | 562 |
| 561 /** @domName HTMLAreaElement.alt */ | 563 /** @domName HTMLAreaElement.alt */ |
| 562 String get alt native "HTMLAreaElement_alt_Getter"; | 564 String get alt native "HTMLAreaElement_alt_Getter"; |
| 563 | 565 |
| 564 | 566 |
| 565 /** @domName HTMLAreaElement.alt */ | 567 /** @domName HTMLAreaElement.alt */ |
| 566 void set alt(String value) native "HTMLAreaElement_alt_Setter"; | 568 void set alt(String value) native "HTMLAreaElement_alt_Setter"; |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 645 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 647 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 646 // for details. All rights reserved. Use of this source code is governed by a | 648 // for details. All rights reserved. Use of this source code is governed by a |
| 647 // BSD-style license that can be found in the LICENSE file. | 649 // BSD-style license that can be found in the LICENSE file. |
| 648 | 650 |
| 649 // WARNING: Do not edit - generated code. | 651 // WARNING: Do not edit - generated code. |
| 650 | 652 |
| 651 | 653 |
| 652 /// @domName ArrayBuffer | 654 /// @domName ArrayBuffer |
| 653 class ArrayBuffer extends NativeFieldWrapperClass1 { | 655 class ArrayBuffer extends NativeFieldWrapperClass1 { |
| 654 | 656 |
| 657 ///@docsEditable true |
| 655 factory ArrayBuffer(int length) => _ArrayBufferFactoryProvider.createArrayBuff
er(length); | 658 factory ArrayBuffer(int length) => _ArrayBufferFactoryProvider.createArrayBuff
er(length); |
| 656 ArrayBuffer.internal(); | 659 ArrayBuffer.internal(); |
| 657 | 660 |
| 658 | 661 |
| 659 /** @domName ArrayBuffer.byteLength */ | 662 /** @domName ArrayBuffer.byteLength */ |
| 660 int get byteLength native "ArrayBuffer_byteLength_Getter"; | 663 int get byteLength native "ArrayBuffer_byteLength_Getter"; |
| 661 | 664 |
| 662 ArrayBuffer slice(/*long*/ begin, [/*long*/ end]) { | 665 ArrayBuffer slice(/*long*/ begin, [/*long*/ end]) { |
| 663 if (?end) { | 666 if (?end) { |
| 664 return _slice_1(begin, end); | 667 return _slice_1(begin, end); |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 738 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 741 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 739 // for details. All rights reserved. Use of this source code is governed by a | 742 // for details. All rights reserved. Use of this source code is governed by a |
| 740 // BSD-style license that can be found in the LICENSE file. | 743 // BSD-style license that can be found in the LICENSE file. |
| 741 | 744 |
| 742 // WARNING: Do not edit - generated code. | 745 // WARNING: Do not edit - generated code. |
| 743 | 746 |
| 744 | 747 |
| 745 /// @domName HTMLAudioElement | 748 /// @domName HTMLAudioElement |
| 746 class AudioElement extends MediaElement { | 749 class AudioElement extends MediaElement { |
| 747 | 750 |
| 751 ///@docsEditable true |
| 748 factory AudioElement([String src]) { | 752 factory AudioElement([String src]) { |
| 749 if (!?src) { | 753 if (!?src) { |
| 750 return _AudioElementFactoryProvider.createAudioElement(); | 754 return _AudioElementFactoryProvider.createAudioElement(); |
| 751 } | 755 } |
| 752 return _AudioElementFactoryProvider.createAudioElement(src); | 756 return _AudioElementFactoryProvider.createAudioElement(src); |
| 753 } | 757 } |
| 754 AudioElement.internal(): super.internal(); | 758 AudioElement.internal(): super.internal(); |
| 755 | 759 |
| 756 } | 760 } |
| 757 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 761 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 758 // for details. All rights reserved. Use of this source code is governed by a | 762 // for details. All rights reserved. Use of this source code is governed by a |
| 759 // BSD-style license that can be found in the LICENSE file. | 763 // BSD-style license that can be found in the LICENSE file. |
| 760 | 764 |
| 761 // WARNING: Do not edit - generated code. | 765 // WARNING: Do not edit - generated code. |
| 762 | 766 |
| 763 | 767 |
| 764 /// @domName HTMLBRElement | 768 /// @domName HTMLBRElement |
| 765 class BRElement extends _Element_Merged { | 769 class BRElement extends _Element_Merged { |
| 766 | 770 |
| 771 ///@docsEditable true |
| 767 factory BRElement() => document.$dom_createElement("br"); | 772 factory BRElement() => document.$dom_createElement("br"); |
| 768 BRElement.internal(): super.internal(); | 773 BRElement.internal(): super.internal(); |
| 769 | 774 |
| 770 | 775 |
| 771 /** @domName HTMLBRElement.clear */ | 776 /** @domName HTMLBRElement.clear */ |
| 772 String get clear native "HTMLBRElement_clear_Getter"; | 777 String get clear native "HTMLBRElement_clear_Getter"; |
| 773 | 778 |
| 774 | 779 |
| 775 /** @domName HTMLBRElement.clear */ | 780 /** @domName HTMLBRElement.clear */ |
| 776 void set clear(String value) native "HTMLBRElement_clear_Setter"; | 781 void set clear(String value) native "HTMLBRElement_clear_Setter"; |
| (...skipping 18 matching lines...) Expand all Loading... |
| 795 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 800 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 796 // for details. All rights reserved. Use of this source code is governed by a | 801 // for details. All rights reserved. Use of this source code is governed by a |
| 797 // BSD-style license that can be found in the LICENSE file. | 802 // BSD-style license that can be found in the LICENSE file. |
| 798 | 803 |
| 799 // WARNING: Do not edit - generated code. | 804 // WARNING: Do not edit - generated code. |
| 800 | 805 |
| 801 | 806 |
| 802 /// @domName HTMLBaseElement | 807 /// @domName HTMLBaseElement |
| 803 class BaseElement extends _Element_Merged { | 808 class BaseElement extends _Element_Merged { |
| 804 | 809 |
| 810 ///@docsEditable true |
| 805 factory BaseElement() => document.$dom_createElement("base"); | 811 factory BaseElement() => document.$dom_createElement("base"); |
| 806 BaseElement.internal(): super.internal(); | 812 BaseElement.internal(): super.internal(); |
| 807 | 813 |
| 808 | 814 |
| 809 /** @domName HTMLBaseElement.href */ | 815 /** @domName HTMLBaseElement.href */ |
| 810 String get href native "HTMLBaseElement_href_Getter"; | 816 String get href native "HTMLBaseElement_href_Getter"; |
| 811 | 817 |
| 812 | 818 |
| 813 /** @domName HTMLBaseElement.href */ | 819 /** @domName HTMLBaseElement.href */ |
| 814 void set href(String value) native "HTMLBaseElement_href_Setter"; | 820 void set href(String value) native "HTMLBaseElement_href_Setter"; |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 933 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 939 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 934 // for details. All rights reserved. Use of this source code is governed by a | 940 // for details. All rights reserved. Use of this source code is governed by a |
| 935 // BSD-style license that can be found in the LICENSE file. | 941 // BSD-style license that can be found in the LICENSE file. |
| 936 | 942 |
| 937 // WARNING: Do not edit - generated code. | 943 // WARNING: Do not edit - generated code. |
| 938 | 944 |
| 939 | 945 |
| 940 /// @domName Blob | 946 /// @domName Blob |
| 941 class Blob extends NativeFieldWrapperClass1 { | 947 class Blob extends NativeFieldWrapperClass1 { |
| 942 | 948 |
| 949 ///@docsEditable true |
| 943 factory Blob(List blobParts, [String type, String endings]) { | 950 factory Blob(List blobParts, [String type, String endings]) { |
| 944 if (!?type) { | 951 if (!?type) { |
| 945 return _BlobFactoryProvider.createBlob(blobParts); | 952 return _BlobFactoryProvider.createBlob(blobParts); |
| 946 } | 953 } |
| 947 if (!?endings) { | 954 if (!?endings) { |
| 948 return _BlobFactoryProvider.createBlob(blobParts, type); | 955 return _BlobFactoryProvider.createBlob(blobParts, type); |
| 949 } | 956 } |
| 950 return _BlobFactoryProvider.createBlob(blobParts, type, endings); | 957 return _BlobFactoryProvider.createBlob(blobParts, type, endings); |
| 951 } | 958 } |
| 952 Blob.internal(); | 959 Blob.internal(); |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 992 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 999 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 993 // for details. All rights reserved. Use of this source code is governed by a | 1000 // for details. All rights reserved. Use of this source code is governed by a |
| 994 // BSD-style license that can be found in the LICENSE file. | 1001 // BSD-style license that can be found in the LICENSE file. |
| 995 | 1002 |
| 996 // WARNING: Do not edit - generated code. | 1003 // WARNING: Do not edit - generated code. |
| 997 | 1004 |
| 998 | 1005 |
| 999 /// @domName HTMLBodyElement | 1006 /// @domName HTMLBodyElement |
| 1000 class BodyElement extends _Element_Merged { | 1007 class BodyElement extends _Element_Merged { |
| 1001 | 1008 |
| 1009 ///@docsEditable true |
| 1002 factory BodyElement() => document.$dom_createElement("body"); | 1010 factory BodyElement() => document.$dom_createElement("body"); |
| 1003 BodyElement.internal(): super.internal(); | 1011 BodyElement.internal(): super.internal(); |
| 1004 | 1012 |
| 1005 /// @domName EventTarget.addEventListener, EventTarget.removeEventListener, Ev
entTarget.dispatchEvent; @docsEditable true | 1013 /// @domName EventTarget.addEventListener, EventTarget.removeEventListener, Ev
entTarget.dispatchEvent; @docsEditable true |
| 1006 BodyElementEvents get on => | 1014 BodyElementEvents get on => |
| 1007 new BodyElementEvents(this); | 1015 new BodyElementEvents(this); |
| 1008 | 1016 |
| 1009 | 1017 |
| 1010 /** @domName HTMLBodyElement.aLink */ | 1018 /** @domName HTMLBodyElement.aLink */ |
| 1011 String get aLink native "HTMLBodyElement_aLink_Getter"; | 1019 String get aLink native "HTMLBodyElement_aLink_Getter"; |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1080 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1088 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 1081 // for details. All rights reserved. Use of this source code is governed by a | 1089 // for details. All rights reserved. Use of this source code is governed by a |
| 1082 // BSD-style license that can be found in the LICENSE file. | 1090 // BSD-style license that can be found in the LICENSE file. |
| 1083 | 1091 |
| 1084 // WARNING: Do not edit - generated code. | 1092 // WARNING: Do not edit - generated code. |
| 1085 | 1093 |
| 1086 | 1094 |
| 1087 /// @domName HTMLButtonElement | 1095 /// @domName HTMLButtonElement |
| 1088 class ButtonElement extends _Element_Merged { | 1096 class ButtonElement extends _Element_Merged { |
| 1089 | 1097 |
| 1098 ///@docsEditable true |
| 1090 factory ButtonElement() => document.$dom_createElement("button"); | 1099 factory ButtonElement() => document.$dom_createElement("button"); |
| 1091 ButtonElement.internal(): super.internal(); | 1100 ButtonElement.internal(): super.internal(); |
| 1092 | 1101 |
| 1093 | 1102 |
| 1094 /** @domName HTMLButtonElement.autofocus */ | 1103 /** @domName HTMLButtonElement.autofocus */ |
| 1095 bool get autofocus native "HTMLButtonElement_autofocus_Getter"; | 1104 bool get autofocus native "HTMLButtonElement_autofocus_Getter"; |
| 1096 | 1105 |
| 1097 | 1106 |
| 1098 /** @domName HTMLButtonElement.autofocus */ | 1107 /** @domName HTMLButtonElement.autofocus */ |
| 1099 void set autofocus(bool value) native "HTMLButtonElement_autofocus_Setter"; | 1108 void set autofocus(bool value) native "HTMLButtonElement_autofocus_Setter"; |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1212 | 1221 |
| 1213 } | 1222 } |
| 1214 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1223 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 1215 // for details. All rights reserved. Use of this source code is governed by a | 1224 // for details. All rights reserved. Use of this source code is governed by a |
| 1216 // BSD-style license that can be found in the LICENSE file. | 1225 // BSD-style license that can be found in the LICENSE file. |
| 1217 | 1226 |
| 1218 | 1227 |
| 1219 /// @domName HTMLCanvasElement | 1228 /// @domName HTMLCanvasElement |
| 1220 class CanvasElement extends _Element_Merged { | 1229 class CanvasElement extends _Element_Merged { |
| 1221 | 1230 |
| 1231 ///@docsEditable true |
| 1222 factory CanvasElement({int width, int height}) { | 1232 factory CanvasElement({int width, int height}) { |
| 1223 var e = document.$dom_createElement("canvas"); | 1233 var e = document.$dom_createElement("canvas"); |
| 1224 if (width != null) e.width = width; | 1234 if (width != null) e.width = width; |
| 1225 if (height != null) e.height = height; | 1235 if (height != null) e.height = height; |
| 1226 return e; | 1236 return e; |
| 1227 } | 1237 } |
| 1228 CanvasElement.internal(): super.internal(); | 1238 CanvasElement.internal(): super.internal(); |
| 1229 | 1239 |
| 1230 | 1240 |
| 1231 /** @domName HTMLCanvasElement.height */ | 1241 /** @domName HTMLCanvasElement.height */ |
| (...skipping 1047 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2279 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2289 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2280 // for details. All rights reserved. Use of this source code is governed by a | 2290 // for details. All rights reserved. Use of this source code is governed by a |
| 2281 // BSD-style license that can be found in the LICENSE file. | 2291 // BSD-style license that can be found in the LICENSE file. |
| 2282 | 2292 |
| 2283 // WARNING: Do not edit - generated code. | 2293 // WARNING: Do not edit - generated code. |
| 2284 | 2294 |
| 2285 | 2295 |
| 2286 /// @domName HTMLContentElement | 2296 /// @domName HTMLContentElement |
| 2287 class ContentElement extends _Element_Merged { | 2297 class ContentElement extends _Element_Merged { |
| 2288 | 2298 |
| 2299 ///@docsEditable true |
| 2289 factory ContentElement() => document.$dom_createElement("content"); | 2300 factory ContentElement() => document.$dom_createElement("content"); |
| 2290 ContentElement.internal(): super.internal(); | 2301 ContentElement.internal(): super.internal(); |
| 2291 | 2302 |
| 2292 | 2303 |
| 2293 /** @domName HTMLContentElement.resetStyleInheritance */ | 2304 /** @domName HTMLContentElement.resetStyleInheritance */ |
| 2294 bool get resetStyleInheritance native "HTMLContentElement_resetStyleInheritanc
e_Getter"; | 2305 bool get resetStyleInheritance native "HTMLContentElement_resetStyleInheritanc
e_Getter"; |
| 2295 | 2306 |
| 2296 | 2307 |
| 2297 /** @domName HTMLContentElement.resetStyleInheritance */ | 2308 /** @domName HTMLContentElement.resetStyleInheritance */ |
| 2298 void set resetStyleInheritance(bool value) native "HTMLContentElement_resetSty
leInheritance_Setter"; | 2309 void set resetStyleInheritance(bool value) native "HTMLContentElement_resetSty
leInheritance_Setter"; |
| (...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2513 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2524 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2514 // for details. All rights reserved. Use of this source code is governed by a | 2525 // for details. All rights reserved. Use of this source code is governed by a |
| 2515 // BSD-style license that can be found in the LICENSE file. | 2526 // BSD-style license that can be found in the LICENSE file. |
| 2516 | 2527 |
| 2517 // WARNING: Do not edit - generated code. | 2528 // WARNING: Do not edit - generated code. |
| 2518 | 2529 |
| 2519 | 2530 |
| 2520 /// @domName WebKitCSSMatrix | 2531 /// @domName WebKitCSSMatrix |
| 2521 class CssMatrix extends NativeFieldWrapperClass1 { | 2532 class CssMatrix extends NativeFieldWrapperClass1 { |
| 2522 | 2533 |
| 2534 ///@docsEditable true |
| 2523 factory CssMatrix([String cssValue]) { | 2535 factory CssMatrix([String cssValue]) { |
| 2524 if (!?cssValue) { | 2536 if (!?cssValue) { |
| 2525 return _CssMatrixFactoryProvider.createCssMatrix(); | 2537 return _CssMatrixFactoryProvider.createCssMatrix(); |
| 2526 } | 2538 } |
| 2527 return _CssMatrixFactoryProvider.createCssMatrix(cssValue); | 2539 return _CssMatrixFactoryProvider.createCssMatrix(cssValue); |
| 2528 } | 2540 } |
| 2529 CssMatrix.internal(); | 2541 CssMatrix.internal(); |
| 2530 | 2542 |
| 2531 | 2543 |
| 2532 /** @domName WebKitCSSMatrix.a */ | 2544 /** @domName WebKitCSSMatrix.a */ |
| (...skipping 3855 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6388 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6400 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 6389 // for details. All rights reserved. Use of this source code is governed by a | 6401 // for details. All rights reserved. Use of this source code is governed by a |
| 6390 // BSD-style license that can be found in the LICENSE file. | 6402 // BSD-style license that can be found in the LICENSE file. |
| 6391 | 6403 |
| 6392 // WARNING: Do not edit - generated code. | 6404 // WARNING: Do not edit - generated code. |
| 6393 | 6405 |
| 6394 | 6406 |
| 6395 /// @domName HTMLDListElement | 6407 /// @domName HTMLDListElement |
| 6396 class DListElement extends _Element_Merged { | 6408 class DListElement extends _Element_Merged { |
| 6397 | 6409 |
| 6410 ///@docsEditable true |
| 6398 factory DListElement() => document.$dom_createElement("dl"); | 6411 factory DListElement() => document.$dom_createElement("dl"); |
| 6399 DListElement.internal(): super.internal(); | 6412 DListElement.internal(): super.internal(); |
| 6400 | 6413 |
| 6401 | 6414 |
| 6402 /** @domName HTMLDListElement.compact */ | 6415 /** @domName HTMLDListElement.compact */ |
| 6403 bool get compact native "HTMLDListElement_compact_Getter"; | 6416 bool get compact native "HTMLDListElement_compact_Getter"; |
| 6404 | 6417 |
| 6405 | 6418 |
| 6406 /** @domName HTMLDListElement.compact */ | 6419 /** @domName HTMLDListElement.compact */ |
| 6407 void set compact(bool value) native "HTMLDListElement_compact_Setter"; | 6420 void set compact(bool value) native "HTMLDListElement_compact_Setter"; |
| 6408 | 6421 |
| 6409 } | 6422 } |
| 6410 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6423 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 6411 // for details. All rights reserved. Use of this source code is governed by a | 6424 // for details. All rights reserved. Use of this source code is governed by a |
| 6412 // BSD-style license that can be found in the LICENSE file. | 6425 // BSD-style license that can be found in the LICENSE file. |
| 6413 | 6426 |
| 6414 // WARNING: Do not edit - generated code. | 6427 // WARNING: Do not edit - generated code. |
| 6415 | 6428 |
| 6416 | 6429 |
| 6417 /// @domName HTMLDataListElement | 6430 /// @domName HTMLDataListElement |
| 6418 class DataListElement extends _Element_Merged { | 6431 class DataListElement extends _Element_Merged { |
| 6419 | 6432 |
| 6433 ///@docsEditable true |
| 6420 factory DataListElement() => document.$dom_createElement("datalist"); | 6434 factory DataListElement() => document.$dom_createElement("datalist"); |
| 6421 DataListElement.internal(): super.internal(); | 6435 DataListElement.internal(): super.internal(); |
| 6422 | 6436 |
| 6423 | 6437 |
| 6424 /** @domName HTMLDataListElement.options */ | 6438 /** @domName HTMLDataListElement.options */ |
| 6425 HtmlCollection get options native "HTMLDataListElement_options_Getter"; | 6439 HtmlCollection get options native "HTMLDataListElement_options_Getter"; |
| 6426 | 6440 |
| 6427 } | 6441 } |
| 6428 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6442 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 6429 // for details. All rights reserved. Use of this source code is governed by a | 6443 // for details. All rights reserved. Use of this source code is governed by a |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6504 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6518 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 6505 // for details. All rights reserved. Use of this source code is governed by a | 6519 // for details. All rights reserved. Use of this source code is governed by a |
| 6506 // BSD-style license that can be found in the LICENSE file. | 6520 // BSD-style license that can be found in the LICENSE file. |
| 6507 | 6521 |
| 6508 // WARNING: Do not edit - generated code. | 6522 // WARNING: Do not edit - generated code. |
| 6509 | 6523 |
| 6510 | 6524 |
| 6511 /// @domName DataView | 6525 /// @domName DataView |
| 6512 class DataView extends ArrayBufferView { | 6526 class DataView extends ArrayBufferView { |
| 6513 | 6527 |
| 6528 ///@docsEditable true |
| 6514 factory DataView(ArrayBuffer buffer, [int byteOffset, int byteLength]) { | 6529 factory DataView(ArrayBuffer buffer, [int byteOffset, int byteLength]) { |
| 6515 if (!?byteOffset) { | 6530 if (!?byteOffset) { |
| 6516 return _DataViewFactoryProvider.createDataView(buffer); | 6531 return _DataViewFactoryProvider.createDataView(buffer); |
| 6517 } | 6532 } |
| 6518 if (!?byteLength) { | 6533 if (!?byteLength) { |
| 6519 return _DataViewFactoryProvider.createDataView(buffer, byteOffset); | 6534 return _DataViewFactoryProvider.createDataView(buffer, byteOffset); |
| 6520 } | 6535 } |
| 6521 return _DataViewFactoryProvider.createDataView(buffer, byteOffset, byteLengt
h); | 6536 return _DataViewFactoryProvider.createDataView(buffer, byteOffset, byteLengt
h); |
| 6522 } | 6537 } |
| 6523 DataView.internal(): super.internal(); | 6538 DataView.internal(): super.internal(); |
| (...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6822 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 6837 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 6823 // for details. All rights reserved. Use of this source code is governed by a | 6838 // for details. All rights reserved. Use of this source code is governed by a |
| 6824 // BSD-style license that can be found in the LICENSE file. | 6839 // BSD-style license that can be found in the LICENSE file. |
| 6825 | 6840 |
| 6826 // WARNING: Do not edit - generated code. | 6841 // WARNING: Do not edit - generated code. |
| 6827 | 6842 |
| 6828 | 6843 |
| 6829 /// @domName HTMLDetailsElement | 6844 /// @domName HTMLDetailsElement |
| 6830 class DetailsElement extends _Element_Merged { | 6845 class DetailsElement extends _Element_Merged { |
| 6831 | 6846 |
| 6847 ///@docsEditable true |
| 6832 factory DetailsElement() => document.$dom_createElement("details"); | 6848 factory DetailsElement() => document.$dom_createElement("details"); |
| 6833 DetailsElement.internal(): super.internal(); | 6849 DetailsElement.internal(): super.internal(); |
| 6834 | 6850 |
| 6835 | 6851 |
| 6836 /** @domName HTMLDetailsElement.open */ | 6852 /** @domName HTMLDetailsElement.open */ |
| 6837 bool get open native "HTMLDetailsElement_open_Getter"; | 6853 bool get open native "HTMLDetailsElement_open_Getter"; |
| 6838 | 6854 |
| 6839 | 6855 |
| 6840 /** @domName HTMLDetailsElement.open */ | 6856 /** @domName HTMLDetailsElement.open */ |
| 6841 void set open(bool value) native "HTMLDetailsElement_open_Setter"; | 6857 void set open(bool value) native "HTMLDetailsElement_open_Setter"; |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7000 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7016 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7001 // for details. All rights reserved. Use of this source code is governed by a | 7017 // for details. All rights reserved. Use of this source code is governed by a |
| 7002 // BSD-style license that can be found in the LICENSE file. | 7018 // BSD-style license that can be found in the LICENSE file. |
| 7003 | 7019 |
| 7004 // WARNING: Do not edit - generated code. | 7020 // WARNING: Do not edit - generated code. |
| 7005 | 7021 |
| 7006 | 7022 |
| 7007 /// @domName HTMLDivElement | 7023 /// @domName HTMLDivElement |
| 7008 class DivElement extends _Element_Merged { | 7024 class DivElement extends _Element_Merged { |
| 7009 | 7025 |
| 7026 ///@docsEditable true |
| 7010 factory DivElement() => document.$dom_createElement("div"); | 7027 factory DivElement() => document.$dom_createElement("div"); |
| 7011 DivElement.internal(): super.internal(); | 7028 DivElement.internal(): super.internal(); |
| 7012 | 7029 |
| 7013 } | 7030 } |
| 7014 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7031 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7015 // for details. All rights reserved. Use of this source code is governed by a | 7032 // for details. All rights reserved. Use of this source code is governed by a |
| 7016 // BSD-style license that can be found in the LICENSE file. | 7033 // BSD-style license that can be found in the LICENSE file. |
| 7017 | 7034 |
| 7018 | 7035 |
| 7019 /// @domName Document | 7036 /// @domName Document |
| (...skipping 900 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7920 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7937 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7921 // for details. All rights reserved. Use of this source code is governed by a | 7938 // for details. All rights reserved. Use of this source code is governed by a |
| 7922 // BSD-style license that can be found in the LICENSE file. | 7939 // BSD-style license that can be found in the LICENSE file. |
| 7923 | 7940 |
| 7924 // WARNING: Do not edit - generated code. | 7941 // WARNING: Do not edit - generated code. |
| 7925 | 7942 |
| 7926 | 7943 |
| 7927 /// @domName DOMParser | 7944 /// @domName DOMParser |
| 7928 class DomParser extends NativeFieldWrapperClass1 { | 7945 class DomParser extends NativeFieldWrapperClass1 { |
| 7929 | 7946 |
| 7947 ///@docsEditable true |
| 7930 factory DomParser() => _DomParserFactoryProvider.createDomParser(); | 7948 factory DomParser() => _DomParserFactoryProvider.createDomParser(); |
| 7931 DomParser.internal(); | 7949 DomParser.internal(); |
| 7932 | 7950 |
| 7933 | 7951 |
| 7934 /** @domName DOMParser.parseFromString */ | 7952 /** @domName DOMParser.parseFromString */ |
| 7935 Document parseFromString(String str, String contentType) native "DOMParser_par
seFromString_Callback"; | 7953 Document parseFromString(String str, String contentType) native "DOMParser_par
seFromString_Callback"; |
| 7936 | 7954 |
| 7937 } | 7955 } |
| 7938 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 7956 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 7939 // for details. All rights reserved. Use of this source code is governed by a | 7957 // for details. All rights reserved. Use of this source code is governed by a |
| (...skipping 1442 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 9382 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 9400 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 9383 // for details. All rights reserved. Use of this source code is governed by a | 9401 // for details. All rights reserved. Use of this source code is governed by a |
| 9384 // BSD-style license that can be found in the LICENSE file. | 9402 // BSD-style license that can be found in the LICENSE file. |
| 9385 | 9403 |
| 9386 // WARNING: Do not edit - generated code. | 9404 // WARNING: Do not edit - generated code. |
| 9387 | 9405 |
| 9388 | 9406 |
| 9389 /// @domName HTMLEmbedElement | 9407 /// @domName HTMLEmbedElement |
| 9390 class EmbedElement extends _Element_Merged { | 9408 class EmbedElement extends _Element_Merged { |
| 9391 | 9409 |
| 9410 ///@docsEditable true |
| 9392 factory EmbedElement() => document.$dom_createElement("embed"); | 9411 factory EmbedElement() => document.$dom_createElement("embed"); |
| 9393 EmbedElement.internal(): super.internal(); | 9412 EmbedElement.internal(): super.internal(); |
| 9394 | 9413 |
| 9395 | 9414 |
| 9396 /** @domName HTMLEmbedElement.align */ | 9415 /** @domName HTMLEmbedElement.align */ |
| 9397 String get align native "HTMLEmbedElement_align_Getter"; | 9416 String get align native "HTMLEmbedElement_align_Getter"; |
| 9398 | 9417 |
| 9399 | 9418 |
| 9400 /** @domName HTMLEmbedElement.align */ | 9419 /** @domName HTMLEmbedElement.align */ |
| 9401 void set align(String value) native "HTMLEmbedElement_align_Setter"; | 9420 void set align(String value) native "HTMLEmbedElement_align_Setter"; |
| (...skipping 398 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 9800 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 9819 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 9801 // for details. All rights reserved. Use of this source code is governed by a | 9820 // for details. All rights reserved. Use of this source code is governed by a |
| 9802 // BSD-style license that can be found in the LICENSE file. | 9821 // BSD-style license that can be found in the LICENSE file. |
| 9803 | 9822 |
| 9804 // WARNING: Do not edit - generated code. | 9823 // WARNING: Do not edit - generated code. |
| 9805 | 9824 |
| 9806 | 9825 |
| 9807 /// @domName EventSource | 9826 /// @domName EventSource |
| 9808 class EventSource extends EventTarget { | 9827 class EventSource extends EventTarget { |
| 9809 | 9828 |
| 9829 ///@docsEditable true |
| 9810 factory EventSource(String scriptUrl) => _EventSourceFactoryProvider.createEve
ntSource(scriptUrl); | 9830 factory EventSource(String scriptUrl) => _EventSourceFactoryProvider.createEve
ntSource(scriptUrl); |
| 9811 EventSource.internal(): super.internal(); | 9831 EventSource.internal(): super.internal(); |
| 9812 | 9832 |
| 9813 /// @domName EventTarget.addEventListener, EventTarget.removeEventListener, Ev
entTarget.dispatchEvent; @docsEditable true | 9833 /// @domName EventTarget.addEventListener, EventTarget.removeEventListener, Ev
entTarget.dispatchEvent; @docsEditable true |
| 9814 EventSourceEvents get on => | 9834 EventSourceEvents get on => |
| 9815 new EventSourceEvents(this); | 9835 new EventSourceEvents(this); |
| 9816 | 9836 |
| 9817 static const int CLOSED = 2; | 9837 static const int CLOSED = 2; |
| 9818 | 9838 |
| 9819 static const int CONNECTING = 0; | 9839 static const int CONNECTING = 0; |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 9968 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 9988 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 9969 // for details. All rights reserved. Use of this source code is governed by a | 9989 // for details. All rights reserved. Use of this source code is governed by a |
| 9970 // BSD-style license that can be found in the LICENSE file. | 9990 // BSD-style license that can be found in the LICENSE file. |
| 9971 | 9991 |
| 9972 // WARNING: Do not edit - generated code. | 9992 // WARNING: Do not edit - generated code. |
| 9973 | 9993 |
| 9974 | 9994 |
| 9975 /// @domName HTMLFieldSetElement | 9995 /// @domName HTMLFieldSetElement |
| 9976 class FieldSetElement extends _Element_Merged { | 9996 class FieldSetElement extends _Element_Merged { |
| 9977 | 9997 |
| 9998 ///@docsEditable true |
| 9978 factory FieldSetElement() => document.$dom_createElement("fieldset"); | 9999 factory FieldSetElement() => document.$dom_createElement("fieldset"); |
| 9979 FieldSetElement.internal(): super.internal(); | 10000 FieldSetElement.internal(): super.internal(); |
| 9980 | 10001 |
| 9981 | 10002 |
| 9982 /** @domName HTMLFieldSetElement.disabled */ | 10003 /** @domName HTMLFieldSetElement.disabled */ |
| 9983 bool get disabled native "HTMLFieldSetElement_disabled_Getter"; | 10004 bool get disabled native "HTMLFieldSetElement_disabled_Getter"; |
| 9984 | 10005 |
| 9985 | 10006 |
| 9986 /** @domName HTMLFieldSetElement.disabled */ | 10007 /** @domName HTMLFieldSetElement.disabled */ |
| 9987 void set disabled(bool value) native "HTMLFieldSetElement_disabled_Setter"; | 10008 void set disabled(bool value) native "HTMLFieldSetElement_disabled_Setter"; |
| (...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 10314 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 10335 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 10315 // for details. All rights reserved. Use of this source code is governed by a | 10336 // for details. All rights reserved. Use of this source code is governed by a |
| 10316 // BSD-style license that can be found in the LICENSE file. | 10337 // BSD-style license that can be found in the LICENSE file. |
| 10317 | 10338 |
| 10318 // WARNING: Do not edit - generated code. | 10339 // WARNING: Do not edit - generated code. |
| 10319 | 10340 |
| 10320 | 10341 |
| 10321 /// @domName FileReader | 10342 /// @domName FileReader |
| 10322 class FileReader extends EventTarget { | 10343 class FileReader extends EventTarget { |
| 10323 | 10344 |
| 10345 ///@docsEditable true |
| 10324 factory FileReader() => _FileReaderFactoryProvider.createFileReader(); | 10346 factory FileReader() => _FileReaderFactoryProvider.createFileReader(); |
| 10325 FileReader.internal(): super.internal(); | 10347 FileReader.internal(): super.internal(); |
| 10326 | 10348 |
| 10327 /// @domName EventTarget.addEventListener, EventTarget.removeEventListener, Ev
entTarget.dispatchEvent; @docsEditable true | 10349 /// @domName EventTarget.addEventListener, EventTarget.removeEventListener, Ev
entTarget.dispatchEvent; @docsEditable true |
| 10328 FileReaderEvents get on => | 10350 FileReaderEvents get on => |
| 10329 new FileReaderEvents(this); | 10351 new FileReaderEvents(this); |
| 10330 | 10352 |
| 10331 static const int DONE = 2; | 10353 static const int DONE = 2; |
| 10332 | 10354 |
| 10333 static const int EMPTY = 0; | 10355 static const int EMPTY = 0; |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 10410 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 10432 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 10411 // for details. All rights reserved. Use of this source code is governed by a | 10433 // for details. All rights reserved. Use of this source code is governed by a |
| 10412 // BSD-style license that can be found in the LICENSE file. | 10434 // BSD-style license that can be found in the LICENSE file. |
| 10413 | 10435 |
| 10414 // WARNING: Do not edit - generated code. | 10436 // WARNING: Do not edit - generated code. |
| 10415 | 10437 |
| 10416 | 10438 |
| 10417 /// @domName FileReaderSync | 10439 /// @domName FileReaderSync |
| 10418 class FileReaderSync extends NativeFieldWrapperClass1 { | 10440 class FileReaderSync extends NativeFieldWrapperClass1 { |
| 10419 | 10441 |
| 10442 ///@docsEditable true |
| 10420 factory FileReaderSync() => _FileReaderSyncFactoryProvider.createFileReaderSyn
c(); | 10443 factory FileReaderSync() => _FileReaderSyncFactoryProvider.createFileReaderSyn
c(); |
| 10421 FileReaderSync.internal(); | 10444 FileReaderSync.internal(); |
| 10422 | 10445 |
| 10423 | 10446 |
| 10424 /** @domName FileReaderSync.readAsArrayBuffer */ | 10447 /** @domName FileReaderSync.readAsArrayBuffer */ |
| 10425 ArrayBuffer readAsArrayBuffer(Blob blob) native "FileReaderSync_readAsArrayBuf
fer_Callback"; | 10448 ArrayBuffer readAsArrayBuffer(Blob blob) native "FileReaderSync_readAsArrayBuf
fer_Callback"; |
| 10426 | 10449 |
| 10427 | 10450 |
| 10428 /** @domName FileReaderSync.readAsBinaryString */ | 10451 /** @domName FileReaderSync.readAsBinaryString */ |
| 10429 String readAsBinaryString(Blob blob) native "FileReaderSync_readAsBinaryString
_Callback"; | 10452 String readAsBinaryString(Blob blob) native "FileReaderSync_readAsBinaryString
_Callback"; |
| (...skipping 523 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 10953 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 10976 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 10954 // for details. All rights reserved. Use of this source code is governed by a | 10977 // for details. All rights reserved. Use of this source code is governed by a |
| 10955 // BSD-style license that can be found in the LICENSE file. | 10978 // BSD-style license that can be found in the LICENSE file. |
| 10956 | 10979 |
| 10957 // WARNING: Do not edit - generated code. | 10980 // WARNING: Do not edit - generated code. |
| 10958 | 10981 |
| 10959 | 10982 |
| 10960 /// @domName FormData | 10983 /// @domName FormData |
| 10961 class FormData extends NativeFieldWrapperClass1 { | 10984 class FormData extends NativeFieldWrapperClass1 { |
| 10962 | 10985 |
| 10986 ///@docsEditable true |
| 10963 factory FormData([FormElement form]) { | 10987 factory FormData([FormElement form]) { |
| 10964 if (!?form) { | 10988 if (!?form) { |
| 10965 return _FormDataFactoryProvider.createFormData(); | 10989 return _FormDataFactoryProvider.createFormData(); |
| 10966 } | 10990 } |
| 10967 return _FormDataFactoryProvider.createFormData(form); | 10991 return _FormDataFactoryProvider.createFormData(form); |
| 10968 } | 10992 } |
| 10969 FormData.internal(); | 10993 FormData.internal(); |
| 10970 | 10994 |
| 10971 | 10995 |
| 10972 /** @domName DOMFormData.append */ | 10996 /** @domName DOMFormData.append */ |
| 10973 void append(String name, String value, String filename) native "DOMFormData_ap
pend_Callback"; | 10997 void append(String name, String value, String filename) native "DOMFormData_ap
pend_Callback"; |
| 10974 | 10998 |
| 10975 } | 10999 } |
| 10976 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 11000 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 10977 // for details. All rights reserved. Use of this source code is governed by a | 11001 // for details. All rights reserved. Use of this source code is governed by a |
| 10978 // BSD-style license that can be found in the LICENSE file. | 11002 // BSD-style license that can be found in the LICENSE file. |
| 10979 | 11003 |
| 10980 // WARNING: Do not edit - generated code. | 11004 // WARNING: Do not edit - generated code. |
| 10981 | 11005 |
| 10982 | 11006 |
| 10983 /// @domName HTMLFormElement | 11007 /// @domName HTMLFormElement |
| 10984 class FormElement extends _Element_Merged { | 11008 class FormElement extends _Element_Merged { |
| 10985 | 11009 |
| 11010 ///@docsEditable true |
| 10986 factory FormElement() => document.$dom_createElement("form"); | 11011 factory FormElement() => document.$dom_createElement("form"); |
| 10987 FormElement.internal(): super.internal(); | 11012 FormElement.internal(): super.internal(); |
| 10988 | 11013 |
| 10989 | 11014 |
| 10990 /** @domName HTMLFormElement.acceptCharset */ | 11015 /** @domName HTMLFormElement.acceptCharset */ |
| 10991 String get acceptCharset native "HTMLFormElement_acceptCharset_Getter"; | 11016 String get acceptCharset native "HTMLFormElement_acceptCharset_Getter"; |
| 10992 | 11017 |
| 10993 | 11018 |
| 10994 /** @domName HTMLFormElement.acceptCharset */ | 11019 /** @domName HTMLFormElement.acceptCharset */ |
| 10995 void set acceptCharset(String value) native "HTMLFormElement_acceptCharset_Set
ter"; | 11020 void set acceptCharset(String value) native "HTMLFormElement_acceptCharset_Set
ter"; |
| (...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 11312 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 11337 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 11313 // for details. All rights reserved. Use of this source code is governed by a | 11338 // for details. All rights reserved. Use of this source code is governed by a |
| 11314 // BSD-style license that can be found in the LICENSE file. | 11339 // BSD-style license that can be found in the LICENSE file. |
| 11315 | 11340 |
| 11316 // WARNING: Do not edit - generated code. | 11341 // WARNING: Do not edit - generated code. |
| 11317 | 11342 |
| 11318 | 11343 |
| 11319 /// @domName HTMLHRElement | 11344 /// @domName HTMLHRElement |
| 11320 class HRElement extends _Element_Merged { | 11345 class HRElement extends _Element_Merged { |
| 11321 | 11346 |
| 11347 ///@docsEditable true |
| 11322 factory HRElement() => document.$dom_createElement("hr"); | 11348 factory HRElement() => document.$dom_createElement("hr"); |
| 11323 HRElement.internal(): super.internal(); | 11349 HRElement.internal(): super.internal(); |
| 11324 | 11350 |
| 11325 | 11351 |
| 11326 /** @domName HTMLHRElement.align */ | 11352 /** @domName HTMLHRElement.align */ |
| 11327 String get align native "HTMLHRElement_align_Getter"; | 11353 String get align native "HTMLHRElement_align_Getter"; |
| 11328 | 11354 |
| 11329 | 11355 |
| 11330 /** @domName HTMLHRElement.align */ | 11356 /** @domName HTMLHRElement.align */ |
| 11331 void set align(String value) native "HTMLHRElement_align_Setter"; | 11357 void set align(String value) native "HTMLHRElement_align_Setter"; |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 11382 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 11408 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 11383 // for details. All rights reserved. Use of this source code is governed by a | 11409 // for details. All rights reserved. Use of this source code is governed by a |
| 11384 // BSD-style license that can be found in the LICENSE file. | 11410 // BSD-style license that can be found in the LICENSE file. |
| 11385 | 11411 |
| 11386 // WARNING: Do not edit - generated code. | 11412 // WARNING: Do not edit - generated code. |
| 11387 | 11413 |
| 11388 | 11414 |
| 11389 /// @domName HTMLHeadElement | 11415 /// @domName HTMLHeadElement |
| 11390 class HeadElement extends _Element_Merged { | 11416 class HeadElement extends _Element_Merged { |
| 11391 | 11417 |
| 11418 ///@docsEditable true |
| 11392 factory HeadElement() => document.$dom_createElement("head"); | 11419 factory HeadElement() => document.$dom_createElement("head"); |
| 11393 HeadElement.internal(): super.internal(); | 11420 HeadElement.internal(): super.internal(); |
| 11394 | 11421 |
| 11395 | 11422 |
| 11396 /** @domName HTMLHeadElement.profile */ | 11423 /** @domName HTMLHeadElement.profile */ |
| 11397 String get profile native "HTMLHeadElement_profile_Getter"; | 11424 String get profile native "HTMLHeadElement_profile_Getter"; |
| 11398 | 11425 |
| 11399 | 11426 |
| 11400 /** @domName HTMLHeadElement.profile */ | 11427 /** @domName HTMLHeadElement.profile */ |
| 11401 void set profile(String value) native "HTMLHeadElement_profile_Setter"; | 11428 void set profile(String value) native "HTMLHeadElement_profile_Setter"; |
| 11402 | 11429 |
| 11403 } | 11430 } |
| 11404 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 11431 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 11405 // for details. All rights reserved. Use of this source code is governed by a | 11432 // for details. All rights reserved. Use of this source code is governed by a |
| 11406 // BSD-style license that can be found in the LICENSE file. | 11433 // BSD-style license that can be found in the LICENSE file. |
| 11407 | 11434 |
| 11408 // WARNING: Do not edit - generated code. | 11435 // WARNING: Do not edit - generated code. |
| 11409 | 11436 |
| 11410 | 11437 |
| 11411 /// @domName HTMLHeadingElement | 11438 /// @domName HTMLHeadingElement |
| 11412 class HeadingElement extends _Element_Merged { | 11439 class HeadingElement extends _Element_Merged { |
| 11413 | 11440 |
| 11441 ///@docsEditable true |
| 11414 factory HeadingElement.h1() => document.$dom_createElement("h1"); | 11442 factory HeadingElement.h1() => document.$dom_createElement("h1"); |
| 11415 | 11443 |
| 11444 ///@docsEditable true |
| 11416 factory HeadingElement.h2() => document.$dom_createElement("h2"); | 11445 factory HeadingElement.h2() => document.$dom_createElement("h2"); |
| 11417 | 11446 |
| 11447 ///@docsEditable true |
| 11418 factory HeadingElement.h3() => document.$dom_createElement("h3"); | 11448 factory HeadingElement.h3() => document.$dom_createElement("h3"); |
| 11419 | 11449 |
| 11450 ///@docsEditable true |
| 11420 factory HeadingElement.h4() => document.$dom_createElement("h4"); | 11451 factory HeadingElement.h4() => document.$dom_createElement("h4"); |
| 11421 | 11452 |
| 11453 ///@docsEditable true |
| 11422 factory HeadingElement.h5() => document.$dom_createElement("h5"); | 11454 factory HeadingElement.h5() => document.$dom_createElement("h5"); |
| 11423 | 11455 |
| 11456 ///@docsEditable true |
| 11424 factory HeadingElement.h6() => document.$dom_createElement("h6"); | 11457 factory HeadingElement.h6() => document.$dom_createElement("h6"); |
| 11425 HeadingElement.internal(): super.internal(); | 11458 HeadingElement.internal(): super.internal(); |
| 11426 | 11459 |
| 11427 | 11460 |
| 11428 /** @domName HTMLHeadingElement.align */ | 11461 /** @domName HTMLHeadingElement.align */ |
| 11429 String get align native "HTMLHeadingElement_align_Getter"; | 11462 String get align native "HTMLHeadingElement_align_Getter"; |
| 11430 | 11463 |
| 11431 | 11464 |
| 11432 /** @domName HTMLHeadingElement.align */ | 11465 /** @domName HTMLHeadingElement.align */ |
| 11433 void set align(String value) native "HTMLHeadingElement_align_Setter"; | 11466 void set align(String value) native "HTMLHeadingElement_align_Setter"; |
| (...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 11775 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 11808 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 11776 // for details. All rights reserved. Use of this source code is governed by a | 11809 // for details. All rights reserved. Use of this source code is governed by a |
| 11777 // BSD-style license that can be found in the LICENSE file. | 11810 // BSD-style license that can be found in the LICENSE file. |
| 11778 | 11811 |
| 11779 // WARNING: Do not edit - generated code. | 11812 // WARNING: Do not edit - generated code. |
| 11780 | 11813 |
| 11781 | 11814 |
| 11782 /// @domName HTMLHtmlElement | 11815 /// @domName HTMLHtmlElement |
| 11783 class HtmlElement extends _Element_Merged { | 11816 class HtmlElement extends _Element_Merged { |
| 11784 | 11817 |
| 11818 ///@docsEditable true |
| 11785 factory HtmlElement() => document.$dom_createElement("html"); | 11819 factory HtmlElement() => document.$dom_createElement("html"); |
| 11786 HtmlElement.internal(): super.internal(); | 11820 HtmlElement.internal(): super.internal(); |
| 11787 | 11821 |
| 11788 } | 11822 } |
| 11789 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 11823 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 11790 // for details. All rights reserved. Use of this source code is governed by a | 11824 // for details. All rights reserved. Use of this source code is governed by a |
| 11791 // BSD-style license that can be found in the LICENSE file. | 11825 // BSD-style license that can be found in the LICENSE file. |
| 11792 | 11826 |
| 11793 // WARNING: Do not edit - generated code. | 11827 // WARNING: Do not edit - generated code. |
| 11794 | 11828 |
| (...skipping 25 matching lines...) Expand all Loading... |
| 11820 | 11854 |
| 11821 /** @domName HTMLOptionsCollection.remove */ | 11855 /** @domName HTMLOptionsCollection.remove */ |
| 11822 void remove(int index) native "HTMLOptionsCollection_remove_Callback"; | 11856 void remove(int index) native "HTMLOptionsCollection_remove_Callback"; |
| 11823 | 11857 |
| 11824 } | 11858 } |
| 11825 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 11859 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 11826 // for details. All rights reserved. Use of this source code is governed by a | 11860 // for details. All rights reserved. Use of this source code is governed by a |
| 11827 // BSD-style license that can be found in the LICENSE file. | 11861 // BSD-style license that can be found in the LICENSE file. |
| 11828 | 11862 |
| 11829 | 11863 |
| 11830 /// @domName XMLHttpRequest | 11864 /// HttpRequest is a utility for retrieving data from a URL. |
| 11865 /// |
| 11866 /// HttpRequest can be used to obtain data from http, ftp, as well as file |
| 11867 /// protocols. |
| 11868 /// |
| 11869 /// For example, suppose we're developing this Dart documentation page, and we |
| 11870 /// wish to retrieve the html of the top level page and print it out. |
| 11871 /// The easiest way to do that would be: |
| 11872 /// |
| 11873 /// var httpRequest = HttpRequest.get('http://api.dartlang.org', (request) =
> print(request.responseText)); |
| 11874 /// |
| 11875 /// It is important to note that with the default behavior of this class, your |
| 11876 /// code making the request should be served from the same origin (domain name, |
| 11877 /// port, and application layer protocol) as the url you are trying to access |
| 11878 /// with HttpRequest. However, there are ways to |
| 11879 /// [get around this restriction](http://www.dartlang.org/articles/json-web-serv
ice/#note-on-jsonp). |
| 11880 /// |
| 11881 /// See also: |
| 11882 /// [Dart article on using HttpRequests](http://www.dartlang.org/articles/json-w
eb-service/#getting-data), |
| 11883 /// [JS XMLHttpRequest](https://developer.mozilla.org/en-US/docs/DOM/XMLHttpRequ
est), |
| 11884 /// and [Using XMLHttpRequest](https://developer.mozilla.org/en-US/docs/DOM/XMLH
ttpRequest/Using_XMLHttpRequest) |
| 11885 /// @domName XMLHttpRequest; @docsEditable true |
| 11831 class HttpRequest extends EventTarget { | 11886 class HttpRequest extends EventTarget { |
| 11887 /// @docsEditable true |
| 11832 factory HttpRequest.get(String url, onComplete(HttpRequest request)) => | 11888 factory HttpRequest.get(String url, onComplete(HttpRequest request)) => |
| 11833 _HttpRequestFactoryProvider.createHttpRequest_get(url, onComplete); | 11889 _HttpRequestFactoryProvider.createHttpRequest_get(url, onComplete); |
| 11834 | 11890 |
| 11891 /// @docsEditable true |
| 11835 factory HttpRequest.getWithCredentials(String url, | 11892 factory HttpRequest.getWithCredentials(String url, |
| 11836 onComplete(HttpRequest request)) => | 11893 onComplete(HttpRequest request)) => |
| 11837 _HttpRequestFactoryProvider.createHttpRequest_getWithCredentials(url, | 11894 _HttpRequestFactoryProvider.createHttpRequest_getWithCredentials(url, |
| 11838 onComplete); | 11895 onComplete); |
| 11839 | 11896 |
| 11840 | 11897 |
| 11898 ///@docsEditable true |
| 11841 factory HttpRequest() => _HttpRequestFactoryProvider.createHttpRequest(); | 11899 factory HttpRequest() => _HttpRequestFactoryProvider.createHttpRequest(); |
| 11842 HttpRequest.internal(): super.internal(); | 11900 HttpRequest.internal(): super.internal(); |
| 11843 | 11901 |
| 11844 /// @domName EventTarget.addEventListener, EventTarget.removeEventListener, Ev
entTarget.dispatchEvent; @docsEditable true | 11902 /// @domName EventTarget.addEventListener, EventTarget.removeEventListener, Ev
entTarget.dispatchEvent; @docsEditable true |
| 11845 HttpRequestEvents get on => | 11903 HttpRequestEvents get on => |
| 11846 new HttpRequestEvents(this); | 11904 new HttpRequestEvents(this); |
| 11847 | 11905 |
| 11848 static const int DONE = 4; | 11906 static const int DONE = 4; |
| 11849 | 11907 |
| 11850 static const int HEADERS_RECEIVED = 2; | 11908 static const int HEADERS_RECEIVED = 2; |
| (...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 12057 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 12115 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 12058 // for details. All rights reserved. Use of this source code is governed by a | 12116 // for details. All rights reserved. Use of this source code is governed by a |
| 12059 // BSD-style license that can be found in the LICENSE file. | 12117 // BSD-style license that can be found in the LICENSE file. |
| 12060 | 12118 |
| 12061 // WARNING: Do not edit - generated code. | 12119 // WARNING: Do not edit - generated code. |
| 12062 | 12120 |
| 12063 | 12121 |
| 12064 /// @domName HTMLIFrameElement | 12122 /// @domName HTMLIFrameElement |
| 12065 class IFrameElement extends _Element_Merged { | 12123 class IFrameElement extends _Element_Merged { |
| 12066 | 12124 |
| 12125 ///@docsEditable true |
| 12067 factory IFrameElement() => document.$dom_createElement("iframe"); | 12126 factory IFrameElement() => document.$dom_createElement("iframe"); |
| 12068 IFrameElement.internal(): super.internal(); | 12127 IFrameElement.internal(): super.internal(); |
| 12069 | 12128 |
| 12070 | 12129 |
| 12071 /** @domName HTMLIFrameElement.align */ | 12130 /** @domName HTMLIFrameElement.align */ |
| 12072 String get align native "HTMLIFrameElement_align_Getter"; | 12131 String get align native "HTMLIFrameElement_align_Getter"; |
| 12073 | 12132 |
| 12074 | 12133 |
| 12075 /** @domName HTMLIFrameElement.align */ | 12134 /** @domName HTMLIFrameElement.align */ |
| 12076 void set align(String value) native "HTMLIFrameElement_align_Setter"; | 12135 void set align(String value) native "HTMLIFrameElement_align_Setter"; |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 12179 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 12238 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 12180 // for details. All rights reserved. Use of this source code is governed by a | 12239 // for details. All rights reserved. Use of this source code is governed by a |
| 12181 // BSD-style license that can be found in the LICENSE file. | 12240 // BSD-style license that can be found in the LICENSE file. |
| 12182 | 12241 |
| 12183 // WARNING: Do not edit - generated code. | 12242 // WARNING: Do not edit - generated code. |
| 12184 | 12243 |
| 12185 | 12244 |
| 12186 /// @domName IceCandidate | 12245 /// @domName IceCandidate |
| 12187 class IceCandidate extends NativeFieldWrapperClass1 { | 12246 class IceCandidate extends NativeFieldWrapperClass1 { |
| 12188 | 12247 |
| 12248 ///@docsEditable true |
| 12189 factory IceCandidate(String label, String candidateLine) => _IceCandidateFacto
ryProvider.createIceCandidate(label, candidateLine); | 12249 factory IceCandidate(String label, String candidateLine) => _IceCandidateFacto
ryProvider.createIceCandidate(label, candidateLine); |
| 12190 IceCandidate.internal(); | 12250 IceCandidate.internal(); |
| 12191 | 12251 |
| 12192 | 12252 |
| 12193 /** @domName IceCandidate.label */ | 12253 /** @domName IceCandidate.label */ |
| 12194 String get label native "IceCandidate_label_Getter"; | 12254 String get label native "IceCandidate_label_Getter"; |
| 12195 | 12255 |
| 12196 | 12256 |
| 12197 /** @domName IceCandidate.toSdp */ | 12257 /** @domName IceCandidate.toSdp */ |
| 12198 String toSdp() native "IceCandidate_toSdp_Callback"; | 12258 String toSdp() native "IceCandidate_toSdp_Callback"; |
| (...skipping 26 matching lines...) Expand all Loading... |
| 12225 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 12285 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 12226 // for details. All rights reserved. Use of this source code is governed by a | 12286 // for details. All rights reserved. Use of this source code is governed by a |
| 12227 // BSD-style license that can be found in the LICENSE file. | 12287 // BSD-style license that can be found in the LICENSE file. |
| 12228 | 12288 |
| 12229 // WARNING: Do not edit - generated code. | 12289 // WARNING: Do not edit - generated code. |
| 12230 | 12290 |
| 12231 | 12291 |
| 12232 /// @domName HTMLImageElement | 12292 /// @domName HTMLImageElement |
| 12233 class ImageElement extends _Element_Merged { | 12293 class ImageElement extends _Element_Merged { |
| 12234 | 12294 |
| 12295 ///@docsEditable true |
| 12235 factory ImageElement({String src, int width, int height}) { | 12296 factory ImageElement({String src, int width, int height}) { |
| 12236 var e = document.$dom_createElement("img"); | 12297 var e = document.$dom_createElement("img"); |
| 12237 if (src != null) e.src = src; | 12298 if (src != null) e.src = src; |
| 12238 if (width != null) e.width = width; | 12299 if (width != null) e.width = width; |
| 12239 if (height != null) e.height = height; | 12300 if (height != null) e.height = height; |
| 12240 return e; | 12301 return e; |
| 12241 } | 12302 } |
| 12242 ImageElement.internal(): super.internal(); | 12303 ImageElement.internal(): super.internal(); |
| 12243 | 12304 |
| 12244 | 12305 |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 12377 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 12438 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 12378 // for details. All rights reserved. Use of this source code is governed by a | 12439 // for details. All rights reserved. Use of this source code is governed by a |
| 12379 // BSD-style license that can be found in the LICENSE file. | 12440 // BSD-style license that can be found in the LICENSE file. |
| 12380 | 12441 |
| 12381 // WARNING: Do not edit - generated code. | 12442 // WARNING: Do not edit - generated code. |
| 12382 | 12443 |
| 12383 | 12444 |
| 12384 /// @domName HTMLInputElement | 12445 /// @domName HTMLInputElement |
| 12385 class InputElement extends _Element_Merged { | 12446 class InputElement extends _Element_Merged { |
| 12386 | 12447 |
| 12448 ///@docsEditable true |
| 12387 factory InputElement({String type}) { | 12449 factory InputElement({String type}) { |
| 12388 var e = document.$dom_createElement("input"); | 12450 var e = document.$dom_createElement("input"); |
| 12389 if (type != null) e.type = type; | 12451 if (type != null) e.type = type; |
| 12390 return e; | 12452 return e; |
| 12391 } | 12453 } |
| 12392 InputElement.internal(): super.internal(); | 12454 InputElement.internal(): super.internal(); |
| 12393 | 12455 |
| 12394 /// @domName EventTarget.addEventListener, EventTarget.removeEventListener, Ev
entTarget.dispatchEvent; @docsEditable true | 12456 /// @domName EventTarget.addEventListener, EventTarget.removeEventListener, Ev
entTarget.dispatchEvent; @docsEditable true |
| 12395 InputElementEvents get on => | 12457 InputElementEvents get on => |
| 12396 new InputElementEvents(this); | 12458 new InputElementEvents(this); |
| (...skipping 1019 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 13416 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 13478 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 13417 // for details. All rights reserved. Use of this source code is governed by a | 13479 // for details. All rights reserved. Use of this source code is governed by a |
| 13418 // BSD-style license that can be found in the LICENSE file. | 13480 // BSD-style license that can be found in the LICENSE file. |
| 13419 | 13481 |
| 13420 // WARNING: Do not edit - generated code. | 13482 // WARNING: Do not edit - generated code. |
| 13421 | 13483 |
| 13422 | 13484 |
| 13423 /// @domName HTMLKeygenElement | 13485 /// @domName HTMLKeygenElement |
| 13424 class KeygenElement extends _Element_Merged { | 13486 class KeygenElement extends _Element_Merged { |
| 13425 | 13487 |
| 13488 ///@docsEditable true |
| 13426 factory KeygenElement() => document.$dom_createElement("keygen"); | 13489 factory KeygenElement() => document.$dom_createElement("keygen"); |
| 13427 KeygenElement.internal(): super.internal(); | 13490 KeygenElement.internal(): super.internal(); |
| 13428 | 13491 |
| 13429 | 13492 |
| 13430 /** @domName HTMLKeygenElement.autofocus */ | 13493 /** @domName HTMLKeygenElement.autofocus */ |
| 13431 bool get autofocus native "HTMLKeygenElement_autofocus_Getter"; | 13494 bool get autofocus native "HTMLKeygenElement_autofocus_Getter"; |
| 13432 | 13495 |
| 13433 | 13496 |
| 13434 /** @domName HTMLKeygenElement.autofocus */ | 13497 /** @domName HTMLKeygenElement.autofocus */ |
| 13435 void set autofocus(bool value) native "HTMLKeygenElement_autofocus_Setter"; | 13498 void set autofocus(bool value) native "HTMLKeygenElement_autofocus_Setter"; |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 13502 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 13565 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 13503 // for details. All rights reserved. Use of this source code is governed by a | 13566 // for details. All rights reserved. Use of this source code is governed by a |
| 13504 // BSD-style license that can be found in the LICENSE file. | 13567 // BSD-style license that can be found in the LICENSE file. |
| 13505 | 13568 |
| 13506 // WARNING: Do not edit - generated code. | 13569 // WARNING: Do not edit - generated code. |
| 13507 | 13570 |
| 13508 | 13571 |
| 13509 /// @domName HTMLLIElement | 13572 /// @domName HTMLLIElement |
| 13510 class LIElement extends _Element_Merged { | 13573 class LIElement extends _Element_Merged { |
| 13511 | 13574 |
| 13575 ///@docsEditable true |
| 13512 factory LIElement() => document.$dom_createElement("li"); | 13576 factory LIElement() => document.$dom_createElement("li"); |
| 13513 LIElement.internal(): super.internal(); | 13577 LIElement.internal(): super.internal(); |
| 13514 | 13578 |
| 13515 | 13579 |
| 13516 /** @domName HTMLLIElement.type */ | 13580 /** @domName HTMLLIElement.type */ |
| 13517 String get type native "HTMLLIElement_type_Getter"; | 13581 String get type native "HTMLLIElement_type_Getter"; |
| 13518 | 13582 |
| 13519 | 13583 |
| 13520 /** @domName HTMLLIElement.type */ | 13584 /** @domName HTMLLIElement.type */ |
| 13521 void set type(String value) native "HTMLLIElement_type_Setter"; | 13585 void set type(String value) native "HTMLLIElement_type_Setter"; |
| (...skipping 10 matching lines...) Expand all Loading... |
| 13532 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 13596 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 13533 // for details. All rights reserved. Use of this source code is governed by a | 13597 // for details. All rights reserved. Use of this source code is governed by a |
| 13534 // BSD-style license that can be found in the LICENSE file. | 13598 // BSD-style license that can be found in the LICENSE file. |
| 13535 | 13599 |
| 13536 // WARNING: Do not edit - generated code. | 13600 // WARNING: Do not edit - generated code. |
| 13537 | 13601 |
| 13538 | 13602 |
| 13539 /// @domName HTMLLabelElement | 13603 /// @domName HTMLLabelElement |
| 13540 class LabelElement extends _Element_Merged { | 13604 class LabelElement extends _Element_Merged { |
| 13541 | 13605 |
| 13606 ///@docsEditable true |
| 13542 factory LabelElement() => document.$dom_createElement("label"); | 13607 factory LabelElement() => document.$dom_createElement("label"); |
| 13543 LabelElement.internal(): super.internal(); | 13608 LabelElement.internal(): super.internal(); |
| 13544 | 13609 |
| 13545 | 13610 |
| 13546 /** @domName HTMLLabelElement.control */ | 13611 /** @domName HTMLLabelElement.control */ |
| 13547 Element get control native "HTMLLabelElement_control_Getter"; | 13612 Element get control native "HTMLLabelElement_control_Getter"; |
| 13548 | 13613 |
| 13549 | 13614 |
| 13550 /** @domName HTMLLabelElement.form */ | 13615 /** @domName HTMLLabelElement.form */ |
| 13551 FormElement get form native "HTMLLabelElement_form_Getter"; | 13616 FormElement get form native "HTMLLabelElement_form_Getter"; |
| (...skipping 10 matching lines...) Expand all Loading... |
| 13562 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 13627 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 13563 // for details. All rights reserved. Use of this source code is governed by a | 13628 // for details. All rights reserved. Use of this source code is governed by a |
| 13564 // BSD-style license that can be found in the LICENSE file. | 13629 // BSD-style license that can be found in the LICENSE file. |
| 13565 | 13630 |
| 13566 // WARNING: Do not edit - generated code. | 13631 // WARNING: Do not edit - generated code. |
| 13567 | 13632 |
| 13568 | 13633 |
| 13569 /// @domName HTMLLegendElement | 13634 /// @domName HTMLLegendElement |
| 13570 class LegendElement extends _Element_Merged { | 13635 class LegendElement extends _Element_Merged { |
| 13571 | 13636 |
| 13637 ///@docsEditable true |
| 13572 factory LegendElement() => document.$dom_createElement("legend"); | 13638 factory LegendElement() => document.$dom_createElement("legend"); |
| 13573 LegendElement.internal(): super.internal(); | 13639 LegendElement.internal(): super.internal(); |
| 13574 | 13640 |
| 13575 | 13641 |
| 13576 /** @domName HTMLLegendElement.align */ | 13642 /** @domName HTMLLegendElement.align */ |
| 13577 String get align native "HTMLLegendElement_align_Getter"; | 13643 String get align native "HTMLLegendElement_align_Getter"; |
| 13578 | 13644 |
| 13579 | 13645 |
| 13580 /** @domName HTMLLegendElement.align */ | 13646 /** @domName HTMLLegendElement.align */ |
| 13581 void set align(String value) native "HTMLLegendElement_align_Setter"; | 13647 void set align(String value) native "HTMLLegendElement_align_Setter"; |
| 13582 | 13648 |
| 13583 | 13649 |
| 13584 /** @domName HTMLLegendElement.form */ | 13650 /** @domName HTMLLegendElement.form */ |
| 13585 FormElement get form native "HTMLLegendElement_form_Getter"; | 13651 FormElement get form native "HTMLLegendElement_form_Getter"; |
| 13586 | 13652 |
| 13587 } | 13653 } |
| 13588 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 13654 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 13589 // for details. All rights reserved. Use of this source code is governed by a | 13655 // for details. All rights reserved. Use of this source code is governed by a |
| 13590 // BSD-style license that can be found in the LICENSE file. | 13656 // BSD-style license that can be found in the LICENSE file. |
| 13591 | 13657 |
| 13592 // WARNING: Do not edit - generated code. | 13658 // WARNING: Do not edit - generated code. |
| 13593 | 13659 |
| 13594 | 13660 |
| 13595 /// @domName HTMLLinkElement | 13661 /// @domName HTMLLinkElement |
| 13596 class LinkElement extends _Element_Merged { | 13662 class LinkElement extends _Element_Merged { |
| 13597 | 13663 |
| 13664 ///@docsEditable true |
| 13598 factory LinkElement() => document.$dom_createElement("link"); | 13665 factory LinkElement() => document.$dom_createElement("link"); |
| 13599 LinkElement.internal(): super.internal(); | 13666 LinkElement.internal(): super.internal(); |
| 13600 | 13667 |
| 13601 | 13668 |
| 13602 /** @domName HTMLLinkElement.charset */ | 13669 /** @domName HTMLLinkElement.charset */ |
| 13603 String get charset native "HTMLLinkElement_charset_Getter"; | 13670 String get charset native "HTMLLinkElement_charset_Getter"; |
| 13604 | 13671 |
| 13605 | 13672 |
| 13606 /** @domName HTMLLinkElement.charset */ | 13673 /** @domName HTMLLinkElement.charset */ |
| 13607 void set charset(String value) native "HTMLLinkElement_charset_Setter"; | 13674 void set charset(String value) native "HTMLLinkElement_charset_Setter"; |
| (...skipping 799 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 14407 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 14474 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 14408 // for details. All rights reserved. Use of this source code is governed by a | 14475 // for details. All rights reserved. Use of this source code is governed by a |
| 14409 // BSD-style license that can be found in the LICENSE file. | 14476 // BSD-style license that can be found in the LICENSE file. |
| 14410 | 14477 |
| 14411 // WARNING: Do not edit - generated code. | 14478 // WARNING: Do not edit - generated code. |
| 14412 | 14479 |
| 14413 | 14480 |
| 14414 /// @domName HTMLMapElement | 14481 /// @domName HTMLMapElement |
| 14415 class MapElement extends _Element_Merged { | 14482 class MapElement extends _Element_Merged { |
| 14416 | 14483 |
| 14484 ///@docsEditable true |
| 14417 factory MapElement() => document.$dom_createElement("map"); | 14485 factory MapElement() => document.$dom_createElement("map"); |
| 14418 MapElement.internal(): super.internal(); | 14486 MapElement.internal(): super.internal(); |
| 14419 | 14487 |
| 14420 | 14488 |
| 14421 /** @domName HTMLMapElement.areas */ | 14489 /** @domName HTMLMapElement.areas */ |
| 14422 HtmlCollection get areas native "HTMLMapElement_areas_Getter"; | 14490 HtmlCollection get areas native "HTMLMapElement_areas_Getter"; |
| 14423 | 14491 |
| 14424 | 14492 |
| 14425 /** @domName HTMLMapElement.name */ | 14493 /** @domName HTMLMapElement.name */ |
| 14426 String get name native "HTMLMapElement_name_Getter"; | 14494 String get name native "HTMLMapElement_name_Getter"; |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 14541 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 14609 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 14542 // for details. All rights reserved. Use of this source code is governed by a | 14610 // for details. All rights reserved. Use of this source code is governed by a |
| 14543 // BSD-style license that can be found in the LICENSE file. | 14611 // BSD-style license that can be found in the LICENSE file. |
| 14544 | 14612 |
| 14545 // WARNING: Do not edit - generated code. | 14613 // WARNING: Do not edit - generated code. |
| 14546 | 14614 |
| 14547 | 14615 |
| 14548 /// @domName MediaController | 14616 /// @domName MediaController |
| 14549 class MediaController extends EventTarget { | 14617 class MediaController extends EventTarget { |
| 14550 | 14618 |
| 14619 ///@docsEditable true |
| 14551 factory MediaController() => _MediaControllerFactoryProvider.createMediaContro
ller(); | 14620 factory MediaController() => _MediaControllerFactoryProvider.createMediaContro
ller(); |
| 14552 MediaController.internal(): super.internal(); | 14621 MediaController.internal(): super.internal(); |
| 14553 | 14622 |
| 14554 | 14623 |
| 14555 /** @domName MediaController.buffered */ | 14624 /** @domName MediaController.buffered */ |
| 14556 TimeRanges get buffered native "MediaController_buffered_Getter"; | 14625 TimeRanges get buffered native "MediaController_buffered_Getter"; |
| 14557 | 14626 |
| 14558 | 14627 |
| 14559 /** @domName MediaController.currentTime */ | 14628 /** @domName MediaController.currentTime */ |
| 14560 num get currentTime native "MediaController_currentTime_Getter"; | 14629 num get currentTime native "MediaController_currentTime_Getter"; |
| (...skipping 598 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 15159 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 15228 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 15160 // for details. All rights reserved. Use of this source code is governed by a | 15229 // for details. All rights reserved. Use of this source code is governed by a |
| 15161 // BSD-style license that can be found in the LICENSE file. | 15230 // BSD-style license that can be found in the LICENSE file. |
| 15162 | 15231 |
| 15163 // WARNING: Do not edit - generated code. | 15232 // WARNING: Do not edit - generated code. |
| 15164 | 15233 |
| 15165 | 15234 |
| 15166 /// @domName MediaSource | 15235 /// @domName MediaSource |
| 15167 class MediaSource extends EventTarget { | 15236 class MediaSource extends EventTarget { |
| 15168 | 15237 |
| 15238 ///@docsEditable true |
| 15169 factory MediaSource() => _MediaSourceFactoryProvider.createMediaSource(); | 15239 factory MediaSource() => _MediaSourceFactoryProvider.createMediaSource(); |
| 15170 MediaSource.internal(): super.internal(); | 15240 MediaSource.internal(): super.internal(); |
| 15171 | 15241 |
| 15172 | 15242 |
| 15173 /** @domName MediaSource.activeSourceBuffers */ | 15243 /** @domName MediaSource.activeSourceBuffers */ |
| 15174 SourceBufferList get activeSourceBuffers native "MediaSource_activeSourceBuffe
rs_Getter"; | 15244 SourceBufferList get activeSourceBuffers native "MediaSource_activeSourceBuffe
rs_Getter"; |
| 15175 | 15245 |
| 15176 | 15246 |
| 15177 /** @domName MediaSource.duration */ | 15247 /** @domName MediaSource.duration */ |
| 15178 num get duration native "MediaSource_duration_Getter"; | 15248 num get duration native "MediaSource_duration_Getter"; |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 15217 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 15287 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 15218 // for details. All rights reserved. Use of this source code is governed by a | 15288 // for details. All rights reserved. Use of this source code is governed by a |
| 15219 // BSD-style license that can be found in the LICENSE file. | 15289 // BSD-style license that can be found in the LICENSE file. |
| 15220 | 15290 |
| 15221 // WARNING: Do not edit - generated code. | 15291 // WARNING: Do not edit - generated code. |
| 15222 | 15292 |
| 15223 | 15293 |
| 15224 /// @domName MediaStream | 15294 /// @domName MediaStream |
| 15225 class MediaStream extends EventTarget { | 15295 class MediaStream extends EventTarget { |
| 15226 | 15296 |
| 15297 ///@docsEditable true |
| 15227 factory MediaStream(MediaStreamTrackList audioTracks, MediaStreamTrackList vid
eoTracks) => _MediaStreamFactoryProvider.createMediaStream(audioTracks, videoTra
cks); | 15298 factory MediaStream(MediaStreamTrackList audioTracks, MediaStreamTrackList vid
eoTracks) => _MediaStreamFactoryProvider.createMediaStream(audioTracks, videoTra
cks); |
| 15228 MediaStream.internal(): super.internal(); | 15299 MediaStream.internal(): super.internal(); |
| 15229 | 15300 |
| 15230 /// @domName EventTarget.addEventListener, EventTarget.removeEventListener, Ev
entTarget.dispatchEvent; @docsEditable true | 15301 /// @domName EventTarget.addEventListener, EventTarget.removeEventListener, Ev
entTarget.dispatchEvent; @docsEditable true |
| 15231 MediaStreamEvents get on => | 15302 MediaStreamEvents get on => |
| 15232 new MediaStreamEvents(this); | 15303 new MediaStreamEvents(this); |
| 15233 | 15304 |
| 15234 static const int ENDED = 2; | 15305 static const int ENDED = 2; |
| 15235 | 15306 |
| 15236 static const int LIVE = 1; | 15307 static const int LIVE = 1; |
| (...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 15445 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 15516 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 15446 // for details. All rights reserved. Use of this source code is governed by a | 15517 // for details. All rights reserved. Use of this source code is governed by a |
| 15447 // BSD-style license that can be found in the LICENSE file. | 15518 // BSD-style license that can be found in the LICENSE file. |
| 15448 | 15519 |
| 15449 // WARNING: Do not edit - generated code. | 15520 // WARNING: Do not edit - generated code. |
| 15450 | 15521 |
| 15451 | 15522 |
| 15452 /// @domName HTMLMenuElement | 15523 /// @domName HTMLMenuElement |
| 15453 class MenuElement extends _Element_Merged { | 15524 class MenuElement extends _Element_Merged { |
| 15454 | 15525 |
| 15526 ///@docsEditable true |
| 15455 factory MenuElement() => document.$dom_createElement("menu"); | 15527 factory MenuElement() => document.$dom_createElement("menu"); |
| 15456 MenuElement.internal(): super.internal(); | 15528 MenuElement.internal(): super.internal(); |
| 15457 | 15529 |
| 15458 } | 15530 } |
| 15459 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 15531 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 15460 // for details. All rights reserved. Use of this source code is governed by a | 15532 // for details. All rights reserved. Use of this source code is governed by a |
| 15461 // BSD-style license that can be found in the LICENSE file. | 15533 // BSD-style license that can be found in the LICENSE file. |
| 15462 | 15534 |
| 15463 // WARNING: Do not edit - generated code. | 15535 // WARNING: Do not edit - generated code. |
| 15464 | 15536 |
| 15465 | 15537 |
| 15466 /// @domName MessageChannel | 15538 /// @domName MessageChannel |
| 15467 class MessageChannel extends NativeFieldWrapperClass1 { | 15539 class MessageChannel extends NativeFieldWrapperClass1 { |
| 15468 | 15540 |
| 15541 ///@docsEditable true |
| 15469 factory MessageChannel() => _MessageChannelFactoryProvider.createMessageChanne
l(); | 15542 factory MessageChannel() => _MessageChannelFactoryProvider.createMessageChanne
l(); |
| 15470 MessageChannel.internal(); | 15543 MessageChannel.internal(); |
| 15471 | 15544 |
| 15472 | 15545 |
| 15473 /** @domName MessageChannel.port1 */ | 15546 /** @domName MessageChannel.port1 */ |
| 15474 MessagePort get port1 native "MessageChannel_port1_Getter"; | 15547 MessagePort get port1 native "MessageChannel_port1_Getter"; |
| 15475 | 15548 |
| 15476 | 15549 |
| 15477 /** @domName MessageChannel.port2 */ | 15550 /** @domName MessageChannel.port2 */ |
| 15478 MessagePort get port2 native "MessageChannel_port2_Getter"; | 15551 MessagePort get port2 native "MessageChannel_port2_Getter"; |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 15639 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 15712 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 15640 // for details. All rights reserved. Use of this source code is governed by a | 15713 // for details. All rights reserved. Use of this source code is governed by a |
| 15641 // BSD-style license that can be found in the LICENSE file. | 15714 // BSD-style license that can be found in the LICENSE file. |
| 15642 | 15715 |
| 15643 // WARNING: Do not edit - generated code. | 15716 // WARNING: Do not edit - generated code. |
| 15644 | 15717 |
| 15645 | 15718 |
| 15646 /// @domName HTMLMeterElement | 15719 /// @domName HTMLMeterElement |
| 15647 class MeterElement extends _Element_Merged { | 15720 class MeterElement extends _Element_Merged { |
| 15648 | 15721 |
| 15722 ///@docsEditable true |
| 15649 factory MeterElement() => document.$dom_createElement("meter"); | 15723 factory MeterElement() => document.$dom_createElement("meter"); |
| 15650 MeterElement.internal(): super.internal(); | 15724 MeterElement.internal(): super.internal(); |
| 15651 | 15725 |
| 15652 | 15726 |
| 15653 /** @domName HTMLMeterElement.high */ | 15727 /** @domName HTMLMeterElement.high */ |
| 15654 num get high native "HTMLMeterElement_high_Getter"; | 15728 num get high native "HTMLMeterElement_high_Getter"; |
| 15655 | 15729 |
| 15656 | 15730 |
| 15657 /** @domName HTMLMeterElement.high */ | 15731 /** @domName HTMLMeterElement.high */ |
| 15658 void set high(num value) native "HTMLMeterElement_high_Setter"; | 15732 void set high(num value) native "HTMLMeterElement_high_Setter"; |
| (...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 15883 | 15957 |
| 15884 } | 15958 } |
| 15885 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 15959 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 15886 // for details. All rights reserved. Use of this source code is governed by a | 15960 // for details. All rights reserved. Use of this source code is governed by a |
| 15887 // BSD-style license that can be found in the LICENSE file. | 15961 // BSD-style license that can be found in the LICENSE file. |
| 15888 | 15962 |
| 15889 | 15963 |
| 15890 /// @domName MutationObserver | 15964 /// @domName MutationObserver |
| 15891 class MutationObserver extends NativeFieldWrapperClass1 { | 15965 class MutationObserver extends NativeFieldWrapperClass1 { |
| 15892 | 15966 |
| 15967 ///@docsEditable true |
| 15893 factory MutationObserver(MutationCallback callback) => _MutationObserverFactor
yProvider.createMutationObserver(callback); | 15968 factory MutationObserver(MutationCallback callback) => _MutationObserverFactor
yProvider.createMutationObserver(callback); |
| 15894 MutationObserver.internal(); | 15969 MutationObserver.internal(); |
| 15895 | 15970 |
| 15896 | 15971 |
| 15897 /** @domName MutationObserver.disconnect */ | 15972 /** @domName MutationObserver.disconnect */ |
| 15898 void disconnect() native "MutationObserver_disconnect_Callback"; | 15973 void disconnect() native "MutationObserver_disconnect_Callback"; |
| 15899 | 15974 |
| 15900 | 15975 |
| 15901 /** @domName MutationObserver._observe */ | 15976 /** @domName MutationObserver._observe */ |
| 15902 void _observe(Node target, Map options) native "MutationObserver__observe_Call
back"; | 15977 void _observe(Node target, Map options) native "MutationObserver__observe_Call
back"; |
| (...skipping 921 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 16824 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 16899 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 16825 // for details. All rights reserved. Use of this source code is governed by a | 16900 // for details. All rights reserved. Use of this source code is governed by a |
| 16826 // BSD-style license that can be found in the LICENSE file. | 16901 // BSD-style license that can be found in the LICENSE file. |
| 16827 | 16902 |
| 16828 // WARNING: Do not edit - generated code. | 16903 // WARNING: Do not edit - generated code. |
| 16829 | 16904 |
| 16830 | 16905 |
| 16831 /// @domName Notification | 16906 /// @domName Notification |
| 16832 class Notification extends EventTarget { | 16907 class Notification extends EventTarget { |
| 16833 | 16908 |
| 16909 ///@docsEditable true |
| 16834 factory Notification(String title, [Map options]) { | 16910 factory Notification(String title, [Map options]) { |
| 16835 if (!?options) { | 16911 if (!?options) { |
| 16836 return _NotificationFactoryProvider.createNotification(title); | 16912 return _NotificationFactoryProvider.createNotification(title); |
| 16837 } | 16913 } |
| 16838 return _NotificationFactoryProvider.createNotification(title, options); | 16914 return _NotificationFactoryProvider.createNotification(title, options); |
| 16839 } | 16915 } |
| 16840 Notification.internal(): super.internal(); | 16916 Notification.internal(): super.internal(); |
| 16841 | 16917 |
| 16842 /// @domName EventTarget.addEventListener, EventTarget.removeEventListener, Ev
entTarget.dispatchEvent; @docsEditable true | 16918 /// @domName EventTarget.addEventListener, EventTarget.removeEventListener, Ev
entTarget.dispatchEvent; @docsEditable true |
| 16843 NotificationEvents get on => | 16919 NotificationEvents get on => |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 16953 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 17029 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 16954 // for details. All rights reserved. Use of this source code is governed by a | 17030 // for details. All rights reserved. Use of this source code is governed by a |
| 16955 // BSD-style license that can be found in the LICENSE file. | 17031 // BSD-style license that can be found in the LICENSE file. |
| 16956 | 17032 |
| 16957 // WARNING: Do not edit - generated code. | 17033 // WARNING: Do not edit - generated code. |
| 16958 | 17034 |
| 16959 | 17035 |
| 16960 /// @domName HTMLOListElement | 17036 /// @domName HTMLOListElement |
| 16961 class OListElement extends _Element_Merged { | 17037 class OListElement extends _Element_Merged { |
| 16962 | 17038 |
| 17039 ///@docsEditable true |
| 16963 factory OListElement() => document.$dom_createElement("ol"); | 17040 factory OListElement() => document.$dom_createElement("ol"); |
| 16964 OListElement.internal(): super.internal(); | 17041 OListElement.internal(): super.internal(); |
| 16965 | 17042 |
| 16966 | 17043 |
| 16967 /** @domName HTMLOListElement.compact */ | 17044 /** @domName HTMLOListElement.compact */ |
| 16968 bool get compact native "HTMLOListElement_compact_Getter"; | 17045 bool get compact native "HTMLOListElement_compact_Getter"; |
| 16969 | 17046 |
| 16970 | 17047 |
| 16971 /** @domName HTMLOListElement.compact */ | 17048 /** @domName HTMLOListElement.compact */ |
| 16972 void set compact(bool value) native "HTMLOListElement_compact_Setter"; | 17049 void set compact(bool value) native "HTMLOListElement_compact_Setter"; |
| (...skipping 26 matching lines...) Expand all Loading... |
| 16999 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 17076 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 17000 // for details. All rights reserved. Use of this source code is governed by a | 17077 // for details. All rights reserved. Use of this source code is governed by a |
| 17001 // BSD-style license that can be found in the LICENSE file. | 17078 // BSD-style license that can be found in the LICENSE file. |
| 17002 | 17079 |
| 17003 // WARNING: Do not edit - generated code. | 17080 // WARNING: Do not edit - generated code. |
| 17004 | 17081 |
| 17005 | 17082 |
| 17006 /// @domName HTMLObjectElement | 17083 /// @domName HTMLObjectElement |
| 17007 class ObjectElement extends _Element_Merged { | 17084 class ObjectElement extends _Element_Merged { |
| 17008 | 17085 |
| 17086 ///@docsEditable true |
| 17009 factory ObjectElement() => document.$dom_createElement("object"); | 17087 factory ObjectElement() => document.$dom_createElement("object"); |
| 17010 ObjectElement.internal(): super.internal(); | 17088 ObjectElement.internal(): super.internal(); |
| 17011 | 17089 |
| 17012 | 17090 |
| 17013 /** @domName HTMLObjectElement.align */ | 17091 /** @domName HTMLObjectElement.align */ |
| 17014 String get align native "HTMLObjectElement_align_Getter"; | 17092 String get align native "HTMLObjectElement_align_Getter"; |
| 17015 | 17093 |
| 17016 | 17094 |
| 17017 /** @domName HTMLObjectElement.align */ | 17095 /** @domName HTMLObjectElement.align */ |
| 17018 void set align(String value) native "HTMLObjectElement_align_Setter"; | 17096 void set align(String value) native "HTMLObjectElement_align_Setter"; |
| (...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 17233 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 17311 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 17234 // for details. All rights reserved. Use of this source code is governed by a | 17312 // for details. All rights reserved. Use of this source code is governed by a |
| 17235 // BSD-style license that can be found in the LICENSE file. | 17313 // BSD-style license that can be found in the LICENSE file. |
| 17236 | 17314 |
| 17237 // WARNING: Do not edit - generated code. | 17315 // WARNING: Do not edit - generated code. |
| 17238 | 17316 |
| 17239 | 17317 |
| 17240 /// @domName HTMLOptGroupElement | 17318 /// @domName HTMLOptGroupElement |
| 17241 class OptGroupElement extends _Element_Merged { | 17319 class OptGroupElement extends _Element_Merged { |
| 17242 | 17320 |
| 17321 ///@docsEditable true |
| 17243 factory OptGroupElement() => document.$dom_createElement("optgroup"); | 17322 factory OptGroupElement() => document.$dom_createElement("optgroup"); |
| 17244 OptGroupElement.internal(): super.internal(); | 17323 OptGroupElement.internal(): super.internal(); |
| 17245 | 17324 |
| 17246 | 17325 |
| 17247 /** @domName HTMLOptGroupElement.disabled */ | 17326 /** @domName HTMLOptGroupElement.disabled */ |
| 17248 bool get disabled native "HTMLOptGroupElement_disabled_Getter"; | 17327 bool get disabled native "HTMLOptGroupElement_disabled_Getter"; |
| 17249 | 17328 |
| 17250 | 17329 |
| 17251 /** @domName HTMLOptGroupElement.disabled */ | 17330 /** @domName HTMLOptGroupElement.disabled */ |
| 17252 void set disabled(bool value) native "HTMLOptGroupElement_disabled_Setter"; | 17331 void set disabled(bool value) native "HTMLOptGroupElement_disabled_Setter"; |
| (...skipping 10 matching lines...) Expand all Loading... |
| 17263 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 17342 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 17264 // for details. All rights reserved. Use of this source code is governed by a | 17343 // for details. All rights reserved. Use of this source code is governed by a |
| 17265 // BSD-style license that can be found in the LICENSE file. | 17344 // BSD-style license that can be found in the LICENSE file. |
| 17266 | 17345 |
| 17267 // WARNING: Do not edit - generated code. | 17346 // WARNING: Do not edit - generated code. |
| 17268 | 17347 |
| 17269 | 17348 |
| 17270 /// @domName HTMLOptionElement | 17349 /// @domName HTMLOptionElement |
| 17271 class OptionElement extends _Element_Merged { | 17350 class OptionElement extends _Element_Merged { |
| 17272 | 17351 |
| 17352 ///@docsEditable true |
| 17273 factory OptionElement([String data, String value, bool defaultSelected, bool s
elected]) { | 17353 factory OptionElement([String data, String value, bool defaultSelected, bool s
elected]) { |
| 17274 if (!?data) { | 17354 if (!?data) { |
| 17275 return _OptionElementFactoryProvider.createOptionElement(); | 17355 return _OptionElementFactoryProvider.createOptionElement(); |
| 17276 } | 17356 } |
| 17277 if (!?value) { | 17357 if (!?value) { |
| 17278 return _OptionElementFactoryProvider.createOptionElement(data); | 17358 return _OptionElementFactoryProvider.createOptionElement(data); |
| 17279 } | 17359 } |
| 17280 if (!?defaultSelected) { | 17360 if (!?defaultSelected) { |
| 17281 return _OptionElementFactoryProvider.createOptionElement(data, value); | 17361 return _OptionElementFactoryProvider.createOptionElement(data, value); |
| 17282 } | 17362 } |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 17339 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 17419 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 17340 // for details. All rights reserved. Use of this source code is governed by a | 17420 // for details. All rights reserved. Use of this source code is governed by a |
| 17341 // BSD-style license that can be found in the LICENSE file. | 17421 // BSD-style license that can be found in the LICENSE file. |
| 17342 | 17422 |
| 17343 // WARNING: Do not edit - generated code. | 17423 // WARNING: Do not edit - generated code. |
| 17344 | 17424 |
| 17345 | 17425 |
| 17346 /// @domName HTMLOutputElement | 17426 /// @domName HTMLOutputElement |
| 17347 class OutputElement extends _Element_Merged { | 17427 class OutputElement extends _Element_Merged { |
| 17348 | 17428 |
| 17429 ///@docsEditable true |
| 17349 factory OutputElement() => document.$dom_createElement("output"); | 17430 factory OutputElement() => document.$dom_createElement("output"); |
| 17350 OutputElement.internal(): super.internal(); | 17431 OutputElement.internal(): super.internal(); |
| 17351 | 17432 |
| 17352 | 17433 |
| 17353 /** @domName HTMLOutputElement.defaultValue */ | 17434 /** @domName HTMLOutputElement.defaultValue */ |
| 17354 String get defaultValue native "HTMLOutputElement_defaultValue_Getter"; | 17435 String get defaultValue native "HTMLOutputElement_defaultValue_Getter"; |
| 17355 | 17436 |
| 17356 | 17437 |
| 17357 /** @domName HTMLOutputElement.defaultValue */ | 17438 /** @domName HTMLOutputElement.defaultValue */ |
| 17358 void set defaultValue(String value) native "HTMLOutputElement_defaultValue_Set
ter"; | 17439 void set defaultValue(String value) native "HTMLOutputElement_defaultValue_Set
ter"; |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 17483 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 17564 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 17484 // for details. All rights reserved. Use of this source code is governed by a | 17565 // for details. All rights reserved. Use of this source code is governed by a |
| 17485 // BSD-style license that can be found in the LICENSE file. | 17566 // BSD-style license that can be found in the LICENSE file. |
| 17486 | 17567 |
| 17487 // WARNING: Do not edit - generated code. | 17568 // WARNING: Do not edit - generated code. |
| 17488 | 17569 |
| 17489 | 17570 |
| 17490 /// @domName HTMLParagraphElement | 17571 /// @domName HTMLParagraphElement |
| 17491 class ParagraphElement extends _Element_Merged { | 17572 class ParagraphElement extends _Element_Merged { |
| 17492 | 17573 |
| 17574 ///@docsEditable true |
| 17493 factory ParagraphElement() => document.$dom_createElement("p"); | 17575 factory ParagraphElement() => document.$dom_createElement("p"); |
| 17494 ParagraphElement.internal(): super.internal(); | 17576 ParagraphElement.internal(): super.internal(); |
| 17495 | 17577 |
| 17496 | 17578 |
| 17497 /** @domName HTMLParagraphElement.align */ | 17579 /** @domName HTMLParagraphElement.align */ |
| 17498 String get align native "HTMLParagraphElement_align_Getter"; | 17580 String get align native "HTMLParagraphElement_align_Getter"; |
| 17499 | 17581 |
| 17500 | 17582 |
| 17501 /** @domName HTMLParagraphElement.align */ | 17583 /** @domName HTMLParagraphElement.align */ |
| 17502 void set align(String value) native "HTMLParagraphElement_align_Setter"; | 17584 void set align(String value) native "HTMLParagraphElement_align_Setter"; |
| 17503 | 17585 |
| 17504 } | 17586 } |
| 17505 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 17587 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 17506 // for details. All rights reserved. Use of this source code is governed by a | 17588 // for details. All rights reserved. Use of this source code is governed by a |
| 17507 // BSD-style license that can be found in the LICENSE file. | 17589 // BSD-style license that can be found in the LICENSE file. |
| 17508 | 17590 |
| 17509 // WARNING: Do not edit - generated code. | 17591 // WARNING: Do not edit - generated code. |
| 17510 | 17592 |
| 17511 | 17593 |
| 17512 /// @domName HTMLParamElement | 17594 /// @domName HTMLParamElement |
| 17513 class ParamElement extends _Element_Merged { | 17595 class ParamElement extends _Element_Merged { |
| 17514 | 17596 |
| 17597 ///@docsEditable true |
| 17515 factory ParamElement() => document.$dom_createElement("param"); | 17598 factory ParamElement() => document.$dom_createElement("param"); |
| 17516 ParamElement.internal(): super.internal(); | 17599 ParamElement.internal(): super.internal(); |
| 17517 | 17600 |
| 17518 | 17601 |
| 17519 /** @domName HTMLParamElement.name */ | 17602 /** @domName HTMLParamElement.name */ |
| 17520 String get name native "HTMLParamElement_name_Getter"; | 17603 String get name native "HTMLParamElement_name_Getter"; |
| 17521 | 17604 |
| 17522 | 17605 |
| 17523 /** @domName HTMLParamElement.name */ | 17606 /** @domName HTMLParamElement.name */ |
| 17524 void set name(String value) native "HTMLParamElement_name_Setter"; | 17607 void set name(String value) native "HTMLParamElement_name_Setter"; |
| (...skipping 26 matching lines...) Expand all Loading... |
| 17551 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 17634 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 17552 // for details. All rights reserved. Use of this source code is governed by a | 17635 // for details. All rights reserved. Use of this source code is governed by a |
| 17553 // BSD-style license that can be found in the LICENSE file. | 17636 // BSD-style license that can be found in the LICENSE file. |
| 17554 | 17637 |
| 17555 // WARNING: Do not edit - generated code. | 17638 // WARNING: Do not edit - generated code. |
| 17556 | 17639 |
| 17557 | 17640 |
| 17558 /// @domName PeerConnection00 | 17641 /// @domName PeerConnection00 |
| 17559 class PeerConnection00 extends EventTarget { | 17642 class PeerConnection00 extends EventTarget { |
| 17560 | 17643 |
| 17644 ///@docsEditable true |
| 17561 factory PeerConnection00(String serverConfiguration, IceCallback iceCallback)
=> _PeerConnection00FactoryProvider.createPeerConnection00(serverConfiguration,
iceCallback); | 17645 factory PeerConnection00(String serverConfiguration, IceCallback iceCallback)
=> _PeerConnection00FactoryProvider.createPeerConnection00(serverConfiguration,
iceCallback); |
| 17562 PeerConnection00.internal(): super.internal(); | 17646 PeerConnection00.internal(): super.internal(); |
| 17563 | 17647 |
| 17564 /// @domName EventTarget.addEventListener, EventTarget.removeEventListener, Ev
entTarget.dispatchEvent; @docsEditable true | 17648 /// @domName EventTarget.addEventListener, EventTarget.removeEventListener, Ev
entTarget.dispatchEvent; @docsEditable true |
| 17565 PeerConnection00Events get on => | 17649 PeerConnection00Events get on => |
| 17566 new PeerConnection00Events(this); | 17650 new PeerConnection00Events(this); |
| 17567 | 17651 |
| 17568 static const int ACTIVE = 2; | 17652 static const int ACTIVE = 2; |
| 17569 | 17653 |
| 17570 static const int CLOSED = 3; | 17654 static const int CLOSED = 3; |
| (...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 17922 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 18006 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 17923 // for details. All rights reserved. Use of this source code is governed by a | 18007 // for details. All rights reserved. Use of this source code is governed by a |
| 17924 // BSD-style license that can be found in the LICENSE file. | 18008 // BSD-style license that can be found in the LICENSE file. |
| 17925 | 18009 |
| 17926 // WARNING: Do not edit - generated code. | 18010 // WARNING: Do not edit - generated code. |
| 17927 | 18011 |
| 17928 | 18012 |
| 17929 /// @domName HTMLPreElement | 18013 /// @domName HTMLPreElement |
| 17930 class PreElement extends _Element_Merged { | 18014 class PreElement extends _Element_Merged { |
| 17931 | 18015 |
| 18016 ///@docsEditable true |
| 17932 factory PreElement() => document.$dom_createElement("pre"); | 18017 factory PreElement() => document.$dom_createElement("pre"); |
| 17933 PreElement.internal(): super.internal(); | 18018 PreElement.internal(): super.internal(); |
| 17934 | 18019 |
| 17935 | 18020 |
| 17936 /** @domName HTMLPreElement.width */ | 18021 /** @domName HTMLPreElement.width */ |
| 17937 int get width native "HTMLPreElement_width_Getter"; | 18022 int get width native "HTMLPreElement_width_Getter"; |
| 17938 | 18023 |
| 17939 | 18024 |
| 17940 /** @domName HTMLPreElement.width */ | 18025 /** @domName HTMLPreElement.width */ |
| 17941 void set width(int value) native "HTMLPreElement_width_Setter"; | 18026 void set width(int value) native "HTMLPreElement_width_Setter"; |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 17980 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 18065 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 17981 // for details. All rights reserved. Use of this source code is governed by a | 18066 // for details. All rights reserved. Use of this source code is governed by a |
| 17982 // BSD-style license that can be found in the LICENSE file. | 18067 // BSD-style license that can be found in the LICENSE file. |
| 17983 | 18068 |
| 17984 // WARNING: Do not edit - generated code. | 18069 // WARNING: Do not edit - generated code. |
| 17985 | 18070 |
| 17986 | 18071 |
| 17987 /// @domName HTMLProgressElement | 18072 /// @domName HTMLProgressElement |
| 17988 class ProgressElement extends _Element_Merged { | 18073 class ProgressElement extends _Element_Merged { |
| 17989 | 18074 |
| 18075 ///@docsEditable true |
| 17990 factory ProgressElement() => document.$dom_createElement("progress"); | 18076 factory ProgressElement() => document.$dom_createElement("progress"); |
| 17991 ProgressElement.internal(): super.internal(); | 18077 ProgressElement.internal(): super.internal(); |
| 17992 | 18078 |
| 17993 | 18079 |
| 17994 /** @domName HTMLProgressElement.labels */ | 18080 /** @domName HTMLProgressElement.labels */ |
| 17995 List<Node> get labels native "HTMLProgressElement_labels_Getter"; | 18081 List<Node> get labels native "HTMLProgressElement_labels_Getter"; |
| 17996 | 18082 |
| 17997 | 18083 |
| 17998 /** @domName HTMLProgressElement.max */ | 18084 /** @domName HTMLProgressElement.max */ |
| 17999 num get max native "HTMLProgressElement_max_Getter"; | 18085 num get max native "HTMLProgressElement_max_Getter"; |
| (...skipping 470 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 18470 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 18556 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 18471 // for details. All rights reserved. Use of this source code is governed by a | 18557 // for details. All rights reserved. Use of this source code is governed by a |
| 18472 // BSD-style license that can be found in the LICENSE file. | 18558 // BSD-style license that can be found in the LICENSE file. |
| 18473 | 18559 |
| 18474 // WARNING: Do not edit - generated code. | 18560 // WARNING: Do not edit - generated code. |
| 18475 | 18561 |
| 18476 | 18562 |
| 18477 /// @domName RTCIceCandidate | 18563 /// @domName RTCIceCandidate |
| 18478 class RtcIceCandidate extends NativeFieldWrapperClass1 { | 18564 class RtcIceCandidate extends NativeFieldWrapperClass1 { |
| 18479 | 18565 |
| 18566 ///@docsEditable true |
| 18480 factory RtcIceCandidate(Map dictionary) => _RtcIceCandidateFactoryProvider.cre
ateRtcIceCandidate(dictionary); | 18567 factory RtcIceCandidate(Map dictionary) => _RtcIceCandidateFactoryProvider.cre
ateRtcIceCandidate(dictionary); |
| 18481 RtcIceCandidate.internal(); | 18568 RtcIceCandidate.internal(); |
| 18482 | 18569 |
| 18483 | 18570 |
| 18484 /** @domName RTCIceCandidate.candidate */ | 18571 /** @domName RTCIceCandidate.candidate */ |
| 18485 String get candidate native "RTCIceCandidate_candidate_Getter"; | 18572 String get candidate native "RTCIceCandidate_candidate_Getter"; |
| 18486 | 18573 |
| 18487 | 18574 |
| 18488 /** @domName RTCIceCandidate.sdpMLineIndex */ | 18575 /** @domName RTCIceCandidate.sdpMLineIndex */ |
| 18489 int get sdpMLineIndex native "RTCIceCandidate_sdpMLineIndex_Getter"; | 18576 int get sdpMLineIndex native "RTCIceCandidate_sdpMLineIndex_Getter"; |
| (...skipping 22 matching lines...) Expand all Loading... |
| 18512 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 18599 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 18513 // for details. All rights reserved. Use of this source code is governed by a | 18600 // for details. All rights reserved. Use of this source code is governed by a |
| 18514 // BSD-style license that can be found in the LICENSE file. | 18601 // BSD-style license that can be found in the LICENSE file. |
| 18515 | 18602 |
| 18516 // WARNING: Do not edit - generated code. | 18603 // WARNING: Do not edit - generated code. |
| 18517 | 18604 |
| 18518 | 18605 |
| 18519 /// @domName RTCPeerConnection | 18606 /// @domName RTCPeerConnection |
| 18520 class RtcPeerConnection extends EventTarget { | 18607 class RtcPeerConnection extends EventTarget { |
| 18521 | 18608 |
| 18609 ///@docsEditable true |
| 18522 factory RtcPeerConnection(Map rtcIceServers, [Map mediaConstraints]) { | 18610 factory RtcPeerConnection(Map rtcIceServers, [Map mediaConstraints]) { |
| 18523 if (!?mediaConstraints) { | 18611 if (!?mediaConstraints) { |
| 18524 return _RtcPeerConnectionFactoryProvider.createRtcPeerConnection(rtcIceSer
vers); | 18612 return _RtcPeerConnectionFactoryProvider.createRtcPeerConnection(rtcIceSer
vers); |
| 18525 } | 18613 } |
| 18526 return _RtcPeerConnectionFactoryProvider.createRtcPeerConnection(rtcIceServe
rs, mediaConstraints); | 18614 return _RtcPeerConnectionFactoryProvider.createRtcPeerConnection(rtcIceServe
rs, mediaConstraints); |
| 18527 } | 18615 } |
| 18528 RtcPeerConnection.internal(): super.internal(); | 18616 RtcPeerConnection.internal(): super.internal(); |
| 18529 | 18617 |
| 18530 /// @domName EventTarget.addEventListener, EventTarget.removeEventListener, Ev
entTarget.dispatchEvent; @docsEditable true | 18618 /// @domName EventTarget.addEventListener, EventTarget.removeEventListener, Ev
entTarget.dispatchEvent; @docsEditable true |
| 18531 RtcPeerConnectionEvents get on => | 18619 RtcPeerConnectionEvents get on => |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 18633 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 18721 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 18634 // for details. All rights reserved. Use of this source code is governed by a | 18722 // for details. All rights reserved. Use of this source code is governed by a |
| 18635 // BSD-style license that can be found in the LICENSE file. | 18723 // BSD-style license that can be found in the LICENSE file. |
| 18636 | 18724 |
| 18637 // WARNING: Do not edit - generated code. | 18725 // WARNING: Do not edit - generated code. |
| 18638 | 18726 |
| 18639 | 18727 |
| 18640 /// @domName RTCSessionDescription | 18728 /// @domName RTCSessionDescription |
| 18641 class RtcSessionDescription extends NativeFieldWrapperClass1 { | 18729 class RtcSessionDescription extends NativeFieldWrapperClass1 { |
| 18642 | 18730 |
| 18731 ///@docsEditable true |
| 18643 factory RtcSessionDescription(Map dictionary) => _RtcSessionDescriptionFactory
Provider.createRtcSessionDescription(dictionary); | 18732 factory RtcSessionDescription(Map dictionary) => _RtcSessionDescriptionFactory
Provider.createRtcSessionDescription(dictionary); |
| 18644 RtcSessionDescription.internal(); | 18733 RtcSessionDescription.internal(); |
| 18645 | 18734 |
| 18646 | 18735 |
| 18647 /** @domName RTCSessionDescription.sdp */ | 18736 /** @domName RTCSessionDescription.sdp */ |
| 18648 String get sdp native "RTCSessionDescription_sdp_Getter"; | 18737 String get sdp native "RTCSessionDescription_sdp_Getter"; |
| 18649 | 18738 |
| 18650 | 18739 |
| 18651 /** @domName RTCSessionDescription.sdp */ | 18740 /** @domName RTCSessionDescription.sdp */ |
| 18652 void set sdp(String value) native "RTCSessionDescription_sdp_Setter"; | 18741 void set sdp(String value) native "RTCSessionDescription_sdp_Setter"; |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 18803 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 18892 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 18804 // for details. All rights reserved. Use of this source code is governed by a | 18893 // for details. All rights reserved. Use of this source code is governed by a |
| 18805 // BSD-style license that can be found in the LICENSE file. | 18894 // BSD-style license that can be found in the LICENSE file. |
| 18806 | 18895 |
| 18807 // WARNING: Do not edit - generated code. | 18896 // WARNING: Do not edit - generated code. |
| 18808 | 18897 |
| 18809 | 18898 |
| 18810 /// @domName HTMLScriptElement | 18899 /// @domName HTMLScriptElement |
| 18811 class ScriptElement extends _Element_Merged { | 18900 class ScriptElement extends _Element_Merged { |
| 18812 | 18901 |
| 18902 ///@docsEditable true |
| 18813 factory ScriptElement() => document.$dom_createElement("script"); | 18903 factory ScriptElement() => document.$dom_createElement("script"); |
| 18814 ScriptElement.internal(): super.internal(); | 18904 ScriptElement.internal(): super.internal(); |
| 18815 | 18905 |
| 18816 | 18906 |
| 18817 /** @domName HTMLScriptElement.async */ | 18907 /** @domName HTMLScriptElement.async */ |
| 18818 bool get async native "HTMLScriptElement_async_Getter"; | 18908 bool get async native "HTMLScriptElement_async_Getter"; |
| 18819 | 18909 |
| 18820 | 18910 |
| 18821 /** @domName HTMLScriptElement.async */ | 18911 /** @domName HTMLScriptElement.async */ |
| 18822 void set async(bool value) native "HTMLScriptElement_async_Setter"; | 18912 void set async(bool value) native "HTMLScriptElement_async_Setter"; |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 18953 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 19043 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 18954 // for details. All rights reserved. Use of this source code is governed by a | 19044 // for details. All rights reserved. Use of this source code is governed by a |
| 18955 // BSD-style license that can be found in the LICENSE file. | 19045 // BSD-style license that can be found in the LICENSE file. |
| 18956 | 19046 |
| 18957 // WARNING: Do not edit - generated code. | 19047 // WARNING: Do not edit - generated code. |
| 18958 | 19048 |
| 18959 | 19049 |
| 18960 /// @domName HTMLSelectElement | 19050 /// @domName HTMLSelectElement |
| 18961 class SelectElement extends _Element_Merged { | 19051 class SelectElement extends _Element_Merged { |
| 18962 | 19052 |
| 19053 ///@docsEditable true |
| 18963 factory SelectElement() => document.$dom_createElement("select"); | 19054 factory SelectElement() => document.$dom_createElement("select"); |
| 18964 SelectElement.internal(): super.internal(); | 19055 SelectElement.internal(): super.internal(); |
| 18965 | 19056 |
| 18966 | 19057 |
| 18967 /** @domName HTMLSelectElement.autofocus */ | 19058 /** @domName HTMLSelectElement.autofocus */ |
| 18968 bool get autofocus native "HTMLSelectElement_autofocus_Getter"; | 19059 bool get autofocus native "HTMLSelectElement_autofocus_Getter"; |
| 18969 | 19060 |
| 18970 | 19061 |
| 18971 /** @domName HTMLSelectElement.autofocus */ | 19062 /** @domName HTMLSelectElement.autofocus */ |
| 18972 void set autofocus(bool value) native "HTMLSelectElement_autofocus_Setter"; | 19063 void set autofocus(bool value) native "HTMLSelectElement_autofocus_Setter"; |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 19087 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 19178 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 19088 // for details. All rights reserved. Use of this source code is governed by a | 19179 // for details. All rights reserved. Use of this source code is governed by a |
| 19089 // BSD-style license that can be found in the LICENSE file. | 19180 // BSD-style license that can be found in the LICENSE file. |
| 19090 | 19181 |
| 19091 // WARNING: Do not edit - generated code. | 19182 // WARNING: Do not edit - generated code. |
| 19092 | 19183 |
| 19093 | 19184 |
| 19094 /// @domName SessionDescription | 19185 /// @domName SessionDescription |
| 19095 class SessionDescription extends NativeFieldWrapperClass1 { | 19186 class SessionDescription extends NativeFieldWrapperClass1 { |
| 19096 | 19187 |
| 19188 ///@docsEditable true |
| 19097 factory SessionDescription(String sdp) => _SessionDescriptionFactoryProvider.c
reateSessionDescription(sdp); | 19189 factory SessionDescription(String sdp) => _SessionDescriptionFactoryProvider.c
reateSessionDescription(sdp); |
| 19098 SessionDescription.internal(); | 19190 SessionDescription.internal(); |
| 19099 | 19191 |
| 19100 | 19192 |
| 19101 /** @domName SessionDescription.addCandidate */ | 19193 /** @domName SessionDescription.addCandidate */ |
| 19102 void addCandidate(IceCandidate candidate) native "SessionDescription_addCandid
ate_Callback"; | 19194 void addCandidate(IceCandidate candidate) native "SessionDescription_addCandid
ate_Callback"; |
| 19103 | 19195 |
| 19104 | 19196 |
| 19105 /** @domName SessionDescription.toSdp */ | 19197 /** @domName SessionDescription.toSdp */ |
| 19106 String toSdp() native "SessionDescription_toSdp_Callback"; | 19198 String toSdp() native "SessionDescription_toSdp_Callback"; |
| (...skipping 22 matching lines...) Expand all Loading... |
| 19129 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 19221 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 19130 // for details. All rights reserved. Use of this source code is governed by a | 19222 // for details. All rights reserved. Use of this source code is governed by a |
| 19131 // BSD-style license that can be found in the LICENSE file. | 19223 // BSD-style license that can be found in the LICENSE file. |
| 19132 | 19224 |
| 19133 // WARNING: Do not edit - generated code. | 19225 // WARNING: Do not edit - generated code. |
| 19134 | 19226 |
| 19135 | 19227 |
| 19136 /// @domName ShadowRoot | 19228 /// @domName ShadowRoot |
| 19137 class ShadowRoot extends DocumentFragment { | 19229 class ShadowRoot extends DocumentFragment { |
| 19138 | 19230 |
| 19231 ///@docsEditable true |
| 19139 factory ShadowRoot(Element host) => _ShadowRootFactoryProvider.createShadowRoo
t(host); | 19232 factory ShadowRoot(Element host) => _ShadowRootFactoryProvider.createShadowRoo
t(host); |
| 19140 ShadowRoot.internal(): super.internal(); | 19233 ShadowRoot.internal(): super.internal(); |
| 19141 | 19234 |
| 19142 | 19235 |
| 19143 /** @domName ShadowRoot.activeElement */ | 19236 /** @domName ShadowRoot.activeElement */ |
| 19144 Element get activeElement native "ShadowRoot_activeElement_Getter"; | 19237 Element get activeElement native "ShadowRoot_activeElement_Getter"; |
| 19145 | 19238 |
| 19146 | 19239 |
| 19147 /** @domName ShadowRoot.applyAuthorStyles */ | 19240 /** @domName ShadowRoot.applyAuthorStyles */ |
| 19148 bool get applyAuthorStyles native "ShadowRoot_applyAuthorStyles_Getter"; | 19241 bool get applyAuthorStyles native "ShadowRoot_applyAuthorStyles_Getter"; |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 19192 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 19285 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 19193 // for details. All rights reserved. Use of this source code is governed by a | 19286 // for details. All rights reserved. Use of this source code is governed by a |
| 19194 // BSD-style license that can be found in the LICENSE file. | 19287 // BSD-style license that can be found in the LICENSE file. |
| 19195 | 19288 |
| 19196 // WARNING: Do not edit - generated code. | 19289 // WARNING: Do not edit - generated code. |
| 19197 | 19290 |
| 19198 | 19291 |
| 19199 /// @domName SharedWorker | 19292 /// @domName SharedWorker |
| 19200 class SharedWorker extends AbstractWorker { | 19293 class SharedWorker extends AbstractWorker { |
| 19201 | 19294 |
| 19295 ///@docsEditable true |
| 19202 factory SharedWorker(String scriptURL, [String name]) { | 19296 factory SharedWorker(String scriptURL, [String name]) { |
| 19203 if (!?name) { | 19297 if (!?name) { |
| 19204 return _SharedWorkerFactoryProvider.createSharedWorker(scriptURL); | 19298 return _SharedWorkerFactoryProvider.createSharedWorker(scriptURL); |
| 19205 } | 19299 } |
| 19206 return _SharedWorkerFactoryProvider.createSharedWorker(scriptURL, name); | 19300 return _SharedWorkerFactoryProvider.createSharedWorker(scriptURL, name); |
| 19207 } | 19301 } |
| 19208 SharedWorker.internal(): super.internal(); | 19302 SharedWorker.internal(): super.internal(); |
| 19209 | 19303 |
| 19210 | 19304 |
| 19211 /** @domName SharedWorker.port */ | 19305 /** @domName SharedWorker.port */ |
| (...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 19405 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 19499 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 19406 // for details. All rights reserved. Use of this source code is governed by a | 19500 // for details. All rights reserved. Use of this source code is governed by a |
| 19407 // BSD-style license that can be found in the LICENSE file. | 19501 // BSD-style license that can be found in the LICENSE file. |
| 19408 | 19502 |
| 19409 // WARNING: Do not edit - generated code. | 19503 // WARNING: Do not edit - generated code. |
| 19410 | 19504 |
| 19411 | 19505 |
| 19412 /// @domName HTMLSourceElement | 19506 /// @domName HTMLSourceElement |
| 19413 class SourceElement extends _Element_Merged { | 19507 class SourceElement extends _Element_Merged { |
| 19414 | 19508 |
| 19509 ///@docsEditable true |
| 19415 factory SourceElement() => document.$dom_createElement("source"); | 19510 factory SourceElement() => document.$dom_createElement("source"); |
| 19416 SourceElement.internal(): super.internal(); | 19511 SourceElement.internal(): super.internal(); |
| 19417 | 19512 |
| 19418 | 19513 |
| 19419 /** @domName HTMLSourceElement.media */ | 19514 /** @domName HTMLSourceElement.media */ |
| 19420 String get media native "HTMLSourceElement_media_Getter"; | 19515 String get media native "HTMLSourceElement_media_Getter"; |
| 19421 | 19516 |
| 19422 | 19517 |
| 19423 /** @domName HTMLSourceElement.media */ | 19518 /** @domName HTMLSourceElement.media */ |
| 19424 void set media(String value) native "HTMLSourceElement_media_Setter"; | 19519 void set media(String value) native "HTMLSourceElement_media_Setter"; |
| (...skipping 18 matching lines...) Expand all Loading... |
| 19443 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 19538 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 19444 // for details. All rights reserved. Use of this source code is governed by a | 19539 // for details. All rights reserved. Use of this source code is governed by a |
| 19445 // BSD-style license that can be found in the LICENSE file. | 19540 // BSD-style license that can be found in the LICENSE file. |
| 19446 | 19541 |
| 19447 // WARNING: Do not edit - generated code. | 19542 // WARNING: Do not edit - generated code. |
| 19448 | 19543 |
| 19449 | 19544 |
| 19450 /// @domName HTMLSpanElement | 19545 /// @domName HTMLSpanElement |
| 19451 class SpanElement extends _Element_Merged { | 19546 class SpanElement extends _Element_Merged { |
| 19452 | 19547 |
| 19548 ///@docsEditable true |
| 19453 factory SpanElement() => document.$dom_createElement("span"); | 19549 factory SpanElement() => document.$dom_createElement("span"); |
| 19454 SpanElement.internal(): super.internal(); | 19550 SpanElement.internal(): super.internal(); |
| 19455 | 19551 |
| 19456 } | 19552 } |
| 19457 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 19553 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 19458 // for details. All rights reserved. Use of this source code is governed by a | 19554 // for details. All rights reserved. Use of this source code is governed by a |
| 19459 // BSD-style license that can be found in the LICENSE file. | 19555 // BSD-style license that can be found in the LICENSE file. |
| 19460 | 19556 |
| 19461 // WARNING: Do not edit - generated code. | 19557 // WARNING: Do not edit - generated code. |
| 19462 | 19558 |
| 19463 | 19559 |
| 19464 /// @domName SpeechGrammar | 19560 /// @domName SpeechGrammar |
| 19465 class SpeechGrammar extends NativeFieldWrapperClass1 { | 19561 class SpeechGrammar extends NativeFieldWrapperClass1 { |
| 19466 | 19562 |
| 19563 ///@docsEditable true |
| 19467 factory SpeechGrammar() => _SpeechGrammarFactoryProvider.createSpeechGrammar()
; | 19564 factory SpeechGrammar() => _SpeechGrammarFactoryProvider.createSpeechGrammar()
; |
| 19468 SpeechGrammar.internal(); | 19565 SpeechGrammar.internal(); |
| 19469 | 19566 |
| 19470 | 19567 |
| 19471 /** @domName SpeechGrammar.src */ | 19568 /** @domName SpeechGrammar.src */ |
| 19472 String get src native "SpeechGrammar_src_Getter"; | 19569 String get src native "SpeechGrammar_src_Getter"; |
| 19473 | 19570 |
| 19474 | 19571 |
| 19475 /** @domName SpeechGrammar.src */ | 19572 /** @domName SpeechGrammar.src */ |
| 19476 void set src(String value) native "SpeechGrammar_src_Setter"; | 19573 void set src(String value) native "SpeechGrammar_src_Setter"; |
| (...skipping 10 matching lines...) Expand all Loading... |
| 19487 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 19584 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 19488 // for details. All rights reserved. Use of this source code is governed by a | 19585 // for details. All rights reserved. Use of this source code is governed by a |
| 19489 // BSD-style license that can be found in the LICENSE file. | 19586 // BSD-style license that can be found in the LICENSE file. |
| 19490 | 19587 |
| 19491 // WARNING: Do not edit - generated code. | 19588 // WARNING: Do not edit - generated code. |
| 19492 | 19589 |
| 19493 | 19590 |
| 19494 /// @domName SpeechGrammarList | 19591 /// @domName SpeechGrammarList |
| 19495 class SpeechGrammarList extends NativeFieldWrapperClass1 implements List<SpeechG
rammar> { | 19592 class SpeechGrammarList extends NativeFieldWrapperClass1 implements List<SpeechG
rammar> { |
| 19496 | 19593 |
| 19594 ///@docsEditable true |
| 19497 factory SpeechGrammarList() => _SpeechGrammarListFactoryProvider.createSpeechG
rammarList(); | 19595 factory SpeechGrammarList() => _SpeechGrammarListFactoryProvider.createSpeechG
rammarList(); |
| 19498 SpeechGrammarList.internal(); | 19596 SpeechGrammarList.internal(); |
| 19499 | 19597 |
| 19500 | 19598 |
| 19501 /** @domName SpeechGrammarList.length */ | 19599 /** @domName SpeechGrammarList.length */ |
| 19502 int get length native "SpeechGrammarList_length_Getter"; | 19600 int get length native "SpeechGrammarList_length_Getter"; |
| 19503 | 19601 |
| 19504 SpeechGrammar operator[](int index) native "SpeechGrammarList_item_Callback"; | 19602 SpeechGrammar operator[](int index) native "SpeechGrammarList_item_Callback"; |
| 19505 | 19603 |
| 19506 void operator[]=(int index, SpeechGrammar value) { | 19604 void operator[]=(int index, SpeechGrammar value) { |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 19677 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 19775 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 19678 // for details. All rights reserved. Use of this source code is governed by a | 19776 // for details. All rights reserved. Use of this source code is governed by a |
| 19679 // BSD-style license that can be found in the LICENSE file. | 19777 // BSD-style license that can be found in the LICENSE file. |
| 19680 | 19778 |
| 19681 // WARNING: Do not edit - generated code. | 19779 // WARNING: Do not edit - generated code. |
| 19682 | 19780 |
| 19683 | 19781 |
| 19684 /// @domName SpeechRecognition | 19782 /// @domName SpeechRecognition |
| 19685 class SpeechRecognition extends EventTarget { | 19783 class SpeechRecognition extends EventTarget { |
| 19686 | 19784 |
| 19785 ///@docsEditable true |
| 19687 factory SpeechRecognition() => _SpeechRecognitionFactoryProvider.createSpeechR
ecognition(); | 19786 factory SpeechRecognition() => _SpeechRecognitionFactoryProvider.createSpeechR
ecognition(); |
| 19688 SpeechRecognition.internal(): super.internal(); | 19787 SpeechRecognition.internal(): super.internal(); |
| 19689 | 19788 |
| 19690 /// @domName EventTarget.addEventListener, EventTarget.removeEventListener, Ev
entTarget.dispatchEvent; @docsEditable true | 19789 /// @domName EventTarget.addEventListener, EventTarget.removeEventListener, Ev
entTarget.dispatchEvent; @docsEditable true |
| 19691 SpeechRecognitionEvents get on => | 19790 SpeechRecognitionEvents get on => |
| 19692 new SpeechRecognitionEvents(this); | 19791 new SpeechRecognitionEvents(this); |
| 19693 | 19792 |
| 19694 | 19793 |
| 19695 /** @domName SpeechRecognition.continuous */ | 19794 /** @domName SpeechRecognition.continuous */ |
| 19696 bool get continuous native "SpeechRecognition_continuous_Getter"; | 19795 bool get continuous native "SpeechRecognition_continuous_Getter"; |
| (...skipping 619 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 20316 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 20415 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 20317 // for details. All rights reserved. Use of this source code is governed by a | 20416 // for details. All rights reserved. Use of this source code is governed by a |
| 20318 // BSD-style license that can be found in the LICENSE file. | 20417 // BSD-style license that can be found in the LICENSE file. |
| 20319 | 20418 |
| 20320 // WARNING: Do not edit - generated code. | 20419 // WARNING: Do not edit - generated code. |
| 20321 | 20420 |
| 20322 | 20421 |
| 20323 /// @domName HTMLStyleElement | 20422 /// @domName HTMLStyleElement |
| 20324 class StyleElement extends _Element_Merged { | 20423 class StyleElement extends _Element_Merged { |
| 20325 | 20424 |
| 20425 ///@docsEditable true |
| 20326 factory StyleElement() => document.$dom_createElement("style"); | 20426 factory StyleElement() => document.$dom_createElement("style"); |
| 20327 StyleElement.internal(): super.internal(); | 20427 StyleElement.internal(): super.internal(); |
| 20328 | 20428 |
| 20329 | 20429 |
| 20330 /** @domName HTMLStyleElement.disabled */ | 20430 /** @domName HTMLStyleElement.disabled */ |
| 20331 bool get disabled native "HTMLStyleElement_disabled_Getter"; | 20431 bool get disabled native "HTMLStyleElement_disabled_Getter"; |
| 20332 | 20432 |
| 20333 | 20433 |
| 20334 /** @domName HTMLStyleElement.disabled */ | 20434 /** @domName HTMLStyleElement.disabled */ |
| 20335 void set disabled(bool value) native "HTMLStyleElement_disabled_Setter"; | 20435 void set disabled(bool value) native "HTMLStyleElement_disabled_Setter"; |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 20430 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 20530 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 20431 // for details. All rights reserved. Use of this source code is governed by a | 20531 // for details. All rights reserved. Use of this source code is governed by a |
| 20432 // BSD-style license that can be found in the LICENSE file. | 20532 // BSD-style license that can be found in the LICENSE file. |
| 20433 | 20533 |
| 20434 // WARNING: Do not edit - generated code. | 20534 // WARNING: Do not edit - generated code. |
| 20435 | 20535 |
| 20436 | 20536 |
| 20437 /// @domName HTMLTableCaptionElement | 20537 /// @domName HTMLTableCaptionElement |
| 20438 class TableCaptionElement extends _Element_Merged { | 20538 class TableCaptionElement extends _Element_Merged { |
| 20439 | 20539 |
| 20540 ///@docsEditable true |
| 20440 factory TableCaptionElement() => document.$dom_createElement("caption"); | 20541 factory TableCaptionElement() => document.$dom_createElement("caption"); |
| 20441 TableCaptionElement.internal(): super.internal(); | 20542 TableCaptionElement.internal(): super.internal(); |
| 20442 | 20543 |
| 20443 | 20544 |
| 20444 /** @domName HTMLTableCaptionElement.align */ | 20545 /** @domName HTMLTableCaptionElement.align */ |
| 20445 String get align native "HTMLTableCaptionElement_align_Getter"; | 20546 String get align native "HTMLTableCaptionElement_align_Getter"; |
| 20446 | 20547 |
| 20447 | 20548 |
| 20448 /** @domName HTMLTableCaptionElement.align */ | 20549 /** @domName HTMLTableCaptionElement.align */ |
| 20449 void set align(String value) native "HTMLTableCaptionElement_align_Setter"; | 20550 void set align(String value) native "HTMLTableCaptionElement_align_Setter"; |
| 20450 | 20551 |
| 20451 } | 20552 } |
| 20452 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 20553 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 20453 // for details. All rights reserved. Use of this source code is governed by a | 20554 // for details. All rights reserved. Use of this source code is governed by a |
| 20454 // BSD-style license that can be found in the LICENSE file. | 20555 // BSD-style license that can be found in the LICENSE file. |
| 20455 | 20556 |
| 20456 // WARNING: Do not edit - generated code. | 20557 // WARNING: Do not edit - generated code. |
| 20457 | 20558 |
| 20458 | 20559 |
| 20459 /// @domName HTMLTableCellElement | 20560 /// @domName HTMLTableCellElement |
| 20460 class TableCellElement extends _Element_Merged { | 20561 class TableCellElement extends _Element_Merged { |
| 20461 | 20562 |
| 20563 ///@docsEditable true |
| 20462 factory TableCellElement() => document.$dom_createElement("td"); | 20564 factory TableCellElement() => document.$dom_createElement("td"); |
| 20463 TableCellElement.internal(): super.internal(); | 20565 TableCellElement.internal(): super.internal(); |
| 20464 | 20566 |
| 20465 | 20567 |
| 20466 /** @domName HTMLTableCellElement.abbr */ | 20568 /** @domName HTMLTableCellElement.abbr */ |
| 20467 String get abbr native "HTMLTableCellElement_abbr_Getter"; | 20569 String get abbr native "HTMLTableCellElement_abbr_Getter"; |
| 20468 | 20570 |
| 20469 | 20571 |
| 20470 /** @domName HTMLTableCellElement.abbr */ | 20572 /** @domName HTMLTableCellElement.abbr */ |
| 20471 void set abbr(String value) native "HTMLTableCellElement_abbr_Setter"; | 20573 void set abbr(String value) native "HTMLTableCellElement_abbr_Setter"; |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 20582 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 20684 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 20583 // for details. All rights reserved. Use of this source code is governed by a | 20685 // for details. All rights reserved. Use of this source code is governed by a |
| 20584 // BSD-style license that can be found in the LICENSE file. | 20686 // BSD-style license that can be found in the LICENSE file. |
| 20585 | 20687 |
| 20586 // WARNING: Do not edit - generated code. | 20688 // WARNING: Do not edit - generated code. |
| 20587 | 20689 |
| 20588 | 20690 |
| 20589 /// @domName HTMLTableColElement | 20691 /// @domName HTMLTableColElement |
| 20590 class TableColElement extends _Element_Merged { | 20692 class TableColElement extends _Element_Merged { |
| 20591 | 20693 |
| 20694 ///@docsEditable true |
| 20592 factory TableColElement() => document.$dom_createElement("col"); | 20695 factory TableColElement() => document.$dom_createElement("col"); |
| 20593 TableColElement.internal(): super.internal(); | 20696 TableColElement.internal(): super.internal(); |
| 20594 | 20697 |
| 20595 | 20698 |
| 20596 /** @domName HTMLTableColElement.align */ | 20699 /** @domName HTMLTableColElement.align */ |
| 20597 String get align native "HTMLTableColElement_align_Getter"; | 20700 String get align native "HTMLTableColElement_align_Getter"; |
| 20598 | 20701 |
| 20599 | 20702 |
| 20600 /** @domName HTMLTableColElement.align */ | 20703 /** @domName HTMLTableColElement.align */ |
| 20601 void set align(String value) native "HTMLTableColElement_align_Setter"; | 20704 void set align(String value) native "HTMLTableColElement_align_Setter"; |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 20644 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 20747 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 20645 // for details. All rights reserved. Use of this source code is governed by a | 20748 // for details. All rights reserved. Use of this source code is governed by a |
| 20646 // BSD-style license that can be found in the LICENSE file. | 20749 // BSD-style license that can be found in the LICENSE file. |
| 20647 | 20750 |
| 20648 // WARNING: Do not edit - generated code. | 20751 // WARNING: Do not edit - generated code. |
| 20649 | 20752 |
| 20650 | 20753 |
| 20651 /// @domName HTMLTableElement | 20754 /// @domName HTMLTableElement |
| 20652 class TableElement extends _Element_Merged { | 20755 class TableElement extends _Element_Merged { |
| 20653 | 20756 |
| 20757 ///@docsEditable true |
| 20654 factory TableElement() => document.$dom_createElement("table"); | 20758 factory TableElement() => document.$dom_createElement("table"); |
| 20655 TableElement.internal(): super.internal(); | 20759 TableElement.internal(): super.internal(); |
| 20656 | 20760 |
| 20657 | 20761 |
| 20658 /** @domName HTMLTableElement.align */ | 20762 /** @domName HTMLTableElement.align */ |
| 20659 String get align native "HTMLTableElement_align_Getter"; | 20763 String get align native "HTMLTableElement_align_Getter"; |
| 20660 | 20764 |
| 20661 | 20765 |
| 20662 /** @domName HTMLTableElement.align */ | 20766 /** @domName HTMLTableElement.align */ |
| 20663 void set align(String value) native "HTMLTableElement_align_Setter"; | 20767 void set align(String value) native "HTMLTableElement_align_Setter"; |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 20798 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 20902 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 20799 // for details. All rights reserved. Use of this source code is governed by a | 20903 // for details. All rights reserved. Use of this source code is governed by a |
| 20800 // BSD-style license that can be found in the LICENSE file. | 20904 // BSD-style license that can be found in the LICENSE file. |
| 20801 | 20905 |
| 20802 // WARNING: Do not edit - generated code. | 20906 // WARNING: Do not edit - generated code. |
| 20803 | 20907 |
| 20804 | 20908 |
| 20805 /// @domName HTMLTableRowElement | 20909 /// @domName HTMLTableRowElement |
| 20806 class TableRowElement extends _Element_Merged { | 20910 class TableRowElement extends _Element_Merged { |
| 20807 | 20911 |
| 20912 ///@docsEditable true |
| 20808 factory TableRowElement() => document.$dom_createElement("tr"); | 20913 factory TableRowElement() => document.$dom_createElement("tr"); |
| 20809 TableRowElement.internal(): super.internal(); | 20914 TableRowElement.internal(): super.internal(); |
| 20810 | 20915 |
| 20811 | 20916 |
| 20812 /** @domName HTMLTableRowElement.align */ | 20917 /** @domName HTMLTableRowElement.align */ |
| 20813 String get align native "HTMLTableRowElement_align_Getter"; | 20918 String get align native "HTMLTableRowElement_align_Getter"; |
| 20814 | 20919 |
| 20815 | 20920 |
| 20816 /** @domName HTMLTableRowElement.align */ | 20921 /** @domName HTMLTableRowElement.align */ |
| 20817 void set align(String value) native "HTMLTableRowElement_align_Setter"; | 20922 void set align(String value) native "HTMLTableRowElement_align_Setter"; |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 20953 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 21058 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 20954 // for details. All rights reserved. Use of this source code is governed by a | 21059 // for details. All rights reserved. Use of this source code is governed by a |
| 20955 // BSD-style license that can be found in the LICENSE file. | 21060 // BSD-style license that can be found in the LICENSE file. |
| 20956 | 21061 |
| 20957 // WARNING: Do not edit - generated code. | 21062 // WARNING: Do not edit - generated code. |
| 20958 | 21063 |
| 20959 | 21064 |
| 20960 /// @domName HTMLTextAreaElement | 21065 /// @domName HTMLTextAreaElement |
| 20961 class TextAreaElement extends _Element_Merged { | 21066 class TextAreaElement extends _Element_Merged { |
| 20962 | 21067 |
| 21068 ///@docsEditable true |
| 20963 factory TextAreaElement() => document.$dom_createElement("textarea"); | 21069 factory TextAreaElement() => document.$dom_createElement("textarea"); |
| 20964 TextAreaElement.internal(): super.internal(); | 21070 TextAreaElement.internal(): super.internal(); |
| 20965 | 21071 |
| 20966 | 21072 |
| 20967 /** @domName HTMLTextAreaElement.autofocus */ | 21073 /** @domName HTMLTextAreaElement.autofocus */ |
| 20968 bool get autofocus native "HTMLTextAreaElement_autofocus_Getter"; | 21074 bool get autofocus native "HTMLTextAreaElement_autofocus_Getter"; |
| 20969 | 21075 |
| 20970 | 21076 |
| 20971 /** @domName HTMLTextAreaElement.autofocus */ | 21077 /** @domName HTMLTextAreaElement.autofocus */ |
| 20972 void set autofocus(bool value) native "HTMLTextAreaElement_autofocus_Setter"; | 21078 void set autofocus(bool value) native "HTMLTextAreaElement_autofocus_Setter"; |
| (...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 21277 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 21383 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 21278 // for details. All rights reserved. Use of this source code is governed by a | 21384 // for details. All rights reserved. Use of this source code is governed by a |
| 21279 // BSD-style license that can be found in the LICENSE file. | 21385 // BSD-style license that can be found in the LICENSE file. |
| 21280 | 21386 |
| 21281 // WARNING: Do not edit - generated code. | 21387 // WARNING: Do not edit - generated code. |
| 21282 | 21388 |
| 21283 | 21389 |
| 21284 /// @domName TextTrackCue | 21390 /// @domName TextTrackCue |
| 21285 class TextTrackCue extends EventTarget { | 21391 class TextTrackCue extends EventTarget { |
| 21286 | 21392 |
| 21393 ///@docsEditable true |
| 21287 factory TextTrackCue(num startTime, num endTime, String text) => _TextTrackCue
FactoryProvider.createTextTrackCue(startTime, endTime, text); | 21394 factory TextTrackCue(num startTime, num endTime, String text) => _TextTrackCue
FactoryProvider.createTextTrackCue(startTime, endTime, text); |
| 21288 TextTrackCue.internal(): super.internal(); | 21395 TextTrackCue.internal(): super.internal(); |
| 21289 | 21396 |
| 21290 /// @domName EventTarget.addEventListener, EventTarget.removeEventListener, Ev
entTarget.dispatchEvent; @docsEditable true | 21397 /// @domName EventTarget.addEventListener, EventTarget.removeEventListener, Ev
entTarget.dispatchEvent; @docsEditable true |
| 21291 TextTrackCueEvents get on => | 21398 TextTrackCueEvents get on => |
| 21292 new TextTrackCueEvents(this); | 21399 new TextTrackCueEvents(this); |
| 21293 | 21400 |
| 21294 | 21401 |
| 21295 /** @domName TextTrackCue.align */ | 21402 /** @domName TextTrackCue.align */ |
| 21296 String get align native "TextTrackCue_align_Getter"; | 21403 String get align native "TextTrackCue_align_Getter"; |
| (...skipping 412 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 21709 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 21816 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 21710 // for details. All rights reserved. Use of this source code is governed by a | 21817 // for details. All rights reserved. Use of this source code is governed by a |
| 21711 // BSD-style license that can be found in the LICENSE file. | 21818 // BSD-style license that can be found in the LICENSE file. |
| 21712 | 21819 |
| 21713 // WARNING: Do not edit - generated code. | 21820 // WARNING: Do not edit - generated code. |
| 21714 | 21821 |
| 21715 | 21822 |
| 21716 /// @domName HTMLTitleElement | 21823 /// @domName HTMLTitleElement |
| 21717 class TitleElement extends _Element_Merged { | 21824 class TitleElement extends _Element_Merged { |
| 21718 | 21825 |
| 21826 ///@docsEditable true |
| 21719 factory TitleElement() => document.$dom_createElement("title"); | 21827 factory TitleElement() => document.$dom_createElement("title"); |
| 21720 TitleElement.internal(): super.internal(); | 21828 TitleElement.internal(): super.internal(); |
| 21721 | 21829 |
| 21722 } | 21830 } |
| 21723 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 21831 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 21724 // for details. All rights reserved. Use of this source code is governed by a | 21832 // for details. All rights reserved. Use of this source code is governed by a |
| 21725 // BSD-style license that can be found in the LICENSE file. | 21833 // BSD-style license that can be found in the LICENSE file. |
| 21726 | 21834 |
| 21727 // WARNING: Do not edit - generated code. | 21835 // WARNING: Do not edit - generated code. |
| 21728 | 21836 |
| (...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 21947 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 22055 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 21948 // for details. All rights reserved. Use of this source code is governed by a | 22056 // for details. All rights reserved. Use of this source code is governed by a |
| 21949 // BSD-style license that can be found in the LICENSE file. | 22057 // BSD-style license that can be found in the LICENSE file. |
| 21950 | 22058 |
| 21951 // WARNING: Do not edit - generated code. | 22059 // WARNING: Do not edit - generated code. |
| 21952 | 22060 |
| 21953 | 22061 |
| 21954 /// @domName HTMLTrackElement | 22062 /// @domName HTMLTrackElement |
| 21955 class TrackElement extends _Element_Merged { | 22063 class TrackElement extends _Element_Merged { |
| 21956 | 22064 |
| 22065 ///@docsEditable true |
| 21957 factory TrackElement() => document.$dom_createElement("track"); | 22066 factory TrackElement() => document.$dom_createElement("track"); |
| 21958 TrackElement.internal(): super.internal(); | 22067 TrackElement.internal(): super.internal(); |
| 21959 | 22068 |
| 21960 static const int ERROR = 3; | 22069 static const int ERROR = 3; |
| 21961 | 22070 |
| 21962 static const int LOADED = 2; | 22071 static const int LOADED = 2; |
| 21963 | 22072 |
| 21964 static const int LOADING = 1; | 22073 static const int LOADING = 1; |
| 21965 | 22074 |
| 21966 static const int NONE = 0; | 22075 static const int NONE = 0; |
| (...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 22181 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 22290 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 22182 // for details. All rights reserved. Use of this source code is governed by a | 22291 // for details. All rights reserved. Use of this source code is governed by a |
| 22183 // BSD-style license that can be found in the LICENSE file. | 22292 // BSD-style license that can be found in the LICENSE file. |
| 22184 | 22293 |
| 22185 // WARNING: Do not edit - generated code. | 22294 // WARNING: Do not edit - generated code. |
| 22186 | 22295 |
| 22187 | 22296 |
| 22188 /// @domName HTMLUListElement | 22297 /// @domName HTMLUListElement |
| 22189 class UListElement extends _Element_Merged { | 22298 class UListElement extends _Element_Merged { |
| 22190 | 22299 |
| 22300 ///@docsEditable true |
| 22191 factory UListElement() => document.$dom_createElement("ul"); | 22301 factory UListElement() => document.$dom_createElement("ul"); |
| 22192 UListElement.internal(): super.internal(); | 22302 UListElement.internal(): super.internal(); |
| 22193 | 22303 |
| 22194 | 22304 |
| 22195 /** @domName HTMLUListElement.compact */ | 22305 /** @domName HTMLUListElement.compact */ |
| 22196 bool get compact native "HTMLUListElement_compact_Getter"; | 22306 bool get compact native "HTMLUListElement_compact_Getter"; |
| 22197 | 22307 |
| 22198 | 22308 |
| 22199 /** @domName HTMLUListElement.compact */ | 22309 /** @domName HTMLUListElement.compact */ |
| 22200 void set compact(bool value) native "HTMLUListElement_compact_Setter"; | 22310 void set compact(bool value) native "HTMLUListElement_compact_Setter"; |
| (...skipping 607 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 22808 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 22918 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 22809 // for details. All rights reserved. Use of this source code is governed by a | 22919 // for details. All rights reserved. Use of this source code is governed by a |
| 22810 // BSD-style license that can be found in the LICENSE file. | 22920 // BSD-style license that can be found in the LICENSE file. |
| 22811 | 22921 |
| 22812 // WARNING: Do not edit - generated code. | 22922 // WARNING: Do not edit - generated code. |
| 22813 | 22923 |
| 22814 | 22924 |
| 22815 /// @domName HTMLVideoElement | 22925 /// @domName HTMLVideoElement |
| 22816 class VideoElement extends MediaElement { | 22926 class VideoElement extends MediaElement { |
| 22817 | 22927 |
| 22928 ///@docsEditable true |
| 22818 factory VideoElement() => document.$dom_createElement("video"); | 22929 factory VideoElement() => document.$dom_createElement("video"); |
| 22819 VideoElement.internal(): super.internal(); | 22930 VideoElement.internal(): super.internal(); |
| 22820 | 22931 |
| 22821 | 22932 |
| 22822 /** @domName HTMLVideoElement.height */ | 22933 /** @domName HTMLVideoElement.height */ |
| 22823 int get height native "HTMLVideoElement_height_Getter"; | 22934 int get height native "HTMLVideoElement_height_Getter"; |
| 22824 | 22935 |
| 22825 | 22936 |
| 22826 /** @domName HTMLVideoElement.height */ | 22937 /** @domName HTMLVideoElement.height */ |
| 22827 void set height(int value) native "HTMLVideoElement_height_Setter"; | 22938 void set height(int value) native "HTMLVideoElement_height_Setter"; |
| (...skipping 1881 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 24709 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 24820 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 24710 // for details. All rights reserved. Use of this source code is governed by a | 24821 // for details. All rights reserved. Use of this source code is governed by a |
| 24711 // BSD-style license that can be found in the LICENSE file. | 24822 // BSD-style license that can be found in the LICENSE file. |
| 24712 | 24823 |
| 24713 // WARNING: Do not edit - generated code. | 24824 // WARNING: Do not edit - generated code. |
| 24714 | 24825 |
| 24715 | 24826 |
| 24716 /// @domName Worker | 24827 /// @domName Worker |
| 24717 class Worker extends AbstractWorker { | 24828 class Worker extends AbstractWorker { |
| 24718 | 24829 |
| 24830 ///@docsEditable true |
| 24719 factory Worker(String scriptUrl) => _WorkerFactoryProvider.createWorker(script
Url); | 24831 factory Worker(String scriptUrl) => _WorkerFactoryProvider.createWorker(script
Url); |
| 24720 Worker.internal(): super.internal(); | 24832 Worker.internal(): super.internal(); |
| 24721 | 24833 |
| 24722 /// @domName EventTarget.addEventListener, EventTarget.removeEventListener, Ev
entTarget.dispatchEvent; @docsEditable true | 24834 /// @domName EventTarget.addEventListener, EventTarget.removeEventListener, Ev
entTarget.dispatchEvent; @docsEditable true |
| 24723 WorkerEvents get on => | 24835 WorkerEvents get on => |
| 24724 new WorkerEvents(this); | 24836 new WorkerEvents(this); |
| 24725 | 24837 |
| 24726 | 24838 |
| 24727 /** @domName Worker.postMessage */ | 24839 /** @domName Worker.postMessage */ |
| 24728 void postMessage(/*SerializedScriptValue*/ message, [List messagePorts]) nativ
e "Worker_postMessage_Callback"; | 24840 void postMessage(/*SerializedScriptValue*/ message, [List messagePorts]) nativ
e "Worker_postMessage_Callback"; |
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 24927 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 25039 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 24928 // for details. All rights reserved. Use of this source code is governed by a | 25040 // for details. All rights reserved. Use of this source code is governed by a |
| 24929 // BSD-style license that can be found in the LICENSE file. | 25041 // BSD-style license that can be found in the LICENSE file. |
| 24930 | 25042 |
| 24931 // WARNING: Do not edit - generated code. | 25043 // WARNING: Do not edit - generated code. |
| 24932 | 25044 |
| 24933 | 25045 |
| 24934 /// @domName XPathEvaluator | 25046 /// @domName XPathEvaluator |
| 24935 class XPathEvaluator extends NativeFieldWrapperClass1 { | 25047 class XPathEvaluator extends NativeFieldWrapperClass1 { |
| 24936 | 25048 |
| 25049 ///@docsEditable true |
| 24937 factory XPathEvaluator() => _XPathEvaluatorFactoryProvider.createXPathEvaluato
r(); | 25050 factory XPathEvaluator() => _XPathEvaluatorFactoryProvider.createXPathEvaluato
r(); |
| 24938 XPathEvaluator.internal(); | 25051 XPathEvaluator.internal(); |
| 24939 | 25052 |
| 24940 | 25053 |
| 24941 /** @domName XPathEvaluator.createExpression */ | 25054 /** @domName XPathEvaluator.createExpression */ |
| 24942 XPathExpression createExpression(String expression, XPathNSResolver resolver)
native "XPathEvaluator_createExpression_Callback"; | 25055 XPathExpression createExpression(String expression, XPathNSResolver resolver)
native "XPathEvaluator_createExpression_Callback"; |
| 24943 | 25056 |
| 24944 | 25057 |
| 24945 /** @domName XPathEvaluator.createNSResolver */ | 25058 /** @domName XPathEvaluator.createNSResolver */ |
| 24946 XPathNSResolver createNSResolver(Node nodeResolver) native "XPathEvaluator_cre
ateNSResolver_Callback"; | 25059 XPathNSResolver createNSResolver(Node nodeResolver) native "XPathEvaluator_cre
ateNSResolver_Callback"; |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 25085 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 25198 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 25086 // for details. All rights reserved. Use of this source code is governed by a | 25199 // for details. All rights reserved. Use of this source code is governed by a |
| 25087 // BSD-style license that can be found in the LICENSE file. | 25200 // BSD-style license that can be found in the LICENSE file. |
| 25088 | 25201 |
| 25089 // WARNING: Do not edit - generated code. | 25202 // WARNING: Do not edit - generated code. |
| 25090 | 25203 |
| 25091 | 25204 |
| 25092 /// @domName XMLSerializer | 25205 /// @domName XMLSerializer |
| 25093 class XmlSerializer extends NativeFieldWrapperClass1 { | 25206 class XmlSerializer extends NativeFieldWrapperClass1 { |
| 25094 | 25207 |
| 25208 ///@docsEditable true |
| 25095 factory XmlSerializer() => _XmlSerializerFactoryProvider.createXmlSerializer()
; | 25209 factory XmlSerializer() => _XmlSerializerFactoryProvider.createXmlSerializer()
; |
| 25096 XmlSerializer.internal(); | 25210 XmlSerializer.internal(); |
| 25097 | 25211 |
| 25098 | 25212 |
| 25099 /** @domName XMLSerializer.serializeToString */ | 25213 /** @domName XMLSerializer.serializeToString */ |
| 25100 String serializeToString(Node node) native "XMLSerializer_serializeToString_Ca
llback"; | 25214 String serializeToString(Node node) native "XMLSerializer_serializeToString_Ca
llback"; |
| 25101 | 25215 |
| 25102 } | 25216 } |
| 25103 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 25217 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 25104 // for details. All rights reserved. Use of this source code is governed by a | 25218 // for details. All rights reserved. Use of this source code is governed by a |
| 25105 // BSD-style license that can be found in the LICENSE file. | 25219 // BSD-style license that can be found in the LICENSE file. |
| 25106 | 25220 |
| 25107 // WARNING: Do not edit - generated code. | 25221 // WARNING: Do not edit - generated code. |
| 25108 | 25222 |
| 25109 | 25223 |
| 25110 /// @domName XSLTProcessor | 25224 /// @domName XSLTProcessor |
| 25111 class XsltProcessor extends NativeFieldWrapperClass1 { | 25225 class XsltProcessor extends NativeFieldWrapperClass1 { |
| 25112 | 25226 |
| 25227 ///@docsEditable true |
| 25113 factory XsltProcessor() => _XsltProcessorFactoryProvider.createXsltProcessor()
; | 25228 factory XsltProcessor() => _XsltProcessorFactoryProvider.createXsltProcessor()
; |
| 25114 XsltProcessor.internal(); | 25229 XsltProcessor.internal(); |
| 25115 | 25230 |
| 25116 | 25231 |
| 25117 /** @domName XSLTProcessor.clearParameters */ | 25232 /** @domName XSLTProcessor.clearParameters */ |
| 25118 void clearParameters() native "XSLTProcessor_clearParameters_Callback"; | 25233 void clearParameters() native "XSLTProcessor_clearParameters_Callback"; |
| 25119 | 25234 |
| 25120 | 25235 |
| 25121 /** @domName XSLTProcessor.getParameter */ | 25236 /** @domName XSLTProcessor.getParameter */ |
| 25122 String getParameter(String namespaceURI, String localName) native "XSLTProcess
or_getParameter_Callback"; | 25237 String getParameter(String namespaceURI, String localName) native "XSLTProcess
or_getParameter_Callback"; |
| (...skipping 4726 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 29849 bool get isEmpty => Maps.isEmpty(this); | 29964 bool get isEmpty => Maps.isEmpty(this); |
| 29850 } | 29965 } |
| 29851 | 29966 |
| 29852 get _printClosure => (s) { | 29967 get _printClosure => (s) { |
| 29853 try { | 29968 try { |
| 29854 window.console.log(s); | 29969 window.console.log(s); |
| 29855 } catch (_) { | 29970 } catch (_) { |
| 29856 _Utils.print(s); | 29971 _Utils.print(s); |
| 29857 } | 29972 } |
| 29858 }; | 29973 }; |
| OLD | NEW |