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

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

Issue 2857143003: dart2js_html: Fix for issue 29538 - some returned lists may be null (Closed)
Patch Set: Created 3 years, 7 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
« no previous file with comments | « sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart ('k') | tools/dom/scripts/dartmetadata.py » ('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 5778 matching lines...) Expand 10 before | Expand all | Expand 10 after
5789 @DomName('SVGSVGElement.getCurrentTime') 5789 @DomName('SVGSVGElement.getCurrentTime')
5790 @DocsEditable() 5790 @DocsEditable()
5791 double getCurrentTime() native; 5791 double getCurrentTime() native;
5792 5792
5793 @DomName('SVGSVGElement.getElementById') 5793 @DomName('SVGSVGElement.getElementById')
5794 @DocsEditable() 5794 @DocsEditable()
5795 Element getElementById(String elementId) native; 5795 Element getElementById(String elementId) native;
5796 5796
5797 @DomName('SVGSVGElement.getEnclosureList') 5797 @DomName('SVGSVGElement.getEnclosureList')
5798 @DocsEditable() 5798 @DocsEditable()
5799 @Returns('NodeList') 5799 @Returns('NodeList|Null')
5800 @Creates('NodeList') 5800 @Creates('NodeList')
5801 List<Node> getEnclosureList(Rect rect, SvgElement referenceElement) native; 5801 List<Node> getEnclosureList(Rect rect, SvgElement referenceElement) native;
5802 5802
5803 @DomName('SVGSVGElement.getIntersectionList') 5803 @DomName('SVGSVGElement.getIntersectionList')
5804 @DocsEditable() 5804 @DocsEditable()
5805 @Returns('NodeList') 5805 @Returns('NodeList|Null')
5806 @Creates('NodeList') 5806 @Creates('NodeList')
5807 List<Node> getIntersectionList(Rect rect, SvgElement referenceElement) native; 5807 List<Node> getIntersectionList(Rect rect, SvgElement referenceElement) native;
5808 5808
5809 @DomName('SVGSVGElement.pauseAnimations') 5809 @DomName('SVGSVGElement.pauseAnimations')
5810 @DocsEditable() 5810 @DocsEditable()
5811 void pauseAnimations() native; 5811 void pauseAnimations() native;
5812 5812
5813 @DomName('SVGSVGElement.setCurrentTime') 5813 @DomName('SVGSVGElement.setCurrentTime')
5814 @DocsEditable() 5814 @DocsEditable()
5815 void setCurrentTime(num seconds) native; 5815 void setCurrentTime(num seconds) native;
(...skipping 959 matching lines...) Expand 10 before | Expand all | Expand 10 after
6775 /** 6775 /**
6776 * Constructor instantiated by the DOM when a custom element has been created. 6776 * Constructor instantiated by the DOM when a custom element has been created.
6777 * 6777 *
6778 * This can only be called by subclasses from their created constructor. 6778 * This can only be called by subclasses from their created constructor.
6779 */ 6779 */
6780 _SVGMPathElement.created() : super.created(); 6780 _SVGMPathElement.created() : super.created();
6781 6781
6782 // From SVGURIReference 6782 // From SVGURIReference
6783 6783
6784 } 6784 }
OLDNEW
« no previous file with comments | « sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart ('k') | tools/dom/scripts/dartmetadata.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698