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

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

Issue 23064024: Attempt to land Dartium roll a second time. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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 | « 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 library dart.dom.svg; 1 library dart.dom.svg;
2 2
3 import 'dart:async'; 3 import 'dart:async';
4 import 'dart:collection'; 4 import 'dart:collection';
5 import 'dart:_collection-dev' hide deprecated; 5 import 'dart:_collection-dev' hide deprecated;
6 import 'dart:html'; 6 import 'dart:html';
7 import 'dart:html_common'; 7 import 'dart:html_common';
8 import 'dart:_js_helper' show Creates, Returns, JavaScriptIndexingBehavior, JSNa me; 8 import 'dart:_js_helper' show Creates, Returns, JavaScriptIndexingBehavior, JSNa me;
9 import 'dart:_foreign_helper' show JS; 9 import 'dart:_foreign_helper' show JS;
10 import 'dart:_interceptors' show Interceptor; 10 import 'dart:_interceptors' show Interceptor;
(...skipping 604 matching lines...) Expand 10 before | Expand all | Expand 10 after
615 final AnimatedBoolean externalResourcesRequired; 615 final AnimatedBoolean externalResourcesRequired;
616 } 616 }
617 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 617 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
618 // for details. All rights reserved. Use of this source code is governed by a 618 // for details. All rights reserved. Use of this source code is governed by a
619 // BSD-style license that can be found in the LICENSE file. 619 // BSD-style license that can be found in the LICENSE file.
620 620
621 621
622 @DocsEditable() 622 @DocsEditable()
623 @DomName('SVGDescElement') 623 @DomName('SVGDescElement')
624 @Unstable() 624 @Unstable()
625 class DescElement extends StyledElement native "SVGDescElement" { 625 class DescElement extends SvgElement native "SVGDescElement" {
626 // To suppress missing implicit constructor warnings. 626 // To suppress missing implicit constructor warnings.
627 factory DescElement._() { throw new UnsupportedError("Not supported"); } 627 factory DescElement._() { throw new UnsupportedError("Not supported"); }
628 628
629 @DomName('SVGDescElement.SVGDescElement') 629 @DomName('SVGDescElement.SVGDescElement')
630 @DocsEditable() 630 @DocsEditable()
631 factory DescElement() => _SvgElementFactoryProvider.createSvgElement_tag("desc "); 631 factory DescElement() => _SvgElementFactoryProvider.createSvgElement_tag("desc ");
632 } 632 }
633 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 633 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
634 // for details. All rights reserved. Use of this source code is governed by a 634 // for details. All rights reserved. Use of this source code is governed by a
635 // BSD-style license that can be found in the LICENSE file. 635 // BSD-style license that can be found in the LICENSE file.
(...skipping 442 matching lines...) Expand 10 before | Expand all | Expand 10 after
1078 // BSD-style license that can be found in the LICENSE file. 1078 // BSD-style license that can be found in the LICENSE file.
1079 1079
1080 1080
1081 @DocsEditable() 1081 @DocsEditable()
1082 @DomName('SVGFEBlendElement') 1082 @DomName('SVGFEBlendElement')
1083 @SupportedBrowser(SupportedBrowser.CHROME) 1083 @SupportedBrowser(SupportedBrowser.CHROME)
1084 @SupportedBrowser(SupportedBrowser.FIREFOX) 1084 @SupportedBrowser(SupportedBrowser.FIREFOX)
1085 @SupportedBrowser(SupportedBrowser.IE, '10') 1085 @SupportedBrowser(SupportedBrowser.IE, '10')
1086 @SupportedBrowser(SupportedBrowser.SAFARI) 1086 @SupportedBrowser(SupportedBrowser.SAFARI)
1087 @Unstable() 1087 @Unstable()
1088 class FEBlendElement extends StyledElement implements FilterPrimitiveStandardAtt ributes native "SVGFEBlendElement" { 1088 class FEBlendElement extends SvgElement implements FilterPrimitiveStandardAttrib utes native "SVGFEBlendElement" {
1089 // To suppress missing implicit constructor warnings. 1089 // To suppress missing implicit constructor warnings.
1090 factory FEBlendElement._() { throw new UnsupportedError("Not supported"); } 1090 factory FEBlendElement._() { throw new UnsupportedError("Not supported"); }
1091 1091
1092 @DomName('SVGFEBlendElement.SVGFEBlendElement') 1092 @DomName('SVGFEBlendElement.SVGFEBlendElement')
1093 @DocsEditable() 1093 @DocsEditable()
1094 factory FEBlendElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eBlend"); 1094 factory FEBlendElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eBlend");
1095 1095
1096 /// Checks if this type is supported on the current platform. 1096 /// Checks if this type is supported on the current platform.
1097 static bool get supported => SvgElement.isTagSupported('feBlend') && (new SvgE lement.tag('feBlend') is FEBlendElement); 1097 static bool get supported => SvgElement.isTagSupported('feBlend') && (new SvgE lement.tag('feBlend') is FEBlendElement);
1098 1098
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
1159 // BSD-style license that can be found in the LICENSE file. 1159 // BSD-style license that can be found in the LICENSE file.
1160 1160
1161 1161
1162 @DocsEditable() 1162 @DocsEditable()
1163 @DomName('SVGFEColorMatrixElement') 1163 @DomName('SVGFEColorMatrixElement')
1164 @SupportedBrowser(SupportedBrowser.CHROME) 1164 @SupportedBrowser(SupportedBrowser.CHROME)
1165 @SupportedBrowser(SupportedBrowser.FIREFOX) 1165 @SupportedBrowser(SupportedBrowser.FIREFOX)
1166 @SupportedBrowser(SupportedBrowser.IE, '10') 1166 @SupportedBrowser(SupportedBrowser.IE, '10')
1167 @SupportedBrowser(SupportedBrowser.SAFARI) 1167 @SupportedBrowser(SupportedBrowser.SAFARI)
1168 @Unstable() 1168 @Unstable()
1169 class FEColorMatrixElement extends StyledElement implements FilterPrimitiveStand ardAttributes native "SVGFEColorMatrixElement" { 1169 class FEColorMatrixElement extends SvgElement implements FilterPrimitiveStandard Attributes native "SVGFEColorMatrixElement" {
1170 // To suppress missing implicit constructor warnings. 1170 // To suppress missing implicit constructor warnings.
1171 factory FEColorMatrixElement._() { throw new UnsupportedError("Not supported") ; } 1171 factory FEColorMatrixElement._() { throw new UnsupportedError("Not supported") ; }
1172 1172
1173 @DomName('SVGFEColorMatrixElement.SVGFEColorMatrixElement') 1173 @DomName('SVGFEColorMatrixElement.SVGFEColorMatrixElement')
1174 @DocsEditable() 1174 @DocsEditable()
1175 factory FEColorMatrixElement() => _SvgElementFactoryProvider.createSvgElement_ tag("feColorMatrix"); 1175 factory FEColorMatrixElement() => _SvgElementFactoryProvider.createSvgElement_ tag("feColorMatrix");
1176 1176
1177 /// Checks if this type is supported on the current platform. 1177 /// Checks if this type is supported on the current platform.
1178 static bool get supported => SvgElement.isTagSupported('feColorMatrix') && (ne w SvgElement.tag('feColorMatrix') is FEColorMatrixElement); 1178 static bool get supported => SvgElement.isTagSupported('feColorMatrix') && (ne w SvgElement.tag('feColorMatrix') is FEColorMatrixElement);
1179 1179
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
1236 // BSD-style license that can be found in the LICENSE file. 1236 // BSD-style license that can be found in the LICENSE file.
1237 1237
1238 1238
1239 @DocsEditable() 1239 @DocsEditable()
1240 @DomName('SVGFEComponentTransferElement') 1240 @DomName('SVGFEComponentTransferElement')
1241 @SupportedBrowser(SupportedBrowser.CHROME) 1241 @SupportedBrowser(SupportedBrowser.CHROME)
1242 @SupportedBrowser(SupportedBrowser.FIREFOX) 1242 @SupportedBrowser(SupportedBrowser.FIREFOX)
1243 @SupportedBrowser(SupportedBrowser.IE, '10') 1243 @SupportedBrowser(SupportedBrowser.IE, '10')
1244 @SupportedBrowser(SupportedBrowser.SAFARI) 1244 @SupportedBrowser(SupportedBrowser.SAFARI)
1245 @Unstable() 1245 @Unstable()
1246 class FEComponentTransferElement extends StyledElement implements FilterPrimitiv eStandardAttributes native "SVGFEComponentTransferElement" { 1246 class FEComponentTransferElement extends SvgElement implements FilterPrimitiveSt andardAttributes native "SVGFEComponentTransferElement" {
1247 // To suppress missing implicit constructor warnings. 1247 // To suppress missing implicit constructor warnings.
1248 factory FEComponentTransferElement._() { throw new UnsupportedError("Not suppo rted"); } 1248 factory FEComponentTransferElement._() { throw new UnsupportedError("Not suppo rted"); }
1249 1249
1250 @DomName('SVGFEComponentTransferElement.SVGFEComponentTransferElement') 1250 @DomName('SVGFEComponentTransferElement.SVGFEComponentTransferElement')
1251 @DocsEditable() 1251 @DocsEditable()
1252 factory FEComponentTransferElement() => _SvgElementFactoryProvider.createSvgEl ement_tag("feComponentTransfer"); 1252 factory FEComponentTransferElement() => _SvgElementFactoryProvider.createSvgEl ement_tag("feComponentTransfer");
1253 1253
1254 /// Checks if this type is supported on the current platform. 1254 /// Checks if this type is supported on the current platform.
1255 static bool get supported => SvgElement.isTagSupported('feComponentTransfer') && (new SvgElement.tag('feComponentTransfer') is FEComponentTransferElement); 1255 static bool get supported => SvgElement.isTagSupported('feComponentTransfer') && (new SvgElement.tag('feComponentTransfer') is FEComponentTransferElement);
1256 1256
(...skipping 24 matching lines...) Expand all
1281 final AnimatedLength y; 1281 final AnimatedLength y;
1282 } 1282 }
1283 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1283 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1284 // for details. All rights reserved. Use of this source code is governed by a 1284 // for details. All rights reserved. Use of this source code is governed by a
1285 // BSD-style license that can be found in the LICENSE file. 1285 // BSD-style license that can be found in the LICENSE file.
1286 1286
1287 1287
1288 @DocsEditable() 1288 @DocsEditable()
1289 @DomName('SVGFECompositeElement') 1289 @DomName('SVGFECompositeElement')
1290 @Unstable() 1290 @Unstable()
1291 class FECompositeElement extends StyledElement implements FilterPrimitiveStandar dAttributes native "SVGFECompositeElement" { 1291 class FECompositeElement extends SvgElement implements FilterPrimitiveStandardAt tributes native "SVGFECompositeElement" {
1292 // To suppress missing implicit constructor warnings. 1292 // To suppress missing implicit constructor warnings.
1293 factory FECompositeElement._() { throw new UnsupportedError("Not supported"); } 1293 factory FECompositeElement._() { throw new UnsupportedError("Not supported"); }
1294 1294
1295 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_ARITHMETIC') 1295 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_ARITHMETIC')
1296 @DocsEditable() 1296 @DocsEditable()
1297 static const int SVG_FECOMPOSITE_OPERATOR_ARITHMETIC = 6; 1297 static const int SVG_FECOMPOSITE_OPERATOR_ARITHMETIC = 6;
1298 1298
1299 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_ATOP') 1299 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_ATOP')
1300 @DocsEditable() 1300 @DocsEditable()
1301 static const int SVG_FECOMPOSITE_OPERATOR_ATOP = 4; 1301 static const int SVG_FECOMPOSITE_OPERATOR_ATOP = 4;
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
1375 // BSD-style license that can be found in the LICENSE file. 1375 // BSD-style license that can be found in the LICENSE file.
1376 1376
1377 1377
1378 @DocsEditable() 1378 @DocsEditable()
1379 @DomName('SVGFEConvolveMatrixElement') 1379 @DomName('SVGFEConvolveMatrixElement')
1380 @SupportedBrowser(SupportedBrowser.CHROME) 1380 @SupportedBrowser(SupportedBrowser.CHROME)
1381 @SupportedBrowser(SupportedBrowser.FIREFOX) 1381 @SupportedBrowser(SupportedBrowser.FIREFOX)
1382 @SupportedBrowser(SupportedBrowser.IE, '10') 1382 @SupportedBrowser(SupportedBrowser.IE, '10')
1383 @SupportedBrowser(SupportedBrowser.SAFARI) 1383 @SupportedBrowser(SupportedBrowser.SAFARI)
1384 @Unstable() 1384 @Unstable()
1385 class FEConvolveMatrixElement extends StyledElement implements FilterPrimitiveSt andardAttributes native "SVGFEConvolveMatrixElement" { 1385 class FEConvolveMatrixElement extends SvgElement implements FilterPrimitiveStand ardAttributes native "SVGFEConvolveMatrixElement" {
1386 // To suppress missing implicit constructor warnings. 1386 // To suppress missing implicit constructor warnings.
1387 factory FEConvolveMatrixElement._() { throw new UnsupportedError("Not supporte d"); } 1387 factory FEConvolveMatrixElement._() { throw new UnsupportedError("Not supporte d"); }
1388 1388
1389 @DomName('SVGFEConvolveMatrixElement.SVGFEConvolveMatrixElement') 1389 @DomName('SVGFEConvolveMatrixElement.SVGFEConvolveMatrixElement')
1390 @DocsEditable() 1390 @DocsEditable()
1391 factory FEConvolveMatrixElement() => _SvgElementFactoryProvider.createSvgEleme nt_tag("feConvolveMatrix"); 1391 factory FEConvolveMatrixElement() => _SvgElementFactoryProvider.createSvgEleme nt_tag("feConvolveMatrix");
1392 1392
1393 /// Checks if this type is supported on the current platform. 1393 /// Checks if this type is supported on the current platform.
1394 static bool get supported => SvgElement.isTagSupported('feConvolveMatrix') && (new SvgElement.tag('feConvolveMatrix') is FEConvolveMatrixElement); 1394 static bool get supported => SvgElement.isTagSupported('feConvolveMatrix') && (new SvgElement.tag('feConvolveMatrix') is FEConvolveMatrixElement);
1395 1395
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
1484 // BSD-style license that can be found in the LICENSE file. 1484 // BSD-style license that can be found in the LICENSE file.
1485 1485
1486 1486
1487 @DocsEditable() 1487 @DocsEditable()
1488 @DomName('SVGFEDiffuseLightingElement') 1488 @DomName('SVGFEDiffuseLightingElement')
1489 @SupportedBrowser(SupportedBrowser.CHROME) 1489 @SupportedBrowser(SupportedBrowser.CHROME)
1490 @SupportedBrowser(SupportedBrowser.FIREFOX) 1490 @SupportedBrowser(SupportedBrowser.FIREFOX)
1491 @SupportedBrowser(SupportedBrowser.IE, '10') 1491 @SupportedBrowser(SupportedBrowser.IE, '10')
1492 @SupportedBrowser(SupportedBrowser.SAFARI) 1492 @SupportedBrowser(SupportedBrowser.SAFARI)
1493 @Unstable() 1493 @Unstable()
1494 class FEDiffuseLightingElement extends StyledElement implements FilterPrimitiveS tandardAttributes native "SVGFEDiffuseLightingElement" { 1494 class FEDiffuseLightingElement extends SvgElement implements FilterPrimitiveStan dardAttributes native "SVGFEDiffuseLightingElement" {
1495 // To suppress missing implicit constructor warnings. 1495 // To suppress missing implicit constructor warnings.
1496 factory FEDiffuseLightingElement._() { throw new UnsupportedError("Not support ed"); } 1496 factory FEDiffuseLightingElement._() { throw new UnsupportedError("Not support ed"); }
1497 1497
1498 @DomName('SVGFEDiffuseLightingElement.SVGFEDiffuseLightingElement') 1498 @DomName('SVGFEDiffuseLightingElement.SVGFEDiffuseLightingElement')
1499 @DocsEditable() 1499 @DocsEditable()
1500 factory FEDiffuseLightingElement() => _SvgElementFactoryProvider.createSvgElem ent_tag("feDiffuseLighting"); 1500 factory FEDiffuseLightingElement() => _SvgElementFactoryProvider.createSvgElem ent_tag("feDiffuseLighting");
1501 1501
1502 /// Checks if this type is supported on the current platform. 1502 /// Checks if this type is supported on the current platform.
1503 static bool get supported => SvgElement.isTagSupported('feDiffuseLighting') && (new SvgElement.tag('feDiffuseLighting') is FEDiffuseLightingElement); 1503 static bool get supported => SvgElement.isTagSupported('feDiffuseLighting') && (new SvgElement.tag('feDiffuseLighting') is FEDiffuseLightingElement);
1504 1504
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
1549 // BSD-style license that can be found in the LICENSE file. 1549 // BSD-style license that can be found in the LICENSE file.
1550 1550
1551 1551
1552 @DocsEditable() 1552 @DocsEditable()
1553 @DomName('SVGFEDisplacementMapElement') 1553 @DomName('SVGFEDisplacementMapElement')
1554 @SupportedBrowser(SupportedBrowser.CHROME) 1554 @SupportedBrowser(SupportedBrowser.CHROME)
1555 @SupportedBrowser(SupportedBrowser.FIREFOX) 1555 @SupportedBrowser(SupportedBrowser.FIREFOX)
1556 @SupportedBrowser(SupportedBrowser.IE, '10') 1556 @SupportedBrowser(SupportedBrowser.IE, '10')
1557 @SupportedBrowser(SupportedBrowser.SAFARI) 1557 @SupportedBrowser(SupportedBrowser.SAFARI)
1558 @Unstable() 1558 @Unstable()
1559 class FEDisplacementMapElement extends StyledElement implements FilterPrimitiveS tandardAttributes native "SVGFEDisplacementMapElement" { 1559 class FEDisplacementMapElement extends SvgElement implements FilterPrimitiveStan dardAttributes native "SVGFEDisplacementMapElement" {
1560 // To suppress missing implicit constructor warnings. 1560 // To suppress missing implicit constructor warnings.
1561 factory FEDisplacementMapElement._() { throw new UnsupportedError("Not support ed"); } 1561 factory FEDisplacementMapElement._() { throw new UnsupportedError("Not support ed"); }
1562 1562
1563 @DomName('SVGFEDisplacementMapElement.SVGFEDisplacementMapElement') 1563 @DomName('SVGFEDisplacementMapElement.SVGFEDisplacementMapElement')
1564 @DocsEditable() 1564 @DocsEditable()
1565 factory FEDisplacementMapElement() => _SvgElementFactoryProvider.createSvgElem ent_tag("feDisplacementMap"); 1565 factory FEDisplacementMapElement() => _SvgElementFactoryProvider.createSvgElem ent_tag("feDisplacementMap");
1566 1566
1567 /// Checks if this type is supported on the current platform. 1567 /// Checks if this type is supported on the current platform.
1568 static bool get supported => SvgElement.isTagSupported('feDisplacementMap') && (new SvgElement.tag('feDisplacementMap') is FEDisplacementMapElement); 1568 static bool get supported => SvgElement.isTagSupported('feDisplacementMap') && (new SvgElement.tag('feDisplacementMap') is FEDisplacementMapElement);
1569 1569
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
1665 // BSD-style license that can be found in the LICENSE file. 1665 // BSD-style license that can be found in the LICENSE file.
1666 1666
1667 1667
1668 @DocsEditable() 1668 @DocsEditable()
1669 @DomName('SVGFEFloodElement') 1669 @DomName('SVGFEFloodElement')
1670 @SupportedBrowser(SupportedBrowser.CHROME) 1670 @SupportedBrowser(SupportedBrowser.CHROME)
1671 @SupportedBrowser(SupportedBrowser.FIREFOX) 1671 @SupportedBrowser(SupportedBrowser.FIREFOX)
1672 @SupportedBrowser(SupportedBrowser.IE, '10') 1672 @SupportedBrowser(SupportedBrowser.IE, '10')
1673 @SupportedBrowser(SupportedBrowser.SAFARI) 1673 @SupportedBrowser(SupportedBrowser.SAFARI)
1674 @Unstable() 1674 @Unstable()
1675 class FEFloodElement extends StyledElement implements FilterPrimitiveStandardAtt ributes native "SVGFEFloodElement" { 1675 class FEFloodElement extends SvgElement implements FilterPrimitiveStandardAttrib utes native "SVGFEFloodElement" {
1676 // To suppress missing implicit constructor warnings. 1676 // To suppress missing implicit constructor warnings.
1677 factory FEFloodElement._() { throw new UnsupportedError("Not supported"); } 1677 factory FEFloodElement._() { throw new UnsupportedError("Not supported"); }
1678 1678
1679 @DomName('SVGFEFloodElement.SVGFEFloodElement') 1679 @DomName('SVGFEFloodElement.SVGFEFloodElement')
1680 @DocsEditable() 1680 @DocsEditable()
1681 factory FEFloodElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eFlood"); 1681 factory FEFloodElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eFlood");
1682 1682
1683 /// Checks if this type is supported on the current platform. 1683 /// Checks if this type is supported on the current platform.
1684 static bool get supported => SvgElement.isTagSupported('feFlood') && (new SvgE lement.tag('feFlood') is FEFloodElement); 1684 static bool get supported => SvgElement.isTagSupported('feFlood') && (new SvgE lement.tag('feFlood') is FEFloodElement);
1685 1685
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
1802 // BSD-style license that can be found in the LICENSE file. 1802 // BSD-style license that can be found in the LICENSE file.
1803 1803
1804 1804
1805 @DocsEditable() 1805 @DocsEditable()
1806 @DomName('SVGFEGaussianBlurElement') 1806 @DomName('SVGFEGaussianBlurElement')
1807 @SupportedBrowser(SupportedBrowser.CHROME) 1807 @SupportedBrowser(SupportedBrowser.CHROME)
1808 @SupportedBrowser(SupportedBrowser.FIREFOX) 1808 @SupportedBrowser(SupportedBrowser.FIREFOX)
1809 @SupportedBrowser(SupportedBrowser.IE, '10') 1809 @SupportedBrowser(SupportedBrowser.IE, '10')
1810 @SupportedBrowser(SupportedBrowser.SAFARI) 1810 @SupportedBrowser(SupportedBrowser.SAFARI)
1811 @Unstable() 1811 @Unstable()
1812 class FEGaussianBlurElement extends StyledElement implements FilterPrimitiveStan dardAttributes native "SVGFEGaussianBlurElement" { 1812 class FEGaussianBlurElement extends SvgElement implements FilterPrimitiveStandar dAttributes native "SVGFEGaussianBlurElement" {
1813 // To suppress missing implicit constructor warnings. 1813 // To suppress missing implicit constructor warnings.
1814 factory FEGaussianBlurElement._() { throw new UnsupportedError("Not supported" ); } 1814 factory FEGaussianBlurElement._() { throw new UnsupportedError("Not supported" ); }
1815 1815
1816 @DomName('SVGFEGaussianBlurElement.SVGFEGaussianBlurElement') 1816 @DomName('SVGFEGaussianBlurElement.SVGFEGaussianBlurElement')
1817 @DocsEditable() 1817 @DocsEditable()
1818 factory FEGaussianBlurElement() => _SvgElementFactoryProvider.createSvgElement _tag("feGaussianBlur"); 1818 factory FEGaussianBlurElement() => _SvgElementFactoryProvider.createSvgElement _tag("feGaussianBlur");
1819 1819
1820 /// Checks if this type is supported on the current platform. 1820 /// Checks if this type is supported on the current platform.
1821 static bool get supported => SvgElement.isTagSupported('feGaussianBlur') && (n ew SvgElement.tag('feGaussianBlur') is FEGaussianBlurElement); 1821 static bool get supported => SvgElement.isTagSupported('feGaussianBlur') && (n ew SvgElement.tag('feGaussianBlur') is FEGaussianBlurElement);
1822 1822
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
1863 // BSD-style license that can be found in the LICENSE file. 1863 // BSD-style license that can be found in the LICENSE file.
1864 1864
1865 1865
1866 @DocsEditable() 1866 @DocsEditable()
1867 @DomName('SVGFEImageElement') 1867 @DomName('SVGFEImageElement')
1868 @SupportedBrowser(SupportedBrowser.CHROME) 1868 @SupportedBrowser(SupportedBrowser.CHROME)
1869 @SupportedBrowser(SupportedBrowser.FIREFOX) 1869 @SupportedBrowser(SupportedBrowser.FIREFOX)
1870 @SupportedBrowser(SupportedBrowser.IE, '10') 1870 @SupportedBrowser(SupportedBrowser.IE, '10')
1871 @SupportedBrowser(SupportedBrowser.SAFARI) 1871 @SupportedBrowser(SupportedBrowser.SAFARI)
1872 @Unstable() 1872 @Unstable()
1873 class FEImageElement extends StyledElement implements FilterPrimitiveStandardAtt ributes, UriReference, ExternalResourcesRequired native "SVGFEImageElement" { 1873 class FEImageElement extends SvgElement implements FilterPrimitiveStandardAttrib utes, UriReference, ExternalResourcesRequired native "SVGFEImageElement" {
1874 // To suppress missing implicit constructor warnings. 1874 // To suppress missing implicit constructor warnings.
1875 factory FEImageElement._() { throw new UnsupportedError("Not supported"); } 1875 factory FEImageElement._() { throw new UnsupportedError("Not supported"); }
1876 1876
1877 @DomName('SVGFEImageElement.SVGFEImageElement') 1877 @DomName('SVGFEImageElement.SVGFEImageElement')
1878 @DocsEditable() 1878 @DocsEditable()
1879 factory FEImageElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eImage"); 1879 factory FEImageElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eImage");
1880 1880
1881 /// Checks if this type is supported on the current platform. 1881 /// Checks if this type is supported on the current platform.
1882 static bool get supported => SvgElement.isTagSupported('feImage') && (new SvgE lement.tag('feImage') is FEImageElement); 1882 static bool get supported => SvgElement.isTagSupported('feImage') && (new SvgE lement.tag('feImage') is FEImageElement);
1883 1883
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
1924 // BSD-style license that can be found in the LICENSE file. 1924 // BSD-style license that can be found in the LICENSE file.
1925 1925
1926 1926
1927 @DocsEditable() 1927 @DocsEditable()
1928 @DomName('SVGFEMergeElement') 1928 @DomName('SVGFEMergeElement')
1929 @SupportedBrowser(SupportedBrowser.CHROME) 1929 @SupportedBrowser(SupportedBrowser.CHROME)
1930 @SupportedBrowser(SupportedBrowser.FIREFOX) 1930 @SupportedBrowser(SupportedBrowser.FIREFOX)
1931 @SupportedBrowser(SupportedBrowser.IE, '10') 1931 @SupportedBrowser(SupportedBrowser.IE, '10')
1932 @SupportedBrowser(SupportedBrowser.SAFARI) 1932 @SupportedBrowser(SupportedBrowser.SAFARI)
1933 @Unstable() 1933 @Unstable()
1934 class FEMergeElement extends StyledElement implements FilterPrimitiveStandardAtt ributes native "SVGFEMergeElement" { 1934 class FEMergeElement extends SvgElement implements FilterPrimitiveStandardAttrib utes native "SVGFEMergeElement" {
1935 // To suppress missing implicit constructor warnings. 1935 // To suppress missing implicit constructor warnings.
1936 factory FEMergeElement._() { throw new UnsupportedError("Not supported"); } 1936 factory FEMergeElement._() { throw new UnsupportedError("Not supported"); }
1937 1937
1938 @DomName('SVGFEMergeElement.SVGFEMergeElement') 1938 @DomName('SVGFEMergeElement.SVGFEMergeElement')
1939 @DocsEditable() 1939 @DocsEditable()
1940 factory FEMergeElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eMerge"); 1940 factory FEMergeElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eMerge");
1941 1941
1942 /// Checks if this type is supported on the current platform. 1942 /// Checks if this type is supported on the current platform.
1943 static bool get supported => SvgElement.isTagSupported('feMerge') && (new SvgE lement.tag('feMerge') is FEMergeElement); 1943 static bool get supported => SvgElement.isTagSupported('feMerge') && (new SvgE lement.tag('feMerge') is FEMergeElement);
1944 1944
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
1996 // BSD-style license that can be found in the LICENSE file. 1996 // BSD-style license that can be found in the LICENSE file.
1997 1997
1998 1998
1999 @DocsEditable() 1999 @DocsEditable()
2000 @DomName('SVGFEMorphologyElement') 2000 @DomName('SVGFEMorphologyElement')
2001 @SupportedBrowser(SupportedBrowser.CHROME) 2001 @SupportedBrowser(SupportedBrowser.CHROME)
2002 @SupportedBrowser(SupportedBrowser.FIREFOX) 2002 @SupportedBrowser(SupportedBrowser.FIREFOX)
2003 @SupportedBrowser(SupportedBrowser.IE, '10') 2003 @SupportedBrowser(SupportedBrowser.IE, '10')
2004 @SupportedBrowser(SupportedBrowser.SAFARI) 2004 @SupportedBrowser(SupportedBrowser.SAFARI)
2005 @Unstable() 2005 @Unstable()
2006 class FEMorphologyElement extends StyledElement implements FilterPrimitiveStanda rdAttributes native "SVGFEMorphologyElement" { 2006 class FEMorphologyElement extends SvgElement implements FilterPrimitiveStandardA ttributes native "SVGFEMorphologyElement" {
2007 // To suppress missing implicit constructor warnings. 2007 // To suppress missing implicit constructor warnings.
2008 factory FEMorphologyElement._() { throw new UnsupportedError("Not supported"); } 2008 factory FEMorphologyElement._() { throw new UnsupportedError("Not supported"); }
2009 2009
2010 @DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_DILATE') 2010 @DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_DILATE')
2011 @DocsEditable() 2011 @DocsEditable()
2012 static const int SVG_MORPHOLOGY_OPERATOR_DILATE = 2; 2012 static const int SVG_MORPHOLOGY_OPERATOR_DILATE = 2;
2013 2013
2014 @DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_ERODE') 2014 @DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_ERODE')
2015 @DocsEditable() 2015 @DocsEditable()
2016 static const int SVG_MORPHOLOGY_OPERATOR_ERODE = 1; 2016 static const int SVG_MORPHOLOGY_OPERATOR_ERODE = 1;
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
2066 // BSD-style license that can be found in the LICENSE file. 2066 // BSD-style license that can be found in the LICENSE file.
2067 2067
2068 2068
2069 @DocsEditable() 2069 @DocsEditable()
2070 @DomName('SVGFEOffsetElement') 2070 @DomName('SVGFEOffsetElement')
2071 @SupportedBrowser(SupportedBrowser.CHROME) 2071 @SupportedBrowser(SupportedBrowser.CHROME)
2072 @SupportedBrowser(SupportedBrowser.FIREFOX) 2072 @SupportedBrowser(SupportedBrowser.FIREFOX)
2073 @SupportedBrowser(SupportedBrowser.IE, '10') 2073 @SupportedBrowser(SupportedBrowser.IE, '10')
2074 @SupportedBrowser(SupportedBrowser.SAFARI) 2074 @SupportedBrowser(SupportedBrowser.SAFARI)
2075 @Unstable() 2075 @Unstable()
2076 class FEOffsetElement extends StyledElement implements FilterPrimitiveStandardAt tributes native "SVGFEOffsetElement" { 2076 class FEOffsetElement extends SvgElement implements FilterPrimitiveStandardAttri butes native "SVGFEOffsetElement" {
2077 // To suppress missing implicit constructor warnings. 2077 // To suppress missing implicit constructor warnings.
2078 factory FEOffsetElement._() { throw new UnsupportedError("Not supported"); } 2078 factory FEOffsetElement._() { throw new UnsupportedError("Not supported"); }
2079 2079
2080 @DomName('SVGFEOffsetElement.SVGFEOffsetElement') 2080 @DomName('SVGFEOffsetElement.SVGFEOffsetElement')
2081 @DocsEditable() 2081 @DocsEditable()
2082 factory FEOffsetElement() => _SvgElementFactoryProvider.createSvgElement_tag(" feOffset"); 2082 factory FEOffsetElement() => _SvgElementFactoryProvider.createSvgElement_tag(" feOffset");
2083 2083
2084 /// Checks if this type is supported on the current platform. 2084 /// Checks if this type is supported on the current platform.
2085 static bool get supported => SvgElement.isTagSupported('feOffset') && (new Svg Element.tag('feOffset') is FEOffsetElement); 2085 static bool get supported => SvgElement.isTagSupported('feOffset') && (new Svg Element.tag('feOffset') is FEOffsetElement);
2086 2086
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
2158 // BSD-style license that can be found in the LICENSE file. 2158 // BSD-style license that can be found in the LICENSE file.
2159 2159
2160 2160
2161 @DocsEditable() 2161 @DocsEditable()
2162 @DomName('SVGFESpecularLightingElement') 2162 @DomName('SVGFESpecularLightingElement')
2163 @SupportedBrowser(SupportedBrowser.CHROME) 2163 @SupportedBrowser(SupportedBrowser.CHROME)
2164 @SupportedBrowser(SupportedBrowser.FIREFOX) 2164 @SupportedBrowser(SupportedBrowser.FIREFOX)
2165 @SupportedBrowser(SupportedBrowser.IE, '10') 2165 @SupportedBrowser(SupportedBrowser.IE, '10')
2166 @SupportedBrowser(SupportedBrowser.SAFARI) 2166 @SupportedBrowser(SupportedBrowser.SAFARI)
2167 @Unstable() 2167 @Unstable()
2168 class FESpecularLightingElement extends StyledElement implements FilterPrimitive StandardAttributes native "SVGFESpecularLightingElement" { 2168 class FESpecularLightingElement extends SvgElement implements FilterPrimitiveSta ndardAttributes native "SVGFESpecularLightingElement" {
2169 // To suppress missing implicit constructor warnings. 2169 // To suppress missing implicit constructor warnings.
2170 factory FESpecularLightingElement._() { throw new UnsupportedError("Not suppor ted"); } 2170 factory FESpecularLightingElement._() { throw new UnsupportedError("Not suppor ted"); }
2171 2171
2172 @DomName('SVGFESpecularLightingElement.SVGFESpecularLightingElement') 2172 @DomName('SVGFESpecularLightingElement.SVGFESpecularLightingElement')
2173 @DocsEditable() 2173 @DocsEditable()
2174 factory FESpecularLightingElement() => _SvgElementFactoryProvider.createSvgEle ment_tag("feSpecularLighting"); 2174 factory FESpecularLightingElement() => _SvgElementFactoryProvider.createSvgEle ment_tag("feSpecularLighting");
2175 2175
2176 /// Checks if this type is supported on the current platform. 2176 /// Checks if this type is supported on the current platform.
2177 static bool get supported => SvgElement.isTagSupported('feSpecularLighting') & & (new SvgElement.tag('feSpecularLighting') is FESpecularLightingElement); 2177 static bool get supported => SvgElement.isTagSupported('feSpecularLighting') & & (new SvgElement.tag('feSpecularLighting') is FESpecularLightingElement);
2178 2178
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
2274 // BSD-style license that can be found in the LICENSE file. 2274 // BSD-style license that can be found in the LICENSE file.
2275 2275
2276 2276
2277 @DocsEditable() 2277 @DocsEditable()
2278 @DomName('SVGFETileElement') 2278 @DomName('SVGFETileElement')
2279 @SupportedBrowser(SupportedBrowser.CHROME) 2279 @SupportedBrowser(SupportedBrowser.CHROME)
2280 @SupportedBrowser(SupportedBrowser.FIREFOX) 2280 @SupportedBrowser(SupportedBrowser.FIREFOX)
2281 @SupportedBrowser(SupportedBrowser.IE, '10') 2281 @SupportedBrowser(SupportedBrowser.IE, '10')
2282 @SupportedBrowser(SupportedBrowser.SAFARI) 2282 @SupportedBrowser(SupportedBrowser.SAFARI)
2283 @Unstable() 2283 @Unstable()
2284 class FETileElement extends StyledElement implements FilterPrimitiveStandardAttr ibutes native "SVGFETileElement" { 2284 class FETileElement extends SvgElement implements FilterPrimitiveStandardAttribu tes native "SVGFETileElement" {
2285 // To suppress missing implicit constructor warnings. 2285 // To suppress missing implicit constructor warnings.
2286 factory FETileElement._() { throw new UnsupportedError("Not supported"); } 2286 factory FETileElement._() { throw new UnsupportedError("Not supported"); }
2287 2287
2288 @DomName('SVGFETileElement.SVGFETileElement') 2288 @DomName('SVGFETileElement.SVGFETileElement')
2289 @DocsEditable() 2289 @DocsEditable()
2290 factory FETileElement() => _SvgElementFactoryProvider.createSvgElement_tag("fe Tile"); 2290 factory FETileElement() => _SvgElementFactoryProvider.createSvgElement_tag("fe Tile");
2291 2291
2292 /// Checks if this type is supported on the current platform. 2292 /// Checks if this type is supported on the current platform.
2293 static bool get supported => SvgElement.isTagSupported('feTile') && (new SvgEl ement.tag('feTile') is FETileElement); 2293 static bool get supported => SvgElement.isTagSupported('feTile') && (new SvgEl ement.tag('feTile') is FETileElement);
2294 2294
(...skipping 28 matching lines...) Expand all
2323 // BSD-style license that can be found in the LICENSE file. 2323 // BSD-style license that can be found in the LICENSE file.
2324 2324
2325 2325
2326 @DocsEditable() 2326 @DocsEditable()
2327 @DomName('SVGFETurbulenceElement') 2327 @DomName('SVGFETurbulenceElement')
2328 @SupportedBrowser(SupportedBrowser.CHROME) 2328 @SupportedBrowser(SupportedBrowser.CHROME)
2329 @SupportedBrowser(SupportedBrowser.FIREFOX) 2329 @SupportedBrowser(SupportedBrowser.FIREFOX)
2330 @SupportedBrowser(SupportedBrowser.IE, '10') 2330 @SupportedBrowser(SupportedBrowser.IE, '10')
2331 @SupportedBrowser(SupportedBrowser.SAFARI) 2331 @SupportedBrowser(SupportedBrowser.SAFARI)
2332 @Unstable() 2332 @Unstable()
2333 class FETurbulenceElement extends StyledElement implements FilterPrimitiveStanda rdAttributes native "SVGFETurbulenceElement" { 2333 class FETurbulenceElement extends SvgElement implements FilterPrimitiveStandardA ttributes native "SVGFETurbulenceElement" {
2334 // To suppress missing implicit constructor warnings. 2334 // To suppress missing implicit constructor warnings.
2335 factory FETurbulenceElement._() { throw new UnsupportedError("Not supported"); } 2335 factory FETurbulenceElement._() { throw new UnsupportedError("Not supported"); }
2336 2336
2337 @DomName('SVGFETurbulenceElement.SVGFETurbulenceElement') 2337 @DomName('SVGFETurbulenceElement.SVGFETurbulenceElement')
2338 @DocsEditable() 2338 @DocsEditable()
2339 factory FETurbulenceElement() => _SvgElementFactoryProvider.createSvgElement_t ag("feTurbulence"); 2339 factory FETurbulenceElement() => _SvgElementFactoryProvider.createSvgElement_t ag("feTurbulence");
2340 2340
2341 /// Checks if this type is supported on the current platform. 2341 /// Checks if this type is supported on the current platform.
2342 static bool get supported => SvgElement.isTagSupported('feTurbulence') && (new SvgElement.tag('feTurbulence') is FETurbulenceElement); 2342 static bool get supported => SvgElement.isTagSupported('feTurbulence') && (new SvgElement.tag('feTurbulence') is FETurbulenceElement);
2343 2343
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
2416 // BSD-style license that can be found in the LICENSE file. 2416 // BSD-style license that can be found in the LICENSE file.
2417 2417
2418 2418
2419 @DocsEditable() 2419 @DocsEditable()
2420 @DomName('SVGFilterElement') 2420 @DomName('SVGFilterElement')
2421 @SupportedBrowser(SupportedBrowser.CHROME) 2421 @SupportedBrowser(SupportedBrowser.CHROME)
2422 @SupportedBrowser(SupportedBrowser.FIREFOX) 2422 @SupportedBrowser(SupportedBrowser.FIREFOX)
2423 @SupportedBrowser(SupportedBrowser.IE, '10') 2423 @SupportedBrowser(SupportedBrowser.IE, '10')
2424 @SupportedBrowser(SupportedBrowser.SAFARI) 2424 @SupportedBrowser(SupportedBrowser.SAFARI)
2425 @Unstable() 2425 @Unstable()
2426 class FilterElement extends StyledElement implements UriReference, ExternalResou rcesRequired native "SVGFilterElement" { 2426 class FilterElement extends SvgElement implements UriReference, ExternalResource sRequired native "SVGFilterElement" {
2427 // To suppress missing implicit constructor warnings. 2427 // To suppress missing implicit constructor warnings.
2428 factory FilterElement._() { throw new UnsupportedError("Not supported"); } 2428 factory FilterElement._() { throw new UnsupportedError("Not supported"); }
2429 2429
2430 @DomName('SVGFilterElement.SVGFilterElement') 2430 @DomName('SVGFilterElement.SVGFilterElement')
2431 @DocsEditable() 2431 @DocsEditable()
2432 factory FilterElement() => _SvgElementFactoryProvider.createSvgElement_tag("fi lter"); 2432 factory FilterElement() => _SvgElementFactoryProvider.createSvgElement_tag("fi lter");
2433 2433
2434 /// Checks if this type is supported on the current platform. 2434 /// Checks if this type is supported on the current platform.
2435 static bool get supported => SvgElement.isTagSupported('filter') && (new SvgEl ement.tag('filter') is FilterElement); 2435 static bool get supported => SvgElement.isTagSupported('filter') && (new SvgEl ement.tag('filter') is FilterElement);
2436 2436
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
2583 final AnimatedBoolean externalResourcesRequired; 2583 final AnimatedBoolean externalResourcesRequired;
2584 } 2584 }
2585 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2585 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2586 // for details. All rights reserved. Use of this source code is governed by a 2586 // for details. All rights reserved. Use of this source code is governed by a
2587 // BSD-style license that can be found in the LICENSE file. 2587 // BSD-style license that can be found in the LICENSE file.
2588 2588
2589 2589
2590 @DocsEditable() 2590 @DocsEditable()
2591 @DomName('SVGGraphicsElement') 2591 @DomName('SVGGraphicsElement')
2592 @Experimental() // untriaged 2592 @Experimental() // untriaged
2593 class GraphicsElement extends StyledElement implements Tests native "SVGGraphics Element" { 2593 class GraphicsElement extends SvgElement implements Tests native "SVGGraphicsEle ment" {
2594 // To suppress missing implicit constructor warnings. 2594 // To suppress missing implicit constructor warnings.
2595 factory GraphicsElement._() { throw new UnsupportedError("Not supported"); } 2595 factory GraphicsElement._() { throw new UnsupportedError("Not supported"); }
2596 2596
2597 @DomName('SVGGraphicsElement.farthestViewportElement') 2597 @DomName('SVGGraphicsElement.farthestViewportElement')
2598 @DocsEditable() 2598 @DocsEditable()
2599 @Experimental() // untriaged 2599 @Experimental() // untriaged
2600 final SvgElement farthestViewportElement; 2600 final SvgElement farthestViewportElement;
2601 2601
2602 @DomName('SVGGraphicsElement.nearestViewportElement') 2602 @DomName('SVGGraphicsElement.nearestViewportElement')
2603 @DocsEditable() 2603 @DocsEditable()
(...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after
2938 final AnimatedLength y2; 2938 final AnimatedLength y2;
2939 } 2939 }
2940 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2940 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2941 // for details. All rights reserved. Use of this source code is governed by a 2941 // for details. All rights reserved. Use of this source code is governed by a
2942 // BSD-style license that can be found in the LICENSE file. 2942 // BSD-style license that can be found in the LICENSE file.
2943 2943
2944 2944
2945 @DocsEditable() 2945 @DocsEditable()
2946 @DomName('SVGMarkerElement') 2946 @DomName('SVGMarkerElement')
2947 @Unstable() 2947 @Unstable()
2948 class MarkerElement extends StyledElement implements FitToViewBox, ExternalResou rcesRequired native "SVGMarkerElement" { 2948 class MarkerElement extends SvgElement implements FitToViewBox, ExternalResource sRequired native "SVGMarkerElement" {
2949 // To suppress missing implicit constructor warnings. 2949 // To suppress missing implicit constructor warnings.
2950 factory MarkerElement._() { throw new UnsupportedError("Not supported"); } 2950 factory MarkerElement._() { throw new UnsupportedError("Not supported"); }
2951 2951
2952 @DomName('SVGMarkerElement.SVGMarkerElement') 2952 @DomName('SVGMarkerElement.SVGMarkerElement')
2953 @DocsEditable() 2953 @DocsEditable()
2954 factory MarkerElement() => _SvgElementFactoryProvider.createSvgElement_tag("ma rker"); 2954 factory MarkerElement() => _SvgElementFactoryProvider.createSvgElement_tag("ma rker");
2955 2955
2956 @DomName('SVGMarkerElement.SVG_MARKERUNITS_STROKEWIDTH') 2956 @DomName('SVGMarkerElement.SVG_MARKERUNITS_STROKEWIDTH')
2957 @DocsEditable() 2957 @DocsEditable()
2958 static const int SVG_MARKERUNITS_STROKEWIDTH = 2; 2958 static const int SVG_MARKERUNITS_STROKEWIDTH = 2;
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
3030 final AnimatedRect viewBox; 3030 final AnimatedRect viewBox;
3031 } 3031 }
3032 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3032 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3033 // for details. All rights reserved. Use of this source code is governed by a 3033 // for details. All rights reserved. Use of this source code is governed by a
3034 // BSD-style license that can be found in the LICENSE file. 3034 // BSD-style license that can be found in the LICENSE file.
3035 3035
3036 3036
3037 @DocsEditable() 3037 @DocsEditable()
3038 @DomName('SVGMaskElement') 3038 @DomName('SVGMaskElement')
3039 @Unstable() 3039 @Unstable()
3040 class MaskElement extends StyledElement implements ExternalResourcesRequired, Te sts native "SVGMaskElement" { 3040 class MaskElement extends SvgElement implements ExternalResourcesRequired, Tests native "SVGMaskElement" {
3041 // To suppress missing implicit constructor warnings. 3041 // To suppress missing implicit constructor warnings.
3042 factory MaskElement._() { throw new UnsupportedError("Not supported"); } 3042 factory MaskElement._() { throw new UnsupportedError("Not supported"); }
3043 3043
3044 @DomName('SVGMaskElement.SVGMaskElement') 3044 @DomName('SVGMaskElement.SVGMaskElement')
3045 @DocsEditable() 3045 @DocsEditable()
3046 factory MaskElement() => _SvgElementFactoryProvider.createSvgElement_tag("mask "); 3046 factory MaskElement() => _SvgElementFactoryProvider.createSvgElement_tag("mask ");
3047 3047
3048 @DomName('SVGMaskElement.height') 3048 @DomName('SVGMaskElement.height')
3049 @DocsEditable() 3049 @DocsEditable()
3050 final AnimatedLength height; 3050 final AnimatedLength height;
(...skipping 1030 matching lines...) Expand 10 before | Expand all | Expand 10 after
4081 num y; 4081 num y;
4082 } 4082 }
4083 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4083 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4084 // for details. All rights reserved. Use of this source code is governed by a 4084 // for details. All rights reserved. Use of this source code is governed by a
4085 // BSD-style license that can be found in the LICENSE file. 4085 // BSD-style license that can be found in the LICENSE file.
4086 4086
4087 4087
4088 @DocsEditable() 4088 @DocsEditable()
4089 @DomName('SVGPatternElement') 4089 @DomName('SVGPatternElement')
4090 @Unstable() 4090 @Unstable()
4091 class PatternElement extends StyledElement implements FitToViewBox, UriReference , ExternalResourcesRequired, Tests native "SVGPatternElement" { 4091 class PatternElement extends SvgElement implements FitToViewBox, UriReference, E xternalResourcesRequired, Tests native "SVGPatternElement" {
4092 // To suppress missing implicit constructor warnings. 4092 // To suppress missing implicit constructor warnings.
4093 factory PatternElement._() { throw new UnsupportedError("Not supported"); } 4093 factory PatternElement._() { throw new UnsupportedError("Not supported"); }
4094 4094
4095 @DomName('SVGPatternElement.SVGPatternElement') 4095 @DomName('SVGPatternElement.SVGPatternElement')
4096 @DocsEditable() 4096 @DocsEditable()
4097 factory PatternElement() => _SvgElementFactoryProvider.createSvgElement_tag("p attern"); 4097 factory PatternElement() => _SvgElementFactoryProvider.createSvgElement_tag("p attern");
4098 4098
4099 @DomName('SVGPatternElement.height') 4099 @DomName('SVGPatternElement.height')
4100 @DocsEditable() 4100 @DocsEditable()
4101 final AnimatedLength height; 4101 final AnimatedLength height;
(...skipping 461 matching lines...) Expand 10 before | Expand all | Expand 10 after
4563 static bool get supported => SvgElement.isTagSupported('set') && (new SvgEleme nt.tag('set') is SetElement); 4563 static bool get supported => SvgElement.isTagSupported('set') && (new SvgEleme nt.tag('set') is SetElement);
4564 } 4564 }
4565 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4565 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4566 // for details. All rights reserved. Use of this source code is governed by a 4566 // for details. All rights reserved. Use of this source code is governed by a
4567 // BSD-style license that can be found in the LICENSE file. 4567 // BSD-style license that can be found in the LICENSE file.
4568 4568
4569 4569
4570 @DocsEditable() 4570 @DocsEditable()
4571 @DomName('SVGStopElement') 4571 @DomName('SVGStopElement')
4572 @Unstable() 4572 @Unstable()
4573 class StopElement extends StyledElement native "SVGStopElement" { 4573 class StopElement extends SvgElement native "SVGStopElement" {
4574 // To suppress missing implicit constructor warnings. 4574 // To suppress missing implicit constructor warnings.
4575 factory StopElement._() { throw new UnsupportedError("Not supported"); } 4575 factory StopElement._() { throw new UnsupportedError("Not supported"); }
4576 4576
4577 @DomName('SVGStopElement.SVGStopElement') 4577 @DomName('SVGStopElement.SVGStopElement')
4578 @DocsEditable() 4578 @DocsEditable()
4579 factory StopElement() => _SvgElementFactoryProvider.createSvgElement_tag("stop "); 4579 factory StopElement() => _SvgElementFactoryProvider.createSvgElement_tag("stop ");
4580 4580
4581 @JSName('offset') 4581 @JSName('offset')
4582 @DomName('SVGStopElement.offset') 4582 @DomName('SVGStopElement.offset')
4583 @DocsEditable() 4583 @DocsEditable()
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
4706 @DomName('SVGStyleElement.type') 4706 @DomName('SVGStyleElement.type')
4707 @DocsEditable() 4707 @DocsEditable()
4708 String type; 4708 String type;
4709 } 4709 }
4710 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4710 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4711 // for details. All rights reserved. Use of this source code is governed by a 4711 // for details. All rights reserved. Use of this source code is governed by a
4712 // BSD-style license that can be found in the LICENSE file. 4712 // BSD-style license that can be found in the LICENSE file.
4713 4713
4714 4714
4715 @DocsEditable() 4715 @DocsEditable()
4716 @DomName('SVGStyledElement')
4717 @Unstable()
4718 class StyledElement extends SvgElement native "SVGStyledElement" {
4719 // To suppress missing implicit constructor warnings.
4720 factory StyledElement._() { throw new UnsupportedError("Not supported"); }
4721
4722 // Shadowing definition.
4723 AnimatedString get $dom_svgClassName => JS("AnimatedString", "#.className", th is);
4724
4725 // Use implementation from Element.
4726 // final CssStyleDeclaration style;
4727 }
4728 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4729 // for details. All rights reserved. Use of this source code is governed by a
4730 // BSD-style license that can be found in the LICENSE file.
4731
4732
4733 @DocsEditable()
4734 @DomName('SVGDocument') 4716 @DomName('SVGDocument')
4735 @Unstable() 4717 @Unstable()
4736 class SvgDocument extends Document native "SVGDocument" { 4718 class SvgDocument extends Document native "SVGDocument" {
4737 // To suppress missing implicit constructor warnings. 4719 // To suppress missing implicit constructor warnings.
4738 factory SvgDocument._() { throw new UnsupportedError("Not supported"); } 4720 factory SvgDocument._() { throw new UnsupportedError("Not supported"); }
4739 4721
4740 @DomName('SVGDocument.rootElement') 4722 @DomName('SVGDocument.rootElement')
4741 @DocsEditable() 4723 @DocsEditable()
4742 final SvgSvgElement rootElement; 4724 final SvgSvgElement rootElement;
4743 } 4725 }
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
4850 * The tag should be a valid SVG element tag name. 4832 * The tag should be a valid SVG element tag name.
4851 */ 4833 */
4852 static bool isTagSupported(String tag) { 4834 static bool isTagSupported(String tag) {
4853 var e = new SvgElement.tag(tag); 4835 var e = new SvgElement.tag(tag);
4854 return e is SvgElement && !(e is UnknownElement); 4836 return e is SvgElement && !(e is UnknownElement);
4855 } 4837 }
4856 // To suppress missing implicit constructor warnings. 4838 // To suppress missing implicit constructor warnings.
4857 factory SvgElement._() { throw new UnsupportedError("Not supported"); } 4839 factory SvgElement._() { throw new UnsupportedError("Not supported"); }
4858 4840
4859 // Shadowing definition. 4841 // Shadowing definition.
4860 String get id => JS("String", "#.id", this); 4842 AnimatedString get $dom_svgClassName => JS("AnimatedString", "#.className", th is);
4861
4862 void set id(String value) {
4863 JS("void", "#.id = #", this, value);
4864 }
4865 4843
4866 @JSName('ownerSVGElement') 4844 @JSName('ownerSVGElement')
4867 @DomName('SVGElement.ownerSVGElement') 4845 @DomName('SVGElement.ownerSVGElement')
4868 @DocsEditable() 4846 @DocsEditable()
4869 final SvgSvgElement ownerSvgElement; 4847 final SvgSvgElement ownerSvgElement;
4870 4848
4849 // Use implementation from Element.
4850 // final CssStyleDeclaration style;
4851
4871 @DomName('SVGElement.viewportElement') 4852 @DomName('SVGElement.viewportElement')
4872 @DocsEditable() 4853 @DocsEditable()
4873 final SvgElement viewportElement; 4854 final SvgElement viewportElement;
4874 4855
4875 @DomName('SVGElement.xmlbase') 4856 @DomName('SVGElement.xmlbase')
4876 @DocsEditable() 4857 @DocsEditable()
4877 String xmlbase; 4858 String xmlbase;
4878 4859
4879 @DomName('SVGElement.xmllang') 4860 @DomName('SVGElement.xmllang')
4880 @DocsEditable() 4861 @DocsEditable()
4881 @Experimental() // untriaged 4862 @Experimental() // untriaged
4882 String xmllang; 4863 String xmllang;
4883 4864
4884 @DomName('SVGElement.xmlspace') 4865 @DomName('SVGElement.xmlspace')
4885 @DocsEditable() 4866 @DocsEditable()
4886 @Experimental() // untriaged 4867 @Experimental() // untriaged
4887 String xmlspace; 4868 String xmlspace;
4888 4869
4870 @DomName('SVGElement.getPresentationAttribute')
4871 @DocsEditable()
4872 @Experimental() // untriaged
4873 _CSSValue getPresentationAttribute(String name) native;
4874
4889 } 4875 }
4890 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4876 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4891 // for details. All rights reserved. Use of this source code is governed by a 4877 // for details. All rights reserved. Use of this source code is governed by a
4892 // BSD-style license that can be found in the LICENSE file. 4878 // BSD-style license that can be found in the LICENSE file.
4893 4879
4894 4880
4895 @DomName('SVGSVGElement') 4881 @DomName('SVGSVGElement')
4896 @Unstable() 4882 @Unstable()
4897 class SvgSvgElement extends GraphicsElement implements FitToViewBox, ExternalRes ourcesRequired, ZoomAndPan native "SVGSVGElement" { 4883 class SvgSvgElement extends GraphicsElement implements FitToViewBox, ExternalRes ourcesRequired, ZoomAndPan native "SVGSVGElement" {
4898 factory SvgSvgElement() => _SvgSvgElementFactoryProvider.createSvgSvgElement() ; 4884 factory SvgSvgElement() => _SvgSvgElementFactoryProvider.createSvgSvgElement() ;
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
5110 final AnimatedBoolean externalResourcesRequired; 5096 final AnimatedBoolean externalResourcesRequired;
5111 } 5097 }
5112 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5098 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5113 // for details. All rights reserved. Use of this source code is governed by a 5099 // for details. All rights reserved. Use of this source code is governed by a
5114 // BSD-style license that can be found in the LICENSE file. 5100 // BSD-style license that can be found in the LICENSE file.
5115 5101
5116 5102
5117 @DocsEditable() 5103 @DocsEditable()
5118 @DomName('SVGSymbolElement') 5104 @DomName('SVGSymbolElement')
5119 @Unstable() 5105 @Unstable()
5120 class SymbolElement extends StyledElement implements FitToViewBox, ExternalResou rcesRequired native "SVGSymbolElement" { 5106 class SymbolElement extends SvgElement implements FitToViewBox, ExternalResource sRequired native "SVGSymbolElement" {
5121 // To suppress missing implicit constructor warnings. 5107 // To suppress missing implicit constructor warnings.
5122 factory SymbolElement._() { throw new UnsupportedError("Not supported"); } 5108 factory SymbolElement._() { throw new UnsupportedError("Not supported"); }
5123 5109
5124 @DomName('SVGSymbolElement.SVGSymbolElement') 5110 @DomName('SVGSymbolElement.SVGSymbolElement')
5125 @DocsEditable() 5111 @DocsEditable()
5126 factory SymbolElement() => _SvgElementFactoryProvider.createSvgElement_tag("sy mbol"); 5112 factory SymbolElement() => _SvgElementFactoryProvider.createSvgElement_tag("sy mbol");
5127 5113
5128 // From SVGExternalResourcesRequired 5114 // From SVGExternalResourcesRequired
5129 5115
5130 @DomName('SVGSymbolElement.externalResourcesRequired') 5116 @DomName('SVGSymbolElement.externalResourcesRequired')
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
5352 final AnimatedLengthList y; 5338 final AnimatedLengthList y;
5353 } 5339 }
5354 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5340 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5355 // for details. All rights reserved. Use of this source code is governed by a 5341 // for details. All rights reserved. Use of this source code is governed by a
5356 // BSD-style license that can be found in the LICENSE file. 5342 // BSD-style license that can be found in the LICENSE file.
5357 5343
5358 5344
5359 @DocsEditable() 5345 @DocsEditable()
5360 @DomName('SVGTitleElement') 5346 @DomName('SVGTitleElement')
5361 @Unstable() 5347 @Unstable()
5362 class TitleElement extends StyledElement native "SVGTitleElement" { 5348 class TitleElement extends SvgElement native "SVGTitleElement" {
5363 // To suppress missing implicit constructor warnings. 5349 // To suppress missing implicit constructor warnings.
5364 factory TitleElement._() { throw new UnsupportedError("Not supported"); } 5350 factory TitleElement._() { throw new UnsupportedError("Not supported"); }
5365 5351
5366 @DomName('SVGTitleElement.SVGTitleElement') 5352 @DomName('SVGTitleElement.SVGTitleElement')
5367 @DocsEditable() 5353 @DocsEditable()
5368 factory TitleElement() => _SvgElementFactoryProvider.createSvgElement_tag("tit le"); 5354 factory TitleElement() => _SvgElementFactoryProvider.createSvgElement_tag("tit le");
5369 } 5355 }
5370 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5356 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5371 // for details. All rights reserved. Use of this source code is governed by a 5357 // for details. All rights reserved. Use of this source code is governed by a
5372 // BSD-style license that can be found in the LICENSE file. 5358 // BSD-style license that can be found in the LICENSE file.
(...skipping 481 matching lines...) Expand 10 before | Expand all | Expand 10 after
5854 ElementInstance item(int index) native; 5840 ElementInstance item(int index) native;
5855 } 5841 }
5856 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5842 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5857 // for details. All rights reserved. Use of this source code is governed by a 5843 // for details. All rights reserved. Use of this source code is governed by a
5858 // BSD-style license that can be found in the LICENSE file. 5844 // BSD-style license that can be found in the LICENSE file.
5859 5845
5860 5846
5861 @DocsEditable() 5847 @DocsEditable()
5862 @DomName('SVGGradientElement') 5848 @DomName('SVGGradientElement')
5863 @Unstable() 5849 @Unstable()
5864 class _GradientElement extends StyledElement implements UriReference, ExternalRe sourcesRequired native "SVGGradientElement" { 5850 class _GradientElement extends SvgElement implements UriReference, ExternalResou rcesRequired native "SVGGradientElement" {
5865 // To suppress missing implicit constructor warnings. 5851 // To suppress missing implicit constructor warnings.
5866 factory _GradientElement._() { throw new UnsupportedError("Not supported"); } 5852 factory _GradientElement._() { throw new UnsupportedError("Not supported"); }
5867 5853
5868 @DomName('SVGGradientElement.SVG_SPREADMETHOD_PAD') 5854 @DomName('SVGGradientElement.SVG_SPREADMETHOD_PAD')
5869 @DocsEditable() 5855 @DocsEditable()
5870 static const int SVG_SPREADMETHOD_PAD = 1; 5856 static const int SVG_SPREADMETHOD_PAD = 1;
5871 5857
5872 @DomName('SVGGradientElement.SVG_SPREADMETHOD_REFLECT') 5858 @DomName('SVGGradientElement.SVG_SPREADMETHOD_REFLECT')
5873 @DocsEditable() 5859 @DocsEditable()
5874 static const int SVG_SPREADMETHOD_REFLECT = 2; 5860 static const int SVG_SPREADMETHOD_REFLECT = 2;
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
5992 // From SVGURIReference 5978 // From SVGURIReference
5993 } 5979 }
5994 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5980 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5995 // for details. All rights reserved. Use of this source code is governed by a 5981 // for details. All rights reserved. Use of this source code is governed by a
5996 // BSD-style license that can be found in the LICENSE file. 5982 // BSD-style license that can be found in the LICENSE file.
5997 5983
5998 5984
5999 @DocsEditable() 5985 @DocsEditable()
6000 @DomName('SVGFEDropShadowElement') 5986 @DomName('SVGFEDropShadowElement')
6001 @Experimental() // nonstandard 5987 @Experimental() // nonstandard
6002 abstract class _SVGFEDropShadowElement extends StyledElement implements FilterPr imitiveStandardAttributes native "SVGFEDropShadowElement" { 5988 abstract class _SVGFEDropShadowElement extends SvgElement implements FilterPrimi tiveStandardAttributes native "SVGFEDropShadowElement" {
6003 // To suppress missing implicit constructor warnings. 5989 // To suppress missing implicit constructor warnings.
6004 factory _SVGFEDropShadowElement._() { throw new UnsupportedError("Not supporte d"); } 5990 factory _SVGFEDropShadowElement._() { throw new UnsupportedError("Not supporte d"); }
6005 5991
6006 // From SVGFilterPrimitiveStandardAttributes 5992 // From SVGFilterPrimitiveStandardAttributes
6007 } 5993 }
6008 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5994 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6009 // for details. All rights reserved. Use of this source code is governed by a 5995 // for details. All rights reserved. Use of this source code is governed by a
6010 // BSD-style license that can be found in the LICENSE file. 5996 // BSD-style license that can be found in the LICENSE file.
6011 5997
6012 5998
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
6094 factory _SVGGlyphElement() => _SvgElementFactoryProvider.createSvgElement_tag( "glyph"); 6080 factory _SVGGlyphElement() => _SvgElementFactoryProvider.createSvgElement_tag( "glyph");
6095 } 6081 }
6096 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6082 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6097 // for details. All rights reserved. Use of this source code is governed by a 6083 // for details. All rights reserved. Use of this source code is governed by a
6098 // BSD-style license that can be found in the LICENSE file. 6084 // BSD-style license that can be found in the LICENSE file.
6099 6085
6100 6086
6101 @DocsEditable() 6087 @DocsEditable()
6102 @DomName('SVGGlyphRefElement') 6088 @DomName('SVGGlyphRefElement')
6103 @Unstable() 6089 @Unstable()
6104 abstract class _SVGGlyphRefElement extends StyledElement implements UriReference native "SVGGlyphRefElement" { 6090 abstract class _SVGGlyphRefElement extends SvgElement implements UriReference na tive "SVGGlyphRefElement" {
6105 // To suppress missing implicit constructor warnings. 6091 // To suppress missing implicit constructor warnings.
6106 factory _SVGGlyphRefElement._() { throw new UnsupportedError("Not supported"); } 6092 factory _SVGGlyphRefElement._() { throw new UnsupportedError("Not supported"); }
6107 6093
6108 // From SVGURIReference 6094 // From SVGURIReference
6109 } 6095 }
6110 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6096 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6111 // for details. All rights reserved. Use of this source code is governed by a 6097 // for details. All rights reserved. Use of this source code is governed by a
6112 // BSD-style license that can be found in the LICENSE file. 6098 // BSD-style license that can be found in the LICENSE file.
6113 6099
6114 6100
(...skipping 28 matching lines...) Expand all
6143 // From SVGURIReference 6129 // From SVGURIReference
6144 } 6130 }
6145 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6131 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6146 // for details. All rights reserved. Use of this source code is governed by a 6132 // for details. All rights reserved. Use of this source code is governed by a
6147 // BSD-style license that can be found in the LICENSE file. 6133 // BSD-style license that can be found in the LICENSE file.
6148 6134
6149 6135
6150 @DocsEditable() 6136 @DocsEditable()
6151 @DomName('SVGMissingGlyphElement') 6137 @DomName('SVGMissingGlyphElement')
6152 @Unstable() 6138 @Unstable()
6153 abstract class _SVGMissingGlyphElement extends StyledElement native "SVGMissingG lyphElement" { 6139 abstract class _SVGMissingGlyphElement extends SvgElement native "SVGMissingGlyp hElement" {
6154 // To suppress missing implicit constructor warnings. 6140 // To suppress missing implicit constructor warnings.
6155 factory _SVGMissingGlyphElement._() { throw new UnsupportedError("Not supporte d"); } 6141 factory _SVGMissingGlyphElement._() { throw new UnsupportedError("Not supporte d"); }
6156 } 6142 }
6157 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6143 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6158 // for details. All rights reserved. Use of this source code is governed by a 6144 // for details. All rights reserved. Use of this source code is governed by a
6159 // BSD-style license that can be found in the LICENSE file. 6145 // BSD-style license that can be found in the LICENSE file.
6160 6146
6161 6147
6162 @DocsEditable() 6148 @DocsEditable()
6163 @DomName('SVGPaint') 6149 @DomName('SVGPaint')
(...skipping 29 matching lines...) Expand all
6193 @DomName('SVGVKernElement') 6179 @DomName('SVGVKernElement')
6194 @Unstable() 6180 @Unstable()
6195 abstract class _SVGVKernElement extends SvgElement native "SVGVKernElement" { 6181 abstract class _SVGVKernElement extends SvgElement native "SVGVKernElement" {
6196 // To suppress missing implicit constructor warnings. 6182 // To suppress missing implicit constructor warnings.
6197 factory _SVGVKernElement._() { throw new UnsupportedError("Not supported"); } 6183 factory _SVGVKernElement._() { throw new UnsupportedError("Not supported"); }
6198 6184
6199 @DomName('SVGVKernElement.SVGVKernElement') 6185 @DomName('SVGVKernElement.SVGVKernElement')
6200 @DocsEditable() 6186 @DocsEditable()
6201 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag( "vkern"); 6187 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag( "vkern");
6202 } 6188 }
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