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

Side by Side Diff: sdk/lib/svg/dart2js/svg_dart2js.dart

Issue 126793003: Fix dart2js type warnings (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 11 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 | « sdk/lib/html/dartium/html_dartium.dart ('k') | sdk/lib/svg/dartium/svg_dartium.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 /** 1 /**
2 * Scalable Vector Graphics: 2 * Scalable Vector Graphics:
3 * Two-dimensional vector graphics with support for events and animation. 3 * Two-dimensional vector graphics with support for events and animation.
4 * 4 *
5 * For details about the features and syntax of SVG, a W3C standard, 5 * For details about the features and syntax of SVG, a W3C standard,
6 * refer to the 6 * refer to the
7 * [Scalable Vector Graphics Specification](http://www.w3.org/TR/SVG/). 7 * [Scalable Vector Graphics Specification](http://www.w3.org/TR/SVG/).
8 */ 8 */
9 library dart.dom.svg; 9 library dart.dom.svg;
10 10
(...skipping 5816 matching lines...) Expand 10 before | Expand all | Expand 10 after
5827 @DomName('SVGElement.xmllang') 5827 @DomName('SVGElement.xmllang')
5828 @DocsEditable() 5828 @DocsEditable()
5829 @Experimental() // untriaged 5829 @Experimental() // untriaged
5830 String xmllang; 5830 String xmllang;
5831 5831
5832 @DomName('SVGElement.xmlspace') 5832 @DomName('SVGElement.xmlspace')
5833 @DocsEditable() 5833 @DocsEditable()
5834 @Experimental() // untriaged 5834 @Experimental() // untriaged
5835 String xmlspace; 5835 String xmlspace;
5836 5836
5837 // From EventTarget
5838
5839 @DomName('SVGElement.addEventListener')
5840 @DocsEditable()
5841 @Experimental() // untriaged
5842 void addEventListener(String type, EventListener listener, [bool useCapture]) native;
5843
5844 @DomName('SVGElement.dispatchEvent')
5845 @DocsEditable()
5846 @Experimental() // untriaged
5847 bool dispatchEvent(Event event) native;
5848
5849 @DomName('SVGElement.removeEventListener')
5850 @DocsEditable()
5851 @Experimental() // untriaged
5852 void removeEventListener(String type, EventListener listener, [bool useCapture ]) native;
5853
5837 @DomName('SVGElement.onabort') 5854 @DomName('SVGElement.onabort')
5838 @DocsEditable() 5855 @DocsEditable()
5839 @Experimental() // untriaged 5856 @Experimental() // untriaged
5840 ElementStream<Event> get onAbort => abortEvent.forElement(this); 5857 ElementStream<Event> get onAbort => abortEvent.forElement(this);
5841 5858
5842 @DomName('SVGElement.onblur') 5859 @DomName('SVGElement.onblur')
5843 @DocsEditable() 5860 @DocsEditable()
5844 @Experimental() // untriaged 5861 @Experimental() // untriaged
5845 ElementStream<Event> get onBlur => blurEvent.forElement(this); 5862 ElementStream<Event> get onBlur => blurEvent.forElement(this);
5846 5863
(...skipping 1732 matching lines...) Expand 10 before | Expand all | Expand 10 after
7579 @DomName('SVGVKernElement.SVGVKernElement') 7596 @DomName('SVGVKernElement.SVGVKernElement')
7580 @DocsEditable() 7597 @DocsEditable()
7581 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag( "vkern"); 7598 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag( "vkern");
7582 /** 7599 /**
7583 * Constructor instantiated by the DOM when a custom element has been created. 7600 * Constructor instantiated by the DOM when a custom element has been created.
7584 * 7601 *
7585 * This can only be called by subclasses from their created constructor. 7602 * This can only be called by subclasses from their created constructor.
7586 */ 7603 */
7587 _SVGVKernElement.created() : super.created(); 7604 _SVGVKernElement.created() : super.created();
7588 } 7605 }
OLDNEW
« no previous file with comments | « sdk/lib/html/dartium/html_dartium.dart ('k') | sdk/lib/svg/dartium/svg_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698