OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |