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

Side by Side Diff: lib/dom/dart2js/dom_dart2js.dart

Issue 10825350: Roll IDL to multivm@762 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | lib/dom/dom.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #library('dart:dom_deprecated'); 1 #library('dart:dom_deprecated');
2 2
3 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 3 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
4 // for details. All rights reserved. Use of this source code is governed by a 4 // for details. All rights reserved. Use of this source code is governed by a
5 // BSD-style license that can be found in the LICENSE file. 5 // BSD-style license that can be found in the LICENSE file.
6 6
7 // DO NOT EDIT 7 // DO NOT EDIT
8 // Auto-generated Dart DOM library. 8 // Auto-generated Dart DOM library.
9 9
10 10
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 _DelayNodeJs createDelayNode([num maxDelayTime]) native; 141 _DelayNodeJs createDelayNode([num maxDelayTime]) native;
142 142
143 _DynamicsCompressorNodeJs createDynamicsCompressor() native; 143 _DynamicsCompressorNodeJs createDynamicsCompressor() native;
144 144
145 _AudioGainNodeJs createGainNode() native; 145 _AudioGainNodeJs createGainNode() native;
146 146
147 _JavaScriptAudioNodeJs createJavaScriptNode(int bufferSize, [int numberOfInput Channels, int numberOfOutputChannels]) native; 147 _JavaScriptAudioNodeJs createJavaScriptNode(int bufferSize, [int numberOfInput Channels, int numberOfOutputChannels]) native;
148 148
149 _MediaElementAudioSourceNodeJs createMediaElementSource(_HTMLMediaElementJs me diaElement) native; 149 _MediaElementAudioSourceNodeJs createMediaElementSource(_HTMLMediaElementJs me diaElement) native;
150 150
151 _MediaStreamAudioSourceNodeJs createMediaStreamSource(_MediaStreamJs mediaStre am) native;
152
151 _OscillatorJs createOscillator() native; 153 _OscillatorJs createOscillator() native;
152 154
153 _AudioPannerNodeJs createPanner() native; 155 _AudioPannerNodeJs createPanner() native;
154 156
155 _WaveShaperNodeJs createWaveShaper() native; 157 _WaveShaperNodeJs createWaveShaper() native;
156 158
157 _WaveTableJs createWaveTable(_Float32ArrayJs real, _Float32ArrayJs imag) nativ e; 159 _WaveTableJs createWaveTable(_Float32ArrayJs real, _Float32ArrayJs imag) nativ e;
158 160
159 void decodeAudioData(_ArrayBufferJs audioData, AudioBufferCallback successCall back, [AudioBufferCallback errorCallback]) native; 161 void decodeAudioData(_ArrayBufferJs audioData, AudioBufferCallback successCall back, [AudioBufferCallback errorCallback]) native;
160 162
(...skipping 1659 matching lines...) Expand 10 before | Expand all | Expand 10 after
1820 1822
1821 static final int TEXTURE_MAX_ANISOTROPY_EXT = 0x84FE; 1823 static final int TEXTURE_MAX_ANISOTROPY_EXT = 0x84FE;
1822 } 1824 }
1823 1825
1824 class _ElementJs extends _NodeJs implements Element native "*Element" { 1826 class _ElementJs extends _NodeJs implements Element native "*Element" {
1825 1827
1826 static final int ALLOW_KEYBOARD_INPUT = 1; 1828 static final int ALLOW_KEYBOARD_INPUT = 1;
1827 1829
1828 final int childElementCount; 1830 final int childElementCount;
1829 1831
1832 final _DOMTokenListJs classList;
1833
1834 String className;
1835
1830 final int clientHeight; 1836 final int clientHeight;
1831 1837
1832 final int clientLeft; 1838 final int clientLeft;
1833 1839
1834 final int clientTop; 1840 final int clientTop;
1835 1841
1836 final int clientWidth; 1842 final int clientWidth;
1837 1843
1838 final Map<String, String> dataset; 1844 final Map<String, String> dataset;
1839 1845
(...skipping 20 matching lines...) Expand all
1860 int scrollLeft; 1866 int scrollLeft;
1861 1867
1862 int scrollTop; 1868 int scrollTop;
1863 1869
1864 final int scrollWidth; 1870 final int scrollWidth;
1865 1871
1866 final _CSSStyleDeclarationJs style; 1872 final _CSSStyleDeclarationJs style;
1867 1873
1868 final String tagName; 1874 final String tagName;
1869 1875
1870 final String webkitRegionOverflow; 1876 final String webkitRegionOverset;
1871 1877
1872 void blur() native; 1878 void blur() native;
1873 1879
1874 void focus() native; 1880 void focus() native;
1875 1881
1876 String getAttribute(String name) native; 1882 String getAttribute(String name) native;
1877 1883
1878 String getAttributeNS(String namespaceURI, String localName) native; 1884 String getAttributeNS(String namespaceURI, String localName) native;
1879 1885
1880 _AttrJs getAttributeNode(String name) native; 1886 _AttrJs getAttributeNode(String name) native;
(...skipping 1102 matching lines...) Expand 10 before | Expand all | Expand 10 after
2983 2989
2984 void writeln(String text) native; 2990 void writeln(String text) native;
2985 } 2991 }
2986 2992
2987 class _HTMLElementJs extends _ElementJs implements HTMLElement native "*HTMLElem ent" { 2993 class _HTMLElementJs extends _ElementJs implements HTMLElement native "*HTMLElem ent" {
2988 2994
2989 String accessKey; 2995 String accessKey;
2990 2996
2991 final _HTMLCollectionJs children; 2997 final _HTMLCollectionJs children;
2992 2998
2993 final _DOMTokenListJs classList;
2994
2995 String className;
2996
2997 String contentEditable; 2999 String contentEditable;
2998 3000
2999 String dir; 3001 String dir;
3000 3002
3001 bool draggable; 3003 bool draggable;
3002 3004
3003 bool hidden; 3005 bool hidden;
3004 3006
3005 String id; 3007 String id;
3006 3008
(...skipping 476 matching lines...) Expand 10 before | Expand all | Expand 10 after
3483 3485
3484 String width; 3486 String width;
3485 3487
3486 void start() native; 3488 void start() native;
3487 3489
3488 void stop() native; 3490 void stop() native;
3489 } 3491 }
3490 3492
3491 class _HTMLMediaElementJs extends _HTMLElementJs implements HTMLMediaElement nat ive "*HTMLMediaElement" { 3493 class _HTMLMediaElementJs extends _HTMLElementJs implements HTMLMediaElement nat ive "*HTMLMediaElement" {
3492 3494
3493 static final int EOS_DECODE_ERR = 2;
3494
3495 static final int EOS_NETWORK_ERR = 1;
3496
3497 static final int EOS_NO_ERROR = 0;
3498
3499 static final int HAVE_CURRENT_DATA = 2; 3495 static final int HAVE_CURRENT_DATA = 2;
3500 3496
3501 static final int HAVE_ENOUGH_DATA = 4; 3497 static final int HAVE_ENOUGH_DATA = 4;
3502 3498
3503 static final int HAVE_FUTURE_DATA = 3; 3499 static final int HAVE_FUTURE_DATA = 3;
3504 3500
3505 static final int HAVE_METADATA = 1; 3501 static final int HAVE_METADATA = 1;
3506 3502
3507 static final int HAVE_NOTHING = 0; 3503 static final int HAVE_NOTHING = 0;
3508 3504
3509 static final int NETWORK_EMPTY = 0; 3505 static final int NETWORK_EMPTY = 0;
3510 3506
3511 static final int NETWORK_IDLE = 1; 3507 static final int NETWORK_IDLE = 1;
3512 3508
3513 static final int NETWORK_LOADING = 2; 3509 static final int NETWORK_LOADING = 2;
3514 3510
3515 static final int NETWORK_NO_SOURCE = 3; 3511 static final int NETWORK_NO_SOURCE = 3;
3516 3512
3517 static final int SOURCE_CLOSED = 0;
3518
3519 static final int SOURCE_ENDED = 2;
3520
3521 static final int SOURCE_OPEN = 1;
3522
3523 bool autoplay; 3513 bool autoplay;
3524 3514
3525 final _TimeRangesJs buffered; 3515 final _TimeRangesJs buffered;
3526 3516
3527 _MediaControllerJs controller; 3517 _MediaControllerJs controller;
3528 3518
3529 bool controls; 3519 bool controls;
3530 3520
3531 final String currentSrc; 3521 final String currentSrc;
3532 3522
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
3577 final int webkitAudioDecodedByteCount; 3567 final int webkitAudioDecodedByteCount;
3578 3568
3579 bool webkitClosedCaptionsVisible; 3569 bool webkitClosedCaptionsVisible;
3580 3570
3581 final bool webkitHasClosedCaptions; 3571 final bool webkitHasClosedCaptions;
3582 3572
3583 final String webkitMediaSourceURL; 3573 final String webkitMediaSourceURL;
3584 3574
3585 bool webkitPreservesPitch; 3575 bool webkitPreservesPitch;
3586 3576
3587 final int webkitSourceState;
3588
3589 final int webkitVideoDecodedByteCount; 3577 final int webkitVideoDecodedByteCount;
3590 3578
3591 _TextTrackJs addTextTrack(String kind, [String label, String language]) native ; 3579 _TextTrackJs addTextTrack(String kind, [String label, String language]) native ;
3592 3580
3593 String canPlayType(String type, String keySystem) native; 3581 String canPlayType(String type, String keySystem) native;
3594 3582
3595 void load() native; 3583 void load() native;
3596 3584
3597 void pause() native; 3585 void pause() native;
3598 3586
3599 void play() native; 3587 void play() native;
3600 3588
3601 void webkitAddKey(String keySystem, _Uint8ArrayJs key, [_Uint8ArrayJs initData , String sessionId]) native; 3589 void webkitAddKey(String keySystem, _Uint8ArrayJs key, [_Uint8ArrayJs initData , String sessionId]) native;
3602 3590
3603 void webkitCancelKeyRequest(String keySystem, String sessionId) native; 3591 void webkitCancelKeyRequest(String keySystem, String sessionId) native;
3604 3592
3605 void webkitGenerateKeyRequest(String keySystem, [_Uint8ArrayJs initData]) nati ve; 3593 void webkitGenerateKeyRequest(String keySystem, [_Uint8ArrayJs initData]) nati ve;
3606
3607 void webkitSourceAbort(String id) native;
3608
3609 void webkitSourceAddId(String id, String type) native;
3610
3611 void webkitSourceAppend(String id, _Uint8ArrayJs data) native;
3612
3613 _TimeRangesJs webkitSourceBuffered(String id) native;
3614
3615 void webkitSourceEndOfStream(int status) native;
3616
3617 void webkitSourceRemoveId(String id) native;
3618 } 3594 }
3619 3595
3620 class _HTMLMenuElementJs extends _HTMLElementJs implements HTMLMenuElement nativ e "*HTMLMenuElement" { 3596 class _HTMLMenuElementJs extends _HTMLElementJs implements HTMLMenuElement nativ e "*HTMLMenuElement" {
3621 3597
3622 bool compact; 3598 bool compact;
3623 } 3599 }
3624 3600
3625 class _HTMLMetaElementJs extends _HTMLElementJs implements HTMLMetaElement nativ e "*HTMLMetaElement" { 3601 class _HTMLMetaElementJs extends _HTMLElementJs implements HTMLMetaElement nativ e "*HTMLMetaElement" {
3626 3602
3627 String content; 3603 String content;
(...skipping 1418 matching lines...) Expand 10 before | Expand all | Expand 10 after
5046 5022
5047 final bool matches; 5023 final bool matches;
5048 5024
5049 final String media; 5025 final String media;
5050 5026
5051 void addListener(MediaQueryListListener listener) native; 5027 void addListener(MediaQueryListListener listener) native;
5052 5028
5053 void removeListener(MediaQueryListListener listener) native; 5029 void removeListener(MediaQueryListListener listener) native;
5054 } 5030 }
5055 5031
5032 class _MediaSourceJs extends _EventTargetJs implements MediaSource native "*Medi aSource" {
5033
5034 final _SourceBufferListJs activeSourceBuffers;
5035
5036 final String readyState;
5037
5038 final _SourceBufferListJs sourceBuffers;
5039
5040 void addEventListener(String type, EventListener listener, [bool useCapture]) native;
5041
5042 _SourceBufferJs addSourceBuffer(String type) native;
5043
5044 bool dispatchEvent(_EventJs event) native;
5045
5046 void endOfStream(String error) native;
5047
5048 void removeEventListener(String type, EventListener listener, [bool useCapture ]) native;
5049
5050 void removeSourceBuffer(_SourceBufferJs buffer) native;
5051 }
5052
5056 class _MediaStreamJs extends _EventTargetJs implements MediaStream native "*Medi aStream" { 5053 class _MediaStreamJs extends _EventTargetJs implements MediaStream native "*Medi aStream" {
5057 5054
5058 static final int ENDED = 2; 5055 static final int ENDED = 2;
5059 5056
5060 static final int LIVE = 1; 5057 static final int LIVE = 1;
5061 5058
5062 final _MediaStreamTrackListJs audioTracks; 5059 final _MediaStreamTrackListJs audioTracks;
5063 5060
5064 final String label; 5061 final String label;
5065 5062
5066 final int readyState; 5063 final int readyState;
5067 5064
5068 final _MediaStreamTrackListJs videoTracks; 5065 final _MediaStreamTrackListJs videoTracks;
5069 5066
5070 void addEventListener(String type, EventListener listener, [bool useCapture]) native; 5067 void addEventListener(String type, EventListener listener, [bool useCapture]) native;
5071 5068
5072 bool dispatchEvent(_EventJs event) native; 5069 bool dispatchEvent(_EventJs event) native;
5073 5070
5074 void removeEventListener(String type, EventListener listener, [bool useCapture ]) native; 5071 void removeEventListener(String type, EventListener listener, [bool useCapture ]) native;
5075 } 5072 }
5076 5073
5074 class _MediaStreamAudioSourceNodeJs extends _AudioSourceNodeJs implements MediaS treamAudioSourceNode native "*MediaStreamAudioSourceNode" {
5075
5076 final _MediaStreamJs mediaStream;
5077 }
5078
5077 class _MediaStreamEventJs extends _EventJs implements MediaStreamEvent native "* MediaStreamEvent" { 5079 class _MediaStreamEventJs extends _EventJs implements MediaStreamEvent native "* MediaStreamEvent" {
5078 5080
5079 final _MediaStreamJs stream; 5081 final _MediaStreamJs stream;
5080 } 5082 }
5081 5083
5082 class _MediaStreamListJs extends _DOMTypeJs implements MediaStreamList native "* MediaStreamList" { 5084 class _MediaStreamListJs extends _DOMTypeJs implements MediaStreamList native "* MediaStreamList" {
5083 5085
5084 final int length; 5086 final int length;
5085 5087
5086 _MediaStreamJs item(int index) native; 5088 _MediaStreamJs item(int index) native;
(...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after
5410 final String productSub; 5412 final String productSub;
5411 5413
5412 final String userAgent; 5414 final String userAgent;
5413 5415
5414 final String vendor; 5416 final String vendor;
5415 5417
5416 final String vendorSub; 5418 final String vendorSub;
5417 5419
5418 final _BatteryManagerJs webkitBattery; 5420 final _BatteryManagerJs webkitBattery;
5419 5421
5420 final _PointerLockJs webkitPointer;
5421
5422 void getStorageUpdates() native; 5422 void getStorageUpdates() native;
5423 5423
5424 bool javaEnabled() native; 5424 bool javaEnabled() native;
5425 5425
5426 _GamepadListJs webkitGetGamepads() native; 5426 _GamepadListJs webkitGetGamepads() native;
5427 5427
5428 void webkitGetUserMedia(Map options, NavigatorUserMediaSuccessCallback success Callback, [NavigatorUserMediaErrorCallback errorCallback]) native; 5428 void webkitGetUserMedia(Map options, NavigatorUserMediaSuccessCallback success Callback, [NavigatorUserMediaErrorCallback errorCallback]) native;
5429 } 5429 }
5430 5430
5431 class _NavigatorUserMediaErrorJs extends _DOMTypeJs implements NavigatorUserMedi aError native "*NavigatorUserMediaError" { 5431 class _NavigatorUserMediaErrorJs extends _DOMTypeJs implements NavigatorUserMedi aError native "*NavigatorUserMediaError" {
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after
5697 5697
5698 final String publicId; 5698 final String publicId;
5699 5699
5700 final String systemId; 5700 final String systemId;
5701 } 5701 }
5702 5702
5703 class _NotificationJs extends _EventTargetJs implements Notification native "*No tification" { 5703 class _NotificationJs extends _EventTargetJs implements Notification native "*No tification" {
5704 5704
5705 String dir; 5705 String dir;
5706 5706
5707 final String permission;
5708
5707 String replaceId; 5709 String replaceId;
5708 5710
5709 String tag; 5711 String tag;
5710 5712
5711 void addEventListener(String type, EventListener listener, [bool useCapture]) native; 5713 void addEventListener(String type, EventListener listener, [bool useCapture]) native;
5712 5714
5713 void cancel() native; 5715 void cancel() native;
5714 5716
5715 void close() native; 5717 void close() native;
5716 5718
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
5949 5951
5950 final int responseStart; 5952 final int responseStart;
5951 5953
5952 final int secureConnectionStart; 5954 final int secureConnectionStart;
5953 5955
5954 final int unloadEventEnd; 5956 final int unloadEventEnd;
5955 5957
5956 final int unloadEventStart; 5958 final int unloadEventStart;
5957 } 5959 }
5958 5960
5959 class _PointerLockJs extends _DOMTypeJs implements PointerLock native "*PointerL ock" {
5960
5961 final bool isLocked;
5962
5963 void lock(_ElementJs target, [VoidCallback successCallback, VoidCallback failu reCallback]) native;
5964
5965 void unlock() native;
5966 }
5967
5968 class _PopStateEventJs extends _EventJs implements PopStateEvent native "*PopSta teEvent" { 5961 class _PopStateEventJs extends _EventJs implements PopStateEvent native "*PopSta teEvent" {
5969 5962
5970 final Object state; 5963 final Object state;
5971 } 5964 }
5972 5965
5973 class _PositionErrorJs extends _DOMTypeJs implements PositionError native "*Posi tionError" { 5966 class _PositionErrorJs extends _DOMTypeJs implements PositionError native "*Posi tionError" {
5974 5967
5975 static final int PERMISSION_DENIED = 1; 5968 static final int PERMISSION_DENIED = 1;
5976 5969
5977 static final int POSITION_UNAVAILABLE = 2; 5970 static final int POSITION_UNAVAILABLE = 2;
(...skipping 25 matching lines...) Expand all
6003 5996
6004 class _RGBColorJs extends _DOMTypeJs implements RGBColor native "*RGBColor" { 5997 class _RGBColorJs extends _DOMTypeJs implements RGBColor native "*RGBColor" {
6005 5998
6006 final _CSSPrimitiveValueJs blue; 5999 final _CSSPrimitiveValueJs blue;
6007 6000
6008 final _CSSPrimitiveValueJs green; 6001 final _CSSPrimitiveValueJs green;
6009 6002
6010 final _CSSPrimitiveValueJs red; 6003 final _CSSPrimitiveValueJs red;
6011 } 6004 }
6012 6005
6006 class _RTCPeerConnectionJs extends _EventTargetJs implements RTCPeerConnection n ative "*RTCPeerConnection" {
6007
6008 void addEventListener(String type, EventListener listener, [bool useCapture]) native;
6009
6010 bool dispatchEvent(_EventJs event) native;
6011
6012 void removeEventListener(String type, EventListener listener, [bool useCapture ]) native;
6013 }
6014
6013 class _RadioNodeListJs extends _NodeListJs implements RadioNodeList native "*Rad ioNodeList" { 6015 class _RadioNodeListJs extends _NodeListJs implements RadioNodeList native "*Rad ioNodeList" {
6014 6016
6015 String value; 6017 String value;
6016 } 6018 }
6017 6019
6018 class _RangeJs extends _DOMTypeJs implements Range native "*Range" { 6020 class _RangeJs extends _DOMTypeJs implements Range native "*Range" {
6019 6021
6020 static final int END_TO_END = 2; 6022 static final int END_TO_END = 2;
6021 6023
6022 static final int END_TO_START = 3; 6024 static final int END_TO_START = 3;
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
6232 String xmllang; 6234 String xmllang;
6233 6235
6234 String xmlspace; 6236 String xmlspace;
6235 6237
6236 // From SVGExternalResourcesRequired 6238 // From SVGExternalResourcesRequired
6237 6239
6238 final _SVGAnimatedBooleanJs externalResourcesRequired; 6240 final _SVGAnimatedBooleanJs externalResourcesRequired;
6239 6241
6240 // From SVGStylable 6242 // From SVGStylable
6241 6243
6242 final _SVGAnimatedStringJs className; 6244 // Shadowing definition.
6245 _SVGAnimatedStringJs get className() native "return this.className;";
6243 6246
6244 // Use implementation from Element. 6247 // Use implementation from Element.
6245 // final _CSSStyleDeclarationJs style; 6248 // final _CSSStyleDeclarationJs style;
6246 6249
6247 _CSSValueJs getPresentationAttribute(String name) native; 6250 _CSSValueJs getPresentationAttribute(String name) native;
6248 6251
6249 // From SVGTransformable 6252 // From SVGTransformable
6250 6253
6251 final _SVGAnimatedTransformListJs transform; 6254 final _SVGAnimatedTransformListJs transform;
6252 6255
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
6461 String xmllang; 6464 String xmllang;
6462 6465
6463 String xmlspace; 6466 String xmlspace;
6464 6467
6465 // From SVGExternalResourcesRequired 6468 // From SVGExternalResourcesRequired
6466 6469
6467 final _SVGAnimatedBooleanJs externalResourcesRequired; 6470 final _SVGAnimatedBooleanJs externalResourcesRequired;
6468 6471
6469 // From SVGStylable 6472 // From SVGStylable
6470 6473
6471 final _SVGAnimatedStringJs className; 6474 // Shadowing definition.
6475 _SVGAnimatedStringJs get className() native "return this.className;";
6472 6476
6473 // Use implementation from Element. 6477 // Use implementation from Element.
6474 // final _CSSStyleDeclarationJs style; 6478 // final _CSSStyleDeclarationJs style;
6475 6479
6476 _CSSValueJs getPresentationAttribute(String name) native; 6480 _CSSValueJs getPresentationAttribute(String name) native;
6477 6481
6478 // From SVGTransformable 6482 // From SVGTransformable
6479 6483
6480 final _SVGAnimatedTransformListJs transform; 6484 final _SVGAnimatedTransformListJs transform;
6481 6485
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
6513 String xmllang; 6517 String xmllang;
6514 6518
6515 String xmlspace; 6519 String xmlspace;
6516 6520
6517 // From SVGExternalResourcesRequired 6521 // From SVGExternalResourcesRequired
6518 6522
6519 final _SVGAnimatedBooleanJs externalResourcesRequired; 6523 final _SVGAnimatedBooleanJs externalResourcesRequired;
6520 6524
6521 // From SVGStylable 6525 // From SVGStylable
6522 6526
6523 final _SVGAnimatedStringJs className; 6527 // Shadowing definition.
6528 _SVGAnimatedStringJs get className() native "return this.className;";
6524 6529
6525 // Use implementation from Element. 6530 // Use implementation from Element.
6526 // final _CSSStyleDeclarationJs style; 6531 // final _CSSStyleDeclarationJs style;
6527 6532
6528 _CSSValueJs getPresentationAttribute(String name) native; 6533 _CSSValueJs getPresentationAttribute(String name) native;
6529 6534
6530 // From SVGTransformable 6535 // From SVGTransformable
6531 6536
6532 final _SVGAnimatedTransformListJs transform; 6537 final _SVGAnimatedTransformListJs transform;
6533 6538
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
6638 String xmllang; 6643 String xmllang;
6639 6644
6640 String xmlspace; 6645 String xmlspace;
6641 6646
6642 // From SVGExternalResourcesRequired 6647 // From SVGExternalResourcesRequired
6643 6648
6644 final _SVGAnimatedBooleanJs externalResourcesRequired; 6649 final _SVGAnimatedBooleanJs externalResourcesRequired;
6645 6650
6646 // From SVGStylable 6651 // From SVGStylable
6647 6652
6648 final _SVGAnimatedStringJs className; 6653 // Shadowing definition.
6654 _SVGAnimatedStringJs get className() native "return this.className;";
6649 6655
6650 // Use implementation from Element. 6656 // Use implementation from Element.
6651 // final _CSSStyleDeclarationJs style; 6657 // final _CSSStyleDeclarationJs style;
6652 6658
6653 _CSSValueJs getPresentationAttribute(String name) native; 6659 _CSSValueJs getPresentationAttribute(String name) native;
6654 6660
6655 // From SVGTransformable 6661 // From SVGTransformable
6656 6662
6657 final _SVGAnimatedTransformListJs transform; 6663 final _SVGAnimatedTransformListJs transform;
6658 6664
(...skipping 15 matching lines...) Expand all
6674 class _SVGDescElementJs extends _SVGElementJs implements SVGDescElement native " *SVGDescElement" { 6680 class _SVGDescElementJs extends _SVGElementJs implements SVGDescElement native " *SVGDescElement" {
6675 6681
6676 // From SVGLangSpace 6682 // From SVGLangSpace
6677 6683
6678 String xmllang; 6684 String xmllang;
6679 6685
6680 String xmlspace; 6686 String xmlspace;
6681 6687
6682 // From SVGStylable 6688 // From SVGStylable
6683 6689
6684 final _SVGAnimatedStringJs className; 6690 // Shadowing definition.
6691 _SVGAnimatedStringJs get className() native "return this.className;";
6685 6692
6686 // Use implementation from Element. 6693 // Use implementation from Element.
6687 // final _CSSStyleDeclarationJs style; 6694 // final _CSSStyleDeclarationJs style;
6688 6695
6689 _CSSValueJs getPresentationAttribute(String name) native; 6696 _CSSValueJs getPresentationAttribute(String name) native;
6690 } 6697 }
6691 6698
6692 class _SVGDocumentJs extends _DocumentJs implements SVGDocument native "*SVGDocu ment" { 6699 class _SVGDocumentJs extends _DocumentJs implements SVGDocument native "*SVGDocu ment" {
6693 6700
6694 final _SVGSVGElementJs rootElement; 6701 final _SVGSVGElementJs rootElement;
6695 6702
6696 _EventJs createEvent(String eventType) native; 6703 _EventJs createEvent(String eventType) native;
6697 } 6704 }
6698 6705
6699 class _SVGElementJs extends _ElementJs implements SVGElement native "*SVGElement " { 6706 class _SVGElementJs extends _ElementJs implements SVGElement native "*SVGElement " {
6700 6707
6701 String id; 6708 String id;
6702 6709
6703 final _SVGSVGElementJs ownerSVGElement; 6710 final _SVGSVGElementJs ownerSVGElement;
6704 6711
6705 final _SVGElementJs viewportElement; 6712 final _SVGElementJs viewportElement;
6706 6713
6707 String xmlbase; 6714 String xmlbase;
6708 } 6715 }
6709 6716
6710 class _SVGElementInstanceJs extends _DOMTypeJs implements SVGElementInstance nat ive "*SVGElementInstance" { 6717 class _SVGElementInstanceJs extends _EventTargetJs implements SVGElementInstance native "*SVGElementInstance" {
6711 6718
6712 final _SVGElementInstanceListJs childNodes; 6719 final _SVGElementInstanceListJs childNodes;
6713 6720
6714 final _SVGElementJs correspondingElement; 6721 final _SVGElementJs correspondingElement;
6715 6722
6716 final _SVGUseElementJs correspondingUseElement; 6723 final _SVGUseElementJs correspondingUseElement;
6717 6724
6718 final _SVGElementInstanceJs firstChild; 6725 final _SVGElementInstanceJs firstChild;
6719 6726
6720 final _SVGElementInstanceJs lastChild; 6727 final _SVGElementInstanceJs lastChild;
6721 6728
6722 final _SVGElementInstanceJs nextSibling; 6729 final _SVGElementInstanceJs nextSibling;
6723 6730
6724 final _SVGElementInstanceJs parentNode; 6731 final _SVGElementInstanceJs parentNode;
6725 6732
6726 final _SVGElementInstanceJs previousSibling; 6733 final _SVGElementInstanceJs previousSibling;
6727
6728 void addEventListener(String type, EventListener listener, [bool useCapture]) native;
6729
6730 bool dispatchEvent(_EventJs event) native;
6731
6732 void removeEventListener(String type, EventListener listener, [bool useCapture ]) native;
6733 } 6734 }
6734 6735
6735 class _SVGElementInstanceListJs extends _DOMTypeJs implements SVGElementInstance List native "*SVGElementInstanceList" { 6736 class _SVGElementInstanceListJs extends _DOMTypeJs implements SVGElementInstance List native "*SVGElementInstanceList" {
6736 6737
6737 final int length; 6738 final int length;
6738 6739
6739 _SVGElementInstanceJs item(int index) native; 6740 _SVGElementInstanceJs item(int index) native;
6740 } 6741 }
6741 6742
6742 class _SVGEllipseElementJs extends _SVGElementJs implements SVGEllipseElement na tive "*SVGEllipseElement" { 6743 class _SVGEllipseElementJs extends _SVGElementJs implements SVGEllipseElement na tive "*SVGEllipseElement" {
(...skipping 21 matching lines...) Expand all
6764 String xmllang; 6765 String xmllang;
6765 6766
6766 String xmlspace; 6767 String xmlspace;
6767 6768
6768 // From SVGExternalResourcesRequired 6769 // From SVGExternalResourcesRequired
6769 6770
6770 final _SVGAnimatedBooleanJs externalResourcesRequired; 6771 final _SVGAnimatedBooleanJs externalResourcesRequired;
6771 6772
6772 // From SVGStylable 6773 // From SVGStylable
6773 6774
6774 final _SVGAnimatedStringJs className; 6775 // Shadowing definition.
6776 _SVGAnimatedStringJs get className() native "return this.className;";
6775 6777
6776 // Use implementation from Element. 6778 // Use implementation from Element.
6777 // final _CSSStyleDeclarationJs style; 6779 // final _CSSStyleDeclarationJs style;
6778 6780
6779 _CSSValueJs getPresentationAttribute(String name) native; 6781 _CSSValueJs getPresentationAttribute(String name) native;
6780 6782
6781 // From SVGTransformable 6783 // From SVGTransformable
6782 6784
6783 final _SVGAnimatedTransformListJs transform; 6785 final _SVGAnimatedTransformListJs transform;
6784 6786
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
6841 final _SVGAnimatedStringJs result; 6843 final _SVGAnimatedStringJs result;
6842 6844
6843 final _SVGAnimatedLengthJs width; 6845 final _SVGAnimatedLengthJs width;
6844 6846
6845 final _SVGAnimatedLengthJs x; 6847 final _SVGAnimatedLengthJs x;
6846 6848
6847 final _SVGAnimatedLengthJs y; 6849 final _SVGAnimatedLengthJs y;
6848 6850
6849 // From SVGStylable 6851 // From SVGStylable
6850 6852
6851 final _SVGAnimatedStringJs className; 6853 // Shadowing definition.
6854 _SVGAnimatedStringJs get className() native "return this.className;";
6852 6855
6853 // Use implementation from Element. 6856 // Use implementation from Element.
6854 // final _CSSStyleDeclarationJs style; 6857 // final _CSSStyleDeclarationJs style;
6855 6858
6856 _CSSValueJs getPresentationAttribute(String name) native; 6859 _CSSValueJs getPresentationAttribute(String name) native;
6857 } 6860 }
6858 6861
6859 class _SVGFEColorMatrixElementJs extends _SVGElementJs implements SVGFEColorMatr ixElement native "*SVGFEColorMatrixElement" { 6862 class _SVGFEColorMatrixElementJs extends _SVGElementJs implements SVGFEColorMatr ixElement native "*SVGFEColorMatrixElement" {
6860 6863
6861 static final int SVG_FECOLORMATRIX_TYPE_HUEROTATE = 3; 6864 static final int SVG_FECOLORMATRIX_TYPE_HUEROTATE = 3;
(...skipping 19 matching lines...) Expand all
6881 final _SVGAnimatedStringJs result; 6884 final _SVGAnimatedStringJs result;
6882 6885
6883 final _SVGAnimatedLengthJs width; 6886 final _SVGAnimatedLengthJs width;
6884 6887
6885 final _SVGAnimatedLengthJs x; 6888 final _SVGAnimatedLengthJs x;
6886 6889
6887 final _SVGAnimatedLengthJs y; 6890 final _SVGAnimatedLengthJs y;
6888 6891
6889 // From SVGStylable 6892 // From SVGStylable
6890 6893
6891 final _SVGAnimatedStringJs className; 6894 // Shadowing definition.
6895 _SVGAnimatedStringJs get className() native "return this.className;";
6892 6896
6893 // Use implementation from Element. 6897 // Use implementation from Element.
6894 // final _CSSStyleDeclarationJs style; 6898 // final _CSSStyleDeclarationJs style;
6895 6899
6896 _CSSValueJs getPresentationAttribute(String name) native; 6900 _CSSValueJs getPresentationAttribute(String name) native;
6897 } 6901 }
6898 6902
6899 class _SVGFEComponentTransferElementJs extends _SVGElementJs implements SVGFECom ponentTransferElement native "*SVGFEComponentTransferElement" { 6903 class _SVGFEComponentTransferElementJs extends _SVGElementJs implements SVGFECom ponentTransferElement native "*SVGFEComponentTransferElement" {
6900 6904
6901 final _SVGAnimatedStringJs in1; 6905 final _SVGAnimatedStringJs in1;
6902 6906
6903 // From SVGFilterPrimitiveStandardAttributes 6907 // From SVGFilterPrimitiveStandardAttributes
6904 6908
6905 final _SVGAnimatedLengthJs height; 6909 final _SVGAnimatedLengthJs height;
6906 6910
6907 final _SVGAnimatedStringJs result; 6911 final _SVGAnimatedStringJs result;
6908 6912
6909 final _SVGAnimatedLengthJs width; 6913 final _SVGAnimatedLengthJs width;
6910 6914
6911 final _SVGAnimatedLengthJs x; 6915 final _SVGAnimatedLengthJs x;
6912 6916
6913 final _SVGAnimatedLengthJs y; 6917 final _SVGAnimatedLengthJs y;
6914 6918
6915 // From SVGStylable 6919 // From SVGStylable
6916 6920
6917 final _SVGAnimatedStringJs className; 6921 // Shadowing definition.
6922 _SVGAnimatedStringJs get className() native "return this.className;";
6918 6923
6919 // Use implementation from Element. 6924 // Use implementation from Element.
6920 // final _CSSStyleDeclarationJs style; 6925 // final _CSSStyleDeclarationJs style;
6921 6926
6922 _CSSValueJs getPresentationAttribute(String name) native; 6927 _CSSValueJs getPresentationAttribute(String name) native;
6923 } 6928 }
6924 6929
6925 class _SVGFECompositeElementJs extends _SVGElementJs implements SVGFECompositeEl ement native "*SVGFECompositeElement" { 6930 class _SVGFECompositeElementJs extends _SVGElementJs implements SVGFECompositeEl ement native "*SVGFECompositeElement" {
6926 6931
6927 static final int SVG_FECOMPOSITE_OPERATOR_ARITHMETIC = 6; 6932 static final int SVG_FECOMPOSITE_OPERATOR_ARITHMETIC = 6;
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
6959 final _SVGAnimatedStringJs result; 6964 final _SVGAnimatedStringJs result;
6960 6965
6961 final _SVGAnimatedLengthJs width; 6966 final _SVGAnimatedLengthJs width;
6962 6967
6963 final _SVGAnimatedLengthJs x; 6968 final _SVGAnimatedLengthJs x;
6964 6969
6965 final _SVGAnimatedLengthJs y; 6970 final _SVGAnimatedLengthJs y;
6966 6971
6967 // From SVGStylable 6972 // From SVGStylable
6968 6973
6969 final _SVGAnimatedStringJs className; 6974 // Shadowing definition.
6975 _SVGAnimatedStringJs get className() native "return this.className;";
6970 6976
6971 // Use implementation from Element. 6977 // Use implementation from Element.
6972 // final _CSSStyleDeclarationJs style; 6978 // final _CSSStyleDeclarationJs style;
6973 6979
6974 _CSSValueJs getPresentationAttribute(String name) native; 6980 _CSSValueJs getPresentationAttribute(String name) native;
6975 } 6981 }
6976 6982
6977 class _SVGFEConvolveMatrixElementJs extends _SVGElementJs implements SVGFEConvol veMatrixElement native "*SVGFEConvolveMatrixElement" { 6983 class _SVGFEConvolveMatrixElementJs extends _SVGElementJs implements SVGFEConvol veMatrixElement native "*SVGFEConvolveMatrixElement" {
6978 6984
6979 static final int SVG_EDGEMODE_DUPLICATE = 1; 6985 static final int SVG_EDGEMODE_DUPLICATE = 1;
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
7015 final _SVGAnimatedStringJs result; 7021 final _SVGAnimatedStringJs result;
7016 7022
7017 final _SVGAnimatedLengthJs width; 7023 final _SVGAnimatedLengthJs width;
7018 7024
7019 final _SVGAnimatedLengthJs x; 7025 final _SVGAnimatedLengthJs x;
7020 7026
7021 final _SVGAnimatedLengthJs y; 7027 final _SVGAnimatedLengthJs y;
7022 7028
7023 // From SVGStylable 7029 // From SVGStylable
7024 7030
7025 final _SVGAnimatedStringJs className; 7031 // Shadowing definition.
7032 _SVGAnimatedStringJs get className() native "return this.className;";
7026 7033
7027 // Use implementation from Element. 7034 // Use implementation from Element.
7028 // final _CSSStyleDeclarationJs style; 7035 // final _CSSStyleDeclarationJs style;
7029 7036
7030 _CSSValueJs getPresentationAttribute(String name) native; 7037 _CSSValueJs getPresentationAttribute(String name) native;
7031 } 7038 }
7032 7039
7033 class _SVGFEDiffuseLightingElementJs extends _SVGElementJs implements SVGFEDiffu seLightingElement native "*SVGFEDiffuseLightingElement" { 7040 class _SVGFEDiffuseLightingElementJs extends _SVGElementJs implements SVGFEDiffu seLightingElement native "*SVGFEDiffuseLightingElement" {
7034 7041
7035 final _SVGAnimatedNumberJs diffuseConstant; 7042 final _SVGAnimatedNumberJs diffuseConstant;
(...skipping 13 matching lines...) Expand all
7049 final _SVGAnimatedStringJs result; 7056 final _SVGAnimatedStringJs result;
7050 7057
7051 final _SVGAnimatedLengthJs width; 7058 final _SVGAnimatedLengthJs width;
7052 7059
7053 final _SVGAnimatedLengthJs x; 7060 final _SVGAnimatedLengthJs x;
7054 7061
7055 final _SVGAnimatedLengthJs y; 7062 final _SVGAnimatedLengthJs y;
7056 7063
7057 // From SVGStylable 7064 // From SVGStylable
7058 7065
7059 final _SVGAnimatedStringJs className; 7066 // Shadowing definition.
7067 _SVGAnimatedStringJs get className() native "return this.className;";
7060 7068
7061 // Use implementation from Element. 7069 // Use implementation from Element.
7062 // final _CSSStyleDeclarationJs style; 7070 // final _CSSStyleDeclarationJs style;
7063 7071
7064 _CSSValueJs getPresentationAttribute(String name) native; 7072 _CSSValueJs getPresentationAttribute(String name) native;
7065 } 7073 }
7066 7074
7067 class _SVGFEDisplacementMapElementJs extends _SVGElementJs implements SVGFEDispl acementMapElement native "*SVGFEDisplacementMapElement" { 7075 class _SVGFEDisplacementMapElementJs extends _SVGElementJs implements SVGFEDispl acementMapElement native "*SVGFEDisplacementMapElement" {
7068 7076
7069 static final int SVG_CHANNEL_A = 4; 7077 static final int SVG_CHANNEL_A = 4;
(...skipping 23 matching lines...) Expand all
7093 final _SVGAnimatedStringJs result; 7101 final _SVGAnimatedStringJs result;
7094 7102
7095 final _SVGAnimatedLengthJs width; 7103 final _SVGAnimatedLengthJs width;
7096 7104
7097 final _SVGAnimatedLengthJs x; 7105 final _SVGAnimatedLengthJs x;
7098 7106
7099 final _SVGAnimatedLengthJs y; 7107 final _SVGAnimatedLengthJs y;
7100 7108
7101 // From SVGStylable 7109 // From SVGStylable
7102 7110
7103 final _SVGAnimatedStringJs className; 7111 // Shadowing definition.
7112 _SVGAnimatedStringJs get className() native "return this.className;";
7104 7113
7105 // Use implementation from Element. 7114 // Use implementation from Element.
7106 // final _CSSStyleDeclarationJs style; 7115 // final _CSSStyleDeclarationJs style;
7107 7116
7108 _CSSValueJs getPresentationAttribute(String name) native; 7117 _CSSValueJs getPresentationAttribute(String name) native;
7109 } 7118 }
7110 7119
7111 class _SVGFEDistantLightElementJs extends _SVGElementJs implements SVGFEDistantL ightElement native "*SVGFEDistantLightElement" { 7120 class _SVGFEDistantLightElementJs extends _SVGElementJs implements SVGFEDistantL ightElement native "*SVGFEDistantLightElement" {
7112 7121
7113 final _SVGAnimatedNumberJs azimuth; 7122 final _SVGAnimatedNumberJs azimuth;
(...skipping 22 matching lines...) Expand all
7136 final _SVGAnimatedStringJs result; 7145 final _SVGAnimatedStringJs result;
7137 7146
7138 final _SVGAnimatedLengthJs width; 7147 final _SVGAnimatedLengthJs width;
7139 7148
7140 final _SVGAnimatedLengthJs x; 7149 final _SVGAnimatedLengthJs x;
7141 7150
7142 final _SVGAnimatedLengthJs y; 7151 final _SVGAnimatedLengthJs y;
7143 7152
7144 // From SVGStylable 7153 // From SVGStylable
7145 7154
7146 final _SVGAnimatedStringJs className; 7155 // Shadowing definition.
7156 _SVGAnimatedStringJs get className() native "return this.className;";
7147 7157
7148 // Use implementation from Element. 7158 // Use implementation from Element.
7149 // final _CSSStyleDeclarationJs style; 7159 // final _CSSStyleDeclarationJs style;
7150 7160
7151 _CSSValueJs getPresentationAttribute(String name) native; 7161 _CSSValueJs getPresentationAttribute(String name) native;
7152 } 7162 }
7153 7163
7154 class _SVGFEFloodElementJs extends _SVGElementJs implements SVGFEFloodElement na tive "*SVGFEFloodElement" { 7164 class _SVGFEFloodElementJs extends _SVGElementJs implements SVGFEFloodElement na tive "*SVGFEFloodElement" {
7155 7165
7156 // From SVGFilterPrimitiveStandardAttributes 7166 // From SVGFilterPrimitiveStandardAttributes
7157 7167
7158 final _SVGAnimatedLengthJs height; 7168 final _SVGAnimatedLengthJs height;
7159 7169
7160 final _SVGAnimatedStringJs result; 7170 final _SVGAnimatedStringJs result;
7161 7171
7162 final _SVGAnimatedLengthJs width; 7172 final _SVGAnimatedLengthJs width;
7163 7173
7164 final _SVGAnimatedLengthJs x; 7174 final _SVGAnimatedLengthJs x;
7165 7175
7166 final _SVGAnimatedLengthJs y; 7176 final _SVGAnimatedLengthJs y;
7167 7177
7168 // From SVGStylable 7178 // From SVGStylable
7169 7179
7170 final _SVGAnimatedStringJs className; 7180 // Shadowing definition.
7181 _SVGAnimatedStringJs get className() native "return this.className;";
7171 7182
7172 // Use implementation from Element. 7183 // Use implementation from Element.
7173 // final _CSSStyleDeclarationJs style; 7184 // final _CSSStyleDeclarationJs style;
7174 7185
7175 _CSSValueJs getPresentationAttribute(String name) native; 7186 _CSSValueJs getPresentationAttribute(String name) native;
7176 } 7187 }
7177 7188
7178 class _SVGFEFuncAElementJs extends _SVGComponentTransferFunctionElementJs implem ents SVGFEFuncAElement native "*SVGFEFuncAElement" { 7189 class _SVGFEFuncAElementJs extends _SVGComponentTransferFunctionElementJs implem ents SVGFEFuncAElement native "*SVGFEFuncAElement" {
7179 } 7190 }
7180 7191
(...skipping 23 matching lines...) Expand all
7204 final _SVGAnimatedStringJs result; 7215 final _SVGAnimatedStringJs result;
7205 7216
7206 final _SVGAnimatedLengthJs width; 7217 final _SVGAnimatedLengthJs width;
7207 7218
7208 final _SVGAnimatedLengthJs x; 7219 final _SVGAnimatedLengthJs x;
7209 7220
7210 final _SVGAnimatedLengthJs y; 7221 final _SVGAnimatedLengthJs y;
7211 7222
7212 // From SVGStylable 7223 // From SVGStylable
7213 7224
7214 final _SVGAnimatedStringJs className; 7225 // Shadowing definition.
7226 _SVGAnimatedStringJs get className() native "return this.className;";
7215 7227
7216 // Use implementation from Element. 7228 // Use implementation from Element.
7217 // final _CSSStyleDeclarationJs style; 7229 // final _CSSStyleDeclarationJs style;
7218 7230
7219 _CSSValueJs getPresentationAttribute(String name) native; 7231 _CSSValueJs getPresentationAttribute(String name) native;
7220 } 7232 }
7221 7233
7222 class _SVGFEImageElementJs extends _SVGElementJs implements SVGFEImageElement na tive "*SVGFEImageElement" { 7234 class _SVGFEImageElementJs extends _SVGElementJs implements SVGFEImageElement na tive "*SVGFEImageElement" {
7223 7235
7224 final _SVGAnimatedPreserveAspectRatioJs preserveAspectRatio; 7236 final _SVGAnimatedPreserveAspectRatioJs preserveAspectRatio;
(...skipping 19 matching lines...) Expand all
7244 final _SVGAnimatedStringJs result; 7256 final _SVGAnimatedStringJs result;
7245 7257
7246 final _SVGAnimatedLengthJs width; 7258 final _SVGAnimatedLengthJs width;
7247 7259
7248 final _SVGAnimatedLengthJs x; 7260 final _SVGAnimatedLengthJs x;
7249 7261
7250 final _SVGAnimatedLengthJs y; 7262 final _SVGAnimatedLengthJs y;
7251 7263
7252 // From SVGStylable 7264 // From SVGStylable
7253 7265
7254 final _SVGAnimatedStringJs className; 7266 // Shadowing definition.
7267 _SVGAnimatedStringJs get className() native "return this.className;";
7255 7268
7256 // Use implementation from Element. 7269 // Use implementation from Element.
7257 // final _CSSStyleDeclarationJs style; 7270 // final _CSSStyleDeclarationJs style;
7258 7271
7259 _CSSValueJs getPresentationAttribute(String name) native; 7272 _CSSValueJs getPresentationAttribute(String name) native;
7260 } 7273 }
7261 7274
7262 class _SVGFEMergeElementJs extends _SVGElementJs implements SVGFEMergeElement na tive "*SVGFEMergeElement" { 7275 class _SVGFEMergeElementJs extends _SVGElementJs implements SVGFEMergeElement na tive "*SVGFEMergeElement" {
7263 7276
7264 // From SVGFilterPrimitiveStandardAttributes 7277 // From SVGFilterPrimitiveStandardAttributes
7265 7278
7266 final _SVGAnimatedLengthJs height; 7279 final _SVGAnimatedLengthJs height;
7267 7280
7268 final _SVGAnimatedStringJs result; 7281 final _SVGAnimatedStringJs result;
7269 7282
7270 final _SVGAnimatedLengthJs width; 7283 final _SVGAnimatedLengthJs width;
7271 7284
7272 final _SVGAnimatedLengthJs x; 7285 final _SVGAnimatedLengthJs x;
7273 7286
7274 final _SVGAnimatedLengthJs y; 7287 final _SVGAnimatedLengthJs y;
7275 7288
7276 // From SVGStylable 7289 // From SVGStylable
7277 7290
7278 final _SVGAnimatedStringJs className; 7291 // Shadowing definition.
7292 _SVGAnimatedStringJs get className() native "return this.className;";
7279 7293
7280 // Use implementation from Element. 7294 // Use implementation from Element.
7281 // final _CSSStyleDeclarationJs style; 7295 // final _CSSStyleDeclarationJs style;
7282 7296
7283 _CSSValueJs getPresentationAttribute(String name) native; 7297 _CSSValueJs getPresentationAttribute(String name) native;
7284 } 7298 }
7285 7299
7286 class _SVGFEMergeNodeElementJs extends _SVGElementJs implements SVGFEMergeNodeEl ement native "*SVGFEMergeNodeElement" { 7300 class _SVGFEMergeNodeElementJs extends _SVGElementJs implements SVGFEMergeNodeEl ement native "*SVGFEMergeNodeElement" {
7287 7301
7288 final _SVGAnimatedStringJs in1; 7302 final _SVGAnimatedStringJs in1;
(...skipping 24 matching lines...) Expand all
7313 final _SVGAnimatedStringJs result; 7327 final _SVGAnimatedStringJs result;
7314 7328
7315 final _SVGAnimatedLengthJs width; 7329 final _SVGAnimatedLengthJs width;
7316 7330
7317 final _SVGAnimatedLengthJs x; 7331 final _SVGAnimatedLengthJs x;
7318 7332
7319 final _SVGAnimatedLengthJs y; 7333 final _SVGAnimatedLengthJs y;
7320 7334
7321 // From SVGStylable 7335 // From SVGStylable
7322 7336
7323 final _SVGAnimatedStringJs className; 7337 // Shadowing definition.
7338 _SVGAnimatedStringJs get className() native "return this.className;";
7324 7339
7325 // Use implementation from Element. 7340 // Use implementation from Element.
7326 // final _CSSStyleDeclarationJs style; 7341 // final _CSSStyleDeclarationJs style;
7327 7342
7328 _CSSValueJs getPresentationAttribute(String name) native; 7343 _CSSValueJs getPresentationAttribute(String name) native;
7329 } 7344 }
7330 7345
7331 class _SVGFEOffsetElementJs extends _SVGElementJs implements SVGFEOffsetElement native "*SVGFEOffsetElement" { 7346 class _SVGFEOffsetElementJs extends _SVGElementJs implements SVGFEOffsetElement native "*SVGFEOffsetElement" {
7332 7347
7333 final _SVGAnimatedNumberJs dx; 7348 final _SVGAnimatedNumberJs dx;
7334 7349
7335 final _SVGAnimatedNumberJs dy; 7350 final _SVGAnimatedNumberJs dy;
7336 7351
7337 final _SVGAnimatedStringJs in1; 7352 final _SVGAnimatedStringJs in1;
7338 7353
7339 // From SVGFilterPrimitiveStandardAttributes 7354 // From SVGFilterPrimitiveStandardAttributes
7340 7355
7341 final _SVGAnimatedLengthJs height; 7356 final _SVGAnimatedLengthJs height;
7342 7357
7343 final _SVGAnimatedStringJs result; 7358 final _SVGAnimatedStringJs result;
7344 7359
7345 final _SVGAnimatedLengthJs width; 7360 final _SVGAnimatedLengthJs width;
7346 7361
7347 final _SVGAnimatedLengthJs x; 7362 final _SVGAnimatedLengthJs x;
7348 7363
7349 final _SVGAnimatedLengthJs y; 7364 final _SVGAnimatedLengthJs y;
7350 7365
7351 // From SVGStylable 7366 // From SVGStylable
7352 7367
7353 final _SVGAnimatedStringJs className; 7368 // Shadowing definition.
7369 _SVGAnimatedStringJs get className() native "return this.className;";
7354 7370
7355 // Use implementation from Element. 7371 // Use implementation from Element.
7356 // final _CSSStyleDeclarationJs style; 7372 // final _CSSStyleDeclarationJs style;
7357 7373
7358 _CSSValueJs getPresentationAttribute(String name) native; 7374 _CSSValueJs getPresentationAttribute(String name) native;
7359 } 7375 }
7360 7376
7361 class _SVGFEPointLightElementJs extends _SVGElementJs implements SVGFEPointLight Element native "*SVGFEPointLightElement" { 7377 class _SVGFEPointLightElementJs extends _SVGElementJs implements SVGFEPointLight Element native "*SVGFEPointLightElement" {
7362 7378
7363 final _SVGAnimatedNumberJs x; 7379 final _SVGAnimatedNumberJs x;
(...skipping 20 matching lines...) Expand all
7384 final _SVGAnimatedStringJs result; 7400 final _SVGAnimatedStringJs result;
7385 7401
7386 final _SVGAnimatedLengthJs width; 7402 final _SVGAnimatedLengthJs width;
7387 7403
7388 final _SVGAnimatedLengthJs x; 7404 final _SVGAnimatedLengthJs x;
7389 7405
7390 final _SVGAnimatedLengthJs y; 7406 final _SVGAnimatedLengthJs y;
7391 7407
7392 // From SVGStylable 7408 // From SVGStylable
7393 7409
7394 final _SVGAnimatedStringJs className; 7410 // Shadowing definition.
7411 _SVGAnimatedStringJs get className() native "return this.className;";
7395 7412
7396 // Use implementation from Element. 7413 // Use implementation from Element.
7397 // final _CSSStyleDeclarationJs style; 7414 // final _CSSStyleDeclarationJs style;
7398 7415
7399 _CSSValueJs getPresentationAttribute(String name) native; 7416 _CSSValueJs getPresentationAttribute(String name) native;
7400 } 7417 }
7401 7418
7402 class _SVGFESpotLightElementJs extends _SVGElementJs implements SVGFESpotLightEl ement native "*SVGFESpotLightElement" { 7419 class _SVGFESpotLightElementJs extends _SVGElementJs implements SVGFESpotLightEl ement native "*SVGFESpotLightElement" {
7403 7420
7404 final _SVGAnimatedNumberJs limitingConeAngle; 7421 final _SVGAnimatedNumberJs limitingConeAngle;
(...skipping 24 matching lines...) Expand all
7429 final _SVGAnimatedStringJs result; 7446 final _SVGAnimatedStringJs result;
7430 7447
7431 final _SVGAnimatedLengthJs width; 7448 final _SVGAnimatedLengthJs width;
7432 7449
7433 final _SVGAnimatedLengthJs x; 7450 final _SVGAnimatedLengthJs x;
7434 7451
7435 final _SVGAnimatedLengthJs y; 7452 final _SVGAnimatedLengthJs y;
7436 7453
7437 // From SVGStylable 7454 // From SVGStylable
7438 7455
7439 final _SVGAnimatedStringJs className; 7456 // Shadowing definition.
7457 _SVGAnimatedStringJs get className() native "return this.className;";
7440 7458
7441 // Use implementation from Element. 7459 // Use implementation from Element.
7442 // final _CSSStyleDeclarationJs style; 7460 // final _CSSStyleDeclarationJs style;
7443 7461
7444 _CSSValueJs getPresentationAttribute(String name) native; 7462 _CSSValueJs getPresentationAttribute(String name) native;
7445 } 7463 }
7446 7464
7447 class _SVGFETurbulenceElementJs extends _SVGElementJs implements SVGFETurbulence Element native "*SVGFETurbulenceElement" { 7465 class _SVGFETurbulenceElementJs extends _SVGElementJs implements SVGFETurbulence Element native "*SVGFETurbulenceElement" {
7448 7466
7449 static final int SVG_STITCHTYPE_NOSTITCH = 2; 7467 static final int SVG_STITCHTYPE_NOSTITCH = 2;
(...skipping 27 matching lines...) Expand all
7477 final _SVGAnimatedStringJs result; 7495 final _SVGAnimatedStringJs result;
7478 7496
7479 final _SVGAnimatedLengthJs width; 7497 final _SVGAnimatedLengthJs width;
7480 7498
7481 final _SVGAnimatedLengthJs x; 7499 final _SVGAnimatedLengthJs x;
7482 7500
7483 final _SVGAnimatedLengthJs y; 7501 final _SVGAnimatedLengthJs y;
7484 7502
7485 // From SVGStylable 7503 // From SVGStylable
7486 7504
7487 final _SVGAnimatedStringJs className; 7505 // Shadowing definition.
7506 _SVGAnimatedStringJs get className() native "return this.className;";
7488 7507
7489 // Use implementation from Element. 7508 // Use implementation from Element.
7490 // final _CSSStyleDeclarationJs style; 7509 // final _CSSStyleDeclarationJs style;
7491 7510
7492 _CSSValueJs getPresentationAttribute(String name) native; 7511 _CSSValueJs getPresentationAttribute(String name) native;
7493 } 7512 }
7494 7513
7495 class _SVGFilterElementJs extends _SVGElementJs implements SVGFilterElement nati ve "*SVGFilterElement" { 7514 class _SVGFilterElementJs extends _SVGElementJs implements SVGFilterElement nati ve "*SVGFilterElement" {
7496 7515
7497 final _SVGAnimatedIntegerJs filterResX; 7516 final _SVGAnimatedIntegerJs filterResX;
(...skipping 23 matching lines...) Expand all
7521 String xmllang; 7540 String xmllang;
7522 7541
7523 String xmlspace; 7542 String xmlspace;
7524 7543
7525 // From SVGExternalResourcesRequired 7544 // From SVGExternalResourcesRequired
7526 7545
7527 final _SVGAnimatedBooleanJs externalResourcesRequired; 7546 final _SVGAnimatedBooleanJs externalResourcesRequired;
7528 7547
7529 // From SVGStylable 7548 // From SVGStylable
7530 7549
7531 final _SVGAnimatedStringJs className; 7550 // Shadowing definition.
7551 _SVGAnimatedStringJs get className() native "return this.className;";
7532 7552
7533 // Use implementation from Element. 7553 // Use implementation from Element.
7534 // final _CSSStyleDeclarationJs style; 7554 // final _CSSStyleDeclarationJs style;
7535 7555
7536 _CSSValueJs getPresentationAttribute(String name) native; 7556 _CSSValueJs getPresentationAttribute(String name) native;
7537 } 7557 }
7538 7558
7539 class _SVGFontElementJs extends _SVGElementJs implements SVGFontElement native " *SVGFontElement" { 7559 class _SVGFontElementJs extends _SVGElementJs implements SVGFontElement native " *SVGFontElement" {
7540 } 7560 }
7541 7561
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
7579 String xmllang; 7599 String xmllang;
7580 7600
7581 String xmlspace; 7601 String xmlspace;
7582 7602
7583 // From SVGExternalResourcesRequired 7603 // From SVGExternalResourcesRequired
7584 7604
7585 final _SVGAnimatedBooleanJs externalResourcesRequired; 7605 final _SVGAnimatedBooleanJs externalResourcesRequired;
7586 7606
7587 // From SVGStylable 7607 // From SVGStylable
7588 7608
7589 final _SVGAnimatedStringJs className; 7609 // Shadowing definition.
7610 _SVGAnimatedStringJs get className() native "return this.className;";
7590 7611
7591 // Use implementation from Element. 7612 // Use implementation from Element.
7592 // final _CSSStyleDeclarationJs style; 7613 // final _CSSStyleDeclarationJs style;
7593 7614
7594 _CSSValueJs getPresentationAttribute(String name) native; 7615 _CSSValueJs getPresentationAttribute(String name) native;
7595 7616
7596 // From SVGTransformable 7617 // From SVGTransformable
7597 7618
7598 final _SVGAnimatedTransformListJs transform; 7619 final _SVGAnimatedTransformListJs transform;
7599 7620
(...skipping 29 matching lines...) Expand all
7629 String xmllang; 7650 String xmllang;
7630 7651
7631 String xmlspace; 7652 String xmlspace;
7632 7653
7633 // From SVGExternalResourcesRequired 7654 // From SVGExternalResourcesRequired
7634 7655
7635 final _SVGAnimatedBooleanJs externalResourcesRequired; 7656 final _SVGAnimatedBooleanJs externalResourcesRequired;
7636 7657
7637 // From SVGStylable 7658 // From SVGStylable
7638 7659
7639 final _SVGAnimatedStringJs className; 7660 // Shadowing definition.
7661 _SVGAnimatedStringJs get className() native "return this.className;";
7640 7662
7641 // Use implementation from Element. 7663 // Use implementation from Element.
7642 // final _CSSStyleDeclarationJs style; 7664 // final _CSSStyleDeclarationJs style;
7643 7665
7644 _CSSValueJs getPresentationAttribute(String name) native; 7666 _CSSValueJs getPresentationAttribute(String name) native;
7645 7667
7646 // From SVGTransformable 7668 // From SVGTransformable
7647 7669
7648 final _SVGAnimatedTransformListJs transform; 7670 final _SVGAnimatedTransformListJs transform;
7649 7671
(...skipping 28 matching lines...) Expand all
7678 num x; 7700 num x;
7679 7701
7680 num y; 7702 num y;
7681 7703
7682 // From SVGURIReference 7704 // From SVGURIReference
7683 7705
7684 final _SVGAnimatedStringJs href; 7706 final _SVGAnimatedStringJs href;
7685 7707
7686 // From SVGStylable 7708 // From SVGStylable
7687 7709
7688 final _SVGAnimatedStringJs className; 7710 // Shadowing definition.
7711 _SVGAnimatedStringJs get className() native "return this.className;";
7689 7712
7690 // Use implementation from Element. 7713 // Use implementation from Element.
7691 // final _CSSStyleDeclarationJs style; 7714 // final _CSSStyleDeclarationJs style;
7692 7715
7693 _CSSValueJs getPresentationAttribute(String name) native; 7716 _CSSValueJs getPresentationAttribute(String name) native;
7694 } 7717 }
7695 7718
7696 class _SVGGradientElementJs extends _SVGElementJs implements SVGGradientElement native "*SVGGradientElement" { 7719 class _SVGGradientElementJs extends _SVGElementJs implements SVGGradientElement native "*SVGGradientElement" {
7697 7720
7698 static final int SVG_SPREADMETHOD_PAD = 1; 7721 static final int SVG_SPREADMETHOD_PAD = 1;
(...skipping 13 matching lines...) Expand all
7712 // From SVGURIReference 7735 // From SVGURIReference
7713 7736
7714 final _SVGAnimatedStringJs href; 7737 final _SVGAnimatedStringJs href;
7715 7738
7716 // From SVGExternalResourcesRequired 7739 // From SVGExternalResourcesRequired
7717 7740
7718 final _SVGAnimatedBooleanJs externalResourcesRequired; 7741 final _SVGAnimatedBooleanJs externalResourcesRequired;
7719 7742
7720 // From SVGStylable 7743 // From SVGStylable
7721 7744
7722 final _SVGAnimatedStringJs className; 7745 // Shadowing definition.
7746 _SVGAnimatedStringJs get className() native "return this.className;";
7723 7747
7724 // Use implementation from Element. 7748 // Use implementation from Element.
7725 // final _CSSStyleDeclarationJs style; 7749 // final _CSSStyleDeclarationJs style;
7726 7750
7727 _CSSValueJs getPresentationAttribute(String name) native; 7751 _CSSValueJs getPresentationAttribute(String name) native;
7728 } 7752 }
7729 7753
7730 class _SVGHKernElementJs extends _SVGElementJs implements SVGHKernElement native "*SVGHKernElement" { 7754 class _SVGHKernElementJs extends _SVGElementJs implements SVGHKernElement native "*SVGHKernElement" {
7731 } 7755 }
7732 7756
(...skipping 28 matching lines...) Expand all
7761 String xmllang; 7785 String xmllang;
7762 7786
7763 String xmlspace; 7787 String xmlspace;
7764 7788
7765 // From SVGExternalResourcesRequired 7789 // From SVGExternalResourcesRequired
7766 7790
7767 final _SVGAnimatedBooleanJs externalResourcesRequired; 7791 final _SVGAnimatedBooleanJs externalResourcesRequired;
7768 7792
7769 // From SVGStylable 7793 // From SVGStylable
7770 7794
7771 final _SVGAnimatedStringJs className; 7795 // Shadowing definition.
7796 _SVGAnimatedStringJs get className() native "return this.className;";
7772 7797
7773 // Use implementation from Element. 7798 // Use implementation from Element.
7774 // final _CSSStyleDeclarationJs style; 7799 // final _CSSStyleDeclarationJs style;
7775 7800
7776 _CSSValueJs getPresentationAttribute(String name) native; 7801 _CSSValueJs getPresentationAttribute(String name) native;
7777 7802
7778 // From SVGTransformable 7803 // From SVGTransformable
7779 7804
7780 final _SVGAnimatedTransformListJs transform; 7805 final _SVGAnimatedTransformListJs transform;
7781 7806
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
7875 String xmllang; 7900 String xmllang;
7876 7901
7877 String xmlspace; 7902 String xmlspace;
7878 7903
7879 // From SVGExternalResourcesRequired 7904 // From SVGExternalResourcesRequired
7880 7905
7881 final _SVGAnimatedBooleanJs externalResourcesRequired; 7906 final _SVGAnimatedBooleanJs externalResourcesRequired;
7882 7907
7883 // From SVGStylable 7908 // From SVGStylable
7884 7909
7885 final _SVGAnimatedStringJs className; 7910 // Shadowing definition.
7911 _SVGAnimatedStringJs get className() native "return this.className;";
7886 7912
7887 // Use implementation from Element. 7913 // Use implementation from Element.
7888 // final _CSSStyleDeclarationJs style; 7914 // final _CSSStyleDeclarationJs style;
7889 7915
7890 _CSSValueJs getPresentationAttribute(String name) native; 7916 _CSSValueJs getPresentationAttribute(String name) native;
7891 7917
7892 // From SVGTransformable 7918 // From SVGTransformable
7893 7919
7894 final _SVGAnimatedTransformListJs transform; 7920 final _SVGAnimatedTransformListJs transform;
7895 7921
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
7967 String xmllang; 7993 String xmllang;
7968 7994
7969 String xmlspace; 7995 String xmlspace;
7970 7996
7971 // From SVGExternalResourcesRequired 7997 // From SVGExternalResourcesRequired
7972 7998
7973 final _SVGAnimatedBooleanJs externalResourcesRequired; 7999 final _SVGAnimatedBooleanJs externalResourcesRequired;
7974 8000
7975 // From SVGStylable 8001 // From SVGStylable
7976 8002
7977 final _SVGAnimatedStringJs className; 8003 // Shadowing definition.
8004 _SVGAnimatedStringJs get className() native "return this.className;";
7978 8005
7979 // Use implementation from Element. 8006 // Use implementation from Element.
7980 // final _CSSStyleDeclarationJs style; 8007 // final _CSSStyleDeclarationJs style;
7981 8008
7982 _CSSValueJs getPresentationAttribute(String name) native; 8009 _CSSValueJs getPresentationAttribute(String name) native;
7983 8010
7984 // From SVGFitToViewBox 8011 // From SVGFitToViewBox
7985 8012
7986 final _SVGAnimatedPreserveAspectRatioJs preserveAspectRatio; 8013 final _SVGAnimatedPreserveAspectRatioJs preserveAspectRatio;
7987 8014
(...skipping 29 matching lines...) Expand all
8017 String xmllang; 8044 String xmllang;
8018 8045
8019 String xmlspace; 8046 String xmlspace;
8020 8047
8021 // From SVGExternalResourcesRequired 8048 // From SVGExternalResourcesRequired
8022 8049
8023 final _SVGAnimatedBooleanJs externalResourcesRequired; 8050 final _SVGAnimatedBooleanJs externalResourcesRequired;
8024 8051
8025 // From SVGStylable 8052 // From SVGStylable
8026 8053
8027 final _SVGAnimatedStringJs className; 8054 // Shadowing definition.
8055 _SVGAnimatedStringJs get className() native "return this.className;";
8028 8056
8029 // Use implementation from Element. 8057 // Use implementation from Element.
8030 // final _CSSStyleDeclarationJs style; 8058 // final _CSSStyleDeclarationJs style;
8031 8059
8032 _CSSValueJs getPresentationAttribute(String name) native; 8060 _CSSValueJs getPresentationAttribute(String name) native;
8033 } 8061 }
8034 8062
8035 class _SVGMatrixJs extends _DOMTypeJs implements SVGMatrix native "*SVGMatrix" { 8063 class _SVGMatrixJs extends _DOMTypeJs implements SVGMatrix native "*SVGMatrix" {
8036 8064
8037 num a; 8065 num a;
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
8201 String xmllang; 8229 String xmllang;
8202 8230
8203 String xmlspace; 8231 String xmlspace;
8204 8232
8205 // From SVGExternalResourcesRequired 8233 // From SVGExternalResourcesRequired
8206 8234
8207 final _SVGAnimatedBooleanJs externalResourcesRequired; 8235 final _SVGAnimatedBooleanJs externalResourcesRequired;
8208 8236
8209 // From SVGStylable 8237 // From SVGStylable
8210 8238
8211 final _SVGAnimatedStringJs className; 8239 // Shadowing definition.
8240 _SVGAnimatedStringJs get className() native "return this.className;";
8212 8241
8213 // Use implementation from Element. 8242 // Use implementation from Element.
8214 // final _CSSStyleDeclarationJs style; 8243 // final _CSSStyleDeclarationJs style;
8215 8244
8216 _CSSValueJs getPresentationAttribute(String name) native; 8245 _CSSValueJs getPresentationAttribute(String name) native;
8217 8246
8218 // From SVGTransformable 8247 // From SVGTransformable
8219 8248
8220 final _SVGAnimatedTransformListJs transform; 8249 final _SVGAnimatedTransformListJs transform;
8221 8250
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after
8508 String xmllang; 8537 String xmllang;
8509 8538
8510 String xmlspace; 8539 String xmlspace;
8511 8540
8512 // From SVGExternalResourcesRequired 8541 // From SVGExternalResourcesRequired
8513 8542
8514 final _SVGAnimatedBooleanJs externalResourcesRequired; 8543 final _SVGAnimatedBooleanJs externalResourcesRequired;
8515 8544
8516 // From SVGStylable 8545 // From SVGStylable
8517 8546
8518 final _SVGAnimatedStringJs className; 8547 // Shadowing definition.
8548 _SVGAnimatedStringJs get className() native "return this.className;";
8519 8549
8520 // Use implementation from Element. 8550 // Use implementation from Element.
8521 // final _CSSStyleDeclarationJs style; 8551 // final _CSSStyleDeclarationJs style;
8522 8552
8523 _CSSValueJs getPresentationAttribute(String name) native; 8553 _CSSValueJs getPresentationAttribute(String name) native;
8524 8554
8525 // From SVGFitToViewBox 8555 // From SVGFitToViewBox
8526 8556
8527 final _SVGAnimatedPreserveAspectRatioJs preserveAspectRatio; 8557 final _SVGAnimatedPreserveAspectRatioJs preserveAspectRatio;
8528 8558
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
8578 String xmllang; 8608 String xmllang;
8579 8609
8580 String xmlspace; 8610 String xmlspace;
8581 8611
8582 // From SVGExternalResourcesRequired 8612 // From SVGExternalResourcesRequired
8583 8613
8584 final _SVGAnimatedBooleanJs externalResourcesRequired; 8614 final _SVGAnimatedBooleanJs externalResourcesRequired;
8585 8615
8586 // From SVGStylable 8616 // From SVGStylable
8587 8617
8588 final _SVGAnimatedStringJs className; 8618 // Shadowing definition.
8619 _SVGAnimatedStringJs get className() native "return this.className;";
8589 8620
8590 // Use implementation from Element. 8621 // Use implementation from Element.
8591 // final _CSSStyleDeclarationJs style; 8622 // final _CSSStyleDeclarationJs style;
8592 8623
8593 _CSSValueJs getPresentationAttribute(String name) native; 8624 _CSSValueJs getPresentationAttribute(String name) native;
8594 8625
8595 // From SVGTransformable 8626 // From SVGTransformable
8596 8627
8597 final _SVGAnimatedTransformListJs transform; 8628 final _SVGAnimatedTransformListJs transform;
8598 8629
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
8632 String xmllang; 8663 String xmllang;
8633 8664
8634 String xmlspace; 8665 String xmlspace;
8635 8666
8636 // From SVGExternalResourcesRequired 8667 // From SVGExternalResourcesRequired
8637 8668
8638 final _SVGAnimatedBooleanJs externalResourcesRequired; 8669 final _SVGAnimatedBooleanJs externalResourcesRequired;
8639 8670
8640 // From SVGStylable 8671 // From SVGStylable
8641 8672
8642 final _SVGAnimatedStringJs className; 8673 // Shadowing definition.
8674 _SVGAnimatedStringJs get className() native "return this.className;";
8643 8675
8644 // Use implementation from Element. 8676 // Use implementation from Element.
8645 // final _CSSStyleDeclarationJs style; 8677 // final _CSSStyleDeclarationJs style;
8646 8678
8647 _CSSValueJs getPresentationAttribute(String name) native; 8679 _CSSValueJs getPresentationAttribute(String name) native;
8648 8680
8649 // From SVGTransformable 8681 // From SVGTransformable
8650 8682
8651 final _SVGAnimatedTransformListJs transform; 8683 final _SVGAnimatedTransformListJs transform;
8652 8684
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
8753 String xmllang; 8785 String xmllang;
8754 8786
8755 String xmlspace; 8787 String xmlspace;
8756 8788
8757 // From SVGExternalResourcesRequired 8789 // From SVGExternalResourcesRequired
8758 8790
8759 final _SVGAnimatedBooleanJs externalResourcesRequired; 8791 final _SVGAnimatedBooleanJs externalResourcesRequired;
8760 8792
8761 // From SVGStylable 8793 // From SVGStylable
8762 8794
8763 final _SVGAnimatedStringJs className; 8795 // Shadowing definition.
8796 _SVGAnimatedStringJs get className() native "return this.className;";
8764 8797
8765 // Use implementation from Element. 8798 // Use implementation from Element.
8766 // final _CSSStyleDeclarationJs style; 8799 // final _CSSStyleDeclarationJs style;
8767 8800
8768 _CSSValueJs getPresentationAttribute(String name) native; 8801 _CSSValueJs getPresentationAttribute(String name) native;
8769 8802
8770 // From SVGTransformable 8803 // From SVGTransformable
8771 8804
8772 final _SVGAnimatedTransformListJs transform; 8805 final _SVGAnimatedTransformListJs transform;
8773 8806
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
8894 String xmllang; 8927 String xmllang;
8895 8928
8896 String xmlspace; 8929 String xmlspace;
8897 8930
8898 // From SVGExternalResourcesRequired 8931 // From SVGExternalResourcesRequired
8899 8932
8900 final _SVGAnimatedBooleanJs externalResourcesRequired; 8933 final _SVGAnimatedBooleanJs externalResourcesRequired;
8901 8934
8902 // From SVGStylable 8935 // From SVGStylable
8903 8936
8904 final _SVGAnimatedStringJs className; 8937 // Shadowing definition.
8938 _SVGAnimatedStringJs get className() native "return this.className;";
8905 8939
8906 // Use implementation from Element. 8940 // Use implementation from Element.
8907 // final _CSSStyleDeclarationJs style; 8941 // final _CSSStyleDeclarationJs style;
8908 8942
8909 _CSSValueJs getPresentationAttribute(String name) native; 8943 _CSSValueJs getPresentationAttribute(String name) native;
8910 8944
8911 // From SVGLocatable 8945 // From SVGLocatable
8912 8946
8913 final _SVGElementJs farthestViewportElement; 8947 final _SVGElementJs farthestViewportElement;
8914 8948
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
8948 8982
8949 class _SVGSetElementJs extends _SVGAnimationElementJs implements SVGSetElement n ative "*SVGSetElement" { 8983 class _SVGSetElementJs extends _SVGAnimationElementJs implements SVGSetElement n ative "*SVGSetElement" {
8950 } 8984 }
8951 8985
8952 class _SVGStopElementJs extends _SVGElementJs implements SVGStopElement native " *SVGStopElement" { 8986 class _SVGStopElementJs extends _SVGElementJs implements SVGStopElement native " *SVGStopElement" {
8953 8987
8954 final _SVGAnimatedNumberJs offset; 8988 final _SVGAnimatedNumberJs offset;
8955 8989
8956 // From SVGStylable 8990 // From SVGStylable
8957 8991
8958 final _SVGAnimatedStringJs className; 8992 // Shadowing definition.
8993 _SVGAnimatedStringJs get className() native "return this.className;";
8959 8994
8960 // Use implementation from Element. 8995 // Use implementation from Element.
8961 // final _CSSStyleDeclarationJs style; 8996 // final _CSSStyleDeclarationJs style;
8962 8997
8963 _CSSValueJs getPresentationAttribute(String name) native; 8998 _CSSValueJs getPresentationAttribute(String name) native;
8964 } 8999 }
8965 9000
8966 class _SVGStringListJs extends _DOMTypeJs implements SVGStringList native "*SVGS tringList" { 9001 class _SVGStringListJs extends _DOMTypeJs implements SVGStringList native "*SVGS tringList" {
8967 9002
8968 final int numberOfItems; 9003 final int numberOfItems;
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
9016 String xmllang; 9051 String xmllang;
9017 9052
9018 String xmlspace; 9053 String xmlspace;
9019 9054
9020 // From SVGExternalResourcesRequired 9055 // From SVGExternalResourcesRequired
9021 9056
9022 final _SVGAnimatedBooleanJs externalResourcesRequired; 9057 final _SVGAnimatedBooleanJs externalResourcesRequired;
9023 9058
9024 // From SVGStylable 9059 // From SVGStylable
9025 9060
9026 final _SVGAnimatedStringJs className; 9061 // Shadowing definition.
9062 _SVGAnimatedStringJs get className() native "return this.className;";
9027 9063
9028 // Use implementation from Element. 9064 // Use implementation from Element.
9029 // final _CSSStyleDeclarationJs style; 9065 // final _CSSStyleDeclarationJs style;
9030 9066
9031 _CSSValueJs getPresentationAttribute(String name) native; 9067 _CSSValueJs getPresentationAttribute(String name) native;
9032 9068
9033 // From SVGTransformable 9069 // From SVGTransformable
9034 9070
9035 final _SVGAnimatedTransformListJs transform; 9071 final _SVGAnimatedTransformListJs transform;
9036 9072
(...skipping 19 matching lines...) Expand all
9056 String xmllang; 9092 String xmllang;
9057 9093
9058 String xmlspace; 9094 String xmlspace;
9059 9095
9060 // From SVGExternalResourcesRequired 9096 // From SVGExternalResourcesRequired
9061 9097
9062 final _SVGAnimatedBooleanJs externalResourcesRequired; 9098 final _SVGAnimatedBooleanJs externalResourcesRequired;
9063 9099
9064 // From SVGStylable 9100 // From SVGStylable
9065 9101
9066 final _SVGAnimatedStringJs className; 9102 // Shadowing definition.
9103 _SVGAnimatedStringJs get className() native "return this.className;";
9067 9104
9068 // Use implementation from Element. 9105 // Use implementation from Element.
9069 // final _CSSStyleDeclarationJs style; 9106 // final _CSSStyleDeclarationJs style;
9070 9107
9071 _CSSValueJs getPresentationAttribute(String name) native; 9108 _CSSValueJs getPresentationAttribute(String name) native;
9072 9109
9073 // From SVGFitToViewBox 9110 // From SVGFitToViewBox
9074 9111
9075 final _SVGAnimatedPreserveAspectRatioJs preserveAspectRatio; 9112 final _SVGAnimatedPreserveAspectRatioJs preserveAspectRatio;
9076 9113
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
9132 String xmllang; 9169 String xmllang;
9133 9170
9134 String xmlspace; 9171 String xmlspace;
9135 9172
9136 // From SVGExternalResourcesRequired 9173 // From SVGExternalResourcesRequired
9137 9174
9138 final _SVGAnimatedBooleanJs externalResourcesRequired; 9175 final _SVGAnimatedBooleanJs externalResourcesRequired;
9139 9176
9140 // From SVGStylable 9177 // From SVGStylable
9141 9178
9142 final _SVGAnimatedStringJs className; 9179 // Shadowing definition.
9180 _SVGAnimatedStringJs get className() native "return this.className;";
9143 9181
9144 // Use implementation from Element. 9182 // Use implementation from Element.
9145 // final _CSSStyleDeclarationJs style; 9183 // final _CSSStyleDeclarationJs style;
9146 9184
9147 _CSSValueJs getPresentationAttribute(String name) native; 9185 _CSSValueJs getPresentationAttribute(String name) native;
9148 } 9186 }
9149 9187
9150 class _SVGTextElementJs extends _SVGTextPositioningElementJs implements SVGTextE lement native "*SVGTextElement" { 9188 class _SVGTextElementJs extends _SVGTextPositioningElementJs implements SVGTextE lement native "*SVGTextElement" {
9151 9189
9152 // From SVGTransformable 9190 // From SVGTransformable
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
9209 class _SVGTitleElementJs extends _SVGElementJs implements SVGTitleElement native "*SVGTitleElement" { 9247 class _SVGTitleElementJs extends _SVGElementJs implements SVGTitleElement native "*SVGTitleElement" {
9210 9248
9211 // From SVGLangSpace 9249 // From SVGLangSpace
9212 9250
9213 String xmllang; 9251 String xmllang;
9214 9252
9215 String xmlspace; 9253 String xmlspace;
9216 9254
9217 // From SVGStylable 9255 // From SVGStylable
9218 9256
9219 final _SVGAnimatedStringJs className; 9257 // Shadowing definition.
9258 _SVGAnimatedStringJs get className() native "return this.className;";
9220 9259
9221 // Use implementation from Element. 9260 // Use implementation from Element.
9222 // final _CSSStyleDeclarationJs style; 9261 // final _CSSStyleDeclarationJs style;
9223 9262
9224 _CSSValueJs getPresentationAttribute(String name) native; 9263 _CSSValueJs getPresentationAttribute(String name) native;
9225 } 9264 }
9226 9265
9227 class _SVGTransformJs extends _DOMTypeJs implements SVGTransform native "*SVGTra nsform" { 9266 class _SVGTransformJs extends _DOMTypeJs implements SVGTransform native "*SVGTra nsform" {
9228 9267
9229 static final int SVG_TRANSFORM_MATRIX = 1; 9268 static final int SVG_TRANSFORM_MATRIX = 1;
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
9324 String xmllang; 9363 String xmllang;
9325 9364
9326 String xmlspace; 9365 String xmlspace;
9327 9366
9328 // From SVGExternalResourcesRequired 9367 // From SVGExternalResourcesRequired
9329 9368
9330 final _SVGAnimatedBooleanJs externalResourcesRequired; 9369 final _SVGAnimatedBooleanJs externalResourcesRequired;
9331 9370
9332 // From SVGStylable 9371 // From SVGStylable
9333 9372
9334 final _SVGAnimatedStringJs className; 9373 // Shadowing definition.
9374 _SVGAnimatedStringJs get className() native "return this.className;";
9335 9375
9336 // Use implementation from Element. 9376 // Use implementation from Element.
9337 // final _CSSStyleDeclarationJs style; 9377 // final _CSSStyleDeclarationJs style;
9338 9378
9339 _CSSValueJs getPresentationAttribute(String name) native; 9379 _CSSValueJs getPresentationAttribute(String name) native;
9340 9380
9341 // From SVGTransformable 9381 // From SVGTransformable
9342 9382
9343 final _SVGAnimatedTransformListJs transform; 9383 final _SVGAnimatedTransformListJs transform;
9344 9384
(...skipping 2271 matching lines...) Expand 10 before | Expand all | Expand 10 after
11616 11656
11617 static final int CSS_TRANSLATEX = 2; 11657 static final int CSS_TRANSLATEX = 2;
11618 11658
11619 static final int CSS_TRANSLATEY = 3; 11659 static final int CSS_TRANSLATEY = 3;
11620 11660
11621 static final int CSS_TRANSLATEZ = 12; 11661 static final int CSS_TRANSLATEZ = 12;
11622 11662
11623 final int operationType; 11663 final int operationType;
11624 } 11664 }
11625 11665
11626 class _WebKitNamedFlowJs extends _DOMTypeJs implements WebKitNamedFlow native "* WebKitNamedFlow" { 11666 class _WebKitNamedFlowJs extends _EventTargetJs implements WebKitNamedFlow nativ e "*WebKitNamedFlow" {
11627 11667
11628 final int firstEmptyRegionIndex; 11668 final int firstEmptyRegionIndex;
11629 11669
11630 final String name; 11670 final String name;
11631 11671
11632 final bool overset; 11672 final bool overset;
11633 11673
11674 void addEventListener(String type, EventListener listener, [bool useCapture]) native;
11675
11676 bool dispatchEvent(_EventJs event) native;
11677
11634 _NodeListJs getContent() native; 11678 _NodeListJs getContent() native;
11635 11679
11680 _NodeListJs getRegions() native;
11681
11636 _NodeListJs getRegionsByContent(_NodeJs contentNode) native; 11682 _NodeListJs getRegionsByContent(_NodeJs contentNode) native;
11683
11684 void removeEventListener(String type, EventListener listener, [bool useCapture ]) native;
11637 } 11685 }
11638 11686
11639 class _WebKitPointJs extends _DOMTypeJs implements WebKitPoint native "*WebKitPo int" { 11687 class _WebKitPointJs extends _DOMTypeJs implements WebKitPoint native "*WebKitPo int" {
11640 11688
11641 num x; 11689 num x;
11642 11690
11643 num y; 11691 num y;
11644 } 11692 }
11645 11693
11646 class _WebKitTransitionEventJs extends _EventJs implements WebKitTransitionEvent native "*WebKitTransitionEvent" { 11694 class _WebKitTransitionEventJs extends _EventJs implements WebKitTransitionEvent native "*WebKitTransitionEvent" {
(...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after
12072 // BSD-style license that can be found in the LICENSE file. 12120 // BSD-style license that can be found in the LICENSE file.
12073 12121
12074 class _MediaControllerFactoryProvider { 12122 class _MediaControllerFactoryProvider {
12075 factory MediaController() native 12123 factory MediaController() native
12076 '''return new MediaController();'''; 12124 '''return new MediaController();''';
12077 } 12125 }
12078 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 12126 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
12079 // for details. All rights reserved. Use of this source code is governed by a 12127 // for details. All rights reserved. Use of this source code is governed by a
12080 // BSD-style license that can be found in the LICENSE file. 12128 // BSD-style license that can be found in the LICENSE file.
12081 12129
12130 class _MediaSourceFactoryProvider {
12131 factory MediaSource() native
12132 '''return new MediaSource();''';
12133 }
12134 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
12135 // for details. All rights reserved. Use of this source code is governed by a
12136 // BSD-style license that can be found in the LICENSE file.
12137
12082 class _MediaStreamFactoryProvider { 12138 class _MediaStreamFactoryProvider {
12083 factory MediaStream(MediaStreamTrackList audioTracks, MediaStreamTrackList vid eoTracks) native 12139 factory MediaStream(MediaStreamTrackList audioTracks, MediaStreamTrackList vid eoTracks) native
12084 '''return new MediaStream(audioTracks, videoTracks);'''; 12140 '''return new MediaStream(audioTracks, videoTracks);''';
12085 } 12141 }
12086 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 12142 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
12087 // for details. All rights reserved. Use of this source code is governed by a 12143 // for details. All rights reserved. Use of this source code is governed by a
12088 // BSD-style license that can be found in the LICENSE file. 12144 // BSD-style license that can be found in the LICENSE file.
12089 12145
12090 class _MessageChannelFactoryProvider { 12146 class _MessageChannelFactoryProvider {
12091 factory MessageChannel() native 12147 factory MessageChannel() native
(...skipping 20 matching lines...) Expand all
12112 // BSD-style license that can be found in the LICENSE file. 12168 // BSD-style license that can be found in the LICENSE file.
12113 12169
12114 class _PeerConnection00FactoryProvider { 12170 class _PeerConnection00FactoryProvider {
12115 factory PeerConnection00(String serverConfiguration, IceCallback iceCallback) native 12171 factory PeerConnection00(String serverConfiguration, IceCallback iceCallback) native
12116 '''return new PeerConnection00(serverConfiguration, iceCallback);'''; 12172 '''return new PeerConnection00(serverConfiguration, iceCallback);''';
12117 } 12173 }
12118 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 12174 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
12119 // for details. All rights reserved. Use of this source code is governed by a 12175 // for details. All rights reserved. Use of this source code is governed by a
12120 // BSD-style license that can be found in the LICENSE file. 12176 // BSD-style license that can be found in the LICENSE file.
12121 12177
12178 class _RTCPeerConnectionFactoryProvider {
12179 factory RTCPeerConnection(Map rtcICEServers, [Map mediaConstraints]) native
12180 '''return new RTCPeerConnection(rtcICEServers, mediaConstraints);''';
12181 }
12182 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
12183 // for details. All rights reserved. Use of this source code is governed by a
12184 // BSD-style license that can be found in the LICENSE file.
12185
12122 class _SessionDescriptionFactoryProvider { 12186 class _SessionDescriptionFactoryProvider {
12123 factory SessionDescription(String sdp) native 12187 factory SessionDescription(String sdp) native
12124 '''return new SessionDescription(sdp);'''; 12188 '''return new SessionDescription(sdp);''';
12125 } 12189 }
12126 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 12190 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
12127 // for details. All rights reserved. Use of this source code is governed by a 12191 // for details. All rights reserved. Use of this source code is governed by a
12128 // BSD-style license that can be found in the LICENSE file. 12192 // BSD-style license that can be found in the LICENSE file.
12129 12193
12130 class _ShadowRootFactoryProvider { 12194 class _ShadowRootFactoryProvider {
12131 factory ShadowRoot(Element host) native 12195 factory ShadowRoot(Element host) native
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after
12406 DelayNode createDelayNode([num maxDelayTime]); 12470 DelayNode createDelayNode([num maxDelayTime]);
12407 12471
12408 DynamicsCompressorNode createDynamicsCompressor(); 12472 DynamicsCompressorNode createDynamicsCompressor();
12409 12473
12410 AudioGainNode createGainNode(); 12474 AudioGainNode createGainNode();
12411 12475
12412 JavaScriptAudioNode createJavaScriptNode(int bufferSize, [int numberOfInputCha nnels, int numberOfOutputChannels]); 12476 JavaScriptAudioNode createJavaScriptNode(int bufferSize, [int numberOfInputCha nnels, int numberOfOutputChannels]);
12413 12477
12414 MediaElementAudioSourceNode createMediaElementSource(HTMLMediaElement mediaEle ment); 12478 MediaElementAudioSourceNode createMediaElementSource(HTMLMediaElement mediaEle ment);
12415 12479
12480 MediaStreamAudioSourceNode createMediaStreamSource(MediaStream mediaStream);
12481
12416 Oscillator createOscillator(); 12482 Oscillator createOscillator();
12417 12483
12418 AudioPannerNode createPanner(); 12484 AudioPannerNode createPanner();
12419 12485
12420 WaveShaperNode createWaveShaper(); 12486 WaveShaperNode createWaveShaper();
12421 12487
12422 WaveTable createWaveTable(Float32Array real, Float32Array imag); 12488 WaveTable createWaveTable(Float32Array real, Float32Array imag);
12423 12489
12424 void decodeAudioData(ArrayBuffer audioData, AudioBufferCallback successCallbac k, [AudioBufferCallback errorCallback]); 12490 void decodeAudioData(ArrayBuffer audioData, AudioBufferCallback successCallbac k, [AudioBufferCallback errorCallback]);
12425 12491
(...skipping 1997 matching lines...) Expand 10 before | Expand all | Expand 10 after
14423 // BSD-style license that can be found in the LICENSE file. 14489 // BSD-style license that can be found in the LICENSE file.
14424 14490
14425 // WARNING: Do not edit - generated code. 14491 // WARNING: Do not edit - generated code.
14426 14492
14427 interface Element extends Node, ElementTraversal { 14493 interface Element extends Node, ElementTraversal {
14428 14494
14429 static final int ALLOW_KEYBOARD_INPUT = 1; 14495 static final int ALLOW_KEYBOARD_INPUT = 1;
14430 14496
14431 final int childElementCount; 14497 final int childElementCount;
14432 14498
14499 final DOMTokenList classList;
14500
14501 String className;
14502
14433 final int clientHeight; 14503 final int clientHeight;
14434 14504
14435 final int clientLeft; 14505 final int clientLeft;
14436 14506
14437 final int clientTop; 14507 final int clientTop;
14438 14508
14439 final int clientWidth; 14509 final int clientWidth;
14440 14510
14441 final Map<String, String> dataset; 14511 final Map<String, String> dataset;
14442 14512
(...skipping 20 matching lines...) Expand all
14463 int scrollLeft; 14533 int scrollLeft;
14464 14534
14465 int scrollTop; 14535 int scrollTop;
14466 14536
14467 final int scrollWidth; 14537 final int scrollWidth;
14468 14538
14469 final CSSStyleDeclaration style; 14539 final CSSStyleDeclaration style;
14470 14540
14471 final String tagName; 14541 final String tagName;
14472 14542
14473 final String webkitRegionOverflow; 14543 final String webkitRegionOverset;
14474 14544
14475 void blur(); 14545 void blur();
14476 14546
14477 void focus(); 14547 void focus();
14478 14548
14479 String getAttribute(String name); 14549 String getAttribute(String name);
14480 14550
14481 String getAttributeNS(String namespaceURI, String localName); 14551 String getAttributeNS(String namespaceURI, String localName);
14482 14552
14483 Attr getAttributeNode(String name); 14553 Attr getAttributeNode(String name);
(...skipping 1103 matching lines...) Expand 10 before | Expand all | Expand 10 after
15587 // BSD-style license that can be found in the LICENSE file. 15657 // BSD-style license that can be found in the LICENSE file.
15588 15658
15589 // WARNING: Do not edit - generated code. 15659 // WARNING: Do not edit - generated code.
15590 15660
15591 interface HTMLElement extends Element { 15661 interface HTMLElement extends Element {
15592 15662
15593 String accessKey; 15663 String accessKey;
15594 15664
15595 final HTMLCollection children; 15665 final HTMLCollection children;
15596 15666
15597 final DOMTokenList classList;
15598
15599 String className;
15600
15601 String contentEditable; 15667 String contentEditable;
15602 15668
15603 String dir; 15669 String dir;
15604 15670
15605 bool draggable; 15671 bool draggable;
15606 15672
15607 bool hidden; 15673 bool hidden;
15608 15674
15609 String id; 15675 String id;
15610 15676
(...skipping 574 matching lines...) Expand 10 before | Expand all | Expand 10 after
16185 void stop(); 16251 void stop();
16186 } 16252 }
16187 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 16253 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
16188 // for details. All rights reserved. Use of this source code is governed by a 16254 // for details. All rights reserved. Use of this source code is governed by a
16189 // BSD-style license that can be found in the LICENSE file. 16255 // BSD-style license that can be found in the LICENSE file.
16190 16256
16191 // WARNING: Do not edit - generated code. 16257 // WARNING: Do not edit - generated code.
16192 16258
16193 interface HTMLMediaElement extends HTMLElement { 16259 interface HTMLMediaElement extends HTMLElement {
16194 16260
16195 static final int EOS_DECODE_ERR = 2;
16196
16197 static final int EOS_NETWORK_ERR = 1;
16198
16199 static final int EOS_NO_ERROR = 0;
16200
16201 static final int HAVE_CURRENT_DATA = 2; 16261 static final int HAVE_CURRENT_DATA = 2;
16202 16262
16203 static final int HAVE_ENOUGH_DATA = 4; 16263 static final int HAVE_ENOUGH_DATA = 4;
16204 16264
16205 static final int HAVE_FUTURE_DATA = 3; 16265 static final int HAVE_FUTURE_DATA = 3;
16206 16266
16207 static final int HAVE_METADATA = 1; 16267 static final int HAVE_METADATA = 1;
16208 16268
16209 static final int HAVE_NOTHING = 0; 16269 static final int HAVE_NOTHING = 0;
16210 16270
16211 static final int NETWORK_EMPTY = 0; 16271 static final int NETWORK_EMPTY = 0;
16212 16272
16213 static final int NETWORK_IDLE = 1; 16273 static final int NETWORK_IDLE = 1;
16214 16274
16215 static final int NETWORK_LOADING = 2; 16275 static final int NETWORK_LOADING = 2;
16216 16276
16217 static final int NETWORK_NO_SOURCE = 3; 16277 static final int NETWORK_NO_SOURCE = 3;
16218 16278
16219 static final int SOURCE_CLOSED = 0;
16220
16221 static final int SOURCE_ENDED = 2;
16222
16223 static final int SOURCE_OPEN = 1;
16224
16225 bool autoplay; 16279 bool autoplay;
16226 16280
16227 final TimeRanges buffered; 16281 final TimeRanges buffered;
16228 16282
16229 MediaController controller; 16283 MediaController controller;
16230 16284
16231 bool controls; 16285 bool controls;
16232 16286
16233 final String currentSrc; 16287 final String currentSrc;
16234 16288
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
16279 final int webkitAudioDecodedByteCount; 16333 final int webkitAudioDecodedByteCount;
16280 16334
16281 bool webkitClosedCaptionsVisible; 16335 bool webkitClosedCaptionsVisible;
16282 16336
16283 final bool webkitHasClosedCaptions; 16337 final bool webkitHasClosedCaptions;
16284 16338
16285 final String webkitMediaSourceURL; 16339 final String webkitMediaSourceURL;
16286 16340
16287 bool webkitPreservesPitch; 16341 bool webkitPreservesPitch;
16288 16342
16289 final int webkitSourceState;
16290
16291 final int webkitVideoDecodedByteCount; 16343 final int webkitVideoDecodedByteCount;
16292 16344
16293 TextTrack addTextTrack(String kind, [String label, String language]); 16345 TextTrack addTextTrack(String kind, [String label, String language]);
16294 16346
16295 String canPlayType(String type, String keySystem); 16347 String canPlayType(String type, String keySystem);
16296 16348
16297 void load(); 16349 void load();
16298 16350
16299 void pause(); 16351 void pause();
16300 16352
16301 void play(); 16353 void play();
16302 16354
16303 void webkitAddKey(String keySystem, Uint8Array key, [Uint8Array initData, Stri ng sessionId]); 16355 void webkitAddKey(String keySystem, Uint8Array key, [Uint8Array initData, Stri ng sessionId]);
16304 16356
16305 void webkitCancelKeyRequest(String keySystem, String sessionId); 16357 void webkitCancelKeyRequest(String keySystem, String sessionId);
16306 16358
16307 void webkitGenerateKeyRequest(String keySystem, [Uint8Array initData]); 16359 void webkitGenerateKeyRequest(String keySystem, [Uint8Array initData]);
16308
16309 void webkitSourceAbort(String id);
16310
16311 void webkitSourceAddId(String id, String type);
16312
16313 void webkitSourceAppend(String id, Uint8Array data);
16314
16315 TimeRanges webkitSourceBuffered(String id);
16316
16317 void webkitSourceEndOfStream(int status);
16318
16319 void webkitSourceRemoveId(String id);
16320 } 16360 }
16321 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 16361 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
16322 // for details. All rights reserved. Use of this source code is governed by a 16362 // for details. All rights reserved. Use of this source code is governed by a
16323 // BSD-style license that can be found in the LICENSE file. 16363 // BSD-style license that can be found in the LICENSE file.
16324 16364
16325 // WARNING: Do not edit - generated code. 16365 // WARNING: Do not edit - generated code.
16326 16366
16327 interface HTMLMenuElement extends HTMLElement { 16367 interface HTMLMenuElement extends HTMLElement {
16328 16368
16329 bool compact; 16369 bool compact;
(...skipping 1452 matching lines...) Expand 10 before | Expand all | Expand 10 after
17782 interface MediaQueryListListener { 17822 interface MediaQueryListListener {
17783 17823
17784 void queryChanged(MediaQueryList list); 17824 void queryChanged(MediaQueryList list);
17785 } 17825 }
17786 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 17826 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
17787 // for details. All rights reserved. Use of this source code is governed by a 17827 // for details. All rights reserved. Use of this source code is governed by a
17788 // BSD-style license that can be found in the LICENSE file. 17828 // BSD-style license that can be found in the LICENSE file.
17789 17829
17790 // WARNING: Do not edit - generated code. 17830 // WARNING: Do not edit - generated code.
17791 17831
17832 interface MediaSource extends EventTarget default _MediaSourceFactoryProvider {
17833
17834 MediaSource();
17835
17836 final SourceBufferList activeSourceBuffers;
17837
17838 final String readyState;
17839
17840 final SourceBufferList sourceBuffers;
17841
17842 void addEventListener(String type, EventListener listener, [bool useCapture]);
17843
17844 SourceBuffer addSourceBuffer(String type);
17845
17846 bool dispatchEvent(Event event);
17847
17848 void endOfStream(String error);
17849
17850 void removeEventListener(String type, EventListener listener, [bool useCapture ]);
17851
17852 void removeSourceBuffer(SourceBuffer buffer);
17853 }
17854 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
17855 // for details. All rights reserved. Use of this source code is governed by a
17856 // BSD-style license that can be found in the LICENSE file.
17857
17858 // WARNING: Do not edit - generated code.
17859
17792 interface MediaStream extends EventTarget default _MediaStreamFactoryProvider { 17860 interface MediaStream extends EventTarget default _MediaStreamFactoryProvider {
17793 17861
17794 MediaStream(MediaStreamTrackList audioTracks, MediaStreamTrackList videoTracks ); 17862 MediaStream(MediaStreamTrackList audioTracks, MediaStreamTrackList videoTracks );
17795 17863
17796 static final int ENDED = 2; 17864 static final int ENDED = 2;
17797 17865
17798 static final int LIVE = 1; 17866 static final int LIVE = 1;
17799 17867
17800 final MediaStreamTrackList audioTracks; 17868 final MediaStreamTrackList audioTracks;
17801 17869
17802 final String label; 17870 final String label;
17803 17871
17804 final int readyState; 17872 final int readyState;
17805 17873
17806 final MediaStreamTrackList videoTracks; 17874 final MediaStreamTrackList videoTracks;
17807 17875
17808 void addEventListener(String type, EventListener listener, [bool useCapture]); 17876 void addEventListener(String type, EventListener listener, [bool useCapture]);
17809 17877
17810 bool dispatchEvent(Event event); 17878 bool dispatchEvent(Event event);
17811 17879
17812 void removeEventListener(String type, EventListener listener, [bool useCapture ]); 17880 void removeEventListener(String type, EventListener listener, [bool useCapture ]);
17813 } 17881 }
17814 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 17882 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
17815 // for details. All rights reserved. Use of this source code is governed by a 17883 // for details. All rights reserved. Use of this source code is governed by a
17816 // BSD-style license that can be found in the LICENSE file. 17884 // BSD-style license that can be found in the LICENSE file.
17817 17885
17818 // WARNING: Do not edit - generated code. 17886 // WARNING: Do not edit - generated code.
17819 17887
17888 interface MediaStreamAudioSourceNode extends AudioSourceNode {
17889
17890 final MediaStream mediaStream;
17891 }
17892 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
17893 // for details. All rights reserved. Use of this source code is governed by a
17894 // BSD-style license that can be found in the LICENSE file.
17895
17896 // WARNING: Do not edit - generated code.
17897
17820 interface MediaStreamEvent extends Event { 17898 interface MediaStreamEvent extends Event {
17821 17899
17822 final MediaStream stream; 17900 final MediaStream stream;
17823 } 17901 }
17824 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 17902 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
17825 // for details. All rights reserved. Use of this source code is governed by a 17903 // for details. All rights reserved. Use of this source code is governed by a
17826 // BSD-style license that can be found in the LICENSE file. 17904 // BSD-style license that can be found in the LICENSE file.
17827 17905
17828 // WARNING: Do not edit - generated code. 17906 // WARNING: Do not edit - generated code.
17829 17907
(...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after
18164 final String productSub; 18242 final String productSub;
18165 18243
18166 final String userAgent; 18244 final String userAgent;
18167 18245
18168 final String vendor; 18246 final String vendor;
18169 18247
18170 final String vendorSub; 18248 final String vendorSub;
18171 18249
18172 final BatteryManager webkitBattery; 18250 final BatteryManager webkitBattery;
18173 18251
18174 final PointerLock webkitPointer;
18175
18176 void getStorageUpdates(); 18252 void getStorageUpdates();
18177 18253
18178 bool javaEnabled(); 18254 bool javaEnabled();
18179 18255
18180 GamepadList webkitGetGamepads(); 18256 GamepadList webkitGetGamepads();
18181 18257
18182 void webkitGetUserMedia(Map options, NavigatorUserMediaSuccessCallback success Callback, [NavigatorUserMediaErrorCallback errorCallback]); 18258 void webkitGetUserMedia(Map options, NavigatorUserMediaSuccessCallback success Callback, [NavigatorUserMediaErrorCallback errorCallback]);
18183 } 18259 }
18184 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 18260 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
18185 // for details. All rights reserved. Use of this source code is governed by a 18261 // for details. All rights reserved. Use of this source code is governed by a
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
18420 // BSD-style license that can be found in the LICENSE file. 18496 // BSD-style license that can be found in the LICENSE file.
18421 18497
18422 // WARNING: Do not edit - generated code. 18498 // WARNING: Do not edit - generated code.
18423 18499
18424 interface Notification extends EventTarget default _NotificationFactoryProvider { 18500 interface Notification extends EventTarget default _NotificationFactoryProvider {
18425 18501
18426 Notification(String title, [Map options]); 18502 Notification(String title, [Map options]);
18427 18503
18428 String dir; 18504 String dir;
18429 18505
18506 final String permission;
18507
18430 String replaceId; 18508 String replaceId;
18431 18509
18432 String tag; 18510 String tag;
18433 18511
18434 void addEventListener(String type, EventListener listener, [bool useCapture]); 18512 void addEventListener(String type, EventListener listener, [bool useCapture]);
18435 18513
18436 void cancel(); 18514 void cancel();
18437 18515
18438 void close(); 18516 void close();
18439 18517
(...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after
18751 final int unloadEventEnd; 18829 final int unloadEventEnd;
18752 18830
18753 final int unloadEventStart; 18831 final int unloadEventStart;
18754 } 18832 }
18755 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 18833 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
18756 // for details. All rights reserved. Use of this source code is governed by a 18834 // for details. All rights reserved. Use of this source code is governed by a
18757 // BSD-style license that can be found in the LICENSE file. 18835 // BSD-style license that can be found in the LICENSE file.
18758 18836
18759 // WARNING: Do not edit - generated code. 18837 // WARNING: Do not edit - generated code.
18760 18838
18761 interface PointerLock {
18762
18763 final bool isLocked;
18764
18765 void lock(Element target, [VoidCallback successCallback, VoidCallback failureC allback]);
18766
18767 void unlock();
18768 }
18769 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
18770 // for details. All rights reserved. Use of this source code is governed by a
18771 // BSD-style license that can be found in the LICENSE file.
18772
18773 // WARNING: Do not edit - generated code.
18774
18775 interface PopStateEvent extends Event { 18839 interface PopStateEvent extends Event {
18776 18840
18777 final Object state; 18841 final Object state;
18778 } 18842 }
18779 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 18843 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
18780 // for details. All rights reserved. Use of this source code is governed by a 18844 // for details. All rights reserved. Use of this source code is governed by a
18781 // BSD-style license that can be found in the LICENSE file. 18845 // BSD-style license that can be found in the LICENSE file.
18782 18846
18783 // WARNING: Do not edit - generated code. 18847 // WARNING: Do not edit - generated code.
18784 18848
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
18849 final CSSPrimitiveValue green; 18913 final CSSPrimitiveValue green;
18850 18914
18851 final CSSPrimitiveValue red; 18915 final CSSPrimitiveValue red;
18852 } 18916 }
18853 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 18917 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
18854 // for details. All rights reserved. Use of this source code is governed by a 18918 // for details. All rights reserved. Use of this source code is governed by a
18855 // BSD-style license that can be found in the LICENSE file. 18919 // BSD-style license that can be found in the LICENSE file.
18856 18920
18857 // WARNING: Do not edit - generated code. 18921 // WARNING: Do not edit - generated code.
18858 18922
18923 interface RTCPeerConnection extends EventTarget default _RTCPeerConnectionFactor yProvider {
18924
18925 RTCPeerConnection(Map rtcICEServers, [Map mediaConstraints]);
18926
18927 void addEventListener(String type, EventListener listener, [bool useCapture]);
18928
18929 bool dispatchEvent(Event event);
18930
18931 void removeEventListener(String type, EventListener listener, [bool useCapture ]);
18932 }
18933 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
18934 // for details. All rights reserved. Use of this source code is governed by a
18935 // BSD-style license that can be found in the LICENSE file.
18936
18937 // WARNING: Do not edit - generated code.
18938
18859 interface RadioNodeList extends NodeList { 18939 interface RadioNodeList extends NodeList {
18860 18940
18861 String value; 18941 String value;
18862 } 18942 }
18863 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 18943 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
18864 // for details. All rights reserved. Use of this source code is governed by a 18944 // for details. All rights reserved. Use of this source code is governed by a
18865 // BSD-style license that can be found in the LICENSE file. 18945 // BSD-style license that can be found in the LICENSE file.
18866 18946
18867 // WARNING: Do not edit - generated code. 18947 // WARNING: Do not edit - generated code.
18868 18948
(...skipping 676 matching lines...) Expand 10 before | Expand all | Expand 10 after
19545 final SVGElement viewportElement; 19625 final SVGElement viewportElement;
19546 19626
19547 String xmlbase; 19627 String xmlbase;
19548 } 19628 }
19549 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 19629 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
19550 // for details. All rights reserved. Use of this source code is governed by a 19630 // for details. All rights reserved. Use of this source code is governed by a
19551 // BSD-style license that can be found in the LICENSE file. 19631 // BSD-style license that can be found in the LICENSE file.
19552 19632
19553 // WARNING: Do not edit - generated code. 19633 // WARNING: Do not edit - generated code.
19554 19634
19555 interface SVGElementInstance { 19635 interface SVGElementInstance extends EventTarget {
19556 19636
19557 final SVGElementInstanceList childNodes; 19637 final SVGElementInstanceList childNodes;
19558 19638
19559 final SVGElement correspondingElement; 19639 final SVGElement correspondingElement;
19560 19640
19561 final SVGUseElement correspondingUseElement; 19641 final SVGUseElement correspondingUseElement;
19562 19642
19563 final SVGElementInstance firstChild; 19643 final SVGElementInstance firstChild;
19564 19644
19565 final SVGElementInstance lastChild; 19645 final SVGElementInstance lastChild;
19566 19646
19567 final SVGElementInstance nextSibling; 19647 final SVGElementInstance nextSibling;
19568 19648
19569 final SVGElementInstance parentNode; 19649 final SVGElementInstance parentNode;
19570 19650
19571 final SVGElementInstance previousSibling; 19651 final SVGElementInstance previousSibling;
19572
19573 void addEventListener(String type, EventListener listener, [bool useCapture]);
19574
19575 bool dispatchEvent(Event event);
19576
19577 void removeEventListener(String type, EventListener listener, [bool useCapture ]);
19578 } 19652 }
19579 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 19653 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
19580 // for details. All rights reserved. Use of this source code is governed by a 19654 // for details. All rights reserved. Use of this source code is governed by a
19581 // BSD-style license that can be found in the LICENSE file. 19655 // BSD-style license that can be found in the LICENSE file.
19582 19656
19583 // WARNING: Do not edit - generated code. 19657 // WARNING: Do not edit - generated code.
19584 19658
19585 interface SVGElementInstanceList { 19659 interface SVGElementInstanceList {
19586 19660
19587 final int length; 19661 final int length;
(...skipping 4350 matching lines...) Expand 10 before | Expand all | Expand 10 after
23938 static final int CSS_TRANSLATEZ = 12; 24012 static final int CSS_TRANSLATEZ = 12;
23939 24013
23940 final int operationType; 24014 final int operationType;
23941 } 24015 }
23942 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 24016 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
23943 // for details. All rights reserved. Use of this source code is governed by a 24017 // for details. All rights reserved. Use of this source code is governed by a
23944 // BSD-style license that can be found in the LICENSE file. 24018 // BSD-style license that can be found in the LICENSE file.
23945 24019
23946 // WARNING: Do not edit - generated code. 24020 // WARNING: Do not edit - generated code.
23947 24021
23948 interface WebKitNamedFlow { 24022 interface WebKitNamedFlow extends EventTarget {
23949 24023
23950 final int firstEmptyRegionIndex; 24024 final int firstEmptyRegionIndex;
23951 24025
23952 final String name; 24026 final String name;
23953 24027
23954 final bool overset; 24028 final bool overset;
23955 24029
24030 void addEventListener(String type, EventListener listener, [bool useCapture]);
24031
24032 bool dispatchEvent(Event event);
24033
23956 NodeList getContent(); 24034 NodeList getContent();
23957 24035
24036 NodeList getRegions();
24037
23958 NodeList getRegionsByContent(Node contentNode); 24038 NodeList getRegionsByContent(Node contentNode);
24039
24040 void removeEventListener(String type, EventListener listener, [bool useCapture ]);
23959 } 24041 }
23960 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 24042 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
23961 // for details. All rights reserved. Use of this source code is governed by a 24043 // for details. All rights reserved. Use of this source code is governed by a
23962 // BSD-style license that can be found in the LICENSE file. 24044 // BSD-style license that can be found in the LICENSE file.
23963 24045
23964 // WARNING: Do not edit - generated code. 24046 // WARNING: Do not edit - generated code.
23965 24047
23966 interface WebKitPoint default _WebKitPointFactoryProvider { 24048 interface WebKitPoint default _WebKitPointFactoryProvider {
23967 24049
23968 WebKitPoint(num x, num y); 24050 WebKitPoint(num x, num y);
(...skipping 1409 matching lines...) Expand 10 before | Expand all | Expand 10 after
25378 if (length < 0) throw new IllegalArgumentException('length'); 25460 if (length < 0) throw new IllegalArgumentException('length');
25379 if (start < 0) throw new IndexOutOfRangeException(start); 25461 if (start < 0) throw new IndexOutOfRangeException(start);
25380 int end = start + length; 25462 int end = start + length;
25381 if (end > a.length) throw new IndexOutOfRangeException(end); 25463 if (end > a.length) throw new IndexOutOfRangeException(end);
25382 for (int i = start; i < end; i++) { 25464 for (int i = start; i < end; i++) {
25383 accumulator.add(a[i]); 25465 accumulator.add(a[i]);
25384 } 25466 }
25385 return accumulator; 25467 return accumulator;
25386 } 25468 }
25387 } 25469 }
OLDNEW
« no previous file with comments | « no previous file | lib/dom/dom.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698