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

Side by Side Diff: sdk/lib/svg/dartium/svg_dartium.dart

Issue 1583773003: Support JS$ prefix for dart and fix bug where _operator_getter and the [] operator were used incons… (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 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
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 331 matching lines...) Expand 10 before | Expand all | Expand 10 after
342 @DomName('SVGAElement.SVGAElement') 342 @DomName('SVGAElement.SVGAElement')
343 @DocsEditable() 343 @DocsEditable()
344 factory AElement() => _SvgElementFactoryProvider.createSvgElement_tag("a"); 344 factory AElement() => _SvgElementFactoryProvider.createSvgElement_tag("a");
345 345
346 346
347 @Deprecated("Internal Use Only") 347 @Deprecated("Internal Use Only")
348 static AElement internalCreateAElement() { 348 static AElement internalCreateAElement() {
349 return new AElement._internalWrap(); 349 return new AElement._internalWrap();
350 } 350 }
351 351
352 factory AElement._internalWrap() { 352 external factory AElement._internalWrap();
353 return new AElement.internal_();
354 }
355 353
356 @Deprecated("Internal Use Only") 354 @Deprecated("Internal Use Only")
357 AElement.internal_() : super.internal_(); 355 AElement.internal_() : super.internal_();
358 356
359 /** 357 /**
360 * Constructor instantiated by the DOM when a custom element has been created. 358 * Constructor instantiated by the DOM when a custom element has been created.
361 * 359 *
362 * This can only be called by subclasses from their created constructor. 360 * This can only be called by subclasses from their created constructor.
363 */ 361 */
364 AElement.created() : super.created(); 362 AElement.created() : super.created();
(...skipping 27 matching lines...) Expand all
392 @DomName('SVGAltGlyphElement.SVGAltGlyphElement') 390 @DomName('SVGAltGlyphElement.SVGAltGlyphElement')
393 @DocsEditable() 391 @DocsEditable()
394 factory AltGlyphElement() => _SvgElementFactoryProvider.createSvgElement_tag(" altGlyph"); 392 factory AltGlyphElement() => _SvgElementFactoryProvider.createSvgElement_tag(" altGlyph");
395 393
396 394
397 @Deprecated("Internal Use Only") 395 @Deprecated("Internal Use Only")
398 static AltGlyphElement internalCreateAltGlyphElement() { 396 static AltGlyphElement internalCreateAltGlyphElement() {
399 return new AltGlyphElement._internalWrap(); 397 return new AltGlyphElement._internalWrap();
400 } 398 }
401 399
402 factory AltGlyphElement._internalWrap() { 400 external factory AltGlyphElement._internalWrap();
403 return new AltGlyphElement.internal_();
404 }
405 401
406 @Deprecated("Internal Use Only") 402 @Deprecated("Internal Use Only")
407 AltGlyphElement.internal_() : super.internal_(); 403 AltGlyphElement.internal_() : super.internal_();
408 404
409 /** 405 /**
410 * Constructor instantiated by the DOM when a custom element has been created. 406 * Constructor instantiated by the DOM when a custom element has been created.
411 * 407 *
412 * This can only be called by subclasses from their created constructor. 408 * This can only be called by subclasses from their created constructor.
413 */ 409 */
414 AltGlyphElement.created() : super.created(); 410 AltGlyphElement.created() : super.created();
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
543 @DomName('SVGAnimateElement.SVGAnimateElement') 539 @DomName('SVGAnimateElement.SVGAnimateElement')
544 @DocsEditable() 540 @DocsEditable()
545 factory AnimateElement() => _SvgElementFactoryProvider.createSvgElement_tag("a nimate"); 541 factory AnimateElement() => _SvgElementFactoryProvider.createSvgElement_tag("a nimate");
546 542
547 543
548 @Deprecated("Internal Use Only") 544 @Deprecated("Internal Use Only")
549 static AnimateElement internalCreateAnimateElement() { 545 static AnimateElement internalCreateAnimateElement() {
550 return new AnimateElement._internalWrap(); 546 return new AnimateElement._internalWrap();
551 } 547 }
552 548
553 factory AnimateElement._internalWrap() { 549 external factory AnimateElement._internalWrap();
554 return new AnimateElement.internal_();
555 }
556 550
557 @Deprecated("Internal Use Only") 551 @Deprecated("Internal Use Only")
558 AnimateElement.internal_() : super.internal_(); 552 AnimateElement.internal_() : super.internal_();
559 553
560 /** 554 /**
561 * Constructor instantiated by the DOM when a custom element has been created. 555 * Constructor instantiated by the DOM when a custom element has been created.
562 * 556 *
563 * This can only be called by subclasses from their created constructor. 557 * This can only be called by subclasses from their created constructor.
564 */ 558 */
565 AnimateElement.created() : super.created(); 559 AnimateElement.created() : super.created();
(...skipping 22 matching lines...) Expand all
588 @DomName('SVGAnimateMotionElement.SVGAnimateMotionElement') 582 @DomName('SVGAnimateMotionElement.SVGAnimateMotionElement')
589 @DocsEditable() 583 @DocsEditable()
590 factory AnimateMotionElement() => _SvgElementFactoryProvider.createSvgElement_ tag("animateMotion"); 584 factory AnimateMotionElement() => _SvgElementFactoryProvider.createSvgElement_ tag("animateMotion");
591 585
592 586
593 @Deprecated("Internal Use Only") 587 @Deprecated("Internal Use Only")
594 static AnimateMotionElement internalCreateAnimateMotionElement() { 588 static AnimateMotionElement internalCreateAnimateMotionElement() {
595 return new AnimateMotionElement._internalWrap(); 589 return new AnimateMotionElement._internalWrap();
596 } 590 }
597 591
598 factory AnimateMotionElement._internalWrap() { 592 external factory AnimateMotionElement._internalWrap();
599 return new AnimateMotionElement.internal_();
600 }
601 593
602 @Deprecated("Internal Use Only") 594 @Deprecated("Internal Use Only")
603 AnimateMotionElement.internal_() : super.internal_(); 595 AnimateMotionElement.internal_() : super.internal_();
604 596
605 /** 597 /**
606 * Constructor instantiated by the DOM when a custom element has been created. 598 * Constructor instantiated by the DOM when a custom element has been created.
607 * 599 *
608 * This can only be called by subclasses from their created constructor. 600 * This can only be called by subclasses from their created constructor.
609 */ 601 */
610 AnimateMotionElement.created() : super.created(); 602 AnimateMotionElement.created() : super.created();
(...skipping 22 matching lines...) Expand all
633 @DomName('SVGAnimateTransformElement.SVGAnimateTransformElement') 625 @DomName('SVGAnimateTransformElement.SVGAnimateTransformElement')
634 @DocsEditable() 626 @DocsEditable()
635 factory AnimateTransformElement() => _SvgElementFactoryProvider.createSvgEleme nt_tag("animateTransform"); 627 factory AnimateTransformElement() => _SvgElementFactoryProvider.createSvgEleme nt_tag("animateTransform");
636 628
637 629
638 @Deprecated("Internal Use Only") 630 @Deprecated("Internal Use Only")
639 static AnimateTransformElement internalCreateAnimateTransformElement() { 631 static AnimateTransformElement internalCreateAnimateTransformElement() {
640 return new AnimateTransformElement._internalWrap(); 632 return new AnimateTransformElement._internalWrap();
641 } 633 }
642 634
643 factory AnimateTransformElement._internalWrap() { 635 external factory AnimateTransformElement._internalWrap();
644 return new AnimateTransformElement.internal_();
645 }
646 636
647 @Deprecated("Internal Use Only") 637 @Deprecated("Internal Use Only")
648 AnimateTransformElement.internal_() : super.internal_(); 638 AnimateTransformElement.internal_() : super.internal_();
649 639
650 /** 640 /**
651 * Constructor instantiated by the DOM when a custom element has been created. 641 * Constructor instantiated by the DOM when a custom element has been created.
652 * 642 *
653 * This can only be called by subclasses from their created constructor. 643 * This can only be called by subclasses from their created constructor.
654 */ 644 */
655 AnimateTransformElement.created() : super.created(); 645 AnimateTransformElement.created() : super.created();
(...skipping 495 matching lines...) Expand 10 before | Expand all | Expand 10 after
1151 @DomName('SVGAnimationElement.SVGAnimationElement') 1141 @DomName('SVGAnimationElement.SVGAnimationElement')
1152 @DocsEditable() 1142 @DocsEditable()
1153 factory AnimationElement() => _SvgElementFactoryProvider.createSvgElement_tag( "animation"); 1143 factory AnimationElement() => _SvgElementFactoryProvider.createSvgElement_tag( "animation");
1154 1144
1155 1145
1156 @Deprecated("Internal Use Only") 1146 @Deprecated("Internal Use Only")
1157 static AnimationElement internalCreateAnimationElement() { 1147 static AnimationElement internalCreateAnimationElement() {
1158 return new AnimationElement._internalWrap(); 1148 return new AnimationElement._internalWrap();
1159 } 1149 }
1160 1150
1161 factory AnimationElement._internalWrap() { 1151 external factory AnimationElement._internalWrap();
1162 return new AnimationElement.internal_();
1163 }
1164 1152
1165 @Deprecated("Internal Use Only") 1153 @Deprecated("Internal Use Only")
1166 AnimationElement.internal_() : super.internal_(); 1154 AnimationElement.internal_() : super.internal_();
1167 1155
1168 /** 1156 /**
1169 * Constructor instantiated by the DOM when a custom element has been created. 1157 * Constructor instantiated by the DOM when a custom element has been created.
1170 * 1158 *
1171 * This can only be called by subclasses from their created constructor. 1159 * This can only be called by subclasses from their created constructor.
1172 */ 1160 */
1173 AnimationElement.created() : super.created(); 1161 AnimationElement.created() : super.created();
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
1238 @DomName('SVGCircleElement.SVGCircleElement') 1226 @DomName('SVGCircleElement.SVGCircleElement')
1239 @DocsEditable() 1227 @DocsEditable()
1240 factory CircleElement() => _SvgElementFactoryProvider.createSvgElement_tag("ci rcle"); 1228 factory CircleElement() => _SvgElementFactoryProvider.createSvgElement_tag("ci rcle");
1241 1229
1242 1230
1243 @Deprecated("Internal Use Only") 1231 @Deprecated("Internal Use Only")
1244 static CircleElement internalCreateCircleElement() { 1232 static CircleElement internalCreateCircleElement() {
1245 return new CircleElement._internalWrap(); 1233 return new CircleElement._internalWrap();
1246 } 1234 }
1247 1235
1248 factory CircleElement._internalWrap() { 1236 external factory CircleElement._internalWrap();
1249 return new CircleElement.internal_();
1250 }
1251 1237
1252 @Deprecated("Internal Use Only") 1238 @Deprecated("Internal Use Only")
1253 CircleElement.internal_() : super.internal_(); 1239 CircleElement.internal_() : super.internal_();
1254 1240
1255 /** 1241 /**
1256 * Constructor instantiated by the DOM when a custom element has been created. 1242 * Constructor instantiated by the DOM when a custom element has been created.
1257 * 1243 *
1258 * This can only be called by subclasses from their created constructor. 1244 * This can only be called by subclasses from their created constructor.
1259 */ 1245 */
1260 CircleElement.created() : super.created(); 1246 CircleElement.created() : super.created();
(...skipping 28 matching lines...) Expand all
1289 @DomName('SVGClipPathElement.SVGClipPathElement') 1275 @DomName('SVGClipPathElement.SVGClipPathElement')
1290 @DocsEditable() 1276 @DocsEditable()
1291 factory ClipPathElement() => _SvgElementFactoryProvider.createSvgElement_tag(" clipPath"); 1277 factory ClipPathElement() => _SvgElementFactoryProvider.createSvgElement_tag(" clipPath");
1292 1278
1293 1279
1294 @Deprecated("Internal Use Only") 1280 @Deprecated("Internal Use Only")
1295 static ClipPathElement internalCreateClipPathElement() { 1281 static ClipPathElement internalCreateClipPathElement() {
1296 return new ClipPathElement._internalWrap(); 1282 return new ClipPathElement._internalWrap();
1297 } 1283 }
1298 1284
1299 factory ClipPathElement._internalWrap() { 1285 external factory ClipPathElement._internalWrap();
1300 return new ClipPathElement.internal_();
1301 }
1302 1286
1303 @Deprecated("Internal Use Only") 1287 @Deprecated("Internal Use Only")
1304 ClipPathElement.internal_() : super.internal_(); 1288 ClipPathElement.internal_() : super.internal_();
1305 1289
1306 /** 1290 /**
1307 * Constructor instantiated by the DOM when a custom element has been created. 1291 * Constructor instantiated by the DOM when a custom element has been created.
1308 * 1292 *
1309 * This can only be called by subclasses from their created constructor. 1293 * This can only be called by subclasses from their created constructor.
1310 */ 1294 */
1311 ClipPathElement.created() : super.created(); 1295 ClipPathElement.created() : super.created();
(...skipping 20 matching lines...) Expand all
1332 @DomName('SVGDefsElement.SVGDefsElement') 1316 @DomName('SVGDefsElement.SVGDefsElement')
1333 @DocsEditable() 1317 @DocsEditable()
1334 factory DefsElement() => _SvgElementFactoryProvider.createSvgElement_tag("defs "); 1318 factory DefsElement() => _SvgElementFactoryProvider.createSvgElement_tag("defs ");
1335 1319
1336 1320
1337 @Deprecated("Internal Use Only") 1321 @Deprecated("Internal Use Only")
1338 static DefsElement internalCreateDefsElement() { 1322 static DefsElement internalCreateDefsElement() {
1339 return new DefsElement._internalWrap(); 1323 return new DefsElement._internalWrap();
1340 } 1324 }
1341 1325
1342 factory DefsElement._internalWrap() { 1326 external factory DefsElement._internalWrap();
1343 return new DefsElement.internal_();
1344 }
1345 1327
1346 @Deprecated("Internal Use Only") 1328 @Deprecated("Internal Use Only")
1347 DefsElement.internal_() : super.internal_(); 1329 DefsElement.internal_() : super.internal_();
1348 1330
1349 /** 1331 /**
1350 * Constructor instantiated by the DOM when a custom element has been created. 1332 * Constructor instantiated by the DOM when a custom element has been created.
1351 * 1333 *
1352 * This can only be called by subclasses from their created constructor. 1334 * This can only be called by subclasses from their created constructor.
1353 */ 1335 */
1354 DefsElement.created() : super.created(); 1336 DefsElement.created() : super.created();
(...skipping 16 matching lines...) Expand all
1371 @DomName('SVGDescElement.SVGDescElement') 1353 @DomName('SVGDescElement.SVGDescElement')
1372 @DocsEditable() 1354 @DocsEditable()
1373 factory DescElement() => _SvgElementFactoryProvider.createSvgElement_tag("desc "); 1355 factory DescElement() => _SvgElementFactoryProvider.createSvgElement_tag("desc ");
1374 1356
1375 1357
1376 @Deprecated("Internal Use Only") 1358 @Deprecated("Internal Use Only")
1377 static DescElement internalCreateDescElement() { 1359 static DescElement internalCreateDescElement() {
1378 return new DescElement._internalWrap(); 1360 return new DescElement._internalWrap();
1379 } 1361 }
1380 1362
1381 factory DescElement._internalWrap() { 1363 external factory DescElement._internalWrap();
1382 return new DescElement.internal_();
1383 }
1384 1364
1385 @Deprecated("Internal Use Only") 1365 @Deprecated("Internal Use Only")
1386 DescElement.internal_() : super.internal_(); 1366 DescElement.internal_() : super.internal_();
1387 1367
1388 /** 1368 /**
1389 * Constructor instantiated by the DOM when a custom element has been created. 1369 * Constructor instantiated by the DOM when a custom element has been created.
1390 * 1370 *
1391 * This can only be called by subclasses from their created constructor. 1371 * This can only be called by subclasses from their created constructor.
1392 */ 1372 */
1393 DescElement.created() : super.created(); 1373 DescElement.created() : super.created();
(...skipping 12 matching lines...) Expand all
1406 class DiscardElement extends SvgElement { 1386 class DiscardElement extends SvgElement {
1407 // To suppress missing implicit constructor warnings. 1387 // To suppress missing implicit constructor warnings.
1408 factory DiscardElement._() { throw new UnsupportedError("Not supported"); } 1388 factory DiscardElement._() { throw new UnsupportedError("Not supported"); }
1409 1389
1410 1390
1411 @Deprecated("Internal Use Only") 1391 @Deprecated("Internal Use Only")
1412 static DiscardElement internalCreateDiscardElement() { 1392 static DiscardElement internalCreateDiscardElement() {
1413 return new DiscardElement._internalWrap(); 1393 return new DiscardElement._internalWrap();
1414 } 1394 }
1415 1395
1416 factory DiscardElement._internalWrap() { 1396 external factory DiscardElement._internalWrap();
1417 return new DiscardElement.internal_();
1418 }
1419 1397
1420 @Deprecated("Internal Use Only") 1398 @Deprecated("Internal Use Only")
1421 DiscardElement.internal_() : super.internal_(); 1399 DiscardElement.internal_() : super.internal_();
1422 1400
1423 /** 1401 /**
1424 * Constructor instantiated by the DOM when a custom element has been created. 1402 * Constructor instantiated by the DOM when a custom element has been created.
1425 * 1403 *
1426 * This can only be called by subclasses from their created constructor. 1404 * This can only be called by subclasses from their created constructor.
1427 */ 1405 */
1428 DiscardElement.created() : super.created(); 1406 DiscardElement.created() : super.created();
(...skipping 16 matching lines...) Expand all
1445 @DomName('SVGEllipseElement.SVGEllipseElement') 1423 @DomName('SVGEllipseElement.SVGEllipseElement')
1446 @DocsEditable() 1424 @DocsEditable()
1447 factory EllipseElement() => _SvgElementFactoryProvider.createSvgElement_tag("e llipse"); 1425 factory EllipseElement() => _SvgElementFactoryProvider.createSvgElement_tag("e llipse");
1448 1426
1449 1427
1450 @Deprecated("Internal Use Only") 1428 @Deprecated("Internal Use Only")
1451 static EllipseElement internalCreateEllipseElement() { 1429 static EllipseElement internalCreateEllipseElement() {
1452 return new EllipseElement._internalWrap(); 1430 return new EllipseElement._internalWrap();
1453 } 1431 }
1454 1432
1455 factory EllipseElement._internalWrap() { 1433 external factory EllipseElement._internalWrap();
1456 return new EllipseElement.internal_();
1457 }
1458 1434
1459 @Deprecated("Internal Use Only") 1435 @Deprecated("Internal Use Only")
1460 EllipseElement.internal_() : super.internal_(); 1436 EllipseElement.internal_() : super.internal_();
1461 1437
1462 /** 1438 /**
1463 * Constructor instantiated by the DOM when a custom element has been created. 1439 * Constructor instantiated by the DOM when a custom element has been created.
1464 * 1440 *
1465 * This can only be called by subclasses from their created constructor. 1441 * This can only be called by subclasses from their created constructor.
1466 */ 1442 */
1467 EllipseElement.created() : super.created(); 1443 EllipseElement.created() : super.created();
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
1504 @DomName('SVGFEBlendElement.SVGFEBlendElement') 1480 @DomName('SVGFEBlendElement.SVGFEBlendElement')
1505 @DocsEditable() 1481 @DocsEditable()
1506 factory FEBlendElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eBlend"); 1482 factory FEBlendElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eBlend");
1507 1483
1508 1484
1509 @Deprecated("Internal Use Only") 1485 @Deprecated("Internal Use Only")
1510 static FEBlendElement internalCreateFEBlendElement() { 1486 static FEBlendElement internalCreateFEBlendElement() {
1511 return new FEBlendElement._internalWrap(); 1487 return new FEBlendElement._internalWrap();
1512 } 1488 }
1513 1489
1514 factory FEBlendElement._internalWrap() { 1490 external factory FEBlendElement._internalWrap();
1515 return new FEBlendElement.internal_();
1516 }
1517 1491
1518 @Deprecated("Internal Use Only") 1492 @Deprecated("Internal Use Only")
1519 FEBlendElement.internal_() : super.internal_(); 1493 FEBlendElement.internal_() : super.internal_();
1520 1494
1521 /** 1495 /**
1522 * Constructor instantiated by the DOM when a custom element has been created. 1496 * Constructor instantiated by the DOM when a custom element has been created.
1523 * 1497 *
1524 * This can only be called by subclasses from their created constructor. 1498 * This can only be called by subclasses from their created constructor.
1525 */ 1499 */
1526 FEBlendElement.created() : super.created(); 1500 FEBlendElement.created() : super.created();
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
1606 @DomName('SVGFEColorMatrixElement.SVGFEColorMatrixElement') 1580 @DomName('SVGFEColorMatrixElement.SVGFEColorMatrixElement')
1607 @DocsEditable() 1581 @DocsEditable()
1608 factory FEColorMatrixElement() => _SvgElementFactoryProvider.createSvgElement_ tag("feColorMatrix"); 1582 factory FEColorMatrixElement() => _SvgElementFactoryProvider.createSvgElement_ tag("feColorMatrix");
1609 1583
1610 1584
1611 @Deprecated("Internal Use Only") 1585 @Deprecated("Internal Use Only")
1612 static FEColorMatrixElement internalCreateFEColorMatrixElement() { 1586 static FEColorMatrixElement internalCreateFEColorMatrixElement() {
1613 return new FEColorMatrixElement._internalWrap(); 1587 return new FEColorMatrixElement._internalWrap();
1614 } 1588 }
1615 1589
1616 factory FEColorMatrixElement._internalWrap() { 1590 external factory FEColorMatrixElement._internalWrap();
1617 return new FEColorMatrixElement.internal_();
1618 }
1619 1591
1620 @Deprecated("Internal Use Only") 1592 @Deprecated("Internal Use Only")
1621 FEColorMatrixElement.internal_() : super.internal_(); 1593 FEColorMatrixElement.internal_() : super.internal_();
1622 1594
1623 /** 1595 /**
1624 * Constructor instantiated by the DOM when a custom element has been created. 1596 * Constructor instantiated by the DOM when a custom element has been created.
1625 * 1597 *
1626 * This can only be called by subclasses from their created constructor. 1598 * This can only be called by subclasses from their created constructor.
1627 */ 1599 */
1628 FEColorMatrixElement.created() : super.created(); 1600 FEColorMatrixElement.created() : super.created();
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
1704 @DomName('SVGFEComponentTransferElement.SVGFEComponentTransferElement') 1676 @DomName('SVGFEComponentTransferElement.SVGFEComponentTransferElement')
1705 @DocsEditable() 1677 @DocsEditable()
1706 factory FEComponentTransferElement() => _SvgElementFactoryProvider.createSvgEl ement_tag("feComponentTransfer"); 1678 factory FEComponentTransferElement() => _SvgElementFactoryProvider.createSvgEl ement_tag("feComponentTransfer");
1707 1679
1708 1680
1709 @Deprecated("Internal Use Only") 1681 @Deprecated("Internal Use Only")
1710 static FEComponentTransferElement internalCreateFEComponentTransferElement() { 1682 static FEComponentTransferElement internalCreateFEComponentTransferElement() {
1711 return new FEComponentTransferElement._internalWrap(); 1683 return new FEComponentTransferElement._internalWrap();
1712 } 1684 }
1713 1685
1714 factory FEComponentTransferElement._internalWrap() { 1686 external factory FEComponentTransferElement._internalWrap();
1715 return new FEComponentTransferElement.internal_();
1716 }
1717 1687
1718 @Deprecated("Internal Use Only") 1688 @Deprecated("Internal Use Only")
1719 FEComponentTransferElement.internal_() : super.internal_(); 1689 FEComponentTransferElement.internal_() : super.internal_();
1720 1690
1721 /** 1691 /**
1722 * Constructor instantiated by the DOM when a custom element has been created. 1692 * Constructor instantiated by the DOM when a custom element has been created.
1723 * 1693 *
1724 * This can only be called by subclasses from their created constructor. 1694 * This can only be called by subclasses from their created constructor.
1725 */ 1695 */
1726 FEComponentTransferElement.created() : super.created(); 1696 FEComponentTransferElement.created() : super.created();
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
1766 class FECompositeElement extends SvgElement implements FilterPrimitiveStandardAt tributes { 1736 class FECompositeElement extends SvgElement implements FilterPrimitiveStandardAt tributes {
1767 // To suppress missing implicit constructor warnings. 1737 // To suppress missing implicit constructor warnings.
1768 factory FECompositeElement._() { throw new UnsupportedError("Not supported"); } 1738 factory FECompositeElement._() { throw new UnsupportedError("Not supported"); }
1769 1739
1770 1740
1771 @Deprecated("Internal Use Only") 1741 @Deprecated("Internal Use Only")
1772 static FECompositeElement internalCreateFECompositeElement() { 1742 static FECompositeElement internalCreateFECompositeElement() {
1773 return new FECompositeElement._internalWrap(); 1743 return new FECompositeElement._internalWrap();
1774 } 1744 }
1775 1745
1776 factory FECompositeElement._internalWrap() { 1746 external factory FECompositeElement._internalWrap();
1777 return new FECompositeElement.internal_();
1778 }
1779 1747
1780 @Deprecated("Internal Use Only") 1748 @Deprecated("Internal Use Only")
1781 FECompositeElement.internal_() : super.internal_(); 1749 FECompositeElement.internal_() : super.internal_();
1782 1750
1783 /** 1751 /**
1784 * Constructor instantiated by the DOM when a custom element has been created. 1752 * Constructor instantiated by the DOM when a custom element has been created.
1785 * 1753 *
1786 * This can only be called by subclasses from their created constructor. 1754 * This can only be called by subclasses from their created constructor.
1787 */ 1755 */
1788 FECompositeElement.created() : super.created(); 1756 FECompositeElement.created() : super.created();
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
1885 @DomName('SVGFEConvolveMatrixElement.SVGFEConvolveMatrixElement') 1853 @DomName('SVGFEConvolveMatrixElement.SVGFEConvolveMatrixElement')
1886 @DocsEditable() 1854 @DocsEditable()
1887 factory FEConvolveMatrixElement() => _SvgElementFactoryProvider.createSvgEleme nt_tag("feConvolveMatrix"); 1855 factory FEConvolveMatrixElement() => _SvgElementFactoryProvider.createSvgEleme nt_tag("feConvolveMatrix");
1888 1856
1889 1857
1890 @Deprecated("Internal Use Only") 1858 @Deprecated("Internal Use Only")
1891 static FEConvolveMatrixElement internalCreateFEConvolveMatrixElement() { 1859 static FEConvolveMatrixElement internalCreateFEConvolveMatrixElement() {
1892 return new FEConvolveMatrixElement._internalWrap(); 1860 return new FEConvolveMatrixElement._internalWrap();
1893 } 1861 }
1894 1862
1895 factory FEConvolveMatrixElement._internalWrap() { 1863 external factory FEConvolveMatrixElement._internalWrap();
1896 return new FEConvolveMatrixElement.internal_();
1897 }
1898 1864
1899 @Deprecated("Internal Use Only") 1865 @Deprecated("Internal Use Only")
1900 FEConvolveMatrixElement.internal_() : super.internal_(); 1866 FEConvolveMatrixElement.internal_() : super.internal_();
1901 1867
1902 /** 1868 /**
1903 * Constructor instantiated by the DOM when a custom element has been created. 1869 * Constructor instantiated by the DOM when a custom element has been created.
1904 * 1870 *
1905 * This can only be called by subclasses from their created constructor. 1871 * This can only be called by subclasses from their created constructor.
1906 */ 1872 */
1907 FEConvolveMatrixElement.created() : super.created(); 1873 FEConvolveMatrixElement.created() : super.created();
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
2015 @DomName('SVGFEDiffuseLightingElement.SVGFEDiffuseLightingElement') 1981 @DomName('SVGFEDiffuseLightingElement.SVGFEDiffuseLightingElement')
2016 @DocsEditable() 1982 @DocsEditable()
2017 factory FEDiffuseLightingElement() => _SvgElementFactoryProvider.createSvgElem ent_tag("feDiffuseLighting"); 1983 factory FEDiffuseLightingElement() => _SvgElementFactoryProvider.createSvgElem ent_tag("feDiffuseLighting");
2018 1984
2019 1985
2020 @Deprecated("Internal Use Only") 1986 @Deprecated("Internal Use Only")
2021 static FEDiffuseLightingElement internalCreateFEDiffuseLightingElement() { 1987 static FEDiffuseLightingElement internalCreateFEDiffuseLightingElement() {
2022 return new FEDiffuseLightingElement._internalWrap(); 1988 return new FEDiffuseLightingElement._internalWrap();
2023 } 1989 }
2024 1990
2025 factory FEDiffuseLightingElement._internalWrap() { 1991 external factory FEDiffuseLightingElement._internalWrap();
2026 return new FEDiffuseLightingElement.internal_();
2027 }
2028 1992
2029 @Deprecated("Internal Use Only") 1993 @Deprecated("Internal Use Only")
2030 FEDiffuseLightingElement.internal_() : super.internal_(); 1994 FEDiffuseLightingElement.internal_() : super.internal_();
2031 1995
2032 /** 1996 /**
2033 * Constructor instantiated by the DOM when a custom element has been created. 1997 * Constructor instantiated by the DOM when a custom element has been created.
2034 * 1998 *
2035 * This can only be called by subclasses from their created constructor. 1999 * This can only be called by subclasses from their created constructor.
2036 */ 2000 */
2037 FEDiffuseLightingElement.created() : super.created(); 2001 FEDiffuseLightingElement.created() : super.created();
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
2101 @DomName('SVGFEDisplacementMapElement.SVGFEDisplacementMapElement') 2065 @DomName('SVGFEDisplacementMapElement.SVGFEDisplacementMapElement')
2102 @DocsEditable() 2066 @DocsEditable()
2103 factory FEDisplacementMapElement() => _SvgElementFactoryProvider.createSvgElem ent_tag("feDisplacementMap"); 2067 factory FEDisplacementMapElement() => _SvgElementFactoryProvider.createSvgElem ent_tag("feDisplacementMap");
2104 2068
2105 2069
2106 @Deprecated("Internal Use Only") 2070 @Deprecated("Internal Use Only")
2107 static FEDisplacementMapElement internalCreateFEDisplacementMapElement() { 2071 static FEDisplacementMapElement internalCreateFEDisplacementMapElement() {
2108 return new FEDisplacementMapElement._internalWrap(); 2072 return new FEDisplacementMapElement._internalWrap();
2109 } 2073 }
2110 2074
2111 factory FEDisplacementMapElement._internalWrap() { 2075 external factory FEDisplacementMapElement._internalWrap();
2112 return new FEDisplacementMapElement.internal_();
2113 }
2114 2076
2115 @Deprecated("Internal Use Only") 2077 @Deprecated("Internal Use Only")
2116 FEDisplacementMapElement.internal_() : super.internal_(); 2078 FEDisplacementMapElement.internal_() : super.internal_();
2117 2079
2118 /** 2080 /**
2119 * Constructor instantiated by the DOM when a custom element has been created. 2081 * Constructor instantiated by the DOM when a custom element has been created.
2120 * 2082 *
2121 * This can only be called by subclasses from their created constructor. 2083 * This can only be called by subclasses from their created constructor.
2122 */ 2084 */
2123 FEDisplacementMapElement.created() : super.created(); 2085 FEDisplacementMapElement.created() : super.created();
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
2207 @DomName('SVGFEDistantLightElement.SVGFEDistantLightElement') 2169 @DomName('SVGFEDistantLightElement.SVGFEDistantLightElement')
2208 @DocsEditable() 2170 @DocsEditable()
2209 factory FEDistantLightElement() => _SvgElementFactoryProvider.createSvgElement _tag("feDistantLight"); 2171 factory FEDistantLightElement() => _SvgElementFactoryProvider.createSvgElement _tag("feDistantLight");
2210 2172
2211 2173
2212 @Deprecated("Internal Use Only") 2174 @Deprecated("Internal Use Only")
2213 static FEDistantLightElement internalCreateFEDistantLightElement() { 2175 static FEDistantLightElement internalCreateFEDistantLightElement() {
2214 return new FEDistantLightElement._internalWrap(); 2176 return new FEDistantLightElement._internalWrap();
2215 } 2177 }
2216 2178
2217 factory FEDistantLightElement._internalWrap() { 2179 external factory FEDistantLightElement._internalWrap();
2218 return new FEDistantLightElement.internal_();
2219 }
2220 2180
2221 @Deprecated("Internal Use Only") 2181 @Deprecated("Internal Use Only")
2222 FEDistantLightElement.internal_() : super.internal_(); 2182 FEDistantLightElement.internal_() : super.internal_();
2223 2183
2224 /** 2184 /**
2225 * Constructor instantiated by the DOM when a custom element has been created. 2185 * Constructor instantiated by the DOM when a custom element has been created.
2226 * 2186 *
2227 * This can only be called by subclasses from their created constructor. 2187 * This can only be called by subclasses from their created constructor.
2228 */ 2188 */
2229 FEDistantLightElement.created() : super.created(); 2189 FEDistantLightElement.created() : super.created();
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
2261 @DomName('SVGFEFloodElement.SVGFEFloodElement') 2221 @DomName('SVGFEFloodElement.SVGFEFloodElement')
2262 @DocsEditable() 2222 @DocsEditable()
2263 factory FEFloodElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eFlood"); 2223 factory FEFloodElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eFlood");
2264 2224
2265 2225
2266 @Deprecated("Internal Use Only") 2226 @Deprecated("Internal Use Only")
2267 static FEFloodElement internalCreateFEFloodElement() { 2227 static FEFloodElement internalCreateFEFloodElement() {
2268 return new FEFloodElement._internalWrap(); 2228 return new FEFloodElement._internalWrap();
2269 } 2229 }
2270 2230
2271 factory FEFloodElement._internalWrap() { 2231 external factory FEFloodElement._internalWrap();
2272 return new FEFloodElement.internal_();
2273 }
2274 2232
2275 @Deprecated("Internal Use Only") 2233 @Deprecated("Internal Use Only")
2276 FEFloodElement.internal_() : super.internal_(); 2234 FEFloodElement.internal_() : super.internal_();
2277 2235
2278 /** 2236 /**
2279 * Constructor instantiated by the DOM when a custom element has been created. 2237 * Constructor instantiated by the DOM when a custom element has been created.
2280 * 2238 *
2281 * This can only be called by subclasses from their created constructor. 2239 * This can only be called by subclasses from their created constructor.
2282 */ 2240 */
2283 FEFloodElement.created() : super.created(); 2241 FEFloodElement.created() : super.created();
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
2327 @DomName('SVGFEFuncAElement.SVGFEFuncAElement') 2285 @DomName('SVGFEFuncAElement.SVGFEFuncAElement')
2328 @DocsEditable() 2286 @DocsEditable()
2329 factory FEFuncAElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eFuncA"); 2287 factory FEFuncAElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eFuncA");
2330 2288
2331 2289
2332 @Deprecated("Internal Use Only") 2290 @Deprecated("Internal Use Only")
2333 static FEFuncAElement internalCreateFEFuncAElement() { 2291 static FEFuncAElement internalCreateFEFuncAElement() {
2334 return new FEFuncAElement._internalWrap(); 2292 return new FEFuncAElement._internalWrap();
2335 } 2293 }
2336 2294
2337 factory FEFuncAElement._internalWrap() { 2295 external factory FEFuncAElement._internalWrap();
2338 return new FEFuncAElement.internal_();
2339 }
2340 2296
2341 @Deprecated("Internal Use Only") 2297 @Deprecated("Internal Use Only")
2342 FEFuncAElement.internal_() : super.internal_(); 2298 FEFuncAElement.internal_() : super.internal_();
2343 2299
2344 /** 2300 /**
2345 * Constructor instantiated by the DOM when a custom element has been created. 2301 * Constructor instantiated by the DOM when a custom element has been created.
2346 * 2302 *
2347 * This can only be called by subclasses from their created constructor. 2303 * This can only be called by subclasses from their created constructor.
2348 */ 2304 */
2349 FEFuncAElement.created() : super.created(); 2305 FEFuncAElement.created() : super.created();
(...skipping 23 matching lines...) Expand all
2373 @DomName('SVGFEFuncBElement.SVGFEFuncBElement') 2329 @DomName('SVGFEFuncBElement.SVGFEFuncBElement')
2374 @DocsEditable() 2330 @DocsEditable()
2375 factory FEFuncBElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eFuncB"); 2331 factory FEFuncBElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eFuncB");
2376 2332
2377 2333
2378 @Deprecated("Internal Use Only") 2334 @Deprecated("Internal Use Only")
2379 static FEFuncBElement internalCreateFEFuncBElement() { 2335 static FEFuncBElement internalCreateFEFuncBElement() {
2380 return new FEFuncBElement._internalWrap(); 2336 return new FEFuncBElement._internalWrap();
2381 } 2337 }
2382 2338
2383 factory FEFuncBElement._internalWrap() { 2339 external factory FEFuncBElement._internalWrap();
2384 return new FEFuncBElement.internal_();
2385 }
2386 2340
2387 @Deprecated("Internal Use Only") 2341 @Deprecated("Internal Use Only")
2388 FEFuncBElement.internal_() : super.internal_(); 2342 FEFuncBElement.internal_() : super.internal_();
2389 2343
2390 /** 2344 /**
2391 * Constructor instantiated by the DOM when a custom element has been created. 2345 * Constructor instantiated by the DOM when a custom element has been created.
2392 * 2346 *
2393 * This can only be called by subclasses from their created constructor. 2347 * This can only be called by subclasses from their created constructor.
2394 */ 2348 */
2395 FEFuncBElement.created() : super.created(); 2349 FEFuncBElement.created() : super.created();
(...skipping 23 matching lines...) Expand all
2419 @DomName('SVGFEFuncGElement.SVGFEFuncGElement') 2373 @DomName('SVGFEFuncGElement.SVGFEFuncGElement')
2420 @DocsEditable() 2374 @DocsEditable()
2421 factory FEFuncGElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eFuncG"); 2375 factory FEFuncGElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eFuncG");
2422 2376
2423 2377
2424 @Deprecated("Internal Use Only") 2378 @Deprecated("Internal Use Only")
2425 static FEFuncGElement internalCreateFEFuncGElement() { 2379 static FEFuncGElement internalCreateFEFuncGElement() {
2426 return new FEFuncGElement._internalWrap(); 2380 return new FEFuncGElement._internalWrap();
2427 } 2381 }
2428 2382
2429 factory FEFuncGElement._internalWrap() { 2383 external factory FEFuncGElement._internalWrap();
2430 return new FEFuncGElement.internal_();
2431 }
2432 2384
2433 @Deprecated("Internal Use Only") 2385 @Deprecated("Internal Use Only")
2434 FEFuncGElement.internal_() : super.internal_(); 2386 FEFuncGElement.internal_() : super.internal_();
2435 2387
2436 /** 2388 /**
2437 * Constructor instantiated by the DOM when a custom element has been created. 2389 * Constructor instantiated by the DOM when a custom element has been created.
2438 * 2390 *
2439 * This can only be called by subclasses from their created constructor. 2391 * This can only be called by subclasses from their created constructor.
2440 */ 2392 */
2441 FEFuncGElement.created() : super.created(); 2393 FEFuncGElement.created() : super.created();
(...skipping 23 matching lines...) Expand all
2465 @DomName('SVGFEFuncRElement.SVGFEFuncRElement') 2417 @DomName('SVGFEFuncRElement.SVGFEFuncRElement')
2466 @DocsEditable() 2418 @DocsEditable()
2467 factory FEFuncRElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eFuncR"); 2419 factory FEFuncRElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eFuncR");
2468 2420
2469 2421
2470 @Deprecated("Internal Use Only") 2422 @Deprecated("Internal Use Only")
2471 static FEFuncRElement internalCreateFEFuncRElement() { 2423 static FEFuncRElement internalCreateFEFuncRElement() {
2472 return new FEFuncRElement._internalWrap(); 2424 return new FEFuncRElement._internalWrap();
2473 } 2425 }
2474 2426
2475 factory FEFuncRElement._internalWrap() { 2427 external factory FEFuncRElement._internalWrap();
2476 return new FEFuncRElement.internal_();
2477 }
2478 2428
2479 @Deprecated("Internal Use Only") 2429 @Deprecated("Internal Use Only")
2480 FEFuncRElement.internal_() : super.internal_(); 2430 FEFuncRElement.internal_() : super.internal_();
2481 2431
2482 /** 2432 /**
2483 * Constructor instantiated by the DOM when a custom element has been created. 2433 * Constructor instantiated by the DOM when a custom element has been created.
2484 * 2434 *
2485 * This can only be called by subclasses from their created constructor. 2435 * This can only be called by subclasses from their created constructor.
2486 */ 2436 */
2487 FEFuncRElement.created() : super.created(); 2437 FEFuncRElement.created() : super.created();
(...skipping 23 matching lines...) Expand all
2511 @DomName('SVGFEGaussianBlurElement.SVGFEGaussianBlurElement') 2461 @DomName('SVGFEGaussianBlurElement.SVGFEGaussianBlurElement')
2512 @DocsEditable() 2462 @DocsEditable()
2513 factory FEGaussianBlurElement() => _SvgElementFactoryProvider.createSvgElement _tag("feGaussianBlur"); 2463 factory FEGaussianBlurElement() => _SvgElementFactoryProvider.createSvgElement _tag("feGaussianBlur");
2514 2464
2515 2465
2516 @Deprecated("Internal Use Only") 2466 @Deprecated("Internal Use Only")
2517 static FEGaussianBlurElement internalCreateFEGaussianBlurElement() { 2467 static FEGaussianBlurElement internalCreateFEGaussianBlurElement() {
2518 return new FEGaussianBlurElement._internalWrap(); 2468 return new FEGaussianBlurElement._internalWrap();
2519 } 2469 }
2520 2470
2521 factory FEGaussianBlurElement._internalWrap() { 2471 external factory FEGaussianBlurElement._internalWrap();
2522 return new FEGaussianBlurElement.internal_();
2523 }
2524 2472
2525 @Deprecated("Internal Use Only") 2473 @Deprecated("Internal Use Only")
2526 FEGaussianBlurElement.internal_() : super.internal_(); 2474 FEGaussianBlurElement.internal_() : super.internal_();
2527 2475
2528 /** 2476 /**
2529 * Constructor instantiated by the DOM when a custom element has been created. 2477 * Constructor instantiated by the DOM when a custom element has been created.
2530 * 2478 *
2531 * This can only be called by subclasses from their created constructor. 2479 * This can only be called by subclasses from their created constructor.
2532 */ 2480 */
2533 FEGaussianBlurElement.created() : super.created(); 2481 FEGaussianBlurElement.created() : super.created();
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
2593 @DomName('SVGFEImageElement.SVGFEImageElement') 2541 @DomName('SVGFEImageElement.SVGFEImageElement')
2594 @DocsEditable() 2542 @DocsEditable()
2595 factory FEImageElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eImage"); 2543 factory FEImageElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eImage");
2596 2544
2597 2545
2598 @Deprecated("Internal Use Only") 2546 @Deprecated("Internal Use Only")
2599 static FEImageElement internalCreateFEImageElement() { 2547 static FEImageElement internalCreateFEImageElement() {
2600 return new FEImageElement._internalWrap(); 2548 return new FEImageElement._internalWrap();
2601 } 2549 }
2602 2550
2603 factory FEImageElement._internalWrap() { 2551 external factory FEImageElement._internalWrap();
2604 return new FEImageElement.internal_();
2605 }
2606 2552
2607 @Deprecated("Internal Use Only") 2553 @Deprecated("Internal Use Only")
2608 FEImageElement.internal_() : super.internal_(); 2554 FEImageElement.internal_() : super.internal_();
2609 2555
2610 /** 2556 /**
2611 * Constructor instantiated by the DOM when a custom element has been created. 2557 * Constructor instantiated by the DOM when a custom element has been created.
2612 * 2558 *
2613 * This can only be called by subclasses from their created constructor. 2559 * This can only be called by subclasses from their created constructor.
2614 */ 2560 */
2615 FEImageElement.created() : super.created(); 2561 FEImageElement.created() : super.created();
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
2667 @DomName('SVGFEMergeElement.SVGFEMergeElement') 2613 @DomName('SVGFEMergeElement.SVGFEMergeElement')
2668 @DocsEditable() 2614 @DocsEditable()
2669 factory FEMergeElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eMerge"); 2615 factory FEMergeElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eMerge");
2670 2616
2671 2617
2672 @Deprecated("Internal Use Only") 2618 @Deprecated("Internal Use Only")
2673 static FEMergeElement internalCreateFEMergeElement() { 2619 static FEMergeElement internalCreateFEMergeElement() {
2674 return new FEMergeElement._internalWrap(); 2620 return new FEMergeElement._internalWrap();
2675 } 2621 }
2676 2622
2677 factory FEMergeElement._internalWrap() { 2623 external factory FEMergeElement._internalWrap();
2678 return new FEMergeElement.internal_();
2679 }
2680 2624
2681 @Deprecated("Internal Use Only") 2625 @Deprecated("Internal Use Only")
2682 FEMergeElement.internal_() : super.internal_(); 2626 FEMergeElement.internal_() : super.internal_();
2683 2627
2684 /** 2628 /**
2685 * Constructor instantiated by the DOM when a custom element has been created. 2629 * Constructor instantiated by the DOM when a custom element has been created.
2686 * 2630 *
2687 * This can only be called by subclasses from their created constructor. 2631 * This can only be called by subclasses from their created constructor.
2688 */ 2632 */
2689 FEMergeElement.created() : super.created(); 2633 FEMergeElement.created() : super.created();
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
2733 @DomName('SVGFEMergeNodeElement.SVGFEMergeNodeElement') 2677 @DomName('SVGFEMergeNodeElement.SVGFEMergeNodeElement')
2734 @DocsEditable() 2678 @DocsEditable()
2735 factory FEMergeNodeElement() => _SvgElementFactoryProvider.createSvgElement_ta g("feMergeNode"); 2679 factory FEMergeNodeElement() => _SvgElementFactoryProvider.createSvgElement_ta g("feMergeNode");
2736 2680
2737 2681
2738 @Deprecated("Internal Use Only") 2682 @Deprecated("Internal Use Only")
2739 static FEMergeNodeElement internalCreateFEMergeNodeElement() { 2683 static FEMergeNodeElement internalCreateFEMergeNodeElement() {
2740 return new FEMergeNodeElement._internalWrap(); 2684 return new FEMergeNodeElement._internalWrap();
2741 } 2685 }
2742 2686
2743 factory FEMergeNodeElement._internalWrap() { 2687 external factory FEMergeNodeElement._internalWrap();
2744 return new FEMergeNodeElement.internal_();
2745 }
2746 2688
2747 @Deprecated("Internal Use Only") 2689 @Deprecated("Internal Use Only")
2748 FEMergeNodeElement.internal_() : super.internal_(); 2690 FEMergeNodeElement.internal_() : super.internal_();
2749 2691
2750 /** 2692 /**
2751 * Constructor instantiated by the DOM when a custom element has been created. 2693 * Constructor instantiated by the DOM when a custom element has been created.
2752 * 2694 *
2753 * This can only be called by subclasses from their created constructor. 2695 * This can only be called by subclasses from their created constructor.
2754 */ 2696 */
2755 FEMergeNodeElement.created() : super.created(); 2697 FEMergeNodeElement.created() : super.created();
(...skipping 23 matching lines...) Expand all
2779 class FEMorphologyElement extends SvgElement implements FilterPrimitiveStandardA ttributes { 2721 class FEMorphologyElement extends SvgElement implements FilterPrimitiveStandardA ttributes {
2780 // To suppress missing implicit constructor warnings. 2722 // To suppress missing implicit constructor warnings.
2781 factory FEMorphologyElement._() { throw new UnsupportedError("Not supported"); } 2723 factory FEMorphologyElement._() { throw new UnsupportedError("Not supported"); }
2782 2724
2783 2725
2784 @Deprecated("Internal Use Only") 2726 @Deprecated("Internal Use Only")
2785 static FEMorphologyElement internalCreateFEMorphologyElement() { 2727 static FEMorphologyElement internalCreateFEMorphologyElement() {
2786 return new FEMorphologyElement._internalWrap(); 2728 return new FEMorphologyElement._internalWrap();
2787 } 2729 }
2788 2730
2789 factory FEMorphologyElement._internalWrap() { 2731 external factory FEMorphologyElement._internalWrap();
2790 return new FEMorphologyElement.internal_();
2791 }
2792 2732
2793 @Deprecated("Internal Use Only") 2733 @Deprecated("Internal Use Only")
2794 FEMorphologyElement.internal_() : super.internal_(); 2734 FEMorphologyElement.internal_() : super.internal_();
2795 2735
2796 /** 2736 /**
2797 * Constructor instantiated by the DOM when a custom element has been created. 2737 * Constructor instantiated by the DOM when a custom element has been created.
2798 * 2738 *
2799 * This can only be called by subclasses from their created constructor. 2739 * This can only be called by subclasses from their created constructor.
2800 */ 2740 */
2801 FEMorphologyElement.created() : super.created(); 2741 FEMorphologyElement.created() : super.created();
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
2870 @DomName('SVGFEOffsetElement.SVGFEOffsetElement') 2810 @DomName('SVGFEOffsetElement.SVGFEOffsetElement')
2871 @DocsEditable() 2811 @DocsEditable()
2872 factory FEOffsetElement() => _SvgElementFactoryProvider.createSvgElement_tag(" feOffset"); 2812 factory FEOffsetElement() => _SvgElementFactoryProvider.createSvgElement_tag(" feOffset");
2873 2813
2874 2814
2875 @Deprecated("Internal Use Only") 2815 @Deprecated("Internal Use Only")
2876 static FEOffsetElement internalCreateFEOffsetElement() { 2816 static FEOffsetElement internalCreateFEOffsetElement() {
2877 return new FEOffsetElement._internalWrap(); 2817 return new FEOffsetElement._internalWrap();
2878 } 2818 }
2879 2819
2880 factory FEOffsetElement._internalWrap() { 2820 external factory FEOffsetElement._internalWrap();
2881 return new FEOffsetElement.internal_();
2882 }
2883 2821
2884 @Deprecated("Internal Use Only") 2822 @Deprecated("Internal Use Only")
2885 FEOffsetElement.internal_() : super.internal_(); 2823 FEOffsetElement.internal_() : super.internal_();
2886 2824
2887 /** 2825 /**
2888 * Constructor instantiated by the DOM when a custom element has been created. 2826 * Constructor instantiated by the DOM when a custom element has been created.
2889 * 2827 *
2890 * This can only be called by subclasses from their created constructor. 2828 * This can only be called by subclasses from their created constructor.
2891 */ 2829 */
2892 FEOffsetElement.created() : super.created(); 2830 FEOffsetElement.created() : super.created();
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
2948 @DomName('SVGFEPointLightElement.SVGFEPointLightElement') 2886 @DomName('SVGFEPointLightElement.SVGFEPointLightElement')
2949 @DocsEditable() 2887 @DocsEditable()
2950 factory FEPointLightElement() => _SvgElementFactoryProvider.createSvgElement_t ag("fePointLight"); 2888 factory FEPointLightElement() => _SvgElementFactoryProvider.createSvgElement_t ag("fePointLight");
2951 2889
2952 2890
2953 @Deprecated("Internal Use Only") 2891 @Deprecated("Internal Use Only")
2954 static FEPointLightElement internalCreateFEPointLightElement() { 2892 static FEPointLightElement internalCreateFEPointLightElement() {
2955 return new FEPointLightElement._internalWrap(); 2893 return new FEPointLightElement._internalWrap();
2956 } 2894 }
2957 2895
2958 factory FEPointLightElement._internalWrap() { 2896 external factory FEPointLightElement._internalWrap();
2959 return new FEPointLightElement.internal_();
2960 }
2961 2897
2962 @Deprecated("Internal Use Only") 2898 @Deprecated("Internal Use Only")
2963 FEPointLightElement.internal_() : super.internal_(); 2899 FEPointLightElement.internal_() : super.internal_();
2964 2900
2965 /** 2901 /**
2966 * Constructor instantiated by the DOM when a custom element has been created. 2902 * Constructor instantiated by the DOM when a custom element has been created.
2967 * 2903 *
2968 * This can only be called by subclasses from their created constructor. 2904 * This can only be called by subclasses from their created constructor.
2969 */ 2905 */
2970 FEPointLightElement.created() : super.created(); 2906 FEPointLightElement.created() : super.created();
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
3006 @DomName('SVGFESpecularLightingElement.SVGFESpecularLightingElement') 2942 @DomName('SVGFESpecularLightingElement.SVGFESpecularLightingElement')
3007 @DocsEditable() 2943 @DocsEditable()
3008 factory FESpecularLightingElement() => _SvgElementFactoryProvider.createSvgEle ment_tag("feSpecularLighting"); 2944 factory FESpecularLightingElement() => _SvgElementFactoryProvider.createSvgEle ment_tag("feSpecularLighting");
3009 2945
3010 2946
3011 @Deprecated("Internal Use Only") 2947 @Deprecated("Internal Use Only")
3012 static FESpecularLightingElement internalCreateFESpecularLightingElement() { 2948 static FESpecularLightingElement internalCreateFESpecularLightingElement() {
3013 return new FESpecularLightingElement._internalWrap(); 2949 return new FESpecularLightingElement._internalWrap();
3014 } 2950 }
3015 2951
3016 factory FESpecularLightingElement._internalWrap() { 2952 external factory FESpecularLightingElement._internalWrap();
3017 return new FESpecularLightingElement.internal_();
3018 }
3019 2953
3020 @Deprecated("Internal Use Only") 2954 @Deprecated("Internal Use Only")
3021 FESpecularLightingElement.internal_() : super.internal_(); 2955 FESpecularLightingElement.internal_() : super.internal_();
3022 2956
3023 /** 2957 /**
3024 * Constructor instantiated by the DOM when a custom element has been created. 2958 * Constructor instantiated by the DOM when a custom element has been created.
3025 * 2959 *
3026 * This can only be called by subclasses from their created constructor. 2960 * This can only be called by subclasses from their created constructor.
3027 */ 2961 */
3028 FESpecularLightingElement.created() : super.created(); 2962 FESpecularLightingElement.created() : super.created();
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
3088 @DomName('SVGFESpotLightElement.SVGFESpotLightElement') 3022 @DomName('SVGFESpotLightElement.SVGFESpotLightElement')
3089 @DocsEditable() 3023 @DocsEditable()
3090 factory FESpotLightElement() => _SvgElementFactoryProvider.createSvgElement_ta g("feSpotLight"); 3024 factory FESpotLightElement() => _SvgElementFactoryProvider.createSvgElement_ta g("feSpotLight");
3091 3025
3092 3026
3093 @Deprecated("Internal Use Only") 3027 @Deprecated("Internal Use Only")
3094 static FESpotLightElement internalCreateFESpotLightElement() { 3028 static FESpotLightElement internalCreateFESpotLightElement() {
3095 return new FESpotLightElement._internalWrap(); 3029 return new FESpotLightElement._internalWrap();
3096 } 3030 }
3097 3031
3098 factory FESpotLightElement._internalWrap() { 3032 external factory FESpotLightElement._internalWrap();
3099 return new FESpotLightElement.internal_();
3100 }
3101 3033
3102 @Deprecated("Internal Use Only") 3034 @Deprecated("Internal Use Only")
3103 FESpotLightElement.internal_() : super.internal_(); 3035 FESpotLightElement.internal_() : super.internal_();
3104 3036
3105 /** 3037 /**
3106 * Constructor instantiated by the DOM when a custom element has been created. 3038 * Constructor instantiated by the DOM when a custom element has been created.
3107 * 3039 *
3108 * This can only be called by subclasses from their created constructor. 3040 * This can only be called by subclasses from their created constructor.
3109 */ 3041 */
3110 FESpotLightElement.created() : super.created(); 3042 FESpotLightElement.created() : super.created();
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
3166 @DomName('SVGFETileElement.SVGFETileElement') 3098 @DomName('SVGFETileElement.SVGFETileElement')
3167 @DocsEditable() 3099 @DocsEditable()
3168 factory FETileElement() => _SvgElementFactoryProvider.createSvgElement_tag("fe Tile"); 3100 factory FETileElement() => _SvgElementFactoryProvider.createSvgElement_tag("fe Tile");
3169 3101
3170 3102
3171 @Deprecated("Internal Use Only") 3103 @Deprecated("Internal Use Only")
3172 static FETileElement internalCreateFETileElement() { 3104 static FETileElement internalCreateFETileElement() {
3173 return new FETileElement._internalWrap(); 3105 return new FETileElement._internalWrap();
3174 } 3106 }
3175 3107
3176 factory FETileElement._internalWrap() { 3108 external factory FETileElement._internalWrap();
3177 return new FETileElement.internal_();
3178 }
3179 3109
3180 @Deprecated("Internal Use Only") 3110 @Deprecated("Internal Use Only")
3181 FETileElement.internal_() : super.internal_(); 3111 FETileElement.internal_() : super.internal_();
3182 3112
3183 /** 3113 /**
3184 * Constructor instantiated by the DOM when a custom element has been created. 3114 * Constructor instantiated by the DOM when a custom element has been created.
3185 * 3115 *
3186 * This can only be called by subclasses from their created constructor. 3116 * This can only be called by subclasses from their created constructor.
3187 */ 3117 */
3188 FETileElement.created() : super.created(); 3118 FETileElement.created() : super.created();
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
3236 @DomName('SVGFETurbulenceElement.SVGFETurbulenceElement') 3166 @DomName('SVGFETurbulenceElement.SVGFETurbulenceElement')
3237 @DocsEditable() 3167 @DocsEditable()
3238 factory FETurbulenceElement() => _SvgElementFactoryProvider.createSvgElement_t ag("feTurbulence"); 3168 factory FETurbulenceElement() => _SvgElementFactoryProvider.createSvgElement_t ag("feTurbulence");
3239 3169
3240 3170
3241 @Deprecated("Internal Use Only") 3171 @Deprecated("Internal Use Only")
3242 static FETurbulenceElement internalCreateFETurbulenceElement() { 3172 static FETurbulenceElement internalCreateFETurbulenceElement() {
3243 return new FETurbulenceElement._internalWrap(); 3173 return new FETurbulenceElement._internalWrap();
3244 } 3174 }
3245 3175
3246 factory FETurbulenceElement._internalWrap() { 3176 external factory FETurbulenceElement._internalWrap();
3247 return new FETurbulenceElement.internal_();
3248 }
3249 3177
3250 @Deprecated("Internal Use Only") 3178 @Deprecated("Internal Use Only")
3251 FETurbulenceElement.internal_() : super.internal_(); 3179 FETurbulenceElement.internal_() : super.internal_();
3252 3180
3253 /** 3181 /**
3254 * Constructor instantiated by the DOM when a custom element has been created. 3182 * Constructor instantiated by the DOM when a custom element has been created.
3255 * 3183 *
3256 * This can only be called by subclasses from their created constructor. 3184 * This can only be called by subclasses from their created constructor.
3257 */ 3185 */
3258 FETurbulenceElement.created() : super.created(); 3186 FETurbulenceElement.created() : super.created();
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
3350 @DomName('SVGFilterElement.SVGFilterElement') 3278 @DomName('SVGFilterElement.SVGFilterElement')
3351 @DocsEditable() 3279 @DocsEditable()
3352 factory FilterElement() => _SvgElementFactoryProvider.createSvgElement_tag("fi lter"); 3280 factory FilterElement() => _SvgElementFactoryProvider.createSvgElement_tag("fi lter");
3353 3281
3354 3282
3355 @Deprecated("Internal Use Only") 3283 @Deprecated("Internal Use Only")
3356 static FilterElement internalCreateFilterElement() { 3284 static FilterElement internalCreateFilterElement() {
3357 return new FilterElement._internalWrap(); 3285 return new FilterElement._internalWrap();
3358 } 3286 }
3359 3287
3360 factory FilterElement._internalWrap() { 3288 external factory FilterElement._internalWrap();
3361 return new FilterElement.internal_();
3362 }
3363 3289
3364 @Deprecated("Internal Use Only") 3290 @Deprecated("Internal Use Only")
3365 FilterElement.internal_() : super.internal_(); 3291 FilterElement.internal_() : super.internal_();
3366 3292
3367 /** 3293 /**
3368 * Constructor instantiated by the DOM when a custom element has been created. 3294 * Constructor instantiated by the DOM when a custom element has been created.
3369 * 3295 *
3370 * This can only be called by subclasses from their created constructor. 3296 * This can only be called by subclasses from their created constructor.
3371 */ 3297 */
3372 FilterElement.created() : super.created(); 3298 FilterElement.created() : super.created();
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
3493 @DomName('SVGForeignObjectElement.SVGForeignObjectElement') 3419 @DomName('SVGForeignObjectElement.SVGForeignObjectElement')
3494 @DocsEditable() 3420 @DocsEditable()
3495 factory ForeignObjectElement() => _SvgElementFactoryProvider.createSvgElement_ tag("foreignObject"); 3421 factory ForeignObjectElement() => _SvgElementFactoryProvider.createSvgElement_ tag("foreignObject");
3496 3422
3497 3423
3498 @Deprecated("Internal Use Only") 3424 @Deprecated("Internal Use Only")
3499 static ForeignObjectElement internalCreateForeignObjectElement() { 3425 static ForeignObjectElement internalCreateForeignObjectElement() {
3500 return new ForeignObjectElement._internalWrap(); 3426 return new ForeignObjectElement._internalWrap();
3501 } 3427 }
3502 3428
3503 factory ForeignObjectElement._internalWrap() { 3429 external factory ForeignObjectElement._internalWrap();
3504 return new ForeignObjectElement.internal_();
3505 }
3506 3430
3507 @Deprecated("Internal Use Only") 3431 @Deprecated("Internal Use Only")
3508 ForeignObjectElement.internal_() : super.internal_(); 3432 ForeignObjectElement.internal_() : super.internal_();
3509 3433
3510 /** 3434 /**
3511 * Constructor instantiated by the DOM when a custom element has been created. 3435 * Constructor instantiated by the DOM when a custom element has been created.
3512 * 3436 *
3513 * This can only be called by subclasses from their created constructor. 3437 * This can only be called by subclasses from their created constructor.
3514 */ 3438 */
3515 ForeignObjectElement.created() : super.created(); 3439 ForeignObjectElement.created() : super.created();
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
3551 @DomName('SVGGElement.SVGGElement') 3475 @DomName('SVGGElement.SVGGElement')
3552 @DocsEditable() 3476 @DocsEditable()
3553 factory GElement() => _SvgElementFactoryProvider.createSvgElement_tag("g"); 3477 factory GElement() => _SvgElementFactoryProvider.createSvgElement_tag("g");
3554 3478
3555 3479
3556 @Deprecated("Internal Use Only") 3480 @Deprecated("Internal Use Only")
3557 static GElement internalCreateGElement() { 3481 static GElement internalCreateGElement() {
3558 return new GElement._internalWrap(); 3482 return new GElement._internalWrap();
3559 } 3483 }
3560 3484
3561 factory GElement._internalWrap() { 3485 external factory GElement._internalWrap();
3562 return new GElement.internal_();
3563 }
3564 3486
3565 @Deprecated("Internal Use Only") 3487 @Deprecated("Internal Use Only")
3566 GElement.internal_() : super.internal_(); 3488 GElement.internal_() : super.internal_();
3567 3489
3568 /** 3490 /**
3569 * Constructor instantiated by the DOM when a custom element has been created. 3491 * Constructor instantiated by the DOM when a custom element has been created.
3570 * 3492 *
3571 * This can only be called by subclasses from their created constructor. 3493 * This can only be called by subclasses from their created constructor.
3572 */ 3494 */
3573 GElement.created() : super.created(); 3495 GElement.created() : super.created();
(...skipping 12 matching lines...) Expand all
3586 class GeometryElement extends GraphicsElement { 3508 class GeometryElement extends GraphicsElement {
3587 // To suppress missing implicit constructor warnings. 3509 // To suppress missing implicit constructor warnings.
3588 factory GeometryElement._() { throw new UnsupportedError("Not supported"); } 3510 factory GeometryElement._() { throw new UnsupportedError("Not supported"); }
3589 3511
3590 3512
3591 @Deprecated("Internal Use Only") 3513 @Deprecated("Internal Use Only")
3592 static GeometryElement internalCreateGeometryElement() { 3514 static GeometryElement internalCreateGeometryElement() {
3593 return new GeometryElement._internalWrap(); 3515 return new GeometryElement._internalWrap();
3594 } 3516 }
3595 3517
3596 factory GeometryElement._internalWrap() { 3518 external factory GeometryElement._internalWrap();
3597 return new GeometryElement.internal_();
3598 }
3599 3519
3600 @Deprecated("Internal Use Only") 3520 @Deprecated("Internal Use Only")
3601 GeometryElement.internal_() : super.internal_(); 3521 GeometryElement.internal_() : super.internal_();
3602 3522
3603 /** 3523 /**
3604 * Constructor instantiated by the DOM when a custom element has been created. 3524 * Constructor instantiated by the DOM when a custom element has been created.
3605 * 3525 *
3606 * This can only be called by subclasses from their created constructor. 3526 * This can only be called by subclasses from their created constructor.
3607 */ 3527 */
3608 GeometryElement.created() : super.created(); 3528 GeometryElement.created() : super.created();
(...skipping 22 matching lines...) Expand all
3631 class GraphicsElement extends SvgElement implements Tests { 3551 class GraphicsElement extends SvgElement implements Tests {
3632 // To suppress missing implicit constructor warnings. 3552 // To suppress missing implicit constructor warnings.
3633 factory GraphicsElement._() { throw new UnsupportedError("Not supported"); } 3553 factory GraphicsElement._() { throw new UnsupportedError("Not supported"); }
3634 3554
3635 3555
3636 @Deprecated("Internal Use Only") 3556 @Deprecated("Internal Use Only")
3637 static GraphicsElement internalCreateGraphicsElement() { 3557 static GraphicsElement internalCreateGraphicsElement() {
3638 return new GraphicsElement._internalWrap(); 3558 return new GraphicsElement._internalWrap();
3639 } 3559 }
3640 3560
3641 factory GraphicsElement._internalWrap() { 3561 external factory GraphicsElement._internalWrap();
3642 return new GraphicsElement.internal_();
3643 }
3644 3562
3645 @Deprecated("Internal Use Only") 3563 @Deprecated("Internal Use Only")
3646 GraphicsElement.internal_() : super.internal_(); 3564 GraphicsElement.internal_() : super.internal_();
3647 3565
3648 /** 3566 /**
3649 * Constructor instantiated by the DOM when a custom element has been created. 3567 * Constructor instantiated by the DOM when a custom element has been created.
3650 * 3568 *
3651 * This can only be called by subclasses from their created constructor. 3569 * This can only be called by subclasses from their created constructor.
3652 */ 3570 */
3653 GraphicsElement.created() : super.created(); 3571 GraphicsElement.created() : super.created();
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
3725 @DomName('SVGImageElement.SVGImageElement') 3643 @DomName('SVGImageElement.SVGImageElement')
3726 @DocsEditable() 3644 @DocsEditable()
3727 factory ImageElement() => _SvgElementFactoryProvider.createSvgElement_tag("ima ge"); 3645 factory ImageElement() => _SvgElementFactoryProvider.createSvgElement_tag("ima ge");
3728 3646
3729 3647
3730 @Deprecated("Internal Use Only") 3648 @Deprecated("Internal Use Only")
3731 static ImageElement internalCreateImageElement() { 3649 static ImageElement internalCreateImageElement() {
3732 return new ImageElement._internalWrap(); 3650 return new ImageElement._internalWrap();
3733 } 3651 }
3734 3652
3735 factory ImageElement._internalWrap() { 3653 external factory ImageElement._internalWrap();
3736 return new ImageElement.internal_();
3737 }
3738 3654
3739 @Deprecated("Internal Use Only") 3655 @Deprecated("Internal Use Only")
3740 ImageElement.internal_() : super.internal_(); 3656 ImageElement.internal_() : super.internal_();
3741 3657
3742 /** 3658 /**
3743 * Constructor instantiated by the DOM when a custom element has been created. 3659 * Constructor instantiated by the DOM when a custom element has been created.
3744 * 3660 *
3745 * This can only be called by subclasses from their created constructor. 3661 * This can only be called by subclasses from their created constructor.
3746 */ 3662 */
3747 ImageElement.created() : super.created(); 3663 ImageElement.created() : super.created();
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after
4014 @DomName('SVGLineElement.SVGLineElement') 3930 @DomName('SVGLineElement.SVGLineElement')
4015 @DocsEditable() 3931 @DocsEditable()
4016 factory LineElement() => _SvgElementFactoryProvider.createSvgElement_tag("line "); 3932 factory LineElement() => _SvgElementFactoryProvider.createSvgElement_tag("line ");
4017 3933
4018 3934
4019 @Deprecated("Internal Use Only") 3935 @Deprecated("Internal Use Only")
4020 static LineElement internalCreateLineElement() { 3936 static LineElement internalCreateLineElement() {
4021 return new LineElement._internalWrap(); 3937 return new LineElement._internalWrap();
4022 } 3938 }
4023 3939
4024 factory LineElement._internalWrap() { 3940 external factory LineElement._internalWrap();
4025 return new LineElement.internal_();
4026 }
4027 3941
4028 @Deprecated("Internal Use Only") 3942 @Deprecated("Internal Use Only")
4029 LineElement.internal_() : super.internal_(); 3943 LineElement.internal_() : super.internal_();
4030 3944
4031 /** 3945 /**
4032 * Constructor instantiated by the DOM when a custom element has been created. 3946 * Constructor instantiated by the DOM when a custom element has been created.
4033 * 3947 *
4034 * This can only be called by subclasses from their created constructor. 3948 * This can only be called by subclasses from their created constructor.
4035 */ 3949 */
4036 LineElement.created() : super.created(); 3950 LineElement.created() : super.created();
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
4069 @DomName('SVGLinearGradientElement.SVGLinearGradientElement') 3983 @DomName('SVGLinearGradientElement.SVGLinearGradientElement')
4070 @DocsEditable() 3984 @DocsEditable()
4071 factory LinearGradientElement() => _SvgElementFactoryProvider.createSvgElement _tag("linearGradient"); 3985 factory LinearGradientElement() => _SvgElementFactoryProvider.createSvgElement _tag("linearGradient");
4072 3986
4073 3987
4074 @Deprecated("Internal Use Only") 3988 @Deprecated("Internal Use Only")
4075 static LinearGradientElement internalCreateLinearGradientElement() { 3989 static LinearGradientElement internalCreateLinearGradientElement() {
4076 return new LinearGradientElement._internalWrap(); 3990 return new LinearGradientElement._internalWrap();
4077 } 3991 }
4078 3992
4079 factory LinearGradientElement._internalWrap() { 3993 external factory LinearGradientElement._internalWrap();
4080 return new LinearGradientElement.internal_();
4081 }
4082 3994
4083 @Deprecated("Internal Use Only") 3995 @Deprecated("Internal Use Only")
4084 LinearGradientElement.internal_() : super.internal_(); 3996 LinearGradientElement.internal_() : super.internal_();
4085 3997
4086 /** 3998 /**
4087 * Constructor instantiated by the DOM when a custom element has been created. 3999 * Constructor instantiated by the DOM when a custom element has been created.
4088 * 4000 *
4089 * This can only be called by subclasses from their created constructor. 4001 * This can only be called by subclasses from their created constructor.
4090 */ 4002 */
4091 LinearGradientElement.created() : super.created(); 4003 LinearGradientElement.created() : super.created();
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
4124 @DomName('SVGMarkerElement.SVGMarkerElement') 4036 @DomName('SVGMarkerElement.SVGMarkerElement')
4125 @DocsEditable() 4037 @DocsEditable()
4126 factory MarkerElement() => _SvgElementFactoryProvider.createSvgElement_tag("ma rker"); 4038 factory MarkerElement() => _SvgElementFactoryProvider.createSvgElement_tag("ma rker");
4127 4039
4128 4040
4129 @Deprecated("Internal Use Only") 4041 @Deprecated("Internal Use Only")
4130 static MarkerElement internalCreateMarkerElement() { 4042 static MarkerElement internalCreateMarkerElement() {
4131 return new MarkerElement._internalWrap(); 4043 return new MarkerElement._internalWrap();
4132 } 4044 }
4133 4045
4134 factory MarkerElement._internalWrap() { 4046 external factory MarkerElement._internalWrap();
4135 return new MarkerElement.internal_();
4136 }
4137 4047
4138 @Deprecated("Internal Use Only") 4048 @Deprecated("Internal Use Only")
4139 MarkerElement.internal_() : super.internal_(); 4049 MarkerElement.internal_() : super.internal_();
4140 4050
4141 /** 4051 /**
4142 * Constructor instantiated by the DOM when a custom element has been created. 4052 * Constructor instantiated by the DOM when a custom element has been created.
4143 * 4053 *
4144 * This can only be called by subclasses from their created constructor. 4054 * This can only be called by subclasses from their created constructor.
4145 */ 4055 */
4146 MarkerElement.created() : super.created(); 4056 MarkerElement.created() : super.created();
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
4231 @DomName('SVGMaskElement.SVGMaskElement') 4141 @DomName('SVGMaskElement.SVGMaskElement')
4232 @DocsEditable() 4142 @DocsEditable()
4233 factory MaskElement() => _SvgElementFactoryProvider.createSvgElement_tag("mask "); 4143 factory MaskElement() => _SvgElementFactoryProvider.createSvgElement_tag("mask ");
4234 4144
4235 4145
4236 @Deprecated("Internal Use Only") 4146 @Deprecated("Internal Use Only")
4237 static MaskElement internalCreateMaskElement() { 4147 static MaskElement internalCreateMaskElement() {
4238 return new MaskElement._internalWrap(); 4148 return new MaskElement._internalWrap();
4239 } 4149 }
4240 4150
4241 factory MaskElement._internalWrap() { 4151 external factory MaskElement._internalWrap();
4242 return new MaskElement.internal_();
4243 }
4244 4152
4245 @Deprecated("Internal Use Only") 4153 @Deprecated("Internal Use Only")
4246 MaskElement.internal_() : super.internal_(); 4154 MaskElement.internal_() : super.internal_();
4247 4155
4248 /** 4156 /**
4249 * Constructor instantiated by the DOM when a custom element has been created. 4157 * Constructor instantiated by the DOM when a custom element has been created.
4250 * 4158 *
4251 * This can only be called by subclasses from their created constructor. 4159 * This can only be called by subclasses from their created constructor.
4252 */ 4160 */
4253 MaskElement.created() : super.created(); 4161 MaskElement.created() : super.created();
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
4428 class MetadataElement extends SvgElement { 4336 class MetadataElement extends SvgElement {
4429 // To suppress missing implicit constructor warnings. 4337 // To suppress missing implicit constructor warnings.
4430 factory MetadataElement._() { throw new UnsupportedError("Not supported"); } 4338 factory MetadataElement._() { throw new UnsupportedError("Not supported"); }
4431 4339
4432 4340
4433 @Deprecated("Internal Use Only") 4341 @Deprecated("Internal Use Only")
4434 static MetadataElement internalCreateMetadataElement() { 4342 static MetadataElement internalCreateMetadataElement() {
4435 return new MetadataElement._internalWrap(); 4343 return new MetadataElement._internalWrap();
4436 } 4344 }
4437 4345
4438 factory MetadataElement._internalWrap() { 4346 external factory MetadataElement._internalWrap();
4439 return new MetadataElement.internal_();
4440 }
4441 4347
4442 @Deprecated("Internal Use Only") 4348 @Deprecated("Internal Use Only")
4443 MetadataElement.internal_() : super.internal_(); 4349 MetadataElement.internal_() : super.internal_();
4444 4350
4445 /** 4351 /**
4446 * Constructor instantiated by the DOM when a custom element has been created. 4352 * Constructor instantiated by the DOM when a custom element has been created.
4447 * 4353 *
4448 * This can only be called by subclasses from their created constructor. 4354 * This can only be called by subclasses from their created constructor.
4449 */ 4355 */
4450 MetadataElement.created() : super.created(); 4356 MetadataElement.created() : super.created();
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
4621 @DomName('SVGPathElement.SVGPathElement') 4527 @DomName('SVGPathElement.SVGPathElement')
4622 @DocsEditable() 4528 @DocsEditable()
4623 factory PathElement() => _SvgElementFactoryProvider.createSvgElement_tag("path "); 4529 factory PathElement() => _SvgElementFactoryProvider.createSvgElement_tag("path ");
4624 4530
4625 4531
4626 @Deprecated("Internal Use Only") 4532 @Deprecated("Internal Use Only")
4627 static PathElement internalCreatePathElement() { 4533 static PathElement internalCreatePathElement() {
4628 return new PathElement._internalWrap(); 4534 return new PathElement._internalWrap();
4629 } 4535 }
4630 4536
4631 factory PathElement._internalWrap() { 4537 external factory PathElement._internalWrap();
4632 return new PathElement.internal_();
4633 }
4634 4538
4635 @Deprecated("Internal Use Only") 4539 @Deprecated("Internal Use Only")
4636 PathElement.internal_() : super.internal_(); 4540 PathElement.internal_() : super.internal_();
4637 4541
4638 /** 4542 /**
4639 * Constructor instantiated by the DOM when a custom element has been created. 4543 * Constructor instantiated by the DOM when a custom element has been created.
4640 * 4544 *
4641 * This can only be called by subclasses from their created constructor. 4545 * This can only be called by subclasses from their created constructor.
4642 */ 4546 */
4643 PathElement.created() : super.created(); 4547 PathElement.created() : super.created();
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after
4882 class PathSegArcAbs extends PathSeg { 4786 class PathSegArcAbs extends PathSeg {
4883 // To suppress missing implicit constructor warnings. 4787 // To suppress missing implicit constructor warnings.
4884 factory PathSegArcAbs._() { throw new UnsupportedError("Not supported"); } 4788 factory PathSegArcAbs._() { throw new UnsupportedError("Not supported"); }
4885 4789
4886 4790
4887 @Deprecated("Internal Use Only") 4791 @Deprecated("Internal Use Only")
4888 static PathSegArcAbs internalCreatePathSegArcAbs() { 4792 static PathSegArcAbs internalCreatePathSegArcAbs() {
4889 return new PathSegArcAbs._internalWrap(); 4793 return new PathSegArcAbs._internalWrap();
4890 } 4794 }
4891 4795
4892 factory PathSegArcAbs._internalWrap() { 4796 external factory PathSegArcAbs._internalWrap();
4893 return new PathSegArcAbs.internal_();
4894 }
4895 4797
4896 @Deprecated("Internal Use Only") 4798 @Deprecated("Internal Use Only")
4897 PathSegArcAbs.internal_() : super.internal_(); 4799 PathSegArcAbs.internal_() : super.internal_();
4898 4800
4899 4801
4900 @DomName('SVGPathSegArcAbs.angle') 4802 @DomName('SVGPathSegArcAbs.angle')
4901 @DocsEditable() 4803 @DocsEditable()
4902 num get angle => _blink.BlinkSVGPathSegArcAbs.instance.angle_Getter_(unwrap_js o(this)); 4804 num get angle => _blink.BlinkSVGPathSegArcAbs.instance.angle_Getter_(unwrap_js o(this));
4903 4805
4904 @DomName('SVGPathSegArcAbs.angle') 4806 @DomName('SVGPathSegArcAbs.angle')
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
4967 class PathSegArcRel extends PathSeg { 4869 class PathSegArcRel extends PathSeg {
4968 // To suppress missing implicit constructor warnings. 4870 // To suppress missing implicit constructor warnings.
4969 factory PathSegArcRel._() { throw new UnsupportedError("Not supported"); } 4871 factory PathSegArcRel._() { throw new UnsupportedError("Not supported"); }
4970 4872
4971 4873
4972 @Deprecated("Internal Use Only") 4874 @Deprecated("Internal Use Only")
4973 static PathSegArcRel internalCreatePathSegArcRel() { 4875 static PathSegArcRel internalCreatePathSegArcRel() {
4974 return new PathSegArcRel._internalWrap(); 4876 return new PathSegArcRel._internalWrap();
4975 } 4877 }
4976 4878
4977 factory PathSegArcRel._internalWrap() { 4879 external factory PathSegArcRel._internalWrap();
4978 return new PathSegArcRel.internal_();
4979 }
4980 4880
4981 @Deprecated("Internal Use Only") 4881 @Deprecated("Internal Use Only")
4982 PathSegArcRel.internal_() : super.internal_(); 4882 PathSegArcRel.internal_() : super.internal_();
4983 4883
4984 4884
4985 @DomName('SVGPathSegArcRel.angle') 4885 @DomName('SVGPathSegArcRel.angle')
4986 @DocsEditable() 4886 @DocsEditable()
4987 num get angle => _blink.BlinkSVGPathSegArcRel.instance.angle_Getter_(unwrap_js o(this)); 4887 num get angle => _blink.BlinkSVGPathSegArcRel.instance.angle_Getter_(unwrap_js o(this));
4988 4888
4989 @DomName('SVGPathSegArcRel.angle') 4889 @DomName('SVGPathSegArcRel.angle')
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
5052 class PathSegClosePath extends PathSeg { 4952 class PathSegClosePath extends PathSeg {
5053 // To suppress missing implicit constructor warnings. 4953 // To suppress missing implicit constructor warnings.
5054 factory PathSegClosePath._() { throw new UnsupportedError("Not supported"); } 4954 factory PathSegClosePath._() { throw new UnsupportedError("Not supported"); }
5055 4955
5056 4956
5057 @Deprecated("Internal Use Only") 4957 @Deprecated("Internal Use Only")
5058 static PathSegClosePath internalCreatePathSegClosePath() { 4958 static PathSegClosePath internalCreatePathSegClosePath() {
5059 return new PathSegClosePath._internalWrap(); 4959 return new PathSegClosePath._internalWrap();
5060 } 4960 }
5061 4961
5062 factory PathSegClosePath._internalWrap() { 4962 external factory PathSegClosePath._internalWrap();
5063 return new PathSegClosePath.internal_();
5064 }
5065 4963
5066 @Deprecated("Internal Use Only") 4964 @Deprecated("Internal Use Only")
5067 PathSegClosePath.internal_() : super.internal_(); 4965 PathSegClosePath.internal_() : super.internal_();
5068 4966
5069 4967
5070 } 4968 }
5071 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4969 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5072 // for details. All rights reserved. Use of this source code is governed by a 4970 // for details. All rights reserved. Use of this source code is governed by a
5073 // BSD-style license that can be found in the LICENSE file. 4971 // BSD-style license that can be found in the LICENSE file.
5074 4972
5075 // WARNING: Do not edit - generated code. 4973 // WARNING: Do not edit - generated code.
5076 4974
5077 4975
5078 @DocsEditable() 4976 @DocsEditable()
5079 @DomName('SVGPathSegCurvetoCubicAbs') 4977 @DomName('SVGPathSegCurvetoCubicAbs')
5080 @Unstable() 4978 @Unstable()
5081 class PathSegCurvetoCubicAbs extends PathSeg { 4979 class PathSegCurvetoCubicAbs extends PathSeg {
5082 // To suppress missing implicit constructor warnings. 4980 // To suppress missing implicit constructor warnings.
5083 factory PathSegCurvetoCubicAbs._() { throw new UnsupportedError("Not supported "); } 4981 factory PathSegCurvetoCubicAbs._() { throw new UnsupportedError("Not supported "); }
5084 4982
5085 4983
5086 @Deprecated("Internal Use Only") 4984 @Deprecated("Internal Use Only")
5087 static PathSegCurvetoCubicAbs internalCreatePathSegCurvetoCubicAbs() { 4985 static PathSegCurvetoCubicAbs internalCreatePathSegCurvetoCubicAbs() {
5088 return new PathSegCurvetoCubicAbs._internalWrap(); 4986 return new PathSegCurvetoCubicAbs._internalWrap();
5089 } 4987 }
5090 4988
5091 factory PathSegCurvetoCubicAbs._internalWrap() { 4989 external factory PathSegCurvetoCubicAbs._internalWrap();
5092 return new PathSegCurvetoCubicAbs.internal_();
5093 }
5094 4990
5095 @Deprecated("Internal Use Only") 4991 @Deprecated("Internal Use Only")
5096 PathSegCurvetoCubicAbs.internal_() : super.internal_(); 4992 PathSegCurvetoCubicAbs.internal_() : super.internal_();
5097 4993
5098 4994
5099 @DomName('SVGPathSegCurvetoCubicAbs.x') 4995 @DomName('SVGPathSegCurvetoCubicAbs.x')
5100 @DocsEditable() 4996 @DocsEditable()
5101 num get x => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x_Getter_(unwrap_j so(this)); 4997 num get x => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x_Getter_(unwrap_j so(this));
5102 4998
5103 @DomName('SVGPathSegCurvetoCubicAbs.x') 4999 @DomName('SVGPathSegCurvetoCubicAbs.x')
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
5158 class PathSegCurvetoCubicRel extends PathSeg { 5054 class PathSegCurvetoCubicRel extends PathSeg {
5159 // To suppress missing implicit constructor warnings. 5055 // To suppress missing implicit constructor warnings.
5160 factory PathSegCurvetoCubicRel._() { throw new UnsupportedError("Not supported "); } 5056 factory PathSegCurvetoCubicRel._() { throw new UnsupportedError("Not supported "); }
5161 5057
5162 5058
5163 @Deprecated("Internal Use Only") 5059 @Deprecated("Internal Use Only")
5164 static PathSegCurvetoCubicRel internalCreatePathSegCurvetoCubicRel() { 5060 static PathSegCurvetoCubicRel internalCreatePathSegCurvetoCubicRel() {
5165 return new PathSegCurvetoCubicRel._internalWrap(); 5061 return new PathSegCurvetoCubicRel._internalWrap();
5166 } 5062 }
5167 5063
5168 factory PathSegCurvetoCubicRel._internalWrap() { 5064 external factory PathSegCurvetoCubicRel._internalWrap();
5169 return new PathSegCurvetoCubicRel.internal_();
5170 }
5171 5065
5172 @Deprecated("Internal Use Only") 5066 @Deprecated("Internal Use Only")
5173 PathSegCurvetoCubicRel.internal_() : super.internal_(); 5067 PathSegCurvetoCubicRel.internal_() : super.internal_();
5174 5068
5175 5069
5176 @DomName('SVGPathSegCurvetoCubicRel.x') 5070 @DomName('SVGPathSegCurvetoCubicRel.x')
5177 @DocsEditable() 5071 @DocsEditable()
5178 num get x => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x_Getter_(unwrap_j so(this)); 5072 num get x => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x_Getter_(unwrap_j so(this));
5179 5073
5180 @DomName('SVGPathSegCurvetoCubicRel.x') 5074 @DomName('SVGPathSegCurvetoCubicRel.x')
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
5235 class PathSegCurvetoCubicSmoothAbs extends PathSeg { 5129 class PathSegCurvetoCubicSmoothAbs extends PathSeg {
5236 // To suppress missing implicit constructor warnings. 5130 // To suppress missing implicit constructor warnings.
5237 factory PathSegCurvetoCubicSmoothAbs._() { throw new UnsupportedError("Not sup ported"); } 5131 factory PathSegCurvetoCubicSmoothAbs._() { throw new UnsupportedError("Not sup ported"); }
5238 5132
5239 5133
5240 @Deprecated("Internal Use Only") 5134 @Deprecated("Internal Use Only")
5241 static PathSegCurvetoCubicSmoothAbs internalCreatePathSegCurvetoCubicSmoothAbs () { 5135 static PathSegCurvetoCubicSmoothAbs internalCreatePathSegCurvetoCubicSmoothAbs () {
5242 return new PathSegCurvetoCubicSmoothAbs._internalWrap(); 5136 return new PathSegCurvetoCubicSmoothAbs._internalWrap();
5243 } 5137 }
5244 5138
5245 factory PathSegCurvetoCubicSmoothAbs._internalWrap() { 5139 external factory PathSegCurvetoCubicSmoothAbs._internalWrap();
5246 return new PathSegCurvetoCubicSmoothAbs.internal_();
5247 }
5248 5140
5249 @Deprecated("Internal Use Only") 5141 @Deprecated("Internal Use Only")
5250 PathSegCurvetoCubicSmoothAbs.internal_() : super.internal_(); 5142 PathSegCurvetoCubicSmoothAbs.internal_() : super.internal_();
5251 5143
5252 5144
5253 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x') 5145 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x')
5254 @DocsEditable() 5146 @DocsEditable()
5255 num get x => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.x_Getter_(un wrap_jso(this)); 5147 num get x => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.x_Getter_(un wrap_jso(this));
5256 5148
5257 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x') 5149 @DomName('SVGPathSegCurvetoCubicSmoothAbs.x')
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
5296 class PathSegCurvetoCubicSmoothRel extends PathSeg { 5188 class PathSegCurvetoCubicSmoothRel extends PathSeg {
5297 // To suppress missing implicit constructor warnings. 5189 // To suppress missing implicit constructor warnings.
5298 factory PathSegCurvetoCubicSmoothRel._() { throw new UnsupportedError("Not sup ported"); } 5190 factory PathSegCurvetoCubicSmoothRel._() { throw new UnsupportedError("Not sup ported"); }
5299 5191
5300 5192
5301 @Deprecated("Internal Use Only") 5193 @Deprecated("Internal Use Only")
5302 static PathSegCurvetoCubicSmoothRel internalCreatePathSegCurvetoCubicSmoothRel () { 5194 static PathSegCurvetoCubicSmoothRel internalCreatePathSegCurvetoCubicSmoothRel () {
5303 return new PathSegCurvetoCubicSmoothRel._internalWrap(); 5195 return new PathSegCurvetoCubicSmoothRel._internalWrap();
5304 } 5196 }
5305 5197
5306 factory PathSegCurvetoCubicSmoothRel._internalWrap() { 5198 external factory PathSegCurvetoCubicSmoothRel._internalWrap();
5307 return new PathSegCurvetoCubicSmoothRel.internal_();
5308 }
5309 5199
5310 @Deprecated("Internal Use Only") 5200 @Deprecated("Internal Use Only")
5311 PathSegCurvetoCubicSmoothRel.internal_() : super.internal_(); 5201 PathSegCurvetoCubicSmoothRel.internal_() : super.internal_();
5312 5202
5313 5203
5314 @DomName('SVGPathSegCurvetoCubicSmoothRel.x') 5204 @DomName('SVGPathSegCurvetoCubicSmoothRel.x')
5315 @DocsEditable() 5205 @DocsEditable()
5316 num get x => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.x_Getter_(un wrap_jso(this)); 5206 num get x => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.x_Getter_(un wrap_jso(this));
5317 5207
5318 @DomName('SVGPathSegCurvetoCubicSmoothRel.x') 5208 @DomName('SVGPathSegCurvetoCubicSmoothRel.x')
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
5357 class PathSegCurvetoQuadraticAbs extends PathSeg { 5247 class PathSegCurvetoQuadraticAbs extends PathSeg {
5358 // To suppress missing implicit constructor warnings. 5248 // To suppress missing implicit constructor warnings.
5359 factory PathSegCurvetoQuadraticAbs._() { throw new UnsupportedError("Not suppo rted"); } 5249 factory PathSegCurvetoQuadraticAbs._() { throw new UnsupportedError("Not suppo rted"); }
5360 5250
5361 5251
5362 @Deprecated("Internal Use Only") 5252 @Deprecated("Internal Use Only")
5363 static PathSegCurvetoQuadraticAbs internalCreatePathSegCurvetoQuadraticAbs() { 5253 static PathSegCurvetoQuadraticAbs internalCreatePathSegCurvetoQuadraticAbs() {
5364 return new PathSegCurvetoQuadraticAbs._internalWrap(); 5254 return new PathSegCurvetoQuadraticAbs._internalWrap();
5365 } 5255 }
5366 5256
5367 factory PathSegCurvetoQuadraticAbs._internalWrap() { 5257 external factory PathSegCurvetoQuadraticAbs._internalWrap();
5368 return new PathSegCurvetoQuadraticAbs.internal_();
5369 }
5370 5258
5371 @Deprecated("Internal Use Only") 5259 @Deprecated("Internal Use Only")
5372 PathSegCurvetoQuadraticAbs.internal_() : super.internal_(); 5260 PathSegCurvetoQuadraticAbs.internal_() : super.internal_();
5373 5261
5374 5262
5375 @DomName('SVGPathSegCurvetoQuadraticAbs.x') 5263 @DomName('SVGPathSegCurvetoQuadraticAbs.x')
5376 @DocsEditable() 5264 @DocsEditable()
5377 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.x_Getter_(unwr ap_jso(this)); 5265 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.x_Getter_(unwr ap_jso(this));
5378 5266
5379 @DomName('SVGPathSegCurvetoQuadraticAbs.x') 5267 @DomName('SVGPathSegCurvetoQuadraticAbs.x')
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
5418 class PathSegCurvetoQuadraticRel extends PathSeg { 5306 class PathSegCurvetoQuadraticRel extends PathSeg {
5419 // To suppress missing implicit constructor warnings. 5307 // To suppress missing implicit constructor warnings.
5420 factory PathSegCurvetoQuadraticRel._() { throw new UnsupportedError("Not suppo rted"); } 5308 factory PathSegCurvetoQuadraticRel._() { throw new UnsupportedError("Not suppo rted"); }
5421 5309
5422 5310
5423 @Deprecated("Internal Use Only") 5311 @Deprecated("Internal Use Only")
5424 static PathSegCurvetoQuadraticRel internalCreatePathSegCurvetoQuadraticRel() { 5312 static PathSegCurvetoQuadraticRel internalCreatePathSegCurvetoQuadraticRel() {
5425 return new PathSegCurvetoQuadraticRel._internalWrap(); 5313 return new PathSegCurvetoQuadraticRel._internalWrap();
5426 } 5314 }
5427 5315
5428 factory PathSegCurvetoQuadraticRel._internalWrap() { 5316 external factory PathSegCurvetoQuadraticRel._internalWrap();
5429 return new PathSegCurvetoQuadraticRel.internal_();
5430 }
5431 5317
5432 @Deprecated("Internal Use Only") 5318 @Deprecated("Internal Use Only")
5433 PathSegCurvetoQuadraticRel.internal_() : super.internal_(); 5319 PathSegCurvetoQuadraticRel.internal_() : super.internal_();
5434 5320
5435 5321
5436 @DomName('SVGPathSegCurvetoQuadraticRel.x') 5322 @DomName('SVGPathSegCurvetoQuadraticRel.x')
5437 @DocsEditable() 5323 @DocsEditable()
5438 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.x_Getter_(unwr ap_jso(this)); 5324 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.x_Getter_(unwr ap_jso(this));
5439 5325
5440 @DomName('SVGPathSegCurvetoQuadraticRel.x') 5326 @DomName('SVGPathSegCurvetoQuadraticRel.x')
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
5479 class PathSegCurvetoQuadraticSmoothAbs extends PathSeg { 5365 class PathSegCurvetoQuadraticSmoothAbs extends PathSeg {
5480 // To suppress missing implicit constructor warnings. 5366 // To suppress missing implicit constructor warnings.
5481 factory PathSegCurvetoQuadraticSmoothAbs._() { throw new UnsupportedError("Not supported"); } 5367 factory PathSegCurvetoQuadraticSmoothAbs._() { throw new UnsupportedError("Not supported"); }
5482 5368
5483 5369
5484 @Deprecated("Internal Use Only") 5370 @Deprecated("Internal Use Only")
5485 static PathSegCurvetoQuadraticSmoothAbs internalCreatePathSegCurvetoQuadraticS moothAbs() { 5371 static PathSegCurvetoQuadraticSmoothAbs internalCreatePathSegCurvetoQuadraticS moothAbs() {
5486 return new PathSegCurvetoQuadraticSmoothAbs._internalWrap(); 5372 return new PathSegCurvetoQuadraticSmoothAbs._internalWrap();
5487 } 5373 }
5488 5374
5489 factory PathSegCurvetoQuadraticSmoothAbs._internalWrap() { 5375 external factory PathSegCurvetoQuadraticSmoothAbs._internalWrap();
5490 return new PathSegCurvetoQuadraticSmoothAbs.internal_();
5491 }
5492 5376
5493 @Deprecated("Internal Use Only") 5377 @Deprecated("Internal Use Only")
5494 PathSegCurvetoQuadraticSmoothAbs.internal_() : super.internal_(); 5378 PathSegCurvetoQuadraticSmoothAbs.internal_() : super.internal_();
5495 5379
5496 5380
5497 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.x') 5381 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.x')
5498 @DocsEditable() 5382 @DocsEditable()
5499 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.instance.x_Getter _(unwrap_jso(this)); 5383 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.instance.x_Getter _(unwrap_jso(this));
5500 5384
5501 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.x') 5385 @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.x')
(...skipping 22 matching lines...) Expand all
5524 class PathSegCurvetoQuadraticSmoothRel extends PathSeg { 5408 class PathSegCurvetoQuadraticSmoothRel extends PathSeg {
5525 // To suppress missing implicit constructor warnings. 5409 // To suppress missing implicit constructor warnings.
5526 factory PathSegCurvetoQuadraticSmoothRel._() { throw new UnsupportedError("Not supported"); } 5410 factory PathSegCurvetoQuadraticSmoothRel._() { throw new UnsupportedError("Not supported"); }
5527 5411
5528 5412
5529 @Deprecated("Internal Use Only") 5413 @Deprecated("Internal Use Only")
5530 static PathSegCurvetoQuadraticSmoothRel internalCreatePathSegCurvetoQuadraticS moothRel() { 5414 static PathSegCurvetoQuadraticSmoothRel internalCreatePathSegCurvetoQuadraticS moothRel() {
5531 return new PathSegCurvetoQuadraticSmoothRel._internalWrap(); 5415 return new PathSegCurvetoQuadraticSmoothRel._internalWrap();
5532 } 5416 }
5533 5417
5534 factory PathSegCurvetoQuadraticSmoothRel._internalWrap() { 5418 external factory PathSegCurvetoQuadraticSmoothRel._internalWrap();
5535 return new PathSegCurvetoQuadraticSmoothRel.internal_();
5536 }
5537 5419
5538 @Deprecated("Internal Use Only") 5420 @Deprecated("Internal Use Only")
5539 PathSegCurvetoQuadraticSmoothRel.internal_() : super.internal_(); 5421 PathSegCurvetoQuadraticSmoothRel.internal_() : super.internal_();
5540 5422
5541 5423
5542 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.x') 5424 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.x')
5543 @DocsEditable() 5425 @DocsEditable()
5544 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.instance.x_Getter _(unwrap_jso(this)); 5426 num get x => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.instance.x_Getter _(unwrap_jso(this));
5545 5427
5546 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.x') 5428 @DomName('SVGPathSegCurvetoQuadraticSmoothRel.x')
(...skipping 22 matching lines...) Expand all
5569 class PathSegLinetoAbs extends PathSeg { 5451 class PathSegLinetoAbs extends PathSeg {
5570 // To suppress missing implicit constructor warnings. 5452 // To suppress missing implicit constructor warnings.
5571 factory PathSegLinetoAbs._() { throw new UnsupportedError("Not supported"); } 5453 factory PathSegLinetoAbs._() { throw new UnsupportedError("Not supported"); }
5572 5454
5573 5455
5574 @Deprecated("Internal Use Only") 5456 @Deprecated("Internal Use Only")
5575 static PathSegLinetoAbs internalCreatePathSegLinetoAbs() { 5457 static PathSegLinetoAbs internalCreatePathSegLinetoAbs() {
5576 return new PathSegLinetoAbs._internalWrap(); 5458 return new PathSegLinetoAbs._internalWrap();
5577 } 5459 }
5578 5460
5579 factory PathSegLinetoAbs._internalWrap() { 5461 external factory PathSegLinetoAbs._internalWrap();
5580 return new PathSegLinetoAbs.internal_();
5581 }
5582 5462
5583 @Deprecated("Internal Use Only") 5463 @Deprecated("Internal Use Only")
5584 PathSegLinetoAbs.internal_() : super.internal_(); 5464 PathSegLinetoAbs.internal_() : super.internal_();
5585 5465
5586 5466
5587 @DomName('SVGPathSegLinetoAbs.x') 5467 @DomName('SVGPathSegLinetoAbs.x')
5588 @DocsEditable() 5468 @DocsEditable()
5589 num get x => _blink.BlinkSVGPathSegLinetoAbs.instance.x_Getter_(unwrap_jso(thi s)); 5469 num get x => _blink.BlinkSVGPathSegLinetoAbs.instance.x_Getter_(unwrap_jso(thi s));
5590 5470
5591 @DomName('SVGPathSegLinetoAbs.x') 5471 @DomName('SVGPathSegLinetoAbs.x')
(...skipping 22 matching lines...) Expand all
5614 class PathSegLinetoHorizontalAbs extends PathSeg { 5494 class PathSegLinetoHorizontalAbs extends PathSeg {
5615 // To suppress missing implicit constructor warnings. 5495 // To suppress missing implicit constructor warnings.
5616 factory PathSegLinetoHorizontalAbs._() { throw new UnsupportedError("Not suppo rted"); } 5496 factory PathSegLinetoHorizontalAbs._() { throw new UnsupportedError("Not suppo rted"); }
5617 5497
5618 5498
5619 @Deprecated("Internal Use Only") 5499 @Deprecated("Internal Use Only")
5620 static PathSegLinetoHorizontalAbs internalCreatePathSegLinetoHorizontalAbs() { 5500 static PathSegLinetoHorizontalAbs internalCreatePathSegLinetoHorizontalAbs() {
5621 return new PathSegLinetoHorizontalAbs._internalWrap(); 5501 return new PathSegLinetoHorizontalAbs._internalWrap();
5622 } 5502 }
5623 5503
5624 factory PathSegLinetoHorizontalAbs._internalWrap() { 5504 external factory PathSegLinetoHorizontalAbs._internalWrap();
5625 return new PathSegLinetoHorizontalAbs.internal_();
5626 }
5627 5505
5628 @Deprecated("Internal Use Only") 5506 @Deprecated("Internal Use Only")
5629 PathSegLinetoHorizontalAbs.internal_() : super.internal_(); 5507 PathSegLinetoHorizontalAbs.internal_() : super.internal_();
5630 5508
5631 5509
5632 @DomName('SVGPathSegLinetoHorizontalAbs.x') 5510 @DomName('SVGPathSegLinetoHorizontalAbs.x')
5633 @DocsEditable() 5511 @DocsEditable()
5634 num get x => _blink.BlinkSVGPathSegLinetoHorizontalAbs.instance.x_Getter_(unwr ap_jso(this)); 5512 num get x => _blink.BlinkSVGPathSegLinetoHorizontalAbs.instance.x_Getter_(unwr ap_jso(this));
5635 5513
5636 @DomName('SVGPathSegLinetoHorizontalAbs.x') 5514 @DomName('SVGPathSegLinetoHorizontalAbs.x')
(...skipping 14 matching lines...) Expand all
5651 class PathSegLinetoHorizontalRel extends PathSeg { 5529 class PathSegLinetoHorizontalRel extends PathSeg {
5652 // To suppress missing implicit constructor warnings. 5530 // To suppress missing implicit constructor warnings.
5653 factory PathSegLinetoHorizontalRel._() { throw new UnsupportedError("Not suppo rted"); } 5531 factory PathSegLinetoHorizontalRel._() { throw new UnsupportedError("Not suppo rted"); }
5654 5532
5655 5533
5656 @Deprecated("Internal Use Only") 5534 @Deprecated("Internal Use Only")
5657 static PathSegLinetoHorizontalRel internalCreatePathSegLinetoHorizontalRel() { 5535 static PathSegLinetoHorizontalRel internalCreatePathSegLinetoHorizontalRel() {
5658 return new PathSegLinetoHorizontalRel._internalWrap(); 5536 return new PathSegLinetoHorizontalRel._internalWrap();
5659 } 5537 }
5660 5538
5661 factory PathSegLinetoHorizontalRel._internalWrap() { 5539 external factory PathSegLinetoHorizontalRel._internalWrap();
5662 return new PathSegLinetoHorizontalRel.internal_();
5663 }
5664 5540
5665 @Deprecated("Internal Use Only") 5541 @Deprecated("Internal Use Only")
5666 PathSegLinetoHorizontalRel.internal_() : super.internal_(); 5542 PathSegLinetoHorizontalRel.internal_() : super.internal_();
5667 5543
5668 5544
5669 @DomName('SVGPathSegLinetoHorizontalRel.x') 5545 @DomName('SVGPathSegLinetoHorizontalRel.x')
5670 @DocsEditable() 5546 @DocsEditable()
5671 num get x => _blink.BlinkSVGPathSegLinetoHorizontalRel.instance.x_Getter_(unwr ap_jso(this)); 5547 num get x => _blink.BlinkSVGPathSegLinetoHorizontalRel.instance.x_Getter_(unwr ap_jso(this));
5672 5548
5673 @DomName('SVGPathSegLinetoHorizontalRel.x') 5549 @DomName('SVGPathSegLinetoHorizontalRel.x')
(...skipping 14 matching lines...) Expand all
5688 class PathSegLinetoRel extends PathSeg { 5564 class PathSegLinetoRel extends PathSeg {
5689 // To suppress missing implicit constructor warnings. 5565 // To suppress missing implicit constructor warnings.
5690 factory PathSegLinetoRel._() { throw new UnsupportedError("Not supported"); } 5566 factory PathSegLinetoRel._() { throw new UnsupportedError("Not supported"); }
5691 5567
5692 5568
5693 @Deprecated("Internal Use Only") 5569 @Deprecated("Internal Use Only")
5694 static PathSegLinetoRel internalCreatePathSegLinetoRel() { 5570 static PathSegLinetoRel internalCreatePathSegLinetoRel() {
5695 return new PathSegLinetoRel._internalWrap(); 5571 return new PathSegLinetoRel._internalWrap();
5696 } 5572 }
5697 5573
5698 factory PathSegLinetoRel._internalWrap() { 5574 external factory PathSegLinetoRel._internalWrap();
5699 return new PathSegLinetoRel.internal_();
5700 }
5701 5575
5702 @Deprecated("Internal Use Only") 5576 @Deprecated("Internal Use Only")
5703 PathSegLinetoRel.internal_() : super.internal_(); 5577 PathSegLinetoRel.internal_() : super.internal_();
5704 5578
5705 5579
5706 @DomName('SVGPathSegLinetoRel.x') 5580 @DomName('SVGPathSegLinetoRel.x')
5707 @DocsEditable() 5581 @DocsEditable()
5708 num get x => _blink.BlinkSVGPathSegLinetoRel.instance.x_Getter_(unwrap_jso(thi s)); 5582 num get x => _blink.BlinkSVGPathSegLinetoRel.instance.x_Getter_(unwrap_jso(thi s));
5709 5583
5710 @DomName('SVGPathSegLinetoRel.x') 5584 @DomName('SVGPathSegLinetoRel.x')
(...skipping 22 matching lines...) Expand all
5733 class PathSegLinetoVerticalAbs extends PathSeg { 5607 class PathSegLinetoVerticalAbs extends PathSeg {
5734 // To suppress missing implicit constructor warnings. 5608 // To suppress missing implicit constructor warnings.
5735 factory PathSegLinetoVerticalAbs._() { throw new UnsupportedError("Not support ed"); } 5609 factory PathSegLinetoVerticalAbs._() { throw new UnsupportedError("Not support ed"); }
5736 5610
5737 5611
5738 @Deprecated("Internal Use Only") 5612 @Deprecated("Internal Use Only")
5739 static PathSegLinetoVerticalAbs internalCreatePathSegLinetoVerticalAbs() { 5613 static PathSegLinetoVerticalAbs internalCreatePathSegLinetoVerticalAbs() {
5740 return new PathSegLinetoVerticalAbs._internalWrap(); 5614 return new PathSegLinetoVerticalAbs._internalWrap();
5741 } 5615 }
5742 5616
5743 factory PathSegLinetoVerticalAbs._internalWrap() { 5617 external factory PathSegLinetoVerticalAbs._internalWrap();
5744 return new PathSegLinetoVerticalAbs.internal_();
5745 }
5746 5618
5747 @Deprecated("Internal Use Only") 5619 @Deprecated("Internal Use Only")
5748 PathSegLinetoVerticalAbs.internal_() : super.internal_(); 5620 PathSegLinetoVerticalAbs.internal_() : super.internal_();
5749 5621
5750 5622
5751 @DomName('SVGPathSegLinetoVerticalAbs.y') 5623 @DomName('SVGPathSegLinetoVerticalAbs.y')
5752 @DocsEditable() 5624 @DocsEditable()
5753 num get y => _blink.BlinkSVGPathSegLinetoVerticalAbs.instance.y_Getter_(unwrap _jso(this)); 5625 num get y => _blink.BlinkSVGPathSegLinetoVerticalAbs.instance.y_Getter_(unwrap _jso(this));
5754 5626
5755 @DomName('SVGPathSegLinetoVerticalAbs.y') 5627 @DomName('SVGPathSegLinetoVerticalAbs.y')
(...skipping 14 matching lines...) Expand all
5770 class PathSegLinetoVerticalRel extends PathSeg { 5642 class PathSegLinetoVerticalRel extends PathSeg {
5771 // To suppress missing implicit constructor warnings. 5643 // To suppress missing implicit constructor warnings.
5772 factory PathSegLinetoVerticalRel._() { throw new UnsupportedError("Not support ed"); } 5644 factory PathSegLinetoVerticalRel._() { throw new UnsupportedError("Not support ed"); }
5773 5645
5774 5646
5775 @Deprecated("Internal Use Only") 5647 @Deprecated("Internal Use Only")
5776 static PathSegLinetoVerticalRel internalCreatePathSegLinetoVerticalRel() { 5648 static PathSegLinetoVerticalRel internalCreatePathSegLinetoVerticalRel() {
5777 return new PathSegLinetoVerticalRel._internalWrap(); 5649 return new PathSegLinetoVerticalRel._internalWrap();
5778 } 5650 }
5779 5651
5780 factory PathSegLinetoVerticalRel._internalWrap() { 5652 external factory PathSegLinetoVerticalRel._internalWrap();
5781 return new PathSegLinetoVerticalRel.internal_();
5782 }
5783 5653
5784 @Deprecated("Internal Use Only") 5654 @Deprecated("Internal Use Only")
5785 PathSegLinetoVerticalRel.internal_() : super.internal_(); 5655 PathSegLinetoVerticalRel.internal_() : super.internal_();
5786 5656
5787 5657
5788 @DomName('SVGPathSegLinetoVerticalRel.y') 5658 @DomName('SVGPathSegLinetoVerticalRel.y')
5789 @DocsEditable() 5659 @DocsEditable()
5790 num get y => _blink.BlinkSVGPathSegLinetoVerticalRel.instance.y_Getter_(unwrap _jso(this)); 5660 num get y => _blink.BlinkSVGPathSegLinetoVerticalRel.instance.y_Getter_(unwrap _jso(this));
5791 5661
5792 @DomName('SVGPathSegLinetoVerticalRel.y') 5662 @DomName('SVGPathSegLinetoVerticalRel.y')
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
5923 class PathSegMovetoAbs extends PathSeg { 5793 class PathSegMovetoAbs extends PathSeg {
5924 // To suppress missing implicit constructor warnings. 5794 // To suppress missing implicit constructor warnings.
5925 factory PathSegMovetoAbs._() { throw new UnsupportedError("Not supported"); } 5795 factory PathSegMovetoAbs._() { throw new UnsupportedError("Not supported"); }
5926 5796
5927 5797
5928 @Deprecated("Internal Use Only") 5798 @Deprecated("Internal Use Only")
5929 static PathSegMovetoAbs internalCreatePathSegMovetoAbs() { 5799 static PathSegMovetoAbs internalCreatePathSegMovetoAbs() {
5930 return new PathSegMovetoAbs._internalWrap(); 5800 return new PathSegMovetoAbs._internalWrap();
5931 } 5801 }
5932 5802
5933 factory PathSegMovetoAbs._internalWrap() { 5803 external factory PathSegMovetoAbs._internalWrap();
5934 return new PathSegMovetoAbs.internal_();
5935 }
5936 5804
5937 @Deprecated("Internal Use Only") 5805 @Deprecated("Internal Use Only")
5938 PathSegMovetoAbs.internal_() : super.internal_(); 5806 PathSegMovetoAbs.internal_() : super.internal_();
5939 5807
5940 5808
5941 @DomName('SVGPathSegMovetoAbs.x') 5809 @DomName('SVGPathSegMovetoAbs.x')
5942 @DocsEditable() 5810 @DocsEditable()
5943 num get x => _blink.BlinkSVGPathSegMovetoAbs.instance.x_Getter_(unwrap_jso(thi s)); 5811 num get x => _blink.BlinkSVGPathSegMovetoAbs.instance.x_Getter_(unwrap_jso(thi s));
5944 5812
5945 @DomName('SVGPathSegMovetoAbs.x') 5813 @DomName('SVGPathSegMovetoAbs.x')
(...skipping 22 matching lines...) Expand all
5968 class PathSegMovetoRel extends PathSeg { 5836 class PathSegMovetoRel extends PathSeg {
5969 // To suppress missing implicit constructor warnings. 5837 // To suppress missing implicit constructor warnings.
5970 factory PathSegMovetoRel._() { throw new UnsupportedError("Not supported"); } 5838 factory PathSegMovetoRel._() { throw new UnsupportedError("Not supported"); }
5971 5839
5972 5840
5973 @Deprecated("Internal Use Only") 5841 @Deprecated("Internal Use Only")
5974 static PathSegMovetoRel internalCreatePathSegMovetoRel() { 5842 static PathSegMovetoRel internalCreatePathSegMovetoRel() {
5975 return new PathSegMovetoRel._internalWrap(); 5843 return new PathSegMovetoRel._internalWrap();
5976 } 5844 }
5977 5845
5978 factory PathSegMovetoRel._internalWrap() { 5846 external factory PathSegMovetoRel._internalWrap();
5979 return new PathSegMovetoRel.internal_();
5980 }
5981 5847
5982 @Deprecated("Internal Use Only") 5848 @Deprecated("Internal Use Only")
5983 PathSegMovetoRel.internal_() : super.internal_(); 5849 PathSegMovetoRel.internal_() : super.internal_();
5984 5850
5985 5851
5986 @DomName('SVGPathSegMovetoRel.x') 5852 @DomName('SVGPathSegMovetoRel.x')
5987 @DocsEditable() 5853 @DocsEditable()
5988 num get x => _blink.BlinkSVGPathSegMovetoRel.instance.x_Getter_(unwrap_jso(thi s)); 5854 num get x => _blink.BlinkSVGPathSegMovetoRel.instance.x_Getter_(unwrap_jso(thi s));
5989 5855
5990 @DomName('SVGPathSegMovetoRel.x') 5856 @DomName('SVGPathSegMovetoRel.x')
(...skipping 26 matching lines...) Expand all
6017 @DomName('SVGPatternElement.SVGPatternElement') 5883 @DomName('SVGPatternElement.SVGPatternElement')
6018 @DocsEditable() 5884 @DocsEditable()
6019 factory PatternElement() => _SvgElementFactoryProvider.createSvgElement_tag("p attern"); 5885 factory PatternElement() => _SvgElementFactoryProvider.createSvgElement_tag("p attern");
6020 5886
6021 5887
6022 @Deprecated("Internal Use Only") 5888 @Deprecated("Internal Use Only")
6023 static PatternElement internalCreatePatternElement() { 5889 static PatternElement internalCreatePatternElement() {
6024 return new PatternElement._internalWrap(); 5890 return new PatternElement._internalWrap();
6025 } 5891 }
6026 5892
6027 factory PatternElement._internalWrap() { 5893 external factory PatternElement._internalWrap();
6028 return new PatternElement.internal_();
6029 }
6030 5894
6031 @Deprecated("Internal Use Only") 5895 @Deprecated("Internal Use Only")
6032 PatternElement.internal_() : super.internal_(); 5896 PatternElement.internal_() : super.internal_();
6033 5897
6034 /** 5898 /**
6035 * Constructor instantiated by the DOM when a custom element has been created. 5899 * Constructor instantiated by the DOM when a custom element has been created.
6036 * 5900 *
6037 * This can only be called by subclasses from their created constructor. 5901 * This can only be called by subclasses from their created constructor.
6038 */ 5902 */
6039 PatternElement.created() : super.created(); 5903 PatternElement.created() : super.created();
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
6234 @DomName('SVGPolygonElement.SVGPolygonElement') 6098 @DomName('SVGPolygonElement.SVGPolygonElement')
6235 @DocsEditable() 6099 @DocsEditable()
6236 factory PolygonElement() => _SvgElementFactoryProvider.createSvgElement_tag("p olygon"); 6100 factory PolygonElement() => _SvgElementFactoryProvider.createSvgElement_tag("p olygon");
6237 6101
6238 6102
6239 @Deprecated("Internal Use Only") 6103 @Deprecated("Internal Use Only")
6240 static PolygonElement internalCreatePolygonElement() { 6104 static PolygonElement internalCreatePolygonElement() {
6241 return new PolygonElement._internalWrap(); 6105 return new PolygonElement._internalWrap();
6242 } 6106 }
6243 6107
6244 factory PolygonElement._internalWrap() { 6108 external factory PolygonElement._internalWrap();
6245 return new PolygonElement.internal_();
6246 }
6247 6109
6248 @Deprecated("Internal Use Only") 6110 @Deprecated("Internal Use Only")
6249 PolygonElement.internal_() : super.internal_(); 6111 PolygonElement.internal_() : super.internal_();
6250 6112
6251 /** 6113 /**
6252 * Constructor instantiated by the DOM when a custom element has been created. 6114 * Constructor instantiated by the DOM when a custom element has been created.
6253 * 6115 *
6254 * This can only be called by subclasses from their created constructor. 6116 * This can only be called by subclasses from their created constructor.
6255 */ 6117 */
6256 PolygonElement.created() : super.created(); 6118 PolygonElement.created() : super.created();
(...skipping 24 matching lines...) Expand all
6281 @DomName('SVGPolylineElement.SVGPolylineElement') 6143 @DomName('SVGPolylineElement.SVGPolylineElement')
6282 @DocsEditable() 6144 @DocsEditable()
6283 factory PolylineElement() => _SvgElementFactoryProvider.createSvgElement_tag(" polyline"); 6145 factory PolylineElement() => _SvgElementFactoryProvider.createSvgElement_tag(" polyline");
6284 6146
6285 6147
6286 @Deprecated("Internal Use Only") 6148 @Deprecated("Internal Use Only")
6287 static PolylineElement internalCreatePolylineElement() { 6149 static PolylineElement internalCreatePolylineElement() {
6288 return new PolylineElement._internalWrap(); 6150 return new PolylineElement._internalWrap();
6289 } 6151 }
6290 6152
6291 factory PolylineElement._internalWrap() { 6153 external factory PolylineElement._internalWrap();
6292 return new PolylineElement.internal_();
6293 }
6294 6154
6295 @Deprecated("Internal Use Only") 6155 @Deprecated("Internal Use Only")
6296 PolylineElement.internal_() : super.internal_(); 6156 PolylineElement.internal_() : super.internal_();
6297 6157
6298 /** 6158 /**
6299 * Constructor instantiated by the DOM when a custom element has been created. 6159 * Constructor instantiated by the DOM when a custom element has been created.
6300 * 6160 *
6301 * This can only be called by subclasses from their created constructor. 6161 * This can only be called by subclasses from their created constructor.
6302 */ 6162 */
6303 PolylineElement.created() : super.created(); 6163 PolylineElement.created() : super.created();
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
6430 @DomName('SVGRadialGradientElement.SVGRadialGradientElement') 6290 @DomName('SVGRadialGradientElement.SVGRadialGradientElement')
6431 @DocsEditable() 6291 @DocsEditable()
6432 factory RadialGradientElement() => _SvgElementFactoryProvider.createSvgElement _tag("radialGradient"); 6292 factory RadialGradientElement() => _SvgElementFactoryProvider.createSvgElement _tag("radialGradient");
6433 6293
6434 6294
6435 @Deprecated("Internal Use Only") 6295 @Deprecated("Internal Use Only")
6436 static RadialGradientElement internalCreateRadialGradientElement() { 6296 static RadialGradientElement internalCreateRadialGradientElement() {
6437 return new RadialGradientElement._internalWrap(); 6297 return new RadialGradientElement._internalWrap();
6438 } 6298 }
6439 6299
6440 factory RadialGradientElement._internalWrap() { 6300 external factory RadialGradientElement._internalWrap();
6441 return new RadialGradientElement.internal_();
6442 }
6443 6301
6444 @Deprecated("Internal Use Only") 6302 @Deprecated("Internal Use Only")
6445 RadialGradientElement.internal_() : super.internal_(); 6303 RadialGradientElement.internal_() : super.internal_();
6446 6304
6447 /** 6305 /**
6448 * Constructor instantiated by the DOM when a custom element has been created. 6306 * Constructor instantiated by the DOM when a custom element has been created.
6449 * 6307 *
6450 * This can only be called by subclasses from their created constructor. 6308 * This can only be called by subclasses from their created constructor.
6451 */ 6309 */
6452 RadialGradientElement.created() : super.created(); 6310 RadialGradientElement.created() : super.created();
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
6555 @DomName('SVGRectElement.SVGRectElement') 6413 @DomName('SVGRectElement.SVGRectElement')
6556 @DocsEditable() 6414 @DocsEditable()
6557 factory RectElement() => _SvgElementFactoryProvider.createSvgElement_tag("rect "); 6415 factory RectElement() => _SvgElementFactoryProvider.createSvgElement_tag("rect ");
6558 6416
6559 6417
6560 @Deprecated("Internal Use Only") 6418 @Deprecated("Internal Use Only")
6561 static RectElement internalCreateRectElement() { 6419 static RectElement internalCreateRectElement() {
6562 return new RectElement._internalWrap(); 6420 return new RectElement._internalWrap();
6563 } 6421 }
6564 6422
6565 factory RectElement._internalWrap() { 6423 external factory RectElement._internalWrap();
6566 return new RectElement.internal_();
6567 }
6568 6424
6569 @Deprecated("Internal Use Only") 6425 @Deprecated("Internal Use Only")
6570 RectElement.internal_() : super.internal_(); 6426 RectElement.internal_() : super.internal_();
6571 6427
6572 /** 6428 /**
6573 * Constructor instantiated by the DOM when a custom element has been created. 6429 * Constructor instantiated by the DOM when a custom element has been created.
6574 * 6430 *
6575 * This can only be called by subclasses from their created constructor. 6431 * This can only be called by subclasses from their created constructor.
6576 */ 6432 */
6577 RectElement.created() : super.created(); 6433 RectElement.created() : super.created();
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
6672 @DomName('SVGScriptElement.SVGScriptElement') 6528 @DomName('SVGScriptElement.SVGScriptElement')
6673 @DocsEditable() 6529 @DocsEditable()
6674 factory ScriptElement() => _SvgElementFactoryProvider.createSvgElement_tag("sc ript"); 6530 factory ScriptElement() => _SvgElementFactoryProvider.createSvgElement_tag("sc ript");
6675 6531
6676 6532
6677 @Deprecated("Internal Use Only") 6533 @Deprecated("Internal Use Only")
6678 static ScriptElement internalCreateScriptElement() { 6534 static ScriptElement internalCreateScriptElement() {
6679 return new ScriptElement._internalWrap(); 6535 return new ScriptElement._internalWrap();
6680 } 6536 }
6681 6537
6682 factory ScriptElement._internalWrap() { 6538 external factory ScriptElement._internalWrap();
6683 return new ScriptElement.internal_();
6684 }
6685 6539
6686 @Deprecated("Internal Use Only") 6540 @Deprecated("Internal Use Only")
6687 ScriptElement.internal_() : super.internal_(); 6541 ScriptElement.internal_() : super.internal_();
6688 6542
6689 /** 6543 /**
6690 * Constructor instantiated by the DOM when a custom element has been created. 6544 * Constructor instantiated by the DOM when a custom element has been created.
6691 * 6545 *
6692 * This can only be called by subclasses from their created constructor. 6546 * This can only be called by subclasses from their created constructor.
6693 */ 6547 */
6694 ScriptElement.created() : super.created(); 6548 ScriptElement.created() : super.created();
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
6726 @DomName('SVGSetElement.SVGSetElement') 6580 @DomName('SVGSetElement.SVGSetElement')
6727 @DocsEditable() 6581 @DocsEditable()
6728 factory SetElement() => _SvgElementFactoryProvider.createSvgElement_tag("set") ; 6582 factory SetElement() => _SvgElementFactoryProvider.createSvgElement_tag("set") ;
6729 6583
6730 6584
6731 @Deprecated("Internal Use Only") 6585 @Deprecated("Internal Use Only")
6732 static SetElement internalCreateSetElement() { 6586 static SetElement internalCreateSetElement() {
6733 return new SetElement._internalWrap(); 6587 return new SetElement._internalWrap();
6734 } 6588 }
6735 6589
6736 factory SetElement._internalWrap() { 6590 external factory SetElement._internalWrap();
6737 return new SetElement.internal_();
6738 }
6739 6591
6740 @Deprecated("Internal Use Only") 6592 @Deprecated("Internal Use Only")
6741 SetElement.internal_() : super.internal_(); 6593 SetElement.internal_() : super.internal_();
6742 6594
6743 /** 6595 /**
6744 * Constructor instantiated by the DOM when a custom element has been created. 6596 * Constructor instantiated by the DOM when a custom element has been created.
6745 * 6597 *
6746 * This can only be called by subclasses from their created constructor. 6598 * This can only be called by subclasses from their created constructor.
6747 */ 6599 */
6748 SetElement.created() : super.created(); 6600 SetElement.created() : super.created();
(...skipping 19 matching lines...) Expand all
6768 @DomName('SVGStopElement.SVGStopElement') 6620 @DomName('SVGStopElement.SVGStopElement')
6769 @DocsEditable() 6621 @DocsEditable()
6770 factory StopElement() => _SvgElementFactoryProvider.createSvgElement_tag("stop "); 6622 factory StopElement() => _SvgElementFactoryProvider.createSvgElement_tag("stop ");
6771 6623
6772 6624
6773 @Deprecated("Internal Use Only") 6625 @Deprecated("Internal Use Only")
6774 static StopElement internalCreateStopElement() { 6626 static StopElement internalCreateStopElement() {
6775 return new StopElement._internalWrap(); 6627 return new StopElement._internalWrap();
6776 } 6628 }
6777 6629
6778 factory StopElement._internalWrap() { 6630 external factory StopElement._internalWrap();
6779 return new StopElement.internal_();
6780 }
6781 6631
6782 @Deprecated("Internal Use Only") 6632 @Deprecated("Internal Use Only")
6783 StopElement.internal_() : super.internal_(); 6633 StopElement.internal_() : super.internal_();
6784 6634
6785 /** 6635 /**
6786 * Constructor instantiated by the DOM when a custom element has been created. 6636 * Constructor instantiated by the DOM when a custom element has been created.
6787 * 6637 *
6788 * This can only be called by subclasses from their created constructor. 6638 * This can only be called by subclasses from their created constructor.
6789 */ 6639 */
6790 StopElement.created() : super.created(); 6640 StopElement.created() : super.created();
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
6928 @DomName('SVGStyleElement.SVGStyleElement') 6778 @DomName('SVGStyleElement.SVGStyleElement')
6929 @DocsEditable() 6779 @DocsEditable()
6930 factory StyleElement() => _SvgElementFactoryProvider.createSvgElement_tag("sty le"); 6780 factory StyleElement() => _SvgElementFactoryProvider.createSvgElement_tag("sty le");
6931 6781
6932 6782
6933 @Deprecated("Internal Use Only") 6783 @Deprecated("Internal Use Only")
6934 static StyleElement internalCreateStyleElement() { 6784 static StyleElement internalCreateStyleElement() {
6935 return new StyleElement._internalWrap(); 6785 return new StyleElement._internalWrap();
6936 } 6786 }
6937 6787
6938 factory StyleElement._internalWrap() { 6788 external factory StyleElement._internalWrap();
6939 return new StyleElement.internal_();
6940 }
6941 6789
6942 @Deprecated("Internal Use Only") 6790 @Deprecated("Internal Use Only")
6943 StyleElement.internal_() : super.internal_(); 6791 StyleElement.internal_() : super.internal_();
6944 6792
6945 /** 6793 /**
6946 * Constructor instantiated by the DOM when a custom element has been created. 6794 * Constructor instantiated by the DOM when a custom element has been created.
6947 * 6795 *
6948 * This can only be called by subclasses from their created constructor. 6796 * This can only be called by subclasses from their created constructor.
6949 */ 6797 */
6950 StyleElement.created() : super.created(); 6798 StyleElement.created() : super.created();
(...skipping 458 matching lines...) Expand 10 before | Expand all | Expand 10 after
7409 @DocsEditable() 7257 @DocsEditable()
7410 @Experimental() // untriaged 7258 @Experimental() // untriaged
7411 static const EventStreamProvider<Event> waitingEvent = const EventStreamProvid er<Event>('waiting'); 7259 static const EventStreamProvider<Event> waitingEvent = const EventStreamProvid er<Event>('waiting');
7412 7260
7413 7261
7414 @Deprecated("Internal Use Only") 7262 @Deprecated("Internal Use Only")
7415 static SvgElement internalCreateSvgElement() { 7263 static SvgElement internalCreateSvgElement() {
7416 return new SvgElement._internalWrap(); 7264 return new SvgElement._internalWrap();
7417 } 7265 }
7418 7266
7419 factory SvgElement._internalWrap() { 7267 external factory SvgElement._internalWrap();
7420 return new SvgElement.internal_();
7421 }
7422 7268
7423 @Deprecated("Internal Use Only") 7269 @Deprecated("Internal Use Only")
7424 SvgElement.internal_() : super.internal_(); 7270 SvgElement.internal_() : super.internal_();
7425 7271
7426 /** 7272 /**
7427 * Constructor instantiated by the DOM when a custom element has been created. 7273 * Constructor instantiated by the DOM when a custom element has been created.
7428 * 7274 *
7429 * This can only be called by subclasses from their created constructor. 7275 * This can only be called by subclasses from their created constructor.
7430 */ 7276 */
7431 SvgElement.created() : super.created(); 7277 SvgElement.created() : super.created();
(...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after
7764 7610
7765 // To suppress missing implicit constructor warnings. 7611 // To suppress missing implicit constructor warnings.
7766 factory SvgSvgElement._() { throw new UnsupportedError("Not supported"); } 7612 factory SvgSvgElement._() { throw new UnsupportedError("Not supported"); }
7767 7613
7768 7614
7769 @Deprecated("Internal Use Only") 7615 @Deprecated("Internal Use Only")
7770 static SvgSvgElement internalCreateSvgSvgElement() { 7616 static SvgSvgElement internalCreateSvgSvgElement() {
7771 return new SvgSvgElement._internalWrap(); 7617 return new SvgSvgElement._internalWrap();
7772 } 7618 }
7773 7619
7774 factory SvgSvgElement._internalWrap() { 7620 external factory SvgSvgElement._internalWrap();
7775 return new SvgSvgElement.internal_();
7776 }
7777 7621
7778 @Deprecated("Internal Use Only") 7622 @Deprecated("Internal Use Only")
7779 SvgSvgElement.internal_() : super.internal_(); 7623 SvgSvgElement.internal_() : super.internal_();
7780 7624
7781 /** 7625 /**
7782 * Constructor instantiated by the DOM when a custom element has been created. 7626 * Constructor instantiated by the DOM when a custom element has been created.
7783 * 7627 *
7784 * This can only be called by subclasses from their created constructor. 7628 * This can only be called by subclasses from their created constructor.
7785 */ 7629 */
7786 SvgSvgElement.created() : super.created(); 7630 SvgSvgElement.created() : super.created();
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
7967 @DomName('SVGSwitchElement.SVGSwitchElement') 7811 @DomName('SVGSwitchElement.SVGSwitchElement')
7968 @DocsEditable() 7812 @DocsEditable()
7969 factory SwitchElement() => _SvgElementFactoryProvider.createSvgElement_tag("sw itch"); 7813 factory SwitchElement() => _SvgElementFactoryProvider.createSvgElement_tag("sw itch");
7970 7814
7971 7815
7972 @Deprecated("Internal Use Only") 7816 @Deprecated("Internal Use Only")
7973 static SwitchElement internalCreateSwitchElement() { 7817 static SwitchElement internalCreateSwitchElement() {
7974 return new SwitchElement._internalWrap(); 7818 return new SwitchElement._internalWrap();
7975 } 7819 }
7976 7820
7977 factory SwitchElement._internalWrap() { 7821 external factory SwitchElement._internalWrap();
7978 return new SwitchElement.internal_();
7979 }
7980 7822
7981 @Deprecated("Internal Use Only") 7823 @Deprecated("Internal Use Only")
7982 SwitchElement.internal_() : super.internal_(); 7824 SwitchElement.internal_() : super.internal_();
7983 7825
7984 /** 7826 /**
7985 * Constructor instantiated by the DOM when a custom element has been created. 7827 * Constructor instantiated by the DOM when a custom element has been created.
7986 * 7828 *
7987 * This can only be called by subclasses from their created constructor. 7829 * This can only be called by subclasses from their created constructor.
7988 */ 7830 */
7989 SwitchElement.created() : super.created(); 7831 SwitchElement.created() : super.created();
(...skipping 16 matching lines...) Expand all
8006 @DomName('SVGSymbolElement.SVGSymbolElement') 7848 @DomName('SVGSymbolElement.SVGSymbolElement')
8007 @DocsEditable() 7849 @DocsEditable()
8008 factory SymbolElement() => _SvgElementFactoryProvider.createSvgElement_tag("sy mbol"); 7850 factory SymbolElement() => _SvgElementFactoryProvider.createSvgElement_tag("sy mbol");
8009 7851
8010 7852
8011 @Deprecated("Internal Use Only") 7853 @Deprecated("Internal Use Only")
8012 static SymbolElement internalCreateSymbolElement() { 7854 static SymbolElement internalCreateSymbolElement() {
8013 return new SymbolElement._internalWrap(); 7855 return new SymbolElement._internalWrap();
8014 } 7856 }
8015 7857
8016 factory SymbolElement._internalWrap() { 7858 external factory SymbolElement._internalWrap();
8017 return new SymbolElement.internal_();
8018 }
8019 7859
8020 @Deprecated("Internal Use Only") 7860 @Deprecated("Internal Use Only")
8021 SymbolElement.internal_() : super.internal_(); 7861 SymbolElement.internal_() : super.internal_();
8022 7862
8023 /** 7863 /**
8024 * Constructor instantiated by the DOM when a custom element has been created. 7864 * Constructor instantiated by the DOM when a custom element has been created.
8025 * 7865 *
8026 * This can only be called by subclasses from their created constructor. 7866 * This can only be called by subclasses from their created constructor.
8027 */ 7867 */
8028 SymbolElement.created() : super.created(); 7868 SymbolElement.created() : super.created();
(...skipping 24 matching lines...) Expand all
8053 @DomName('SVGTSpanElement.SVGTSpanElement') 7893 @DomName('SVGTSpanElement.SVGTSpanElement')
8054 @DocsEditable() 7894 @DocsEditable()
8055 factory TSpanElement() => _SvgElementFactoryProvider.createSvgElement_tag("tsp an"); 7895 factory TSpanElement() => _SvgElementFactoryProvider.createSvgElement_tag("tsp an");
8056 7896
8057 7897
8058 @Deprecated("Internal Use Only") 7898 @Deprecated("Internal Use Only")
8059 static TSpanElement internalCreateTSpanElement() { 7899 static TSpanElement internalCreateTSpanElement() {
8060 return new TSpanElement._internalWrap(); 7900 return new TSpanElement._internalWrap();
8061 } 7901 }
8062 7902
8063 factory TSpanElement._internalWrap() { 7903 external factory TSpanElement._internalWrap();
8064 return new TSpanElement.internal_();
8065 }
8066 7904
8067 @Deprecated("Internal Use Only") 7905 @Deprecated("Internal Use Only")
8068 TSpanElement.internal_() : super.internal_(); 7906 TSpanElement.internal_() : super.internal_();
8069 7907
8070 /** 7908 /**
8071 * Constructor instantiated by the DOM when a custom element has been created. 7909 * Constructor instantiated by the DOM when a custom element has been created.
8072 * 7910 *
8073 * This can only be called by subclasses from their created constructor. 7911 * This can only be called by subclasses from their created constructor.
8074 */ 7912 */
8075 TSpanElement.created() : super.created(); 7913 TSpanElement.created() : super.created();
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
8119 class TextContentElement extends GraphicsElement { 7957 class TextContentElement extends GraphicsElement {
8120 // To suppress missing implicit constructor warnings. 7958 // To suppress missing implicit constructor warnings.
8121 factory TextContentElement._() { throw new UnsupportedError("Not supported"); } 7959 factory TextContentElement._() { throw new UnsupportedError("Not supported"); }
8122 7960
8123 7961
8124 @Deprecated("Internal Use Only") 7962 @Deprecated("Internal Use Only")
8125 static TextContentElement internalCreateTextContentElement() { 7963 static TextContentElement internalCreateTextContentElement() {
8126 return new TextContentElement._internalWrap(); 7964 return new TextContentElement._internalWrap();
8127 } 7965 }
8128 7966
8129 factory TextContentElement._internalWrap() { 7967 external factory TextContentElement._internalWrap();
8130 return new TextContentElement.internal_();
8131 }
8132 7968
8133 @Deprecated("Internal Use Only") 7969 @Deprecated("Internal Use Only")
8134 TextContentElement.internal_() : super.internal_(); 7970 TextContentElement.internal_() : super.internal_();
8135 7971
8136 /** 7972 /**
8137 * Constructor instantiated by the DOM when a custom element has been created. 7973 * Constructor instantiated by the DOM when a custom element has been created.
8138 * 7974 *
8139 * This can only be called by subclasses from their created constructor. 7975 * This can only be called by subclasses from their created constructor.
8140 */ 7976 */
8141 TextContentElement.created() : super.created(); 7977 TextContentElement.created() : super.created();
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
8214 @DomName('SVGTextElement.SVGTextElement') 8050 @DomName('SVGTextElement.SVGTextElement')
8215 @DocsEditable() 8051 @DocsEditable()
8216 factory TextElement() => _SvgElementFactoryProvider.createSvgElement_tag("text "); 8052 factory TextElement() => _SvgElementFactoryProvider.createSvgElement_tag("text ");
8217 8053
8218 8054
8219 @Deprecated("Internal Use Only") 8055 @Deprecated("Internal Use Only")
8220 static TextElement internalCreateTextElement() { 8056 static TextElement internalCreateTextElement() {
8221 return new TextElement._internalWrap(); 8057 return new TextElement._internalWrap();
8222 } 8058 }
8223 8059
8224 factory TextElement._internalWrap() { 8060 external factory TextElement._internalWrap();
8225 return new TextElement.internal_();
8226 }
8227 8061
8228 @Deprecated("Internal Use Only") 8062 @Deprecated("Internal Use Only")
8229 TextElement.internal_() : super.internal_(); 8063 TextElement.internal_() : super.internal_();
8230 8064
8231 /** 8065 /**
8232 * Constructor instantiated by the DOM when a custom element has been created. 8066 * Constructor instantiated by the DOM when a custom element has been created.
8233 * 8067 *
8234 * This can only be called by subclasses from their created constructor. 8068 * This can only be called by subclasses from their created constructor.
8235 */ 8069 */
8236 TextElement.created() : super.created(); 8070 TextElement.created() : super.created();
(...skipping 12 matching lines...) Expand all
8249 class TextPathElement extends TextContentElement implements UriReference { 8083 class TextPathElement extends TextContentElement implements UriReference {
8250 // To suppress missing implicit constructor warnings. 8084 // To suppress missing implicit constructor warnings.
8251 factory TextPathElement._() { throw new UnsupportedError("Not supported"); } 8085 factory TextPathElement._() { throw new UnsupportedError("Not supported"); }
8252 8086
8253 8087
8254 @Deprecated("Internal Use Only") 8088 @Deprecated("Internal Use Only")
8255 static TextPathElement internalCreateTextPathElement() { 8089 static TextPathElement internalCreateTextPathElement() {
8256 return new TextPathElement._internalWrap(); 8090 return new TextPathElement._internalWrap();
8257 } 8091 }
8258 8092
8259 factory TextPathElement._internalWrap() { 8093 external factory TextPathElement._internalWrap();
8260 return new TextPathElement.internal_();
8261 }
8262 8094
8263 @Deprecated("Internal Use Only") 8095 @Deprecated("Internal Use Only")
8264 TextPathElement.internal_() : super.internal_(); 8096 TextPathElement.internal_() : super.internal_();
8265 8097
8266 /** 8098 /**
8267 * Constructor instantiated by the DOM when a custom element has been created. 8099 * Constructor instantiated by the DOM when a custom element has been created.
8268 * 8100 *
8269 * This can only be called by subclasses from their created constructor. 8101 * This can only be called by subclasses from their created constructor.
8270 */ 8102 */
8271 TextPathElement.created() : super.created(); 8103 TextPathElement.created() : super.created();
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
8324 class TextPositioningElement extends TextContentElement { 8156 class TextPositioningElement extends TextContentElement {
8325 // To suppress missing implicit constructor warnings. 8157 // To suppress missing implicit constructor warnings.
8326 factory TextPositioningElement._() { throw new UnsupportedError("Not supported "); } 8158 factory TextPositioningElement._() { throw new UnsupportedError("Not supported "); }
8327 8159
8328 8160
8329 @Deprecated("Internal Use Only") 8161 @Deprecated("Internal Use Only")
8330 static TextPositioningElement internalCreateTextPositioningElement() { 8162 static TextPositioningElement internalCreateTextPositioningElement() {
8331 return new TextPositioningElement._internalWrap(); 8163 return new TextPositioningElement._internalWrap();
8332 } 8164 }
8333 8165
8334 factory TextPositioningElement._internalWrap() { 8166 external factory TextPositioningElement._internalWrap();
8335 return new TextPositioningElement.internal_();
8336 }
8337 8167
8338 @Deprecated("Internal Use Only") 8168 @Deprecated("Internal Use Only")
8339 TextPositioningElement.internal_() : super.internal_(); 8169 TextPositioningElement.internal_() : super.internal_();
8340 8170
8341 /** 8171 /**
8342 * Constructor instantiated by the DOM when a custom element has been created. 8172 * Constructor instantiated by the DOM when a custom element has been created.
8343 * 8173 *
8344 * This can only be called by subclasses from their created constructor. 8174 * This can only be called by subclasses from their created constructor.
8345 */ 8175 */
8346 TextPositioningElement.created() : super.created(); 8176 TextPositioningElement.created() : super.created();
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
8383 @DomName('SVGTitleElement.SVGTitleElement') 8213 @DomName('SVGTitleElement.SVGTitleElement')
8384 @DocsEditable() 8214 @DocsEditable()
8385 factory TitleElement() => _SvgElementFactoryProvider.createSvgElement_tag("tit le"); 8215 factory TitleElement() => _SvgElementFactoryProvider.createSvgElement_tag("tit le");
8386 8216
8387 8217
8388 @Deprecated("Internal Use Only") 8218 @Deprecated("Internal Use Only")
8389 static TitleElement internalCreateTitleElement() { 8219 static TitleElement internalCreateTitleElement() {
8390 return new TitleElement._internalWrap(); 8220 return new TitleElement._internalWrap();
8391 } 8221 }
8392 8222
8393 factory TitleElement._internalWrap() { 8223 external factory TitleElement._internalWrap();
8394 return new TitleElement.internal_();
8395 }
8396 8224
8397 @Deprecated("Internal Use Only") 8225 @Deprecated("Internal Use Only")
8398 TitleElement.internal_() : super.internal_(); 8226 TitleElement.internal_() : super.internal_();
8399 8227
8400 /** 8228 /**
8401 * Constructor instantiated by the DOM when a custom element has been created. 8229 * Constructor instantiated by the DOM when a custom element has been created.
8402 * 8230 *
8403 * This can only be called by subclasses from their created constructor. 8231 * This can only be called by subclasses from their created constructor.
8404 */ 8232 */
8405 TitleElement.created() : super.created(); 8233 TitleElement.created() : super.created();
(...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after
8701 @DomName('SVGUseElement.SVGUseElement') 8529 @DomName('SVGUseElement.SVGUseElement')
8702 @DocsEditable() 8530 @DocsEditable()
8703 factory UseElement() => _SvgElementFactoryProvider.createSvgElement_tag("use") ; 8531 factory UseElement() => _SvgElementFactoryProvider.createSvgElement_tag("use") ;
8704 8532
8705 8533
8706 @Deprecated("Internal Use Only") 8534 @Deprecated("Internal Use Only")
8707 static UseElement internalCreateUseElement() { 8535 static UseElement internalCreateUseElement() {
8708 return new UseElement._internalWrap(); 8536 return new UseElement._internalWrap();
8709 } 8537 }
8710 8538
8711 factory UseElement._internalWrap() { 8539 external factory UseElement._internalWrap();
8712 return new UseElement.internal_();
8713 }
8714 8540
8715 @Deprecated("Internal Use Only") 8541 @Deprecated("Internal Use Only")
8716 UseElement.internal_() : super.internal_(); 8542 UseElement.internal_() : super.internal_();
8717 8543
8718 /** 8544 /**
8719 * Constructor instantiated by the DOM when a custom element has been created. 8545 * Constructor instantiated by the DOM when a custom element has been created.
8720 * 8546 *
8721 * This can only be called by subclasses from their created constructor. 8547 * This can only be called by subclasses from their created constructor.
8722 */ 8548 */
8723 UseElement.created() : super.created(); 8549 UseElement.created() : super.created();
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
8760 @DomName('SVGViewElement.SVGViewElement') 8586 @DomName('SVGViewElement.SVGViewElement')
8761 @DocsEditable() 8587 @DocsEditable()
8762 factory ViewElement() => _SvgElementFactoryProvider.createSvgElement_tag("view "); 8588 factory ViewElement() => _SvgElementFactoryProvider.createSvgElement_tag("view ");
8763 8589
8764 8590
8765 @Deprecated("Internal Use Only") 8591 @Deprecated("Internal Use Only")
8766 static ViewElement internalCreateViewElement() { 8592 static ViewElement internalCreateViewElement() {
8767 return new ViewElement._internalWrap(); 8593 return new ViewElement._internalWrap();
8768 } 8594 }
8769 8595
8770 factory ViewElement._internalWrap() { 8596 external factory ViewElement._internalWrap();
8771 return new ViewElement.internal_();
8772 }
8773 8597
8774 @Deprecated("Internal Use Only") 8598 @Deprecated("Internal Use Only")
8775 ViewElement.internal_() : super.internal_(); 8599 ViewElement.internal_() : super.internal_();
8776 8600
8777 /** 8601 /**
8778 * Constructor instantiated by the DOM when a custom element has been created. 8602 * Constructor instantiated by the DOM when a custom element has been created.
8779 * 8603 *
8780 * This can only be called by subclasses from their created constructor. 8604 * This can only be called by subclasses from their created constructor.
8781 */ 8605 */
8782 ViewElement.created() : super.created(); 8606 ViewElement.created() : super.created();
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
8924 class ZoomEvent extends UIEvent { 8748 class ZoomEvent extends UIEvent {
8925 // To suppress missing implicit constructor warnings. 8749 // To suppress missing implicit constructor warnings.
8926 factory ZoomEvent._() { throw new UnsupportedError("Not supported"); } 8750 factory ZoomEvent._() { throw new UnsupportedError("Not supported"); }
8927 8751
8928 8752
8929 @Deprecated("Internal Use Only") 8753 @Deprecated("Internal Use Only")
8930 static ZoomEvent internalCreateZoomEvent() { 8754 static ZoomEvent internalCreateZoomEvent() {
8931 return new ZoomEvent._internalWrap(); 8755 return new ZoomEvent._internalWrap();
8932 } 8756 }
8933 8757
8934 factory ZoomEvent._internalWrap() { 8758 external factory ZoomEvent._internalWrap();
8935 return new ZoomEvent.internal_();
8936 }
8937 8759
8938 @Deprecated("Internal Use Only") 8760 @Deprecated("Internal Use Only")
8939 ZoomEvent.internal_() : super.internal_(); 8761 ZoomEvent.internal_() : super.internal_();
8940 8762
8941 8763
8942 @DomName('SVGZoomEvent.newScale') 8764 @DomName('SVGZoomEvent.newScale')
8943 @DocsEditable() 8765 @DocsEditable()
8944 num get newScale => _blink.BlinkSVGZoomEvent.instance.newScale_Getter_(unwrap_ jso(this)); 8766 num get newScale => _blink.BlinkSVGZoomEvent.instance.newScale_Getter_(unwrap_ jso(this));
8945 8767
8946 @DomName('SVGZoomEvent.newTranslate') 8768 @DomName('SVGZoomEvent.newTranslate')
(...skipping 26 matching lines...) Expand all
8973 class _GradientElement extends SvgElement implements UriReference { 8795 class _GradientElement extends SvgElement implements UriReference {
8974 // To suppress missing implicit constructor warnings. 8796 // To suppress missing implicit constructor warnings.
8975 factory _GradientElement._() { throw new UnsupportedError("Not supported"); } 8797 factory _GradientElement._() { throw new UnsupportedError("Not supported"); }
8976 8798
8977 8799
8978 @Deprecated("Internal Use Only") 8800 @Deprecated("Internal Use Only")
8979 static _GradientElement internalCreate_GradientElement() { 8801 static _GradientElement internalCreate_GradientElement() {
8980 return new _GradientElement._internalWrap(); 8802 return new _GradientElement._internalWrap();
8981 } 8803 }
8982 8804
8983 factory _GradientElement._internalWrap() { 8805 external factory _GradientElement._internalWrap();
8984 return new _GradientElement.internal_();
8985 }
8986 8806
8987 @Deprecated("Internal Use Only") 8807 @Deprecated("Internal Use Only")
8988 _GradientElement.internal_() : super.internal_(); 8808 _GradientElement.internal_() : super.internal_();
8989 8809
8990 /** 8810 /**
8991 * Constructor instantiated by the DOM when a custom element has been created. 8811 * Constructor instantiated by the DOM when a custom element has been created.
8992 * 8812 *
8993 * This can only be called by subclasses from their created constructor. 8813 * This can only be called by subclasses from their created constructor.
8994 */ 8814 */
8995 _GradientElement.created() : super.created(); 8815 _GradientElement.created() : super.created();
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
9040 class _SVGAltGlyphDefElement extends SvgElement { 8860 class _SVGAltGlyphDefElement extends SvgElement {
9041 // To suppress missing implicit constructor warnings. 8861 // To suppress missing implicit constructor warnings.
9042 factory _SVGAltGlyphDefElement._() { throw new UnsupportedError("Not supported "); } 8862 factory _SVGAltGlyphDefElement._() { throw new UnsupportedError("Not supported "); }
9043 8863
9044 8864
9045 @Deprecated("Internal Use Only") 8865 @Deprecated("Internal Use Only")
9046 static _SVGAltGlyphDefElement internalCreate_SVGAltGlyphDefElement() { 8866 static _SVGAltGlyphDefElement internalCreate_SVGAltGlyphDefElement() {
9047 return new _SVGAltGlyphDefElement._internalWrap(); 8867 return new _SVGAltGlyphDefElement._internalWrap();
9048 } 8868 }
9049 8869
9050 factory _SVGAltGlyphDefElement._internalWrap() { 8870 external factory _SVGAltGlyphDefElement._internalWrap();
9051 return new _SVGAltGlyphDefElement.internal_();
9052 }
9053 8871
9054 @Deprecated("Internal Use Only") 8872 @Deprecated("Internal Use Only")
9055 _SVGAltGlyphDefElement.internal_() : super.internal_(); 8873 _SVGAltGlyphDefElement.internal_() : super.internal_();
9056 8874
9057 /** 8875 /**
9058 * Constructor instantiated by the DOM when a custom element has been created. 8876 * Constructor instantiated by the DOM when a custom element has been created.
9059 * 8877 *
9060 * This can only be called by subclasses from their created constructor. 8878 * This can only be called by subclasses from their created constructor.
9061 */ 8879 */
9062 _SVGAltGlyphDefElement.created() : super.created(); 8880 _SVGAltGlyphDefElement.created() : super.created();
(...skipping 12 matching lines...) Expand all
9075 class _SVGAltGlyphItemElement extends SvgElement { 8893 class _SVGAltGlyphItemElement extends SvgElement {
9076 // To suppress missing implicit constructor warnings. 8894 // To suppress missing implicit constructor warnings.
9077 factory _SVGAltGlyphItemElement._() { throw new UnsupportedError("Not supporte d"); } 8895 factory _SVGAltGlyphItemElement._() { throw new UnsupportedError("Not supporte d"); }
9078 8896
9079 8897
9080 @Deprecated("Internal Use Only") 8898 @Deprecated("Internal Use Only")
9081 static _SVGAltGlyphItemElement internalCreate_SVGAltGlyphItemElement() { 8899 static _SVGAltGlyphItemElement internalCreate_SVGAltGlyphItemElement() {
9082 return new _SVGAltGlyphItemElement._internalWrap(); 8900 return new _SVGAltGlyphItemElement._internalWrap();
9083 } 8901 }
9084 8902
9085 factory _SVGAltGlyphItemElement._internalWrap() { 8903 external factory _SVGAltGlyphItemElement._internalWrap();
9086 return new _SVGAltGlyphItemElement.internal_();
9087 }
9088 8904
9089 @Deprecated("Internal Use Only") 8905 @Deprecated("Internal Use Only")
9090 _SVGAltGlyphItemElement.internal_() : super.internal_(); 8906 _SVGAltGlyphItemElement.internal_() : super.internal_();
9091 8907
9092 /** 8908 /**
9093 * Constructor instantiated by the DOM when a custom element has been created. 8909 * Constructor instantiated by the DOM when a custom element has been created.
9094 * 8910 *
9095 * This can only be called by subclasses from their created constructor. 8911 * This can only be called by subclasses from their created constructor.
9096 */ 8912 */
9097 _SVGAltGlyphItemElement.created() : super.created(); 8913 _SVGAltGlyphItemElement.created() : super.created();
(...skipping 12 matching lines...) Expand all
9110 class _SVGComponentTransferFunctionElement extends SvgElement { 8926 class _SVGComponentTransferFunctionElement extends SvgElement {
9111 // To suppress missing implicit constructor warnings. 8927 // To suppress missing implicit constructor warnings.
9112 factory _SVGComponentTransferFunctionElement._() { throw new UnsupportedError( "Not supported"); } 8928 factory _SVGComponentTransferFunctionElement._() { throw new UnsupportedError( "Not supported"); }
9113 8929
9114 8930
9115 @Deprecated("Internal Use Only") 8931 @Deprecated("Internal Use Only")
9116 static _SVGComponentTransferFunctionElement internalCreate_SVGComponentTransfe rFunctionElement() { 8932 static _SVGComponentTransferFunctionElement internalCreate_SVGComponentTransfe rFunctionElement() {
9117 return new _SVGComponentTransferFunctionElement._internalWrap(); 8933 return new _SVGComponentTransferFunctionElement._internalWrap();
9118 } 8934 }
9119 8935
9120 factory _SVGComponentTransferFunctionElement._internalWrap() { 8936 external factory _SVGComponentTransferFunctionElement._internalWrap();
9121 return new _SVGComponentTransferFunctionElement.internal_();
9122 }
9123 8937
9124 @Deprecated("Internal Use Only") 8938 @Deprecated("Internal Use Only")
9125 _SVGComponentTransferFunctionElement.internal_() : super.internal_(); 8939 _SVGComponentTransferFunctionElement.internal_() : super.internal_();
9126 8940
9127 /** 8941 /**
9128 * Constructor instantiated by the DOM when a custom element has been created. 8942 * Constructor instantiated by the DOM when a custom element has been created.
9129 * 8943 *
9130 * This can only be called by subclasses from their created constructor. 8944 * This can only be called by subclasses from their created constructor.
9131 */ 8945 */
9132 _SVGComponentTransferFunctionElement.created() : super.created(); 8946 _SVGComponentTransferFunctionElement.created() : super.created();
(...skipping 14 matching lines...) Expand all
9147 @DomName('SVGCursorElement.SVGCursorElement') 8961 @DomName('SVGCursorElement.SVGCursorElement')
9148 @DocsEditable() 8962 @DocsEditable()
9149 factory _SVGCursorElement() => _SvgElementFactoryProvider.createSvgElement_tag ("cursor"); 8963 factory _SVGCursorElement() => _SvgElementFactoryProvider.createSvgElement_tag ("cursor");
9150 8964
9151 8965
9152 @Deprecated("Internal Use Only") 8966 @Deprecated("Internal Use Only")
9153 static _SVGCursorElement internalCreate_SVGCursorElement() { 8967 static _SVGCursorElement internalCreate_SVGCursorElement() {
9154 return new _SVGCursorElement._internalWrap(); 8968 return new _SVGCursorElement._internalWrap();
9155 } 8969 }
9156 8970
9157 factory _SVGCursorElement._internalWrap() { 8971 external factory _SVGCursorElement._internalWrap();
9158 return new _SVGCursorElement.internal_();
9159 }
9160 8972
9161 @Deprecated("Internal Use Only") 8973 @Deprecated("Internal Use Only")
9162 _SVGCursorElement.internal_() : super.internal_(); 8974 _SVGCursorElement.internal_() : super.internal_();
9163 8975
9164 /** 8976 /**
9165 * Constructor instantiated by the DOM when a custom element has been created. 8977 * Constructor instantiated by the DOM when a custom element has been created.
9166 * 8978 *
9167 * This can only be called by subclasses from their created constructor. 8979 * This can only be called by subclasses from their created constructor.
9168 */ 8980 */
9169 _SVGCursorElement.created() : super.created(); 8981 _SVGCursorElement.created() : super.created();
(...skipping 20 matching lines...) Expand all
9190 class _SVGFEDropShadowElement extends SvgElement implements FilterPrimitiveStand ardAttributes { 9002 class _SVGFEDropShadowElement extends SvgElement implements FilterPrimitiveStand ardAttributes {
9191 // To suppress missing implicit constructor warnings. 9003 // To suppress missing implicit constructor warnings.
9192 factory _SVGFEDropShadowElement._() { throw new UnsupportedError("Not supporte d"); } 9004 factory _SVGFEDropShadowElement._() { throw new UnsupportedError("Not supporte d"); }
9193 9005
9194 9006
9195 @Deprecated("Internal Use Only") 9007 @Deprecated("Internal Use Only")
9196 static _SVGFEDropShadowElement internalCreate_SVGFEDropShadowElement() { 9008 static _SVGFEDropShadowElement internalCreate_SVGFEDropShadowElement() {
9197 return new _SVGFEDropShadowElement._internalWrap(); 9009 return new _SVGFEDropShadowElement._internalWrap();
9198 } 9010 }
9199 9011
9200 factory _SVGFEDropShadowElement._internalWrap() { 9012 external factory _SVGFEDropShadowElement._internalWrap();
9201 return new _SVGFEDropShadowElement.internal_();
9202 }
9203 9013
9204 @Deprecated("Internal Use Only") 9014 @Deprecated("Internal Use Only")
9205 _SVGFEDropShadowElement.internal_() : super.internal_(); 9015 _SVGFEDropShadowElement.internal_() : super.internal_();
9206 9016
9207 /** 9017 /**
9208 * Constructor instantiated by the DOM when a custom element has been created. 9018 * Constructor instantiated by the DOM when a custom element has been created.
9209 * 9019 *
9210 * This can only be called by subclasses from their created constructor. 9020 * This can only be called by subclasses from their created constructor.
9211 */ 9021 */
9212 _SVGFEDropShadowElement.created() : super.created(); 9022 _SVGFEDropShadowElement.created() : super.created();
(...skipping 19 matching lines...) Expand all
9232 class _SVGFontElement extends SvgElement { 9042 class _SVGFontElement extends SvgElement {
9233 // To suppress missing implicit constructor warnings. 9043 // To suppress missing implicit constructor warnings.
9234 factory _SVGFontElement._() { throw new UnsupportedError("Not supported"); } 9044 factory _SVGFontElement._() { throw new UnsupportedError("Not supported"); }
9235 9045
9236 9046
9237 @Deprecated("Internal Use Only") 9047 @Deprecated("Internal Use Only")
9238 static _SVGFontElement internalCreate_SVGFontElement() { 9048 static _SVGFontElement internalCreate_SVGFontElement() {
9239 return new _SVGFontElement._internalWrap(); 9049 return new _SVGFontElement._internalWrap();
9240 } 9050 }
9241 9051
9242 factory _SVGFontElement._internalWrap() { 9052 external factory _SVGFontElement._internalWrap();
9243 return new _SVGFontElement.internal_();
9244 }
9245 9053
9246 @Deprecated("Internal Use Only") 9054 @Deprecated("Internal Use Only")
9247 _SVGFontElement.internal_() : super.internal_(); 9055 _SVGFontElement.internal_() : super.internal_();
9248 9056
9249 /** 9057 /**
9250 * Constructor instantiated by the DOM when a custom element has been created. 9058 * Constructor instantiated by the DOM when a custom element has been created.
9251 * 9059 *
9252 * This can only be called by subclasses from their created constructor. 9060 * This can only be called by subclasses from their created constructor.
9253 */ 9061 */
9254 _SVGFontElement.created() : super.created(); 9062 _SVGFontElement.created() : super.created();
(...skipping 12 matching lines...) Expand all
9267 class _SVGFontFaceElement extends SvgElement { 9075 class _SVGFontFaceElement extends SvgElement {
9268 // To suppress missing implicit constructor warnings. 9076 // To suppress missing implicit constructor warnings.
9269 factory _SVGFontFaceElement._() { throw new UnsupportedError("Not supported"); } 9077 factory _SVGFontFaceElement._() { throw new UnsupportedError("Not supported"); }
9270 9078
9271 9079
9272 @Deprecated("Internal Use Only") 9080 @Deprecated("Internal Use Only")
9273 static _SVGFontFaceElement internalCreate_SVGFontFaceElement() { 9081 static _SVGFontFaceElement internalCreate_SVGFontFaceElement() {
9274 return new _SVGFontFaceElement._internalWrap(); 9082 return new _SVGFontFaceElement._internalWrap();
9275 } 9083 }
9276 9084
9277 factory _SVGFontFaceElement._internalWrap() { 9085 external factory _SVGFontFaceElement._internalWrap();
9278 return new _SVGFontFaceElement.internal_();
9279 }
9280 9086
9281 @Deprecated("Internal Use Only") 9087 @Deprecated("Internal Use Only")
9282 _SVGFontFaceElement.internal_() : super.internal_(); 9088 _SVGFontFaceElement.internal_() : super.internal_();
9283 9089
9284 /** 9090 /**
9285 * Constructor instantiated by the DOM when a custom element has been created. 9091 * Constructor instantiated by the DOM when a custom element has been created.
9286 * 9092 *
9287 * This can only be called by subclasses from their created constructor. 9093 * This can only be called by subclasses from their created constructor.
9288 */ 9094 */
9289 _SVGFontFaceElement.created() : super.created(); 9095 _SVGFontFaceElement.created() : super.created();
(...skipping 12 matching lines...) Expand all
9302 class _SVGFontFaceFormatElement extends SvgElement { 9108 class _SVGFontFaceFormatElement extends SvgElement {
9303 // To suppress missing implicit constructor warnings. 9109 // To suppress missing implicit constructor warnings.
9304 factory _SVGFontFaceFormatElement._() { throw new UnsupportedError("Not suppor ted"); } 9110 factory _SVGFontFaceFormatElement._() { throw new UnsupportedError("Not suppor ted"); }
9305 9111
9306 9112
9307 @Deprecated("Internal Use Only") 9113 @Deprecated("Internal Use Only")
9308 static _SVGFontFaceFormatElement internalCreate_SVGFontFaceFormatElement() { 9114 static _SVGFontFaceFormatElement internalCreate_SVGFontFaceFormatElement() {
9309 return new _SVGFontFaceFormatElement._internalWrap(); 9115 return new _SVGFontFaceFormatElement._internalWrap();
9310 } 9116 }
9311 9117
9312 factory _SVGFontFaceFormatElement._internalWrap() { 9118 external factory _SVGFontFaceFormatElement._internalWrap();
9313 return new _SVGFontFaceFormatElement.internal_();
9314 }
9315 9119
9316 @Deprecated("Internal Use Only") 9120 @Deprecated("Internal Use Only")
9317 _SVGFontFaceFormatElement.internal_() : super.internal_(); 9121 _SVGFontFaceFormatElement.internal_() : super.internal_();
9318 9122
9319 /** 9123 /**
9320 * Constructor instantiated by the DOM when a custom element has been created. 9124 * Constructor instantiated by the DOM when a custom element has been created.
9321 * 9125 *
9322 * This can only be called by subclasses from their created constructor. 9126 * This can only be called by subclasses from their created constructor.
9323 */ 9127 */
9324 _SVGFontFaceFormatElement.created() : super.created(); 9128 _SVGFontFaceFormatElement.created() : super.created();
(...skipping 12 matching lines...) Expand all
9337 class _SVGFontFaceNameElement extends SvgElement { 9141 class _SVGFontFaceNameElement extends SvgElement {
9338 // To suppress missing implicit constructor warnings. 9142 // To suppress missing implicit constructor warnings.
9339 factory _SVGFontFaceNameElement._() { throw new UnsupportedError("Not supporte d"); } 9143 factory _SVGFontFaceNameElement._() { throw new UnsupportedError("Not supporte d"); }
9340 9144
9341 9145
9342 @Deprecated("Internal Use Only") 9146 @Deprecated("Internal Use Only")
9343 static _SVGFontFaceNameElement internalCreate_SVGFontFaceNameElement() { 9147 static _SVGFontFaceNameElement internalCreate_SVGFontFaceNameElement() {
9344 return new _SVGFontFaceNameElement._internalWrap(); 9148 return new _SVGFontFaceNameElement._internalWrap();
9345 } 9149 }
9346 9150
9347 factory _SVGFontFaceNameElement._internalWrap() { 9151 external factory _SVGFontFaceNameElement._internalWrap();
9348 return new _SVGFontFaceNameElement.internal_();
9349 }
9350 9152
9351 @Deprecated("Internal Use Only") 9153 @Deprecated("Internal Use Only")
9352 _SVGFontFaceNameElement.internal_() : super.internal_(); 9154 _SVGFontFaceNameElement.internal_() : super.internal_();
9353 9155
9354 /** 9156 /**
9355 * Constructor instantiated by the DOM when a custom element has been created. 9157 * Constructor instantiated by the DOM when a custom element has been created.
9356 * 9158 *
9357 * This can only be called by subclasses from their created constructor. 9159 * This can only be called by subclasses from their created constructor.
9358 */ 9160 */
9359 _SVGFontFaceNameElement.created() : super.created(); 9161 _SVGFontFaceNameElement.created() : super.created();
(...skipping 12 matching lines...) Expand all
9372 class _SVGFontFaceSrcElement extends SvgElement { 9174 class _SVGFontFaceSrcElement extends SvgElement {
9373 // To suppress missing implicit constructor warnings. 9175 // To suppress missing implicit constructor warnings.
9374 factory _SVGFontFaceSrcElement._() { throw new UnsupportedError("Not supported "); } 9176 factory _SVGFontFaceSrcElement._() { throw new UnsupportedError("Not supported "); }
9375 9177
9376 9178
9377 @Deprecated("Internal Use Only") 9179 @Deprecated("Internal Use Only")
9378 static _SVGFontFaceSrcElement internalCreate_SVGFontFaceSrcElement() { 9180 static _SVGFontFaceSrcElement internalCreate_SVGFontFaceSrcElement() {
9379 return new _SVGFontFaceSrcElement._internalWrap(); 9181 return new _SVGFontFaceSrcElement._internalWrap();
9380 } 9182 }
9381 9183
9382 factory _SVGFontFaceSrcElement._internalWrap() { 9184 external factory _SVGFontFaceSrcElement._internalWrap();
9383 return new _SVGFontFaceSrcElement.internal_();
9384 }
9385 9185
9386 @Deprecated("Internal Use Only") 9186 @Deprecated("Internal Use Only")
9387 _SVGFontFaceSrcElement.internal_() : super.internal_(); 9187 _SVGFontFaceSrcElement.internal_() : super.internal_();
9388 9188
9389 /** 9189 /**
9390 * Constructor instantiated by the DOM when a custom element has been created. 9190 * Constructor instantiated by the DOM when a custom element has been created.
9391 * 9191 *
9392 * This can only be called by subclasses from their created constructor. 9192 * This can only be called by subclasses from their created constructor.
9393 */ 9193 */
9394 _SVGFontFaceSrcElement.created() : super.created(); 9194 _SVGFontFaceSrcElement.created() : super.created();
(...skipping 12 matching lines...) Expand all
9407 class _SVGFontFaceUriElement extends SvgElement { 9207 class _SVGFontFaceUriElement extends SvgElement {
9408 // To suppress missing implicit constructor warnings. 9208 // To suppress missing implicit constructor warnings.
9409 factory _SVGFontFaceUriElement._() { throw new UnsupportedError("Not supported "); } 9209 factory _SVGFontFaceUriElement._() { throw new UnsupportedError("Not supported "); }
9410 9210
9411 9211
9412 @Deprecated("Internal Use Only") 9212 @Deprecated("Internal Use Only")
9413 static _SVGFontFaceUriElement internalCreate_SVGFontFaceUriElement() { 9213 static _SVGFontFaceUriElement internalCreate_SVGFontFaceUriElement() {
9414 return new _SVGFontFaceUriElement._internalWrap(); 9214 return new _SVGFontFaceUriElement._internalWrap();
9415 } 9215 }
9416 9216
9417 factory _SVGFontFaceUriElement._internalWrap() { 9217 external factory _SVGFontFaceUriElement._internalWrap();
9418 return new _SVGFontFaceUriElement.internal_();
9419 }
9420 9218
9421 @Deprecated("Internal Use Only") 9219 @Deprecated("Internal Use Only")
9422 _SVGFontFaceUriElement.internal_() : super.internal_(); 9220 _SVGFontFaceUriElement.internal_() : super.internal_();
9423 9221
9424 /** 9222 /**
9425 * Constructor instantiated by the DOM when a custom element has been created. 9223 * Constructor instantiated by the DOM when a custom element has been created.
9426 * 9224 *
9427 * This can only be called by subclasses from their created constructor. 9225 * This can only be called by subclasses from their created constructor.
9428 */ 9226 */
9429 _SVGFontFaceUriElement.created() : super.created(); 9227 _SVGFontFaceUriElement.created() : super.created();
(...skipping 16 matching lines...) Expand all
9446 @DomName('SVGGlyphElement.SVGGlyphElement') 9244 @DomName('SVGGlyphElement.SVGGlyphElement')
9447 @DocsEditable() 9245 @DocsEditable()
9448 factory _SVGGlyphElement() => _SvgElementFactoryProvider.createSvgElement_tag( "glyph"); 9246 factory _SVGGlyphElement() => _SvgElementFactoryProvider.createSvgElement_tag( "glyph");
9449 9247
9450 9248
9451 @Deprecated("Internal Use Only") 9249 @Deprecated("Internal Use Only")
9452 static _SVGGlyphElement internalCreate_SVGGlyphElement() { 9250 static _SVGGlyphElement internalCreate_SVGGlyphElement() {
9453 return new _SVGGlyphElement._internalWrap(); 9251 return new _SVGGlyphElement._internalWrap();
9454 } 9252 }
9455 9253
9456 factory _SVGGlyphElement._internalWrap() { 9254 external factory _SVGGlyphElement._internalWrap();
9457 return new _SVGGlyphElement.internal_();
9458 }
9459 9255
9460 @Deprecated("Internal Use Only") 9256 @Deprecated("Internal Use Only")
9461 _SVGGlyphElement.internal_() : super.internal_(); 9257 _SVGGlyphElement.internal_() : super.internal_();
9462 9258
9463 /** 9259 /**
9464 * Constructor instantiated by the DOM when a custom element has been created. 9260 * Constructor instantiated by the DOM when a custom element has been created.
9465 * 9261 *
9466 * This can only be called by subclasses from their created constructor. 9262 * This can only be called by subclasses from their created constructor.
9467 */ 9263 */
9468 _SVGGlyphElement.created() : super.created(); 9264 _SVGGlyphElement.created() : super.created();
(...skipping 10 matching lines...) Expand all
9479 class _SVGGlyphRefElement extends SvgElement implements UriReference { 9275 class _SVGGlyphRefElement extends SvgElement implements UriReference {
9480 // To suppress missing implicit constructor warnings. 9276 // To suppress missing implicit constructor warnings.
9481 factory _SVGGlyphRefElement._() { throw new UnsupportedError("Not supported"); } 9277 factory _SVGGlyphRefElement._() { throw new UnsupportedError("Not supported"); }
9482 9278
9483 9279
9484 @Deprecated("Internal Use Only") 9280 @Deprecated("Internal Use Only")
9485 static _SVGGlyphRefElement internalCreate_SVGGlyphRefElement() { 9281 static _SVGGlyphRefElement internalCreate_SVGGlyphRefElement() {
9486 return new _SVGGlyphRefElement._internalWrap(); 9282 return new _SVGGlyphRefElement._internalWrap();
9487 } 9283 }
9488 9284
9489 factory _SVGGlyphRefElement._internalWrap() { 9285 external factory _SVGGlyphRefElement._internalWrap();
9490 return new _SVGGlyphRefElement.internal_();
9491 }
9492 9286
9493 @Deprecated("Internal Use Only") 9287 @Deprecated("Internal Use Only")
9494 _SVGGlyphRefElement.internal_() : super.internal_(); 9288 _SVGGlyphRefElement.internal_() : super.internal_();
9495 9289
9496 /** 9290 /**
9497 * Constructor instantiated by the DOM when a custom element has been created. 9291 * Constructor instantiated by the DOM when a custom element has been created.
9498 * 9292 *
9499 * This can only be called by subclasses from their created constructor. 9293 * This can only be called by subclasses from their created constructor.
9500 */ 9294 */
9501 _SVGGlyphRefElement.created() : super.created(); 9295 _SVGGlyphRefElement.created() : super.created();
(...skipping 19 matching lines...) Expand all
9521 @DomName('SVGHKernElement.SVGHKernElement') 9315 @DomName('SVGHKernElement.SVGHKernElement')
9522 @DocsEditable() 9316 @DocsEditable()
9523 factory _SVGHKernElement() => _SvgElementFactoryProvider.createSvgElement_tag( "hkern"); 9317 factory _SVGHKernElement() => _SvgElementFactoryProvider.createSvgElement_tag( "hkern");
9524 9318
9525 9319
9526 @Deprecated("Internal Use Only") 9320 @Deprecated("Internal Use Only")
9527 static _SVGHKernElement internalCreate_SVGHKernElement() { 9321 static _SVGHKernElement internalCreate_SVGHKernElement() {
9528 return new _SVGHKernElement._internalWrap(); 9322 return new _SVGHKernElement._internalWrap();
9529 } 9323 }
9530 9324
9531 factory _SVGHKernElement._internalWrap() { 9325 external factory _SVGHKernElement._internalWrap();
9532 return new _SVGHKernElement.internal_();
9533 }
9534 9326
9535 @Deprecated("Internal Use Only") 9327 @Deprecated("Internal Use Only")
9536 _SVGHKernElement.internal_() : super.internal_(); 9328 _SVGHKernElement.internal_() : super.internal_();
9537 9329
9538 /** 9330 /**
9539 * Constructor instantiated by the DOM when a custom element has been created. 9331 * Constructor instantiated by the DOM when a custom element has been created.
9540 * 9332 *
9541 * This can only be called by subclasses from their created constructor. 9333 * This can only be called by subclasses from their created constructor.
9542 */ 9334 */
9543 _SVGHKernElement.created() : super.created(); 9335 _SVGHKernElement.created() : super.created();
(...skipping 13 matching lines...) Expand all
9557 @DomName('SVGMPathElement.SVGMPathElement') 9349 @DomName('SVGMPathElement.SVGMPathElement')
9558 @DocsEditable() 9350 @DocsEditable()
9559 factory _SVGMPathElement() => _SvgElementFactoryProvider.createSvgElement_tag( "mpath"); 9351 factory _SVGMPathElement() => _SvgElementFactoryProvider.createSvgElement_tag( "mpath");
9560 9352
9561 9353
9562 @Deprecated("Internal Use Only") 9354 @Deprecated("Internal Use Only")
9563 static _SVGMPathElement internalCreate_SVGMPathElement() { 9355 static _SVGMPathElement internalCreate_SVGMPathElement() {
9564 return new _SVGMPathElement._internalWrap(); 9356 return new _SVGMPathElement._internalWrap();
9565 } 9357 }
9566 9358
9567 factory _SVGMPathElement._internalWrap() { 9359 external factory _SVGMPathElement._internalWrap();
9568 return new _SVGMPathElement.internal_();
9569 }
9570 9360
9571 @Deprecated("Internal Use Only") 9361 @Deprecated("Internal Use Only")
9572 _SVGMPathElement.internal_() : super.internal_(); 9362 _SVGMPathElement.internal_() : super.internal_();
9573 9363
9574 /** 9364 /**
9575 * Constructor instantiated by the DOM when a custom element has been created. 9365 * Constructor instantiated by the DOM when a custom element has been created.
9576 * 9366 *
9577 * This can only be called by subclasses from their created constructor. 9367 * This can only be called by subclasses from their created constructor.
9578 */ 9368 */
9579 _SVGMPathElement.created() : super.created(); 9369 _SVGMPathElement.created() : super.created();
(...skipping 15 matching lines...) Expand all
9595 class _SVGMissingGlyphElement extends SvgElement { 9385 class _SVGMissingGlyphElement extends SvgElement {
9596 // To suppress missing implicit constructor warnings. 9386 // To suppress missing implicit constructor warnings.
9597 factory _SVGMissingGlyphElement._() { throw new UnsupportedError("Not supporte d"); } 9387 factory _SVGMissingGlyphElement._() { throw new UnsupportedError("Not supporte d"); }
9598 9388
9599 9389
9600 @Deprecated("Internal Use Only") 9390 @Deprecated("Internal Use Only")
9601 static _SVGMissingGlyphElement internalCreate_SVGMissingGlyphElement() { 9391 static _SVGMissingGlyphElement internalCreate_SVGMissingGlyphElement() {
9602 return new _SVGMissingGlyphElement._internalWrap(); 9392 return new _SVGMissingGlyphElement._internalWrap();
9603 } 9393 }
9604 9394
9605 factory _SVGMissingGlyphElement._internalWrap() { 9395 external factory _SVGMissingGlyphElement._internalWrap();
9606 return new _SVGMissingGlyphElement.internal_();
9607 }
9608 9396
9609 @Deprecated("Internal Use Only") 9397 @Deprecated("Internal Use Only")
9610 _SVGMissingGlyphElement.internal_() : super.internal_(); 9398 _SVGMissingGlyphElement.internal_() : super.internal_();
9611 9399
9612 /** 9400 /**
9613 * Constructor instantiated by the DOM when a custom element has been created. 9401 * Constructor instantiated by the DOM when a custom element has been created.
9614 * 9402 *
9615 * This can only be called by subclasses from their created constructor. 9403 * This can only be called by subclasses from their created constructor.
9616 */ 9404 */
9617 _SVGMissingGlyphElement.created() : super.created(); 9405 _SVGMissingGlyphElement.created() : super.created();
(...skipping 16 matching lines...) Expand all
9634 @DomName('SVGVKernElement.SVGVKernElement') 9422 @DomName('SVGVKernElement.SVGVKernElement')
9635 @DocsEditable() 9423 @DocsEditable()
9636 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag( "vkern"); 9424 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag( "vkern");
9637 9425
9638 9426
9639 @Deprecated("Internal Use Only") 9427 @Deprecated("Internal Use Only")
9640 static _SVGVKernElement internalCreate_SVGVKernElement() { 9428 static _SVGVKernElement internalCreate_SVGVKernElement() {
9641 return new _SVGVKernElement._internalWrap(); 9429 return new _SVGVKernElement._internalWrap();
9642 } 9430 }
9643 9431
9644 factory _SVGVKernElement._internalWrap() { 9432 external factory _SVGVKernElement._internalWrap();
9645 return new _SVGVKernElement.internal_();
9646 }
9647 9433
9648 @Deprecated("Internal Use Only") 9434 @Deprecated("Internal Use Only")
9649 _SVGVKernElement.internal_() : super.internal_(); 9435 _SVGVKernElement.internal_() : super.internal_();
9650 9436
9651 /** 9437 /**
9652 * Constructor instantiated by the DOM when a custom element has been created. 9438 * Constructor instantiated by the DOM when a custom element has been created.
9653 * 9439 *
9654 * This can only be called by subclasses from their created constructor. 9440 * This can only be called by subclasses from their created constructor.
9655 */ 9441 */
9656 _SVGVKernElement.created() : super.created(); 9442 _SVGVKernElement.created() : super.created();
9657 9443
9658 } 9444 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698