| 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 |
| 11864 /** |
| 11865 * A utility for retrieving data from a URL. |
| 11866 * |
| 11867 * HttpRequest can be used to obtain data from http, ftp, and file |
| 11868 * protocols. |
| 11869 * |
| 11870 * For example, suppose we're developing these API docs, and we |
| 11871 * wish to retrieve the HTML of the top-level page and print it out. |
| 11872 * The easiest way to do that would be: |
| 11873 * |
| 11874 * var httpRequest = HttpRequest.get('http://api.dartlang.org', |
| 11875 * (request) => print(request.responseText)); |
| 11876 * |
| 11877 * **Important**: With the default behavior of this class, your |
| 11878 * code making the request should be served from the same origin (domain name, |
| 11879 * port, and application layer protocol) as the URL you are trying to access |
| 11880 * with HttpRequest. However, there are ways to |
| 11881 * [get around this restriction](http://www.dartlang.org/articles/json-web-servi
ce/#note-on-jsonp). |
| 11882 * |
| 11883 * See also: |
| 11884 * |
| 11885 * * [Dart article on using HttpRequests](http://www.dartlang.org/articles/json-
web-service/#getting-data) |
| 11886 * * [JS XMLHttpRequest](https://developer.mozilla.org/en-US/docs/DOM/XMLHttpReq
uest) |
| 11887 * * [Using XMLHttpRequest](https://developer.mozilla.org/en-US/docs/DOM/XMLHttp
Request/Using_XMLHttpRequest) |
| 11888 */ |
| 11830 /// @domName XMLHttpRequest | 11889 /// @domName XMLHttpRequest |
| 11831 class HttpRequest extends EventTarget { | 11890 class HttpRequest extends EventTarget { |
| 11891 /** |
| 11892 * Creates a URL get request for the specified `url`. |
| 11893 * |
| 11894 * After completing the request, the object will call the user-provided |
| 11895 * [onComplete] callback. |
| 11896 */ |
| 11832 factory HttpRequest.get(String url, onComplete(HttpRequest request)) => | 11897 factory HttpRequest.get(String url, onComplete(HttpRequest request)) => |
| 11833 _HttpRequestFactoryProvider.createHttpRequest_get(url, onComplete); | 11898 _HttpRequestFactoryProvider.createHttpRequest_get(url, onComplete); |
| 11834 | 11899 |
| 11900 /** |
| 11901 * Creates a URL GET request for the specified `url` with |
| 11902 * credentials such a cookie (already) set in the header or |
| 11903 * (authorization headers)[http://tools.ietf.org/html/rfc1945#section-10.2]. |
| 11904 * |
| 11905 * After completing the request, the object will call the user-provided |
| 11906 * [onComplete] callback. |
| 11907 * |
| 11908 * See also: (authorization headers)[http://en.wikipedia.org/wiki/Basic_access
_authentication]. |
| 11909 */ |
| 11835 factory HttpRequest.getWithCredentials(String url, | 11910 factory HttpRequest.getWithCredentials(String url, |
| 11836 onComplete(HttpRequest request)) => | 11911 onComplete(HttpRequest request)) => |
| 11837 _HttpRequestFactoryProvider.createHttpRequest_getWithCredentials(url, | 11912 _HttpRequestFactoryProvider.createHttpRequest_getWithCredentials(url, |
| 11838 onComplete); | 11913 onComplete); |
| 11839 | 11914 |
| 11840 | 11915 |
| 11916 ///@docsEditable true |
| 11841 factory HttpRequest() => _HttpRequestFactoryProvider.createHttpRequest(); | 11917 factory HttpRequest() => _HttpRequestFactoryProvider.createHttpRequest(); |
| 11842 HttpRequest.internal(): super.internal(); | 11918 HttpRequest.internal(): super.internal(); |
| 11843 | 11919 |
| 11844 /// @domName EventTarget.addEventListener, EventTarget.removeEventListener, Ev
entTarget.dispatchEvent; @docsEditable true | 11920 /// @domName EventTarget.addEventListener, EventTarget.removeEventListener, Ev
entTarget.dispatchEvent; @docsEditable true |
| 11845 HttpRequestEvents get on => | 11921 HttpRequestEvents get on => |
| 11846 new HttpRequestEvents(this); | 11922 new HttpRequestEvents(this); |
| 11847 | 11923 |
| 11848 static const int DONE = 4; | 11924 static const int DONE = 4; |
| 11849 | 11925 |
| 11850 static const int HEADERS_RECEIVED = 2; | 11926 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 | 12133 // 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 | 12134 // 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. | 12135 // BSD-style license that can be found in the LICENSE file. |
| 12060 | 12136 |
| 12061 // WARNING: Do not edit - generated code. | 12137 // WARNING: Do not edit - generated code. |
| 12062 | 12138 |
| 12063 | 12139 |
| 12064 /// @domName HTMLIFrameElement | 12140 /// @domName HTMLIFrameElement |
| 12065 class IFrameElement extends _Element_Merged { | 12141 class IFrameElement extends _Element_Merged { |
| 12066 | 12142 |
| 12143 ///@docsEditable true |
| 12067 factory IFrameElement() => document.$dom_createElement("iframe"); | 12144 factory IFrameElement() => document.$dom_createElement("iframe"); |
| 12068 IFrameElement.internal(): super.internal(); | 12145 IFrameElement.internal(): super.internal(); |
| 12069 | 12146 |
| 12070 | 12147 |
| 12071 /** @domName HTMLIFrameElement.align */ | 12148 /** @domName HTMLIFrameElement.align */ |
| 12072 String get align native "HTMLIFrameElement_align_Getter"; | 12149 String get align native "HTMLIFrameElement_align_Getter"; |
| 12073 | 12150 |
| 12074 | 12151 |
| 12075 /** @domName HTMLIFrameElement.align */ | 12152 /** @domName HTMLIFrameElement.align */ |
| 12076 void set align(String value) native "HTMLIFrameElement_align_Setter"; | 12153 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 | 12256 // 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 | 12257 // 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. | 12258 // BSD-style license that can be found in the LICENSE file. |
| 12182 | 12259 |
| 12183 // WARNING: Do not edit - generated code. | 12260 // WARNING: Do not edit - generated code. |
| 12184 | 12261 |
| 12185 | 12262 |
| 12186 /// @domName IceCandidate | 12263 /// @domName IceCandidate |
| 12187 class IceCandidate extends NativeFieldWrapperClass1 { | 12264 class IceCandidate extends NativeFieldWrapperClass1 { |
| 12188 | 12265 |
| 12266 ///@docsEditable true |
| 12189 factory IceCandidate(String label, String candidateLine) => _IceCandidateFacto
ryProvider.createIceCandidate(label, candidateLine); | 12267 factory IceCandidate(String label, String candidateLine) => _IceCandidateFacto
ryProvider.createIceCandidate(label, candidateLine); |
| 12190 IceCandidate.internal(); | 12268 IceCandidate.internal(); |
| 12191 | 12269 |
| 12192 | 12270 |
| 12193 /** @domName IceCandidate.label */ | 12271 /** @domName IceCandidate.label */ |
| 12194 String get label native "IceCandidate_label_Getter"; | 12272 String get label native "IceCandidate_label_Getter"; |
| 12195 | 12273 |
| 12196 | 12274 |
| 12197 /** @domName IceCandidate.toSdp */ | 12275 /** @domName IceCandidate.toSdp */ |
| 12198 String toSdp() native "IceCandidate_toSdp_Callback"; | 12276 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 | 12303 // 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 | 12304 // 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. | 12305 // BSD-style license that can be found in the LICENSE file. |
| 12228 | 12306 |
| 12229 // WARNING: Do not edit - generated code. | 12307 // WARNING: Do not edit - generated code. |
| 12230 | 12308 |
| 12231 | 12309 |
| 12232 /// @domName HTMLImageElement | 12310 /// @domName HTMLImageElement |
| 12233 class ImageElement extends _Element_Merged { | 12311 class ImageElement extends _Element_Merged { |
| 12234 | 12312 |
| 12313 ///@docsEditable true |
| 12235 factory ImageElement({String src, int width, int height}) { | 12314 factory ImageElement({String src, int width, int height}) { |
| 12236 var e = document.$dom_createElement("img"); | 12315 var e = document.$dom_createElement("img"); |
| 12237 if (src != null) e.src = src; | 12316 if (src != null) e.src = src; |
| 12238 if (width != null) e.width = width; | 12317 if (width != null) e.width = width; |
| 12239 if (height != null) e.height = height; | 12318 if (height != null) e.height = height; |
| 12240 return e; | 12319 return e; |
| 12241 } | 12320 } |
| 12242 ImageElement.internal(): super.internal(); | 12321 ImageElement.internal(): super.internal(); |
| 12243 | 12322 |
| 12244 | 12323 |
| (...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 | 12456 // 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 | 12457 // 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. | 12458 // BSD-style license that can be found in the LICENSE file. |
| 12380 | 12459 |
| 12381 // WARNING: Do not edit - generated code. | 12460 // WARNING: Do not edit - generated code. |
| 12382 | 12461 |
| 12383 | 12462 |
| 12384 /// @domName HTMLInputElement | 12463 /// @domName HTMLInputElement |
| 12385 class InputElement extends _Element_Merged { | 12464 class InputElement extends _Element_Merged { |
| 12386 | 12465 |
| 12466 ///@docsEditable true |
| 12387 factory InputElement({String type}) { | 12467 factory InputElement({String type}) { |
| 12388 var e = document.$dom_createElement("input"); | 12468 var e = document.$dom_createElement("input"); |
| 12389 if (type != null) e.type = type; | 12469 if (type != null) e.type = type; |
| 12390 return e; | 12470 return e; |
| 12391 } | 12471 } |
| 12392 InputElement.internal(): super.internal(); | 12472 InputElement.internal(): super.internal(); |
| 12393 | 12473 |
| 12394 /// @domName EventTarget.addEventListener, EventTarget.removeEventListener, Ev
entTarget.dispatchEvent; @docsEditable true | 12474 /// @domName EventTarget.addEventListener, EventTarget.removeEventListener, Ev
entTarget.dispatchEvent; @docsEditable true |
| 12395 InputElementEvents get on => | 12475 InputElementEvents get on => |
| 12396 new InputElementEvents(this); | 12476 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 | 13496 // 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 | 13497 // 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. | 13498 // BSD-style license that can be found in the LICENSE file. |
| 13419 | 13499 |
| 13420 // WARNING: Do not edit - generated code. | 13500 // WARNING: Do not edit - generated code. |
| 13421 | 13501 |
| 13422 | 13502 |
| 13423 /// @domName HTMLKeygenElement | 13503 /// @domName HTMLKeygenElement |
| 13424 class KeygenElement extends _Element_Merged { | 13504 class KeygenElement extends _Element_Merged { |
| 13425 | 13505 |
| 13506 ///@docsEditable true |
| 13426 factory KeygenElement() => document.$dom_createElement("keygen"); | 13507 factory KeygenElement() => document.$dom_createElement("keygen"); |
| 13427 KeygenElement.internal(): super.internal(); | 13508 KeygenElement.internal(): super.internal(); |
| 13428 | 13509 |
| 13429 | 13510 |
| 13430 /** @domName HTMLKeygenElement.autofocus */ | 13511 /** @domName HTMLKeygenElement.autofocus */ |
| 13431 bool get autofocus native "HTMLKeygenElement_autofocus_Getter"; | 13512 bool get autofocus native "HTMLKeygenElement_autofocus_Getter"; |
| 13432 | 13513 |
| 13433 | 13514 |
| 13434 /** @domName HTMLKeygenElement.autofocus */ | 13515 /** @domName HTMLKeygenElement.autofocus */ |
| 13435 void set autofocus(bool value) native "HTMLKeygenElement_autofocus_Setter"; | 13516 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 | 13583 // 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 | 13584 // 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. | 13585 // BSD-style license that can be found in the LICENSE file. |
| 13505 | 13586 |
| 13506 // WARNING: Do not edit - generated code. | 13587 // WARNING: Do not edit - generated code. |
| 13507 | 13588 |
| 13508 | 13589 |
| 13509 /// @domName HTMLLIElement | 13590 /// @domName HTMLLIElement |
| 13510 class LIElement extends _Element_Merged { | 13591 class LIElement extends _Element_Merged { |
| 13511 | 13592 |
| 13593 ///@docsEditable true |
| 13512 factory LIElement() => document.$dom_createElement("li"); | 13594 factory LIElement() => document.$dom_createElement("li"); |
| 13513 LIElement.internal(): super.internal(); | 13595 LIElement.internal(): super.internal(); |
| 13514 | 13596 |
| 13515 | 13597 |
| 13516 /** @domName HTMLLIElement.type */ | 13598 /** @domName HTMLLIElement.type */ |
| 13517 String get type native "HTMLLIElement_type_Getter"; | 13599 String get type native "HTMLLIElement_type_Getter"; |
| 13518 | 13600 |
| 13519 | 13601 |
| 13520 /** @domName HTMLLIElement.type */ | 13602 /** @domName HTMLLIElement.type */ |
| 13521 void set type(String value) native "HTMLLIElement_type_Setter"; | 13603 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 | 13614 // 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 | 13615 // 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. | 13616 // BSD-style license that can be found in the LICENSE file. |
| 13535 | 13617 |
| 13536 // WARNING: Do not edit - generated code. | 13618 // WARNING: Do not edit - generated code. |
| 13537 | 13619 |
| 13538 | 13620 |
| 13539 /// @domName HTMLLabelElement | 13621 /// @domName HTMLLabelElement |
| 13540 class LabelElement extends _Element_Merged { | 13622 class LabelElement extends _Element_Merged { |
| 13541 | 13623 |
| 13624 ///@docsEditable true |
| 13542 factory LabelElement() => document.$dom_createElement("label"); | 13625 factory LabelElement() => document.$dom_createElement("label"); |
| 13543 LabelElement.internal(): super.internal(); | 13626 LabelElement.internal(): super.internal(); |
| 13544 | 13627 |
| 13545 | 13628 |
| 13546 /** @domName HTMLLabelElement.control */ | 13629 /** @domName HTMLLabelElement.control */ |
| 13547 Element get control native "HTMLLabelElement_control_Getter"; | 13630 Element get control native "HTMLLabelElement_control_Getter"; |
| 13548 | 13631 |
| 13549 | 13632 |
| 13550 /** @domName HTMLLabelElement.form */ | 13633 /** @domName HTMLLabelElement.form */ |
| 13551 FormElement get form native "HTMLLabelElement_form_Getter"; | 13634 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 | 13645 // 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 | 13646 // 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. | 13647 // BSD-style license that can be found in the LICENSE file. |
| 13565 | 13648 |
| 13566 // WARNING: Do not edit - generated code. | 13649 // WARNING: Do not edit - generated code. |
| 13567 | 13650 |
| 13568 | 13651 |
| 13569 /// @domName HTMLLegendElement | 13652 /// @domName HTMLLegendElement |
| 13570 class LegendElement extends _Element_Merged { | 13653 class LegendElement extends _Element_Merged { |
| 13571 | 13654 |
| 13655 ///@docsEditable true |
| 13572 factory LegendElement() => document.$dom_createElement("legend"); | 13656 factory LegendElement() => document.$dom_createElement("legend"); |
| 13573 LegendElement.internal(): super.internal(); | 13657 LegendElement.internal(): super.internal(); |
| 13574 | 13658 |
| 13575 | 13659 |
| 13576 /** @domName HTMLLegendElement.align */ | 13660 /** @domName HTMLLegendElement.align */ |
| 13577 String get align native "HTMLLegendElement_align_Getter"; | 13661 String get align native "HTMLLegendElement_align_Getter"; |
| 13578 | 13662 |
| 13579 | 13663 |
| 13580 /** @domName HTMLLegendElement.align */ | 13664 /** @domName HTMLLegendElement.align */ |
| 13581 void set align(String value) native "HTMLLegendElement_align_Setter"; | 13665 void set align(String value) native "HTMLLegendElement_align_Setter"; |
| 13582 | 13666 |
| 13583 | 13667 |
| 13584 /** @domName HTMLLegendElement.form */ | 13668 /** @domName HTMLLegendElement.form */ |
| 13585 FormElement get form native "HTMLLegendElement_form_Getter"; | 13669 FormElement get form native "HTMLLegendElement_form_Getter"; |
| 13586 | 13670 |
| 13587 } | 13671 } |
| 13588 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 13672 // 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 | 13673 // 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. | 13674 // BSD-style license that can be found in the LICENSE file. |
| 13591 | 13675 |
| 13592 // WARNING: Do not edit - generated code. | 13676 // WARNING: Do not edit - generated code. |
| 13593 | 13677 |
| 13594 | 13678 |
| 13595 /// @domName HTMLLinkElement | 13679 /// @domName HTMLLinkElement |
| 13596 class LinkElement extends _Element_Merged { | 13680 class LinkElement extends _Element_Merged { |
| 13597 | 13681 |
| 13682 ///@docsEditable true |
| 13598 factory LinkElement() => document.$dom_createElement("link"); | 13683 factory LinkElement() => document.$dom_createElement("link"); |
| 13599 LinkElement.internal(): super.internal(); | 13684 LinkElement.internal(): super.internal(); |
| 13600 | 13685 |
| 13601 | 13686 |
| 13602 /** @domName HTMLLinkElement.charset */ | 13687 /** @domName HTMLLinkElement.charset */ |
| 13603 String get charset native "HTMLLinkElement_charset_Getter"; | 13688 String get charset native "HTMLLinkElement_charset_Getter"; |
| 13604 | 13689 |
| 13605 | 13690 |
| 13606 /** @domName HTMLLinkElement.charset */ | 13691 /** @domName HTMLLinkElement.charset */ |
| 13607 void set charset(String value) native "HTMLLinkElement_charset_Setter"; | 13692 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 | 14492 // 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 | 14493 // 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. | 14494 // BSD-style license that can be found in the LICENSE file. |
| 14410 | 14495 |
| 14411 // WARNING: Do not edit - generated code. | 14496 // WARNING: Do not edit - generated code. |
| 14412 | 14497 |
| 14413 | 14498 |
| 14414 /// @domName HTMLMapElement | 14499 /// @domName HTMLMapElement |
| 14415 class MapElement extends _Element_Merged { | 14500 class MapElement extends _Element_Merged { |
| 14416 | 14501 |
| 14502 ///@docsEditable true |
| 14417 factory MapElement() => document.$dom_createElement("map"); | 14503 factory MapElement() => document.$dom_createElement("map"); |
| 14418 MapElement.internal(): super.internal(); | 14504 MapElement.internal(): super.internal(); |
| 14419 | 14505 |
| 14420 | 14506 |
| 14421 /** @domName HTMLMapElement.areas */ | 14507 /** @domName HTMLMapElement.areas */ |
| 14422 HtmlCollection get areas native "HTMLMapElement_areas_Getter"; | 14508 HtmlCollection get areas native "HTMLMapElement_areas_Getter"; |
| 14423 | 14509 |
| 14424 | 14510 |
| 14425 /** @domName HTMLMapElement.name */ | 14511 /** @domName HTMLMapElement.name */ |
| 14426 String get name native "HTMLMapElement_name_Getter"; | 14512 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 | 14627 // 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 | 14628 // 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. | 14629 // BSD-style license that can be found in the LICENSE file. |
| 14544 | 14630 |
| 14545 // WARNING: Do not edit - generated code. | 14631 // WARNING: Do not edit - generated code. |
| 14546 | 14632 |
| 14547 | 14633 |
| 14548 /// @domName MediaController | 14634 /// @domName MediaController |
| 14549 class MediaController extends EventTarget { | 14635 class MediaController extends EventTarget { |
| 14550 | 14636 |
| 14637 ///@docsEditable true |
| 14551 factory MediaController() => _MediaControllerFactoryProvider.createMediaContro
ller(); | 14638 factory MediaController() => _MediaControllerFactoryProvider.createMediaContro
ller(); |
| 14552 MediaController.internal(): super.internal(); | 14639 MediaController.internal(): super.internal(); |
| 14553 | 14640 |
| 14554 | 14641 |
| 14555 /** @domName MediaController.buffered */ | 14642 /** @domName MediaController.buffered */ |
| 14556 TimeRanges get buffered native "MediaController_buffered_Getter"; | 14643 TimeRanges get buffered native "MediaController_buffered_Getter"; |
| 14557 | 14644 |
| 14558 | 14645 |
| 14559 /** @domName MediaController.currentTime */ | 14646 /** @domName MediaController.currentTime */ |
| 14560 num get currentTime native "MediaController_currentTime_Getter"; | 14647 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 | 15246 // 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 | 15247 // 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. | 15248 // BSD-style license that can be found in the LICENSE file. |
| 15162 | 15249 |
| 15163 // WARNING: Do not edit - generated code. | 15250 // WARNING: Do not edit - generated code. |
| 15164 | 15251 |
| 15165 | 15252 |
| 15166 /// @domName MediaSource | 15253 /// @domName MediaSource |
| 15167 class MediaSource extends EventTarget { | 15254 class MediaSource extends EventTarget { |
| 15168 | 15255 |
| 15256 ///@docsEditable true |
| 15169 factory MediaSource() => _MediaSourceFactoryProvider.createMediaSource(); | 15257 factory MediaSource() => _MediaSourceFactoryProvider.createMediaSource(); |
| 15170 MediaSource.internal(): super.internal(); | 15258 MediaSource.internal(): super.internal(); |
| 15171 | 15259 |
| 15172 | 15260 |
| 15173 /** @domName MediaSource.activeSourceBuffers */ | 15261 /** @domName MediaSource.activeSourceBuffers */ |
| 15174 SourceBufferList get activeSourceBuffers native "MediaSource_activeSourceBuffe
rs_Getter"; | 15262 SourceBufferList get activeSourceBuffers native "MediaSource_activeSourceBuffe
rs_Getter"; |
| 15175 | 15263 |
| 15176 | 15264 |
| 15177 /** @domName MediaSource.duration */ | 15265 /** @domName MediaSource.duration */ |
| 15178 num get duration native "MediaSource_duration_Getter"; | 15266 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 | 15305 // 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 | 15306 // 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. | 15307 // BSD-style license that can be found in the LICENSE file. |
| 15220 | 15308 |
| 15221 // WARNING: Do not edit - generated code. | 15309 // WARNING: Do not edit - generated code. |
| 15222 | 15310 |
| 15223 | 15311 |
| 15224 /// @domName MediaStream | 15312 /// @domName MediaStream |
| 15225 class MediaStream extends EventTarget { | 15313 class MediaStream extends EventTarget { |
| 15226 | 15314 |
| 15315 ///@docsEditable true |
| 15227 factory MediaStream(MediaStreamTrackList audioTracks, MediaStreamTrackList vid
eoTracks) => _MediaStreamFactoryProvider.createMediaStream(audioTracks, videoTra
cks); | 15316 factory MediaStream(MediaStreamTrackList audioTracks, MediaStreamTrackList vid
eoTracks) => _MediaStreamFactoryProvider.createMediaStream(audioTracks, videoTra
cks); |
| 15228 MediaStream.internal(): super.internal(); | 15317 MediaStream.internal(): super.internal(); |
| 15229 | 15318 |
| 15230 /// @domName EventTarget.addEventListener, EventTarget.removeEventListener, Ev
entTarget.dispatchEvent; @docsEditable true | 15319 /// @domName EventTarget.addEventListener, EventTarget.removeEventListener, Ev
entTarget.dispatchEvent; @docsEditable true |
| 15231 MediaStreamEvents get on => | 15320 MediaStreamEvents get on => |
| 15232 new MediaStreamEvents(this); | 15321 new MediaStreamEvents(this); |
| 15233 | 15322 |
| 15234 static const int ENDED = 2; | 15323 static const int ENDED = 2; |
| 15235 | 15324 |
| 15236 static const int LIVE = 1; | 15325 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 | 15534 // 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 | 15535 // 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. | 15536 // BSD-style license that can be found in the LICENSE file. |
| 15448 | 15537 |
| 15449 // WARNING: Do not edit - generated code. | 15538 // WARNING: Do not edit - generated code. |
| 15450 | 15539 |
| 15451 | 15540 |
| 15452 /// @domName HTMLMenuElement | 15541 /// @domName HTMLMenuElement |
| 15453 class MenuElement extends _Element_Merged { | 15542 class MenuElement extends _Element_Merged { |
| 15454 | 15543 |
| 15544 ///@docsEditable true |
| 15455 factory MenuElement() => document.$dom_createElement("menu"); | 15545 factory MenuElement() => document.$dom_createElement("menu"); |
| 15456 MenuElement.internal(): super.internal(); | 15546 MenuElement.internal(): super.internal(); |
| 15457 | 15547 |
| 15458 } | 15548 } |
| 15459 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 15549 // 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 | 15550 // 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. | 15551 // BSD-style license that can be found in the LICENSE file. |
| 15462 | 15552 |
| 15463 // WARNING: Do not edit - generated code. | 15553 // WARNING: Do not edit - generated code. |
| 15464 | 15554 |
| 15465 | 15555 |
| 15466 /// @domName MessageChannel | 15556 /// @domName MessageChannel |
| 15467 class MessageChannel extends NativeFieldWrapperClass1 { | 15557 class MessageChannel extends NativeFieldWrapperClass1 { |
| 15468 | 15558 |
| 15559 ///@docsEditable true |
| 15469 factory MessageChannel() => _MessageChannelFactoryProvider.createMessageChanne
l(); | 15560 factory MessageChannel() => _MessageChannelFactoryProvider.createMessageChanne
l(); |
| 15470 MessageChannel.internal(); | 15561 MessageChannel.internal(); |
| 15471 | 15562 |
| 15472 | 15563 |
| 15473 /** @domName MessageChannel.port1 */ | 15564 /** @domName MessageChannel.port1 */ |
| 15474 MessagePort get port1 native "MessageChannel_port1_Getter"; | 15565 MessagePort get port1 native "MessageChannel_port1_Getter"; |
| 15475 | 15566 |
| 15476 | 15567 |
| 15477 /** @domName MessageChannel.port2 */ | 15568 /** @domName MessageChannel.port2 */ |
| 15478 MessagePort get port2 native "MessageChannel_port2_Getter"; | 15569 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 | 15730 // 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 | 15731 // 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. | 15732 // BSD-style license that can be found in the LICENSE file. |
| 15642 | 15733 |
| 15643 // WARNING: Do not edit - generated code. | 15734 // WARNING: Do not edit - generated code. |
| 15644 | 15735 |
| 15645 | 15736 |
| 15646 /// @domName HTMLMeterElement | 15737 /// @domName HTMLMeterElement |
| 15647 class MeterElement extends _Element_Merged { | 15738 class MeterElement extends _Element_Merged { |
| 15648 | 15739 |
| 15740 ///@docsEditable true |
| 15649 factory MeterElement() => document.$dom_createElement("meter"); | 15741 factory MeterElement() => document.$dom_createElement("meter"); |
| 15650 MeterElement.internal(): super.internal(); | 15742 MeterElement.internal(): super.internal(); |
| 15651 | 15743 |
| 15652 | 15744 |
| 15653 /** @domName HTMLMeterElement.high */ | 15745 /** @domName HTMLMeterElement.high */ |
| 15654 num get high native "HTMLMeterElement_high_Getter"; | 15746 num get high native "HTMLMeterElement_high_Getter"; |
| 15655 | 15747 |
| 15656 | 15748 |
| 15657 /** @domName HTMLMeterElement.high */ | 15749 /** @domName HTMLMeterElement.high */ |
| 15658 void set high(num value) native "HTMLMeterElement_high_Setter"; | 15750 void set high(num value) native "HTMLMeterElement_high_Setter"; |
| (...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 15883 | 15975 |
| 15884 } | 15976 } |
| 15885 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 15977 // 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 | 15978 // 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. | 15979 // BSD-style license that can be found in the LICENSE file. |
| 15888 | 15980 |
| 15889 | 15981 |
| 15890 /// @domName MutationObserver | 15982 /// @domName MutationObserver |
| 15891 class MutationObserver extends NativeFieldWrapperClass1 { | 15983 class MutationObserver extends NativeFieldWrapperClass1 { |
| 15892 | 15984 |
| 15985 ///@docsEditable true |
| 15893 factory MutationObserver(MutationCallback callback) => _MutationObserverFactor
yProvider.createMutationObserver(callback); | 15986 factory MutationObserver(MutationCallback callback) => _MutationObserverFactor
yProvider.createMutationObserver(callback); |
| 15894 MutationObserver.internal(); | 15987 MutationObserver.internal(); |
| 15895 | 15988 |
| 15896 | 15989 |
| 15897 /** @domName MutationObserver.disconnect */ | 15990 /** @domName MutationObserver.disconnect */ |
| 15898 void disconnect() native "MutationObserver_disconnect_Callback"; | 15991 void disconnect() native "MutationObserver_disconnect_Callback"; |
| 15899 | 15992 |
| 15900 | 15993 |
| 15901 /** @domName MutationObserver._observe */ | 15994 /** @domName MutationObserver._observe */ |
| 15902 void _observe(Node target, Map options) native "MutationObserver__observe_Call
back"; | 15995 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 | 16917 // 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 | 16918 // 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. | 16919 // BSD-style license that can be found in the LICENSE file. |
| 16827 | 16920 |
| 16828 // WARNING: Do not edit - generated code. | 16921 // WARNING: Do not edit - generated code. |
| 16829 | 16922 |
| 16830 | 16923 |
| 16831 /// @domName Notification | 16924 /// @domName Notification |
| 16832 class Notification extends EventTarget { | 16925 class Notification extends EventTarget { |
| 16833 | 16926 |
| 16927 ///@docsEditable true |
| 16834 factory Notification(String title, [Map options]) { | 16928 factory Notification(String title, [Map options]) { |
| 16835 if (!?options) { | 16929 if (!?options) { |
| 16836 return _NotificationFactoryProvider.createNotification(title); | 16930 return _NotificationFactoryProvider.createNotification(title); |
| 16837 } | 16931 } |
| 16838 return _NotificationFactoryProvider.createNotification(title, options); | 16932 return _NotificationFactoryProvider.createNotification(title, options); |
| 16839 } | 16933 } |
| 16840 Notification.internal(): super.internal(); | 16934 Notification.internal(): super.internal(); |
| 16841 | 16935 |
| 16842 /// @domName EventTarget.addEventListener, EventTarget.removeEventListener, Ev
entTarget.dispatchEvent; @docsEditable true | 16936 /// @domName EventTarget.addEventListener, EventTarget.removeEventListener, Ev
entTarget.dispatchEvent; @docsEditable true |
| 16843 NotificationEvents get on => | 16937 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 | 17047 // 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 | 17048 // 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. | 17049 // BSD-style license that can be found in the LICENSE file. |
| 16956 | 17050 |
| 16957 // WARNING: Do not edit - generated code. | 17051 // WARNING: Do not edit - generated code. |
| 16958 | 17052 |
| 16959 | 17053 |
| 16960 /// @domName HTMLOListElement | 17054 /// @domName HTMLOListElement |
| 16961 class OListElement extends _Element_Merged { | 17055 class OListElement extends _Element_Merged { |
| 16962 | 17056 |
| 17057 ///@docsEditable true |
| 16963 factory OListElement() => document.$dom_createElement("ol"); | 17058 factory OListElement() => document.$dom_createElement("ol"); |
| 16964 OListElement.internal(): super.internal(); | 17059 OListElement.internal(): super.internal(); |
| 16965 | 17060 |
| 16966 | 17061 |
| 16967 /** @domName HTMLOListElement.compact */ | 17062 /** @domName HTMLOListElement.compact */ |
| 16968 bool get compact native "HTMLOListElement_compact_Getter"; | 17063 bool get compact native "HTMLOListElement_compact_Getter"; |
| 16969 | 17064 |
| 16970 | 17065 |
| 16971 /** @domName HTMLOListElement.compact */ | 17066 /** @domName HTMLOListElement.compact */ |
| 16972 void set compact(bool value) native "HTMLOListElement_compact_Setter"; | 17067 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 | 17094 // 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 | 17095 // 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. | 17096 // BSD-style license that can be found in the LICENSE file. |
| 17002 | 17097 |
| 17003 // WARNING: Do not edit - generated code. | 17098 // WARNING: Do not edit - generated code. |
| 17004 | 17099 |
| 17005 | 17100 |
| 17006 /// @domName HTMLObjectElement | 17101 /// @domName HTMLObjectElement |
| 17007 class ObjectElement extends _Element_Merged { | 17102 class ObjectElement extends _Element_Merged { |
| 17008 | 17103 |
| 17104 ///@docsEditable true |
| 17009 factory ObjectElement() => document.$dom_createElement("object"); | 17105 factory ObjectElement() => document.$dom_createElement("object"); |
| 17010 ObjectElement.internal(): super.internal(); | 17106 ObjectElement.internal(): super.internal(); |
| 17011 | 17107 |
| 17012 | 17108 |
| 17013 /** @domName HTMLObjectElement.align */ | 17109 /** @domName HTMLObjectElement.align */ |
| 17014 String get align native "HTMLObjectElement_align_Getter"; | 17110 String get align native "HTMLObjectElement_align_Getter"; |
| 17015 | 17111 |
| 17016 | 17112 |
| 17017 /** @domName HTMLObjectElement.align */ | 17113 /** @domName HTMLObjectElement.align */ |
| 17018 void set align(String value) native "HTMLObjectElement_align_Setter"; | 17114 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 | 17329 // 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 | 17330 // 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. | 17331 // BSD-style license that can be found in the LICENSE file. |
| 17236 | 17332 |
| 17237 // WARNING: Do not edit - generated code. | 17333 // WARNING: Do not edit - generated code. |
| 17238 | 17334 |
| 17239 | 17335 |
| 17240 /// @domName HTMLOptGroupElement | 17336 /// @domName HTMLOptGroupElement |
| 17241 class OptGroupElement extends _Element_Merged { | 17337 class OptGroupElement extends _Element_Merged { |
| 17242 | 17338 |
| 17339 ///@docsEditable true |
| 17243 factory OptGroupElement() => document.$dom_createElement("optgroup"); | 17340 factory OptGroupElement() => document.$dom_createElement("optgroup"); |
| 17244 OptGroupElement.internal(): super.internal(); | 17341 OptGroupElement.internal(): super.internal(); |
| 17245 | 17342 |
| 17246 | 17343 |
| 17247 /** @domName HTMLOptGroupElement.disabled */ | 17344 /** @domName HTMLOptGroupElement.disabled */ |
| 17248 bool get disabled native "HTMLOptGroupElement_disabled_Getter"; | 17345 bool get disabled native "HTMLOptGroupElement_disabled_Getter"; |
| 17249 | 17346 |
| 17250 | 17347 |
| 17251 /** @domName HTMLOptGroupElement.disabled */ | 17348 /** @domName HTMLOptGroupElement.disabled */ |
| 17252 void set disabled(bool value) native "HTMLOptGroupElement_disabled_Setter"; | 17349 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 | 17360 // 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 | 17361 // 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. | 17362 // BSD-style license that can be found in the LICENSE file. |
| 17266 | 17363 |
| 17267 // WARNING: Do not edit - generated code. | 17364 // WARNING: Do not edit - generated code. |
| 17268 | 17365 |
| 17269 | 17366 |
| 17270 /// @domName HTMLOptionElement | 17367 /// @domName HTMLOptionElement |
| 17271 class OptionElement extends _Element_Merged { | 17368 class OptionElement extends _Element_Merged { |
| 17272 | 17369 |
| 17370 ///@docsEditable true |
| 17273 factory OptionElement([String data, String value, bool defaultSelected, bool s
elected]) { | 17371 factory OptionElement([String data, String value, bool defaultSelected, bool s
elected]) { |
| 17274 if (!?data) { | 17372 if (!?data) { |
| 17275 return _OptionElementFactoryProvider.createOptionElement(); | 17373 return _OptionElementFactoryProvider.createOptionElement(); |
| 17276 } | 17374 } |
| 17277 if (!?value) { | 17375 if (!?value) { |
| 17278 return _OptionElementFactoryProvider.createOptionElement(data); | 17376 return _OptionElementFactoryProvider.createOptionElement(data); |
| 17279 } | 17377 } |
| 17280 if (!?defaultSelected) { | 17378 if (!?defaultSelected) { |
| 17281 return _OptionElementFactoryProvider.createOptionElement(data, value); | 17379 return _OptionElementFactoryProvider.createOptionElement(data, value); |
| 17282 } | 17380 } |
| (...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 | 17437 // 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 | 17438 // 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. | 17439 // BSD-style license that can be found in the LICENSE file. |
| 17342 | 17440 |
| 17343 // WARNING: Do not edit - generated code. | 17441 // WARNING: Do not edit - generated code. |
| 17344 | 17442 |
| 17345 | 17443 |
| 17346 /// @domName HTMLOutputElement | 17444 /// @domName HTMLOutputElement |
| 17347 class OutputElement extends _Element_Merged { | 17445 class OutputElement extends _Element_Merged { |
| 17348 | 17446 |
| 17447 ///@docsEditable true |
| 17349 factory OutputElement() => document.$dom_createElement("output"); | 17448 factory OutputElement() => document.$dom_createElement("output"); |
| 17350 OutputElement.internal(): super.internal(); | 17449 OutputElement.internal(): super.internal(); |
| 17351 | 17450 |
| 17352 | 17451 |
| 17353 /** @domName HTMLOutputElement.defaultValue */ | 17452 /** @domName HTMLOutputElement.defaultValue */ |
| 17354 String get defaultValue native "HTMLOutputElement_defaultValue_Getter"; | 17453 String get defaultValue native "HTMLOutputElement_defaultValue_Getter"; |
| 17355 | 17454 |
| 17356 | 17455 |
| 17357 /** @domName HTMLOutputElement.defaultValue */ | 17456 /** @domName HTMLOutputElement.defaultValue */ |
| 17358 void set defaultValue(String value) native "HTMLOutputElement_defaultValue_Set
ter"; | 17457 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 | 17582 // 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 | 17583 // 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. | 17584 // BSD-style license that can be found in the LICENSE file. |
| 17486 | 17585 |
| 17487 // WARNING: Do not edit - generated code. | 17586 // WARNING: Do not edit - generated code. |
| 17488 | 17587 |
| 17489 | 17588 |
| 17490 /// @domName HTMLParagraphElement | 17589 /// @domName HTMLParagraphElement |
| 17491 class ParagraphElement extends _Element_Merged { | 17590 class ParagraphElement extends _Element_Merged { |
| 17492 | 17591 |
| 17592 ///@docsEditable true |
| 17493 factory ParagraphElement() => document.$dom_createElement("p"); | 17593 factory ParagraphElement() => document.$dom_createElement("p"); |
| 17494 ParagraphElement.internal(): super.internal(); | 17594 ParagraphElement.internal(): super.internal(); |
| 17495 | 17595 |
| 17496 | 17596 |
| 17497 /** @domName HTMLParagraphElement.align */ | 17597 /** @domName HTMLParagraphElement.align */ |
| 17498 String get align native "HTMLParagraphElement_align_Getter"; | 17598 String get align native "HTMLParagraphElement_align_Getter"; |
| 17499 | 17599 |
| 17500 | 17600 |
| 17501 /** @domName HTMLParagraphElement.align */ | 17601 /** @domName HTMLParagraphElement.align */ |
| 17502 void set align(String value) native "HTMLParagraphElement_align_Setter"; | 17602 void set align(String value) native "HTMLParagraphElement_align_Setter"; |
| 17503 | 17603 |
| 17504 } | 17604 } |
| 17505 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 17605 // 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 | 17606 // 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. | 17607 // BSD-style license that can be found in the LICENSE file. |
| 17508 | 17608 |
| 17509 // WARNING: Do not edit - generated code. | 17609 // WARNING: Do not edit - generated code. |
| 17510 | 17610 |
| 17511 | 17611 |
| 17512 /// @domName HTMLParamElement | 17612 /// @domName HTMLParamElement |
| 17513 class ParamElement extends _Element_Merged { | 17613 class ParamElement extends _Element_Merged { |
| 17514 | 17614 |
| 17615 ///@docsEditable true |
| 17515 factory ParamElement() => document.$dom_createElement("param"); | 17616 factory ParamElement() => document.$dom_createElement("param"); |
| 17516 ParamElement.internal(): super.internal(); | 17617 ParamElement.internal(): super.internal(); |
| 17517 | 17618 |
| 17518 | 17619 |
| 17519 /** @domName HTMLParamElement.name */ | 17620 /** @domName HTMLParamElement.name */ |
| 17520 String get name native "HTMLParamElement_name_Getter"; | 17621 String get name native "HTMLParamElement_name_Getter"; |
| 17521 | 17622 |
| 17522 | 17623 |
| 17523 /** @domName HTMLParamElement.name */ | 17624 /** @domName HTMLParamElement.name */ |
| 17524 void set name(String value) native "HTMLParamElement_name_Setter"; | 17625 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 | 17652 // 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 | 17653 // 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. | 17654 // BSD-style license that can be found in the LICENSE file. |
| 17554 | 17655 |
| 17555 // WARNING: Do not edit - generated code. | 17656 // WARNING: Do not edit - generated code. |
| 17556 | 17657 |
| 17557 | 17658 |
| 17558 /// @domName PeerConnection00 | 17659 /// @domName PeerConnection00 |
| 17559 class PeerConnection00 extends EventTarget { | 17660 class PeerConnection00 extends EventTarget { |
| 17560 | 17661 |
| 17662 ///@docsEditable true |
| 17561 factory PeerConnection00(String serverConfiguration, IceCallback iceCallback)
=> _PeerConnection00FactoryProvider.createPeerConnection00(serverConfiguration,
iceCallback); | 17663 factory PeerConnection00(String serverConfiguration, IceCallback iceCallback)
=> _PeerConnection00FactoryProvider.createPeerConnection00(serverConfiguration,
iceCallback); |
| 17562 PeerConnection00.internal(): super.internal(); | 17664 PeerConnection00.internal(): super.internal(); |
| 17563 | 17665 |
| 17564 /// @domName EventTarget.addEventListener, EventTarget.removeEventListener, Ev
entTarget.dispatchEvent; @docsEditable true | 17666 /// @domName EventTarget.addEventListener, EventTarget.removeEventListener, Ev
entTarget.dispatchEvent; @docsEditable true |
| 17565 PeerConnection00Events get on => | 17667 PeerConnection00Events get on => |
| 17566 new PeerConnection00Events(this); | 17668 new PeerConnection00Events(this); |
| 17567 | 17669 |
| 17568 static const int ACTIVE = 2; | 17670 static const int ACTIVE = 2; |
| 17569 | 17671 |
| 17570 static const int CLOSED = 3; | 17672 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 | 18024 // 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 | 18025 // 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. | 18026 // BSD-style license that can be found in the LICENSE file. |
| 17925 | 18027 |
| 17926 // WARNING: Do not edit - generated code. | 18028 // WARNING: Do not edit - generated code. |
| 17927 | 18029 |
| 17928 | 18030 |
| 17929 /// @domName HTMLPreElement | 18031 /// @domName HTMLPreElement |
| 17930 class PreElement extends _Element_Merged { | 18032 class PreElement extends _Element_Merged { |
| 17931 | 18033 |
| 18034 ///@docsEditable true |
| 17932 factory PreElement() => document.$dom_createElement("pre"); | 18035 factory PreElement() => document.$dom_createElement("pre"); |
| 17933 PreElement.internal(): super.internal(); | 18036 PreElement.internal(): super.internal(); |
| 17934 | 18037 |
| 17935 | 18038 |
| 17936 /** @domName HTMLPreElement.width */ | 18039 /** @domName HTMLPreElement.width */ |
| 17937 int get width native "HTMLPreElement_width_Getter"; | 18040 int get width native "HTMLPreElement_width_Getter"; |
| 17938 | 18041 |
| 17939 | 18042 |
| 17940 /** @domName HTMLPreElement.width */ | 18043 /** @domName HTMLPreElement.width */ |
| 17941 void set width(int value) native "HTMLPreElement_width_Setter"; | 18044 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 | 18083 // 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 | 18084 // 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. | 18085 // BSD-style license that can be found in the LICENSE file. |
| 17983 | 18086 |
| 17984 // WARNING: Do not edit - generated code. | 18087 // WARNING: Do not edit - generated code. |
| 17985 | 18088 |
| 17986 | 18089 |
| 17987 /// @domName HTMLProgressElement | 18090 /// @domName HTMLProgressElement |
| 17988 class ProgressElement extends _Element_Merged { | 18091 class ProgressElement extends _Element_Merged { |
| 17989 | 18092 |
| 18093 ///@docsEditable true |
| 17990 factory ProgressElement() => document.$dom_createElement("progress"); | 18094 factory ProgressElement() => document.$dom_createElement("progress"); |
| 17991 ProgressElement.internal(): super.internal(); | 18095 ProgressElement.internal(): super.internal(); |
| 17992 | 18096 |
| 17993 | 18097 |
| 17994 /** @domName HTMLProgressElement.labels */ | 18098 /** @domName HTMLProgressElement.labels */ |
| 17995 List<Node> get labels native "HTMLProgressElement_labels_Getter"; | 18099 List<Node> get labels native "HTMLProgressElement_labels_Getter"; |
| 17996 | 18100 |
| 17997 | 18101 |
| 17998 /** @domName HTMLProgressElement.max */ | 18102 /** @domName HTMLProgressElement.max */ |
| 17999 num get max native "HTMLProgressElement_max_Getter"; | 18103 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 | 18574 // 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 | 18575 // 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. | 18576 // BSD-style license that can be found in the LICENSE file. |
| 18473 | 18577 |
| 18474 // WARNING: Do not edit - generated code. | 18578 // WARNING: Do not edit - generated code. |
| 18475 | 18579 |
| 18476 | 18580 |
| 18477 /// @domName RTCIceCandidate | 18581 /// @domName RTCIceCandidate |
| 18478 class RtcIceCandidate extends NativeFieldWrapperClass1 { | 18582 class RtcIceCandidate extends NativeFieldWrapperClass1 { |
| 18479 | 18583 |
| 18584 ///@docsEditable true |
| 18480 factory RtcIceCandidate(Map dictionary) => _RtcIceCandidateFactoryProvider.cre
ateRtcIceCandidate(dictionary); | 18585 factory RtcIceCandidate(Map dictionary) => _RtcIceCandidateFactoryProvider.cre
ateRtcIceCandidate(dictionary); |
| 18481 RtcIceCandidate.internal(); | 18586 RtcIceCandidate.internal(); |
| 18482 | 18587 |
| 18483 | 18588 |
| 18484 /** @domName RTCIceCandidate.candidate */ | 18589 /** @domName RTCIceCandidate.candidate */ |
| 18485 String get candidate native "RTCIceCandidate_candidate_Getter"; | 18590 String get candidate native "RTCIceCandidate_candidate_Getter"; |
| 18486 | 18591 |
| 18487 | 18592 |
| 18488 /** @domName RTCIceCandidate.sdpMLineIndex */ | 18593 /** @domName RTCIceCandidate.sdpMLineIndex */ |
| 18489 int get sdpMLineIndex native "RTCIceCandidate_sdpMLineIndex_Getter"; | 18594 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 | 18617 // 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 | 18618 // 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. | 18619 // BSD-style license that can be found in the LICENSE file. |
| 18515 | 18620 |
| 18516 // WARNING: Do not edit - generated code. | 18621 // WARNING: Do not edit - generated code. |
| 18517 | 18622 |
| 18518 | 18623 |
| 18519 /// @domName RTCPeerConnection | 18624 /// @domName RTCPeerConnection |
| 18520 class RtcPeerConnection extends EventTarget { | 18625 class RtcPeerConnection extends EventTarget { |
| 18521 | 18626 |
| 18627 ///@docsEditable true |
| 18522 factory RtcPeerConnection(Map rtcIceServers, [Map mediaConstraints]) { | 18628 factory RtcPeerConnection(Map rtcIceServers, [Map mediaConstraints]) { |
| 18523 if (!?mediaConstraints) { | 18629 if (!?mediaConstraints) { |
| 18524 return _RtcPeerConnectionFactoryProvider.createRtcPeerConnection(rtcIceSer
vers); | 18630 return _RtcPeerConnectionFactoryProvider.createRtcPeerConnection(rtcIceSer
vers); |
| 18525 } | 18631 } |
| 18526 return _RtcPeerConnectionFactoryProvider.createRtcPeerConnection(rtcIceServe
rs, mediaConstraints); | 18632 return _RtcPeerConnectionFactoryProvider.createRtcPeerConnection(rtcIceServe
rs, mediaConstraints); |
| 18527 } | 18633 } |
| 18528 RtcPeerConnection.internal(): super.internal(); | 18634 RtcPeerConnection.internal(): super.internal(); |
| 18529 | 18635 |
| 18530 /// @domName EventTarget.addEventListener, EventTarget.removeEventListener, Ev
entTarget.dispatchEvent; @docsEditable true | 18636 /// @domName EventTarget.addEventListener, EventTarget.removeEventListener, Ev
entTarget.dispatchEvent; @docsEditable true |
| 18531 RtcPeerConnectionEvents get on => | 18637 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 | 18739 // 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 | 18740 // 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. | 18741 // BSD-style license that can be found in the LICENSE file. |
| 18636 | 18742 |
| 18637 // WARNING: Do not edit - generated code. | 18743 // WARNING: Do not edit - generated code. |
| 18638 | 18744 |
| 18639 | 18745 |
| 18640 /// @domName RTCSessionDescription | 18746 /// @domName RTCSessionDescription |
| 18641 class RtcSessionDescription extends NativeFieldWrapperClass1 { | 18747 class RtcSessionDescription extends NativeFieldWrapperClass1 { |
| 18642 | 18748 |
| 18749 ///@docsEditable true |
| 18643 factory RtcSessionDescription(Map dictionary) => _RtcSessionDescriptionFactory
Provider.createRtcSessionDescription(dictionary); | 18750 factory RtcSessionDescription(Map dictionary) => _RtcSessionDescriptionFactory
Provider.createRtcSessionDescription(dictionary); |
| 18644 RtcSessionDescription.internal(); | 18751 RtcSessionDescription.internal(); |
| 18645 | 18752 |
| 18646 | 18753 |
| 18647 /** @domName RTCSessionDescription.sdp */ | 18754 /** @domName RTCSessionDescription.sdp */ |
| 18648 String get sdp native "RTCSessionDescription_sdp_Getter"; | 18755 String get sdp native "RTCSessionDescription_sdp_Getter"; |
| 18649 | 18756 |
| 18650 | 18757 |
| 18651 /** @domName RTCSessionDescription.sdp */ | 18758 /** @domName RTCSessionDescription.sdp */ |
| 18652 void set sdp(String value) native "RTCSessionDescription_sdp_Setter"; | 18759 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 | 18910 // 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 | 18911 // 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. | 18912 // BSD-style license that can be found in the LICENSE file. |
| 18806 | 18913 |
| 18807 // WARNING: Do not edit - generated code. | 18914 // WARNING: Do not edit - generated code. |
| 18808 | 18915 |
| 18809 | 18916 |
| 18810 /// @domName HTMLScriptElement | 18917 /// @domName HTMLScriptElement |
| 18811 class ScriptElement extends _Element_Merged { | 18918 class ScriptElement extends _Element_Merged { |
| 18812 | 18919 |
| 18920 ///@docsEditable true |
| 18813 factory ScriptElement() => document.$dom_createElement("script"); | 18921 factory ScriptElement() => document.$dom_createElement("script"); |
| 18814 ScriptElement.internal(): super.internal(); | 18922 ScriptElement.internal(): super.internal(); |
| 18815 | 18923 |
| 18816 | 18924 |
| 18817 /** @domName HTMLScriptElement.async */ | 18925 /** @domName HTMLScriptElement.async */ |
| 18818 bool get async native "HTMLScriptElement_async_Getter"; | 18926 bool get async native "HTMLScriptElement_async_Getter"; |
| 18819 | 18927 |
| 18820 | 18928 |
| 18821 /** @domName HTMLScriptElement.async */ | 18929 /** @domName HTMLScriptElement.async */ |
| 18822 void set async(bool value) native "HTMLScriptElement_async_Setter"; | 18930 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 | 19061 // 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 | 19062 // 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. | 19063 // BSD-style license that can be found in the LICENSE file. |
| 18956 | 19064 |
| 18957 // WARNING: Do not edit - generated code. | 19065 // WARNING: Do not edit - generated code. |
| 18958 | 19066 |
| 18959 | 19067 |
| 18960 /// @domName HTMLSelectElement | 19068 /// @domName HTMLSelectElement |
| 18961 class SelectElement extends _Element_Merged { | 19069 class SelectElement extends _Element_Merged { |
| 18962 | 19070 |
| 19071 ///@docsEditable true |
| 18963 factory SelectElement() => document.$dom_createElement("select"); | 19072 factory SelectElement() => document.$dom_createElement("select"); |
| 18964 SelectElement.internal(): super.internal(); | 19073 SelectElement.internal(): super.internal(); |
| 18965 | 19074 |
| 18966 | 19075 |
| 18967 /** @domName HTMLSelectElement.autofocus */ | 19076 /** @domName HTMLSelectElement.autofocus */ |
| 18968 bool get autofocus native "HTMLSelectElement_autofocus_Getter"; | 19077 bool get autofocus native "HTMLSelectElement_autofocus_Getter"; |
| 18969 | 19078 |
| 18970 | 19079 |
| 18971 /** @domName HTMLSelectElement.autofocus */ | 19080 /** @domName HTMLSelectElement.autofocus */ |
| 18972 void set autofocus(bool value) native "HTMLSelectElement_autofocus_Setter"; | 19081 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 | 19196 // 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 | 19197 // 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. | 19198 // BSD-style license that can be found in the LICENSE file. |
| 19090 | 19199 |
| 19091 // WARNING: Do not edit - generated code. | 19200 // WARNING: Do not edit - generated code. |
| 19092 | 19201 |
| 19093 | 19202 |
| 19094 /// @domName SessionDescription | 19203 /// @domName SessionDescription |
| 19095 class SessionDescription extends NativeFieldWrapperClass1 { | 19204 class SessionDescription extends NativeFieldWrapperClass1 { |
| 19096 | 19205 |
| 19206 ///@docsEditable true |
| 19097 factory SessionDescription(String sdp) => _SessionDescriptionFactoryProvider.c
reateSessionDescription(sdp); | 19207 factory SessionDescription(String sdp) => _SessionDescriptionFactoryProvider.c
reateSessionDescription(sdp); |
| 19098 SessionDescription.internal(); | 19208 SessionDescription.internal(); |
| 19099 | 19209 |
| 19100 | 19210 |
| 19101 /** @domName SessionDescription.addCandidate */ | 19211 /** @domName SessionDescription.addCandidate */ |
| 19102 void addCandidate(IceCandidate candidate) native "SessionDescription_addCandid
ate_Callback"; | 19212 void addCandidate(IceCandidate candidate) native "SessionDescription_addCandid
ate_Callback"; |
| 19103 | 19213 |
| 19104 | 19214 |
| 19105 /** @domName SessionDescription.toSdp */ | 19215 /** @domName SessionDescription.toSdp */ |
| 19106 String toSdp() native "SessionDescription_toSdp_Callback"; | 19216 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 | 19239 // 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 | 19240 // 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. | 19241 // BSD-style license that can be found in the LICENSE file. |
| 19132 | 19242 |
| 19133 // WARNING: Do not edit - generated code. | 19243 // WARNING: Do not edit - generated code. |
| 19134 | 19244 |
| 19135 | 19245 |
| 19136 /// @domName ShadowRoot | 19246 /// @domName ShadowRoot |
| 19137 class ShadowRoot extends DocumentFragment { | 19247 class ShadowRoot extends DocumentFragment { |
| 19138 | 19248 |
| 19249 ///@docsEditable true |
| 19139 factory ShadowRoot(Element host) => _ShadowRootFactoryProvider.createShadowRoo
t(host); | 19250 factory ShadowRoot(Element host) => _ShadowRootFactoryProvider.createShadowRoo
t(host); |
| 19140 ShadowRoot.internal(): super.internal(); | 19251 ShadowRoot.internal(): super.internal(); |
| 19141 | 19252 |
| 19142 | 19253 |
| 19143 /** @domName ShadowRoot.activeElement */ | 19254 /** @domName ShadowRoot.activeElement */ |
| 19144 Element get activeElement native "ShadowRoot_activeElement_Getter"; | 19255 Element get activeElement native "ShadowRoot_activeElement_Getter"; |
| 19145 | 19256 |
| 19146 | 19257 |
| 19147 /** @domName ShadowRoot.applyAuthorStyles */ | 19258 /** @domName ShadowRoot.applyAuthorStyles */ |
| 19148 bool get applyAuthorStyles native "ShadowRoot_applyAuthorStyles_Getter"; | 19259 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 | 19303 // 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 | 19304 // 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. | 19305 // BSD-style license that can be found in the LICENSE file. |
| 19195 | 19306 |
| 19196 // WARNING: Do not edit - generated code. | 19307 // WARNING: Do not edit - generated code. |
| 19197 | 19308 |
| 19198 | 19309 |
| 19199 /// @domName SharedWorker | 19310 /// @domName SharedWorker |
| 19200 class SharedWorker extends AbstractWorker { | 19311 class SharedWorker extends AbstractWorker { |
| 19201 | 19312 |
| 19313 ///@docsEditable true |
| 19202 factory SharedWorker(String scriptURL, [String name]) { | 19314 factory SharedWorker(String scriptURL, [String name]) { |
| 19203 if (!?name) { | 19315 if (!?name) { |
| 19204 return _SharedWorkerFactoryProvider.createSharedWorker(scriptURL); | 19316 return _SharedWorkerFactoryProvider.createSharedWorker(scriptURL); |
| 19205 } | 19317 } |
| 19206 return _SharedWorkerFactoryProvider.createSharedWorker(scriptURL, name); | 19318 return _SharedWorkerFactoryProvider.createSharedWorker(scriptURL, name); |
| 19207 } | 19319 } |
| 19208 SharedWorker.internal(): super.internal(); | 19320 SharedWorker.internal(): super.internal(); |
| 19209 | 19321 |
| 19210 | 19322 |
| 19211 /** @domName SharedWorker.port */ | 19323 /** @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 | 19517 // 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 | 19518 // 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. | 19519 // BSD-style license that can be found in the LICENSE file. |
| 19408 | 19520 |
| 19409 // WARNING: Do not edit - generated code. | 19521 // WARNING: Do not edit - generated code. |
| 19410 | 19522 |
| 19411 | 19523 |
| 19412 /// @domName HTMLSourceElement | 19524 /// @domName HTMLSourceElement |
| 19413 class SourceElement extends _Element_Merged { | 19525 class SourceElement extends _Element_Merged { |
| 19414 | 19526 |
| 19527 ///@docsEditable true |
| 19415 factory SourceElement() => document.$dom_createElement("source"); | 19528 factory SourceElement() => document.$dom_createElement("source"); |
| 19416 SourceElement.internal(): super.internal(); | 19529 SourceElement.internal(): super.internal(); |
| 19417 | 19530 |
| 19418 | 19531 |
| 19419 /** @domName HTMLSourceElement.media */ | 19532 /** @domName HTMLSourceElement.media */ |
| 19420 String get media native "HTMLSourceElement_media_Getter"; | 19533 String get media native "HTMLSourceElement_media_Getter"; |
| 19421 | 19534 |
| 19422 | 19535 |
| 19423 /** @domName HTMLSourceElement.media */ | 19536 /** @domName HTMLSourceElement.media */ |
| 19424 void set media(String value) native "HTMLSourceElement_media_Setter"; | 19537 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 | 19556 // 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 | 19557 // 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. | 19558 // BSD-style license that can be found in the LICENSE file. |
| 19446 | 19559 |
| 19447 // WARNING: Do not edit - generated code. | 19560 // WARNING: Do not edit - generated code. |
| 19448 | 19561 |
| 19449 | 19562 |
| 19450 /// @domName HTMLSpanElement | 19563 /// @domName HTMLSpanElement |
| 19451 class SpanElement extends _Element_Merged { | 19564 class SpanElement extends _Element_Merged { |
| 19452 | 19565 |
| 19566 ///@docsEditable true |
| 19453 factory SpanElement() => document.$dom_createElement("span"); | 19567 factory SpanElement() => document.$dom_createElement("span"); |
| 19454 SpanElement.internal(): super.internal(); | 19568 SpanElement.internal(): super.internal(); |
| 19455 | 19569 |
| 19456 } | 19570 } |
| 19457 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 19571 // 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 | 19572 // 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. | 19573 // BSD-style license that can be found in the LICENSE file. |
| 19460 | 19574 |
| 19461 // WARNING: Do not edit - generated code. | 19575 // WARNING: Do not edit - generated code. |
| 19462 | 19576 |
| 19463 | 19577 |
| 19464 /// @domName SpeechGrammar | 19578 /// @domName SpeechGrammar |
| 19465 class SpeechGrammar extends NativeFieldWrapperClass1 { | 19579 class SpeechGrammar extends NativeFieldWrapperClass1 { |
| 19466 | 19580 |
| 19581 ///@docsEditable true |
| 19467 factory SpeechGrammar() => _SpeechGrammarFactoryProvider.createSpeechGrammar()
; | 19582 factory SpeechGrammar() => _SpeechGrammarFactoryProvider.createSpeechGrammar()
; |
| 19468 SpeechGrammar.internal(); | 19583 SpeechGrammar.internal(); |
| 19469 | 19584 |
| 19470 | 19585 |
| 19471 /** @domName SpeechGrammar.src */ | 19586 /** @domName SpeechGrammar.src */ |
| 19472 String get src native "SpeechGrammar_src_Getter"; | 19587 String get src native "SpeechGrammar_src_Getter"; |
| 19473 | 19588 |
| 19474 | 19589 |
| 19475 /** @domName SpeechGrammar.src */ | 19590 /** @domName SpeechGrammar.src */ |
| 19476 void set src(String value) native "SpeechGrammar_src_Setter"; | 19591 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 | 19602 // 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 | 19603 // 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. | 19604 // BSD-style license that can be found in the LICENSE file. |
| 19490 | 19605 |
| 19491 // WARNING: Do not edit - generated code. | 19606 // WARNING: Do not edit - generated code. |
| 19492 | 19607 |
| 19493 | 19608 |
| 19494 /// @domName SpeechGrammarList | 19609 /// @domName SpeechGrammarList |
| 19495 class SpeechGrammarList extends NativeFieldWrapperClass1 implements List<SpeechG
rammar> { | 19610 class SpeechGrammarList extends NativeFieldWrapperClass1 implements List<SpeechG
rammar> { |
| 19496 | 19611 |
| 19612 ///@docsEditable true |
| 19497 factory SpeechGrammarList() => _SpeechGrammarListFactoryProvider.createSpeechG
rammarList(); | 19613 factory SpeechGrammarList() => _SpeechGrammarListFactoryProvider.createSpeechG
rammarList(); |
| 19498 SpeechGrammarList.internal(); | 19614 SpeechGrammarList.internal(); |
| 19499 | 19615 |
| 19500 | 19616 |
| 19501 /** @domName SpeechGrammarList.length */ | 19617 /** @domName SpeechGrammarList.length */ |
| 19502 int get length native "SpeechGrammarList_length_Getter"; | 19618 int get length native "SpeechGrammarList_length_Getter"; |
| 19503 | 19619 |
| 19504 SpeechGrammar operator[](int index) native "SpeechGrammarList_item_Callback"; | 19620 SpeechGrammar operator[](int index) native "SpeechGrammarList_item_Callback"; |
| 19505 | 19621 |
| 19506 void operator[]=(int index, SpeechGrammar value) { | 19622 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 | 19793 // 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 | 19794 // 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. | 19795 // BSD-style license that can be found in the LICENSE file. |
| 19680 | 19796 |
| 19681 // WARNING: Do not edit - generated code. | 19797 // WARNING: Do not edit - generated code. |
| 19682 | 19798 |
| 19683 | 19799 |
| 19684 /// @domName SpeechRecognition | 19800 /// @domName SpeechRecognition |
| 19685 class SpeechRecognition extends EventTarget { | 19801 class SpeechRecognition extends EventTarget { |
| 19686 | 19802 |
| 19803 ///@docsEditable true |
| 19687 factory SpeechRecognition() => _SpeechRecognitionFactoryProvider.createSpeechR
ecognition(); | 19804 factory SpeechRecognition() => _SpeechRecognitionFactoryProvider.createSpeechR
ecognition(); |
| 19688 SpeechRecognition.internal(): super.internal(); | 19805 SpeechRecognition.internal(): super.internal(); |
| 19689 | 19806 |
| 19690 /// @domName EventTarget.addEventListener, EventTarget.removeEventListener, Ev
entTarget.dispatchEvent; @docsEditable true | 19807 /// @domName EventTarget.addEventListener, EventTarget.removeEventListener, Ev
entTarget.dispatchEvent; @docsEditable true |
| 19691 SpeechRecognitionEvents get on => | 19808 SpeechRecognitionEvents get on => |
| 19692 new SpeechRecognitionEvents(this); | 19809 new SpeechRecognitionEvents(this); |
| 19693 | 19810 |
| 19694 | 19811 |
| 19695 /** @domName SpeechRecognition.continuous */ | 19812 /** @domName SpeechRecognition.continuous */ |
| 19696 bool get continuous native "SpeechRecognition_continuous_Getter"; | 19813 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 | 20433 // 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 | 20434 // 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. | 20435 // BSD-style license that can be found in the LICENSE file. |
| 20319 | 20436 |
| 20320 // WARNING: Do not edit - generated code. | 20437 // WARNING: Do not edit - generated code. |
| 20321 | 20438 |
| 20322 | 20439 |
| 20323 /// @domName HTMLStyleElement | 20440 /// @domName HTMLStyleElement |
| 20324 class StyleElement extends _Element_Merged { | 20441 class StyleElement extends _Element_Merged { |
| 20325 | 20442 |
| 20443 ///@docsEditable true |
| 20326 factory StyleElement() => document.$dom_createElement("style"); | 20444 factory StyleElement() => document.$dom_createElement("style"); |
| 20327 StyleElement.internal(): super.internal(); | 20445 StyleElement.internal(): super.internal(); |
| 20328 | 20446 |
| 20329 | 20447 |
| 20330 /** @domName HTMLStyleElement.disabled */ | 20448 /** @domName HTMLStyleElement.disabled */ |
| 20331 bool get disabled native "HTMLStyleElement_disabled_Getter"; | 20449 bool get disabled native "HTMLStyleElement_disabled_Getter"; |
| 20332 | 20450 |
| 20333 | 20451 |
| 20334 /** @domName HTMLStyleElement.disabled */ | 20452 /** @domName HTMLStyleElement.disabled */ |
| 20335 void set disabled(bool value) native "HTMLStyleElement_disabled_Setter"; | 20453 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 | 20548 // 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 | 20549 // 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. | 20550 // BSD-style license that can be found in the LICENSE file. |
| 20433 | 20551 |
| 20434 // WARNING: Do not edit - generated code. | 20552 // WARNING: Do not edit - generated code. |
| 20435 | 20553 |
| 20436 | 20554 |
| 20437 /// @domName HTMLTableCaptionElement | 20555 /// @domName HTMLTableCaptionElement |
| 20438 class TableCaptionElement extends _Element_Merged { | 20556 class TableCaptionElement extends _Element_Merged { |
| 20439 | 20557 |
| 20558 ///@docsEditable true |
| 20440 factory TableCaptionElement() => document.$dom_createElement("caption"); | 20559 factory TableCaptionElement() => document.$dom_createElement("caption"); |
| 20441 TableCaptionElement.internal(): super.internal(); | 20560 TableCaptionElement.internal(): super.internal(); |
| 20442 | 20561 |
| 20443 | 20562 |
| 20444 /** @domName HTMLTableCaptionElement.align */ | 20563 /** @domName HTMLTableCaptionElement.align */ |
| 20445 String get align native "HTMLTableCaptionElement_align_Getter"; | 20564 String get align native "HTMLTableCaptionElement_align_Getter"; |
| 20446 | 20565 |
| 20447 | 20566 |
| 20448 /** @domName HTMLTableCaptionElement.align */ | 20567 /** @domName HTMLTableCaptionElement.align */ |
| 20449 void set align(String value) native "HTMLTableCaptionElement_align_Setter"; | 20568 void set align(String value) native "HTMLTableCaptionElement_align_Setter"; |
| 20450 | 20569 |
| 20451 } | 20570 } |
| 20452 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 20571 // 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 | 20572 // 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. | 20573 // BSD-style license that can be found in the LICENSE file. |
| 20455 | 20574 |
| 20456 // WARNING: Do not edit - generated code. | 20575 // WARNING: Do not edit - generated code. |
| 20457 | 20576 |
| 20458 | 20577 |
| 20459 /// @domName HTMLTableCellElement | 20578 /// @domName HTMLTableCellElement |
| 20460 class TableCellElement extends _Element_Merged { | 20579 class TableCellElement extends _Element_Merged { |
| 20461 | 20580 |
| 20581 ///@docsEditable true |
| 20462 factory TableCellElement() => document.$dom_createElement("td"); | 20582 factory TableCellElement() => document.$dom_createElement("td"); |
| 20463 TableCellElement.internal(): super.internal(); | 20583 TableCellElement.internal(): super.internal(); |
| 20464 | 20584 |
| 20465 | 20585 |
| 20466 /** @domName HTMLTableCellElement.abbr */ | 20586 /** @domName HTMLTableCellElement.abbr */ |
| 20467 String get abbr native "HTMLTableCellElement_abbr_Getter"; | 20587 String get abbr native "HTMLTableCellElement_abbr_Getter"; |
| 20468 | 20588 |
| 20469 | 20589 |
| 20470 /** @domName HTMLTableCellElement.abbr */ | 20590 /** @domName HTMLTableCellElement.abbr */ |
| 20471 void set abbr(String value) native "HTMLTableCellElement_abbr_Setter"; | 20591 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 | 20702 // 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 | 20703 // 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. | 20704 // BSD-style license that can be found in the LICENSE file. |
| 20585 | 20705 |
| 20586 // WARNING: Do not edit - generated code. | 20706 // WARNING: Do not edit - generated code. |
| 20587 | 20707 |
| 20588 | 20708 |
| 20589 /// @domName HTMLTableColElement | 20709 /// @domName HTMLTableColElement |
| 20590 class TableColElement extends _Element_Merged { | 20710 class TableColElement extends _Element_Merged { |
| 20591 | 20711 |
| 20712 ///@docsEditable true |
| 20592 factory TableColElement() => document.$dom_createElement("col"); | 20713 factory TableColElement() => document.$dom_createElement("col"); |
| 20593 TableColElement.internal(): super.internal(); | 20714 TableColElement.internal(): super.internal(); |
| 20594 | 20715 |
| 20595 | 20716 |
| 20596 /** @domName HTMLTableColElement.align */ | 20717 /** @domName HTMLTableColElement.align */ |
| 20597 String get align native "HTMLTableColElement_align_Getter"; | 20718 String get align native "HTMLTableColElement_align_Getter"; |
| 20598 | 20719 |
| 20599 | 20720 |
| 20600 /** @domName HTMLTableColElement.align */ | 20721 /** @domName HTMLTableColElement.align */ |
| 20601 void set align(String value) native "HTMLTableColElement_align_Setter"; | 20722 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 | 20765 // 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 | 20766 // 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. | 20767 // BSD-style license that can be found in the LICENSE file. |
| 20647 | 20768 |
| 20648 // WARNING: Do not edit - generated code. | 20769 // WARNING: Do not edit - generated code. |
| 20649 | 20770 |
| 20650 | 20771 |
| 20651 /// @domName HTMLTableElement | 20772 /// @domName HTMLTableElement |
| 20652 class TableElement extends _Element_Merged { | 20773 class TableElement extends _Element_Merged { |
| 20653 | 20774 |
| 20775 ///@docsEditable true |
| 20654 factory TableElement() => document.$dom_createElement("table"); | 20776 factory TableElement() => document.$dom_createElement("table"); |
| 20655 TableElement.internal(): super.internal(); | 20777 TableElement.internal(): super.internal(); |
| 20656 | 20778 |
| 20657 | 20779 |
| 20658 /** @domName HTMLTableElement.align */ | 20780 /** @domName HTMLTableElement.align */ |
| 20659 String get align native "HTMLTableElement_align_Getter"; | 20781 String get align native "HTMLTableElement_align_Getter"; |
| 20660 | 20782 |
| 20661 | 20783 |
| 20662 /** @domName HTMLTableElement.align */ | 20784 /** @domName HTMLTableElement.align */ |
| 20663 void set align(String value) native "HTMLTableElement_align_Setter"; | 20785 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 | 20920 // 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 | 20921 // 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. | 20922 // BSD-style license that can be found in the LICENSE file. |
| 20801 | 20923 |
| 20802 // WARNING: Do not edit - generated code. | 20924 // WARNING: Do not edit - generated code. |
| 20803 | 20925 |
| 20804 | 20926 |
| 20805 /// @domName HTMLTableRowElement | 20927 /// @domName HTMLTableRowElement |
| 20806 class TableRowElement extends _Element_Merged { | 20928 class TableRowElement extends _Element_Merged { |
| 20807 | 20929 |
| 20930 ///@docsEditable true |
| 20808 factory TableRowElement() => document.$dom_createElement("tr"); | 20931 factory TableRowElement() => document.$dom_createElement("tr"); |
| 20809 TableRowElement.internal(): super.internal(); | 20932 TableRowElement.internal(): super.internal(); |
| 20810 | 20933 |
| 20811 | 20934 |
| 20812 /** @domName HTMLTableRowElement.align */ | 20935 /** @domName HTMLTableRowElement.align */ |
| 20813 String get align native "HTMLTableRowElement_align_Getter"; | 20936 String get align native "HTMLTableRowElement_align_Getter"; |
| 20814 | 20937 |
| 20815 | 20938 |
| 20816 /** @domName HTMLTableRowElement.align */ | 20939 /** @domName HTMLTableRowElement.align */ |
| 20817 void set align(String value) native "HTMLTableRowElement_align_Setter"; | 20940 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 | 21076 // 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 | 21077 // 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. | 21078 // BSD-style license that can be found in the LICENSE file. |
| 20956 | 21079 |
| 20957 // WARNING: Do not edit - generated code. | 21080 // WARNING: Do not edit - generated code. |
| 20958 | 21081 |
| 20959 | 21082 |
| 20960 /// @domName HTMLTextAreaElement | 21083 /// @domName HTMLTextAreaElement |
| 20961 class TextAreaElement extends _Element_Merged { | 21084 class TextAreaElement extends _Element_Merged { |
| 20962 | 21085 |
| 21086 ///@docsEditable true |
| 20963 factory TextAreaElement() => document.$dom_createElement("textarea"); | 21087 factory TextAreaElement() => document.$dom_createElement("textarea"); |
| 20964 TextAreaElement.internal(): super.internal(); | 21088 TextAreaElement.internal(): super.internal(); |
| 20965 | 21089 |
| 20966 | 21090 |
| 20967 /** @domName HTMLTextAreaElement.autofocus */ | 21091 /** @domName HTMLTextAreaElement.autofocus */ |
| 20968 bool get autofocus native "HTMLTextAreaElement_autofocus_Getter"; | 21092 bool get autofocus native "HTMLTextAreaElement_autofocus_Getter"; |
| 20969 | 21093 |
| 20970 | 21094 |
| 20971 /** @domName HTMLTextAreaElement.autofocus */ | 21095 /** @domName HTMLTextAreaElement.autofocus */ |
| 20972 void set autofocus(bool value) native "HTMLTextAreaElement_autofocus_Setter"; | 21096 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 | 21401 // 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 | 21402 // 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. | 21403 // BSD-style license that can be found in the LICENSE file. |
| 21280 | 21404 |
| 21281 // WARNING: Do not edit - generated code. | 21405 // WARNING: Do not edit - generated code. |
| 21282 | 21406 |
| 21283 | 21407 |
| 21284 /// @domName TextTrackCue | 21408 /// @domName TextTrackCue |
| 21285 class TextTrackCue extends EventTarget { | 21409 class TextTrackCue extends EventTarget { |
| 21286 | 21410 |
| 21411 ///@docsEditable true |
| 21287 factory TextTrackCue(num startTime, num endTime, String text) => _TextTrackCue
FactoryProvider.createTextTrackCue(startTime, endTime, text); | 21412 factory TextTrackCue(num startTime, num endTime, String text) => _TextTrackCue
FactoryProvider.createTextTrackCue(startTime, endTime, text); |
| 21288 TextTrackCue.internal(): super.internal(); | 21413 TextTrackCue.internal(): super.internal(); |
| 21289 | 21414 |
| 21290 /// @domName EventTarget.addEventListener, EventTarget.removeEventListener, Ev
entTarget.dispatchEvent; @docsEditable true | 21415 /// @domName EventTarget.addEventListener, EventTarget.removeEventListener, Ev
entTarget.dispatchEvent; @docsEditable true |
| 21291 TextTrackCueEvents get on => | 21416 TextTrackCueEvents get on => |
| 21292 new TextTrackCueEvents(this); | 21417 new TextTrackCueEvents(this); |
| 21293 | 21418 |
| 21294 | 21419 |
| 21295 /** @domName TextTrackCue.align */ | 21420 /** @domName TextTrackCue.align */ |
| 21296 String get align native "TextTrackCue_align_Getter"; | 21421 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 | 21834 // 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 | 21835 // 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. | 21836 // BSD-style license that can be found in the LICENSE file. |
| 21712 | 21837 |
| 21713 // WARNING: Do not edit - generated code. | 21838 // WARNING: Do not edit - generated code. |
| 21714 | 21839 |
| 21715 | 21840 |
| 21716 /// @domName HTMLTitleElement | 21841 /// @domName HTMLTitleElement |
| 21717 class TitleElement extends _Element_Merged { | 21842 class TitleElement extends _Element_Merged { |
| 21718 | 21843 |
| 21844 ///@docsEditable true |
| 21719 factory TitleElement() => document.$dom_createElement("title"); | 21845 factory TitleElement() => document.$dom_createElement("title"); |
| 21720 TitleElement.internal(): super.internal(); | 21846 TitleElement.internal(): super.internal(); |
| 21721 | 21847 |
| 21722 } | 21848 } |
| 21723 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 21849 // 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 | 21850 // 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. | 21851 // BSD-style license that can be found in the LICENSE file. |
| 21726 | 21852 |
| 21727 // WARNING: Do not edit - generated code. | 21853 // WARNING: Do not edit - generated code. |
| 21728 | 21854 |
| (...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 | 22073 // 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 | 22074 // 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. | 22075 // BSD-style license that can be found in the LICENSE file. |
| 21950 | 22076 |
| 21951 // WARNING: Do not edit - generated code. | 22077 // WARNING: Do not edit - generated code. |
| 21952 | 22078 |
| 21953 | 22079 |
| 21954 /// @domName HTMLTrackElement | 22080 /// @domName HTMLTrackElement |
| 21955 class TrackElement extends _Element_Merged { | 22081 class TrackElement extends _Element_Merged { |
| 21956 | 22082 |
| 22083 ///@docsEditable true |
| 21957 factory TrackElement() => document.$dom_createElement("track"); | 22084 factory TrackElement() => document.$dom_createElement("track"); |
| 21958 TrackElement.internal(): super.internal(); | 22085 TrackElement.internal(): super.internal(); |
| 21959 | 22086 |
| 21960 static const int ERROR = 3; | 22087 static const int ERROR = 3; |
| 21961 | 22088 |
| 21962 static const int LOADED = 2; | 22089 static const int LOADED = 2; |
| 21963 | 22090 |
| 21964 static const int LOADING = 1; | 22091 static const int LOADING = 1; |
| 21965 | 22092 |
| 21966 static const int NONE = 0; | 22093 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 | 22308 // 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 | 22309 // 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. | 22310 // BSD-style license that can be found in the LICENSE file. |
| 22184 | 22311 |
| 22185 // WARNING: Do not edit - generated code. | 22312 // WARNING: Do not edit - generated code. |
| 22186 | 22313 |
| 22187 | 22314 |
| 22188 /// @domName HTMLUListElement | 22315 /// @domName HTMLUListElement |
| 22189 class UListElement extends _Element_Merged { | 22316 class UListElement extends _Element_Merged { |
| 22190 | 22317 |
| 22318 ///@docsEditable true |
| 22191 factory UListElement() => document.$dom_createElement("ul"); | 22319 factory UListElement() => document.$dom_createElement("ul"); |
| 22192 UListElement.internal(): super.internal(); | 22320 UListElement.internal(): super.internal(); |
| 22193 | 22321 |
| 22194 | 22322 |
| 22195 /** @domName HTMLUListElement.compact */ | 22323 /** @domName HTMLUListElement.compact */ |
| 22196 bool get compact native "HTMLUListElement_compact_Getter"; | 22324 bool get compact native "HTMLUListElement_compact_Getter"; |
| 22197 | 22325 |
| 22198 | 22326 |
| 22199 /** @domName HTMLUListElement.compact */ | 22327 /** @domName HTMLUListElement.compact */ |
| 22200 void set compact(bool value) native "HTMLUListElement_compact_Setter"; | 22328 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 | 22936 // 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 | 22937 // 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. | 22938 // BSD-style license that can be found in the LICENSE file. |
| 22811 | 22939 |
| 22812 // WARNING: Do not edit - generated code. | 22940 // WARNING: Do not edit - generated code. |
| 22813 | 22941 |
| 22814 | 22942 |
| 22815 /// @domName HTMLVideoElement | 22943 /// @domName HTMLVideoElement |
| 22816 class VideoElement extends MediaElement { | 22944 class VideoElement extends MediaElement { |
| 22817 | 22945 |
| 22946 ///@docsEditable true |
| 22818 factory VideoElement() => document.$dom_createElement("video"); | 22947 factory VideoElement() => document.$dom_createElement("video"); |
| 22819 VideoElement.internal(): super.internal(); | 22948 VideoElement.internal(): super.internal(); |
| 22820 | 22949 |
| 22821 | 22950 |
| 22822 /** @domName HTMLVideoElement.height */ | 22951 /** @domName HTMLVideoElement.height */ |
| 22823 int get height native "HTMLVideoElement_height_Getter"; | 22952 int get height native "HTMLVideoElement_height_Getter"; |
| 22824 | 22953 |
| 22825 | 22954 |
| 22826 /** @domName HTMLVideoElement.height */ | 22955 /** @domName HTMLVideoElement.height */ |
| 22827 void set height(int value) native "HTMLVideoElement_height_Setter"; | 22956 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 | 24838 // 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 | 24839 // 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. | 24840 // BSD-style license that can be found in the LICENSE file. |
| 24712 | 24841 |
| 24713 // WARNING: Do not edit - generated code. | 24842 // WARNING: Do not edit - generated code. |
| 24714 | 24843 |
| 24715 | 24844 |
| 24716 /// @domName Worker | 24845 /// @domName Worker |
| 24717 class Worker extends AbstractWorker { | 24846 class Worker extends AbstractWorker { |
| 24718 | 24847 |
| 24848 ///@docsEditable true |
| 24719 factory Worker(String scriptUrl) => _WorkerFactoryProvider.createWorker(script
Url); | 24849 factory Worker(String scriptUrl) => _WorkerFactoryProvider.createWorker(script
Url); |
| 24720 Worker.internal(): super.internal(); | 24850 Worker.internal(): super.internal(); |
| 24721 | 24851 |
| 24722 /// @domName EventTarget.addEventListener, EventTarget.removeEventListener, Ev
entTarget.dispatchEvent; @docsEditable true | 24852 /// @domName EventTarget.addEventListener, EventTarget.removeEventListener, Ev
entTarget.dispatchEvent; @docsEditable true |
| 24723 WorkerEvents get on => | 24853 WorkerEvents get on => |
| 24724 new WorkerEvents(this); | 24854 new WorkerEvents(this); |
| 24725 | 24855 |
| 24726 | 24856 |
| 24727 /** @domName Worker.postMessage */ | 24857 /** @domName Worker.postMessage */ |
| 24728 void postMessage(/*SerializedScriptValue*/ message, [List messagePorts]) nativ
e "Worker_postMessage_Callback"; | 24858 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 | 25057 // 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 | 25058 // 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. | 25059 // BSD-style license that can be found in the LICENSE file. |
| 24930 | 25060 |
| 24931 // WARNING: Do not edit - generated code. | 25061 // WARNING: Do not edit - generated code. |
| 24932 | 25062 |
| 24933 | 25063 |
| 24934 /// @domName XPathEvaluator | 25064 /// @domName XPathEvaluator |
| 24935 class XPathEvaluator extends NativeFieldWrapperClass1 { | 25065 class XPathEvaluator extends NativeFieldWrapperClass1 { |
| 24936 | 25066 |
| 25067 ///@docsEditable true |
| 24937 factory XPathEvaluator() => _XPathEvaluatorFactoryProvider.createXPathEvaluato
r(); | 25068 factory XPathEvaluator() => _XPathEvaluatorFactoryProvider.createXPathEvaluato
r(); |
| 24938 XPathEvaluator.internal(); | 25069 XPathEvaluator.internal(); |
| 24939 | 25070 |
| 24940 | 25071 |
| 24941 /** @domName XPathEvaluator.createExpression */ | 25072 /** @domName XPathEvaluator.createExpression */ |
| 24942 XPathExpression createExpression(String expression, XPathNSResolver resolver)
native "XPathEvaluator_createExpression_Callback"; | 25073 XPathExpression createExpression(String expression, XPathNSResolver resolver)
native "XPathEvaluator_createExpression_Callback"; |
| 24943 | 25074 |
| 24944 | 25075 |
| 24945 /** @domName XPathEvaluator.createNSResolver */ | 25076 /** @domName XPathEvaluator.createNSResolver */ |
| 24946 XPathNSResolver createNSResolver(Node nodeResolver) native "XPathEvaluator_cre
ateNSResolver_Callback"; | 25077 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 | 25216 // 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 | 25217 // 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. | 25218 // BSD-style license that can be found in the LICENSE file. |
| 25088 | 25219 |
| 25089 // WARNING: Do not edit - generated code. | 25220 // WARNING: Do not edit - generated code. |
| 25090 | 25221 |
| 25091 | 25222 |
| 25092 /// @domName XMLSerializer | 25223 /// @domName XMLSerializer |
| 25093 class XmlSerializer extends NativeFieldWrapperClass1 { | 25224 class XmlSerializer extends NativeFieldWrapperClass1 { |
| 25094 | 25225 |
| 25226 ///@docsEditable true |
| 25095 factory XmlSerializer() => _XmlSerializerFactoryProvider.createXmlSerializer()
; | 25227 factory XmlSerializer() => _XmlSerializerFactoryProvider.createXmlSerializer()
; |
| 25096 XmlSerializer.internal(); | 25228 XmlSerializer.internal(); |
| 25097 | 25229 |
| 25098 | 25230 |
| 25099 /** @domName XMLSerializer.serializeToString */ | 25231 /** @domName XMLSerializer.serializeToString */ |
| 25100 String serializeToString(Node node) native "XMLSerializer_serializeToString_Ca
llback"; | 25232 String serializeToString(Node node) native "XMLSerializer_serializeToString_Ca
llback"; |
| 25101 | 25233 |
| 25102 } | 25234 } |
| 25103 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 25235 // 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 | 25236 // 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. | 25237 // BSD-style license that can be found in the LICENSE file. |
| 25106 | 25238 |
| 25107 // WARNING: Do not edit - generated code. | 25239 // WARNING: Do not edit - generated code. |
| 25108 | 25240 |
| 25109 | 25241 |
| 25110 /// @domName XSLTProcessor | 25242 /// @domName XSLTProcessor |
| 25111 class XsltProcessor extends NativeFieldWrapperClass1 { | 25243 class XsltProcessor extends NativeFieldWrapperClass1 { |
| 25112 | 25244 |
| 25245 ///@docsEditable true |
| 25113 factory XsltProcessor() => _XsltProcessorFactoryProvider.createXsltProcessor()
; | 25246 factory XsltProcessor() => _XsltProcessorFactoryProvider.createXsltProcessor()
; |
| 25114 XsltProcessor.internal(); | 25247 XsltProcessor.internal(); |
| 25115 | 25248 |
| 25116 | 25249 |
| 25117 /** @domName XSLTProcessor.clearParameters */ | 25250 /** @domName XSLTProcessor.clearParameters */ |
| 25118 void clearParameters() native "XSLTProcessor_clearParameters_Callback"; | 25251 void clearParameters() native "XSLTProcessor_clearParameters_Callback"; |
| 25119 | 25252 |
| 25120 | 25253 |
| 25121 /** @domName XSLTProcessor.getParameter */ | 25254 /** @domName XSLTProcessor.getParameter */ |
| 25122 String getParameter(String namespaceURI, String localName) native "XSLTProcess
or_getParameter_Callback"; | 25255 String getParameter(String namespaceURI, String localName) native "XSLTProcess
or_getParameter_Callback"; |
| (...skipping 4611 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 29734 bool get isEmpty => Maps.isEmpty(this); | 29867 bool get isEmpty => Maps.isEmpty(this); |
| 29735 } | 29868 } |
| 29736 | 29869 |
| 29737 get _printClosure => (s) { | 29870 get _printClosure => (s) { |
| 29738 try { | 29871 try { |
| 29739 window.console.log(s); | 29872 window.console.log(s); |
| 29740 } catch (_) { | 29873 } catch (_) { |
| 29741 _Utils.print(s); | 29874 _Utils.print(s); |
| 29742 } | 29875 } |
| 29743 }; | 29876 }; |
| OLD | NEW |