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

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

Issue 593853002: Chrome 38 script changes from integration branch (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 2 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
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 1811 matching lines...) Expand 10 before | Expand all | Expand 10 after
1822 final AnimatedEnumeration operator; 1822 final AnimatedEnumeration operator;
1823 1823
1824 @DomName('SVGFEMorphologyElement.radiusX') 1824 @DomName('SVGFEMorphologyElement.radiusX')
1825 @DocsEditable() 1825 @DocsEditable()
1826 final AnimatedNumber radiusX; 1826 final AnimatedNumber radiusX;
1827 1827
1828 @DomName('SVGFEMorphologyElement.radiusY') 1828 @DomName('SVGFEMorphologyElement.radiusY')
1829 @DocsEditable() 1829 @DocsEditable()
1830 final AnimatedNumber radiusY; 1830 final AnimatedNumber radiusY;
1831 1831
1832 @DomName('SVGFEMorphologyElement.setRadius')
1833 @DocsEditable()
1834 void setRadius(num radiusX, num radiusY) native;
1835
1836 // From SVGFilterPrimitiveStandardAttributes 1832 // From SVGFilterPrimitiveStandardAttributes
1837 1833
1838 @DomName('SVGFEMorphologyElement.height') 1834 @DomName('SVGFEMorphologyElement.height')
1839 @DocsEditable() 1835 @DocsEditable()
1840 final AnimatedLength height; 1836 final AnimatedLength height;
1841 1837
1842 @DomName('SVGFEMorphologyElement.result') 1838 @DomName('SVGFEMorphologyElement.result')
1843 @DocsEditable() 1839 @DocsEditable()
1844 final AnimatedString result; 1840 final AnimatedString result;
1845 1841
(...skipping 2874 matching lines...) Expand 10 before | Expand all | Expand 10 after
4720 StyleElement.created() : super.created(); 4716 StyleElement.created() : super.created();
4721 4717
4722 @DomName('SVGStyleElement.disabled') 4718 @DomName('SVGStyleElement.disabled')
4723 @DocsEditable() 4719 @DocsEditable()
4724 bool disabled; 4720 bool disabled;
4725 4721
4726 @DomName('SVGStyleElement.media') 4722 @DomName('SVGStyleElement.media')
4727 @DocsEditable() 4723 @DocsEditable()
4728 String media; 4724 String media;
4729 4725
4726 @DomName('SVGStyleElement.sheet')
4727 @DocsEditable()
4728 @Experimental() // untriaged
4729 final StyleSheet sheet;
4730
4730 // Shadowing definition. 4731 // Shadowing definition.
4731 String get title => JS("String", "#.title", this); 4732 String get title => JS("String", "#.title", this);
4732 4733
4733 void set title(String value) { 4734 void set title(String value) {
4734 JS("void", "#.title = #", this, value); 4735 JS("void", "#.title = #", this, value);
4735 } 4736 }
4736 4737
4737 @DomName('SVGStyleElement.type') 4738 @DomName('SVGStyleElement.type')
4738 @DocsEditable() 4739 @DocsEditable()
4739 String type; 4740 String type;
(...skipping 2062 matching lines...) Expand 10 before | Expand all | Expand 10 after
6802 @DomName('SVGVKernElement.SVGVKernElement') 6803 @DomName('SVGVKernElement.SVGVKernElement')
6803 @DocsEditable() 6804 @DocsEditable()
6804 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag( "vkern"); 6805 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag( "vkern");
6805 /** 6806 /**
6806 * Constructor instantiated by the DOM when a custom element has been created. 6807 * Constructor instantiated by the DOM when a custom element has been created.
6807 * 6808 *
6808 * This can only be called by subclasses from their created constructor. 6809 * This can only be called by subclasses from their created constructor.
6809 */ 6810 */
6810 _SVGVKernElement.created() : super.created(); 6811 _SVGVKernElement.created() : super.created();
6811 } 6812 }
OLDNEW
« no previous file with comments | « sdk/lib/indexed_db/dartium/indexed_db_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