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

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

Issue 15043005: Adding annotations to DOM constants (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « sdk/lib/svg/dart2js/svg_dart2js.dart ('k') | sdk/lib/web_audio/dart2js/web_audio_dart2js.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 library dart.dom.svg; 1 library dart.dom.svg;
2 2
3 import 'dart:async'; 3 import 'dart:async';
4 import 'dart:collection'; 4 import 'dart:collection';
5 import 'dart:_collection-dev'; 5 import 'dart:_collection-dev';
6 import 'dart:html'; 6 import 'dart:html';
7 import 'dart:html_common'; 7 import 'dart:html_common';
8 import 'dart:nativewrappers'; 8 import 'dart:nativewrappers';
9 // DO NOT EDIT 9 // DO NOT EDIT
10 // Auto-generated dart:svg library. 10 // Auto-generated dart:svg library.
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 // BSD-style license that can be found in the LICENSE file. 190 // BSD-style license that can be found in the LICENSE file.
191 191
192 // WARNING: Do not edit - generated code. 192 // WARNING: Do not edit - generated code.
193 193
194 194
195 @DocsEditable 195 @DocsEditable
196 @DomName('SVGAngle') 196 @DomName('SVGAngle')
197 class Angle extends NativeFieldWrapperClass1 { 197 class Angle extends NativeFieldWrapperClass1 {
198 Angle.internal(); 198 Angle.internal();
199 199
200 @DomName('SVGAngle.SVG_ANGLETYPE_DEG')
201 @DocsEditable
200 static const int SVG_ANGLETYPE_DEG = 2; 202 static const int SVG_ANGLETYPE_DEG = 2;
201 203
204 @DomName('SVGAngle.SVG_ANGLETYPE_GRAD')
205 @DocsEditable
202 static const int SVG_ANGLETYPE_GRAD = 4; 206 static const int SVG_ANGLETYPE_GRAD = 4;
203 207
208 @DomName('SVGAngle.SVG_ANGLETYPE_RAD')
209 @DocsEditable
204 static const int SVG_ANGLETYPE_RAD = 3; 210 static const int SVG_ANGLETYPE_RAD = 3;
205 211
212 @DomName('SVGAngle.SVG_ANGLETYPE_UNKNOWN')
213 @DocsEditable
206 static const int SVG_ANGLETYPE_UNKNOWN = 0; 214 static const int SVG_ANGLETYPE_UNKNOWN = 0;
207 215
216 @DomName('SVGAngle.SVG_ANGLETYPE_UNSPECIFIED')
217 @DocsEditable
208 static const int SVG_ANGLETYPE_UNSPECIFIED = 1; 218 static const int SVG_ANGLETYPE_UNSPECIFIED = 1;
209 219
210 @DomName('SVGAngle.unitType') 220 @DomName('SVGAngle.unitType')
211 @DocsEditable 221 @DocsEditable
212 int get unitType native "SVGAngle_unitType_Getter"; 222 int get unitType native "SVGAngle_unitType_Getter";
213 223
214 @DomName('SVGAngle.value') 224 @DomName('SVGAngle.value')
215 @DocsEditable 225 @DocsEditable
216 num get value native "SVGAngle_value_Getter"; 226 num get value native "SVGAngle_value_Getter";
217 227
(...skipping 1255 matching lines...) Expand 10 before | Expand all | Expand 10 after
1473 class FEBlendElement extends StyledElement implements FilterPrimitiveStandardAtt ributes { 1483 class FEBlendElement extends StyledElement implements FilterPrimitiveStandardAtt ributes {
1474 FEBlendElement.internal() : super.internal(); 1484 FEBlendElement.internal() : super.internal();
1475 1485
1476 @DomName('SVGFEBlendElement.SVGFEBlendElement') 1486 @DomName('SVGFEBlendElement.SVGFEBlendElement')
1477 @DocsEditable 1487 @DocsEditable
1478 factory FEBlendElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eBlend"); 1488 factory FEBlendElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eBlend");
1479 1489
1480 /// Checks if this type is supported on the current platform. 1490 /// Checks if this type is supported on the current platform.
1481 static bool get supported => true; 1491 static bool get supported => true;
1482 1492
1493 @DomName('SVGFEBlendElement.SVG_FEBLEND_MODE_DARKEN')
1494 @DocsEditable
1483 static const int SVG_FEBLEND_MODE_DARKEN = 4; 1495 static const int SVG_FEBLEND_MODE_DARKEN = 4;
1484 1496
1497 @DomName('SVGFEBlendElement.SVG_FEBLEND_MODE_LIGHTEN')
1498 @DocsEditable
1485 static const int SVG_FEBLEND_MODE_LIGHTEN = 5; 1499 static const int SVG_FEBLEND_MODE_LIGHTEN = 5;
1486 1500
1501 @DomName('SVGFEBlendElement.SVG_FEBLEND_MODE_MULTIPLY')
1502 @DocsEditable
1487 static const int SVG_FEBLEND_MODE_MULTIPLY = 2; 1503 static const int SVG_FEBLEND_MODE_MULTIPLY = 2;
1488 1504
1505 @DomName('SVGFEBlendElement.SVG_FEBLEND_MODE_NORMAL')
1506 @DocsEditable
1489 static const int SVG_FEBLEND_MODE_NORMAL = 1; 1507 static const int SVG_FEBLEND_MODE_NORMAL = 1;
1490 1508
1509 @DomName('SVGFEBlendElement.SVG_FEBLEND_MODE_SCREEN')
1510 @DocsEditable
1491 static const int SVG_FEBLEND_MODE_SCREEN = 3; 1511 static const int SVG_FEBLEND_MODE_SCREEN = 3;
1492 1512
1513 @DomName('SVGFEBlendElement.SVG_FEBLEND_MODE_UNKNOWN')
1514 @DocsEditable
1493 static const int SVG_FEBLEND_MODE_UNKNOWN = 0; 1515 static const int SVG_FEBLEND_MODE_UNKNOWN = 0;
1494 1516
1495 @DomName('SVGFEBlendElement.in1') 1517 @DomName('SVGFEBlendElement.in1')
1496 @DocsEditable 1518 @DocsEditable
1497 AnimatedString get in1 native "SVGFEBlendElement_in1_Getter"; 1519 AnimatedString get in1 native "SVGFEBlendElement_in1_Getter";
1498 1520
1499 @DomName('SVGFEBlendElement.in2') 1521 @DomName('SVGFEBlendElement.in2')
1500 @DocsEditable 1522 @DocsEditable
1501 AnimatedString get in2 native "SVGFEBlendElement_in2_Getter"; 1523 AnimatedString get in2 native "SVGFEBlendElement_in2_Getter";
1502 1524
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
1541 class FEColorMatrixElement extends StyledElement implements FilterPrimitiveStand ardAttributes { 1563 class FEColorMatrixElement extends StyledElement implements FilterPrimitiveStand ardAttributes {
1542 FEColorMatrixElement.internal() : super.internal(); 1564 FEColorMatrixElement.internal() : super.internal();
1543 1565
1544 @DomName('SVGFEColorMatrixElement.SVGFEColorMatrixElement') 1566 @DomName('SVGFEColorMatrixElement.SVGFEColorMatrixElement')
1545 @DocsEditable 1567 @DocsEditable
1546 factory FEColorMatrixElement() => _SvgElementFactoryProvider.createSvgElement_ tag("feColorMatrix"); 1568 factory FEColorMatrixElement() => _SvgElementFactoryProvider.createSvgElement_ tag("feColorMatrix");
1547 1569
1548 /// Checks if this type is supported on the current platform. 1570 /// Checks if this type is supported on the current platform.
1549 static bool get supported => true; 1571 static bool get supported => true;
1550 1572
1573 @DomName('SVGFEColorMatrixElement.SVG_FECOLORMATRIX_TYPE_HUEROTATE')
1574 @DocsEditable
1551 static const int SVG_FECOLORMATRIX_TYPE_HUEROTATE = 3; 1575 static const int SVG_FECOLORMATRIX_TYPE_HUEROTATE = 3;
1552 1576
1577 @DomName('SVGFEColorMatrixElement.SVG_FECOLORMATRIX_TYPE_LUMINANCETOALPHA')
1578 @DocsEditable
1553 static const int SVG_FECOLORMATRIX_TYPE_LUMINANCETOALPHA = 4; 1579 static const int SVG_FECOLORMATRIX_TYPE_LUMINANCETOALPHA = 4;
1554 1580
1581 @DomName('SVGFEColorMatrixElement.SVG_FECOLORMATRIX_TYPE_MATRIX')
1582 @DocsEditable
1555 static const int SVG_FECOLORMATRIX_TYPE_MATRIX = 1; 1583 static const int SVG_FECOLORMATRIX_TYPE_MATRIX = 1;
1556 1584
1585 @DomName('SVGFEColorMatrixElement.SVG_FECOLORMATRIX_TYPE_SATURATE')
1586 @DocsEditable
1557 static const int SVG_FECOLORMATRIX_TYPE_SATURATE = 2; 1587 static const int SVG_FECOLORMATRIX_TYPE_SATURATE = 2;
1558 1588
1589 @DomName('SVGFEColorMatrixElement.SVG_FECOLORMATRIX_TYPE_UNKNOWN')
1590 @DocsEditable
1559 static const int SVG_FECOLORMATRIX_TYPE_UNKNOWN = 0; 1591 static const int SVG_FECOLORMATRIX_TYPE_UNKNOWN = 0;
1560 1592
1561 @DomName('SVGFEColorMatrixElement.in1') 1593 @DomName('SVGFEColorMatrixElement.in1')
1562 @DocsEditable 1594 @DocsEditable
1563 AnimatedString get in1 native "SVGFEColorMatrixElement_in1_Getter"; 1595 AnimatedString get in1 native "SVGFEColorMatrixElement_in1_Getter";
1564 1596
1565 @DomName('SVGFEColorMatrixElement.type') 1597 @DomName('SVGFEColorMatrixElement.type')
1566 @DocsEditable 1598 @DocsEditable
1567 AnimatedEnumeration get type native "SVGFEColorMatrixElement_type_Getter"; 1599 AnimatedEnumeration get type native "SVGFEColorMatrixElement_type_Getter";
1568 1600
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
1644 // BSD-style license that can be found in the LICENSE file. 1676 // BSD-style license that can be found in the LICENSE file.
1645 1677
1646 // WARNING: Do not edit - generated code. 1678 // WARNING: Do not edit - generated code.
1647 1679
1648 1680
1649 @DocsEditable 1681 @DocsEditable
1650 @DomName('SVGFECompositeElement') 1682 @DomName('SVGFECompositeElement')
1651 class FECompositeElement extends StyledElement implements FilterPrimitiveStandar dAttributes { 1683 class FECompositeElement extends StyledElement implements FilterPrimitiveStandar dAttributes {
1652 FECompositeElement.internal() : super.internal(); 1684 FECompositeElement.internal() : super.internal();
1653 1685
1686 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_ARITHMETIC')
1687 @DocsEditable
1654 static const int SVG_FECOMPOSITE_OPERATOR_ARITHMETIC = 6; 1688 static const int SVG_FECOMPOSITE_OPERATOR_ARITHMETIC = 6;
1655 1689
1690 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_ATOP')
1691 @DocsEditable
1656 static const int SVG_FECOMPOSITE_OPERATOR_ATOP = 4; 1692 static const int SVG_FECOMPOSITE_OPERATOR_ATOP = 4;
1657 1693
1694 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_IN')
1695 @DocsEditable
1658 static const int SVG_FECOMPOSITE_OPERATOR_IN = 2; 1696 static const int SVG_FECOMPOSITE_OPERATOR_IN = 2;
1659 1697
1698 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_OUT')
1699 @DocsEditable
1660 static const int SVG_FECOMPOSITE_OPERATOR_OUT = 3; 1700 static const int SVG_FECOMPOSITE_OPERATOR_OUT = 3;
1661 1701
1702 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_OVER')
1703 @DocsEditable
1662 static const int SVG_FECOMPOSITE_OPERATOR_OVER = 1; 1704 static const int SVG_FECOMPOSITE_OPERATOR_OVER = 1;
1663 1705
1706 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_UNKNOWN')
1707 @DocsEditable
1664 static const int SVG_FECOMPOSITE_OPERATOR_UNKNOWN = 0; 1708 static const int SVG_FECOMPOSITE_OPERATOR_UNKNOWN = 0;
1665 1709
1710 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_XOR')
1711 @DocsEditable
1666 static const int SVG_FECOMPOSITE_OPERATOR_XOR = 5; 1712 static const int SVG_FECOMPOSITE_OPERATOR_XOR = 5;
1667 1713
1668 @DomName('SVGFECompositeElement.in1') 1714 @DomName('SVGFECompositeElement.in1')
1669 @DocsEditable 1715 @DocsEditable
1670 AnimatedString get in1 native "SVGFECompositeElement_in1_Getter"; 1716 AnimatedString get in1 native "SVGFECompositeElement_in1_Getter";
1671 1717
1672 @DomName('SVGFECompositeElement.in2') 1718 @DomName('SVGFECompositeElement.in2')
1673 @DocsEditable 1719 @DocsEditable
1674 AnimatedString get in2 native "SVGFECompositeElement_in2_Getter"; 1720 AnimatedString get in2 native "SVGFECompositeElement_in2_Getter";
1675 1721
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
1730 class FEConvolveMatrixElement extends StyledElement implements FilterPrimitiveSt andardAttributes { 1776 class FEConvolveMatrixElement extends StyledElement implements FilterPrimitiveSt andardAttributes {
1731 FEConvolveMatrixElement.internal() : super.internal(); 1777 FEConvolveMatrixElement.internal() : super.internal();
1732 1778
1733 @DomName('SVGFEConvolveMatrixElement.SVGFEConvolveMatrixElement') 1779 @DomName('SVGFEConvolveMatrixElement.SVGFEConvolveMatrixElement')
1734 @DocsEditable 1780 @DocsEditable
1735 factory FEConvolveMatrixElement() => _SvgElementFactoryProvider.createSvgEleme nt_tag("feConvolveMatrix"); 1781 factory FEConvolveMatrixElement() => _SvgElementFactoryProvider.createSvgEleme nt_tag("feConvolveMatrix");
1736 1782
1737 /// Checks if this type is supported on the current platform. 1783 /// Checks if this type is supported on the current platform.
1738 static bool get supported => true; 1784 static bool get supported => true;
1739 1785
1786 @DomName('SVGFEConvolveMatrixElement.SVG_EDGEMODE_DUPLICATE')
1787 @DocsEditable
1740 static const int SVG_EDGEMODE_DUPLICATE = 1; 1788 static const int SVG_EDGEMODE_DUPLICATE = 1;
1741 1789
1790 @DomName('SVGFEConvolveMatrixElement.SVG_EDGEMODE_NONE')
1791 @DocsEditable
1742 static const int SVG_EDGEMODE_NONE = 3; 1792 static const int SVG_EDGEMODE_NONE = 3;
1743 1793
1794 @DomName('SVGFEConvolveMatrixElement.SVG_EDGEMODE_UNKNOWN')
1795 @DocsEditable
1744 static const int SVG_EDGEMODE_UNKNOWN = 0; 1796 static const int SVG_EDGEMODE_UNKNOWN = 0;
1745 1797
1798 @DomName('SVGFEConvolveMatrixElement.SVG_EDGEMODE_WRAP')
1799 @DocsEditable
1746 static const int SVG_EDGEMODE_WRAP = 2; 1800 static const int SVG_EDGEMODE_WRAP = 2;
1747 1801
1748 @DomName('SVGFEConvolveMatrixElement.bias') 1802 @DomName('SVGFEConvolveMatrixElement.bias')
1749 @DocsEditable 1803 @DocsEditable
1750 AnimatedNumber get bias native "SVGFEConvolveMatrixElement_bias_Getter"; 1804 AnimatedNumber get bias native "SVGFEConvolveMatrixElement_bias_Getter";
1751 1805
1752 @DomName('SVGFEConvolveMatrixElement.divisor') 1806 @DomName('SVGFEConvolveMatrixElement.divisor')
1753 @DocsEditable 1807 @DocsEditable
1754 AnimatedNumber get divisor native "SVGFEConvolveMatrixElement_divisor_Getter"; 1808 AnimatedNumber get divisor native "SVGFEConvolveMatrixElement_divisor_Getter";
1755 1809
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
1894 class FEDisplacementMapElement extends StyledElement implements FilterPrimitiveS tandardAttributes { 1948 class FEDisplacementMapElement extends StyledElement implements FilterPrimitiveS tandardAttributes {
1895 FEDisplacementMapElement.internal() : super.internal(); 1949 FEDisplacementMapElement.internal() : super.internal();
1896 1950
1897 @DomName('SVGFEDisplacementMapElement.SVGFEDisplacementMapElement') 1951 @DomName('SVGFEDisplacementMapElement.SVGFEDisplacementMapElement')
1898 @DocsEditable 1952 @DocsEditable
1899 factory FEDisplacementMapElement() => _SvgElementFactoryProvider.createSvgElem ent_tag("feDisplacementMap"); 1953 factory FEDisplacementMapElement() => _SvgElementFactoryProvider.createSvgElem ent_tag("feDisplacementMap");
1900 1954
1901 /// Checks if this type is supported on the current platform. 1955 /// Checks if this type is supported on the current platform.
1902 static bool get supported => true; 1956 static bool get supported => true;
1903 1957
1958 @DomName('SVGFEDisplacementMapElement.SVG_CHANNEL_A')
1959 @DocsEditable
1904 static const int SVG_CHANNEL_A = 4; 1960 static const int SVG_CHANNEL_A = 4;
1905 1961
1962 @DomName('SVGFEDisplacementMapElement.SVG_CHANNEL_B')
1963 @DocsEditable
1906 static const int SVG_CHANNEL_B = 3; 1964 static const int SVG_CHANNEL_B = 3;
1907 1965
1966 @DomName('SVGFEDisplacementMapElement.SVG_CHANNEL_G')
1967 @DocsEditable
1908 static const int SVG_CHANNEL_G = 2; 1968 static const int SVG_CHANNEL_G = 2;
1909 1969
1970 @DomName('SVGFEDisplacementMapElement.SVG_CHANNEL_R')
1971 @DocsEditable
1910 static const int SVG_CHANNEL_R = 1; 1972 static const int SVG_CHANNEL_R = 1;
1911 1973
1974 @DomName('SVGFEDisplacementMapElement.SVG_CHANNEL_UNKNOWN')
1975 @DocsEditable
1912 static const int SVG_CHANNEL_UNKNOWN = 0; 1976 static const int SVG_CHANNEL_UNKNOWN = 0;
1913 1977
1914 @DomName('SVGFEDisplacementMapElement.in1') 1978 @DomName('SVGFEDisplacementMapElement.in1')
1915 @DocsEditable 1979 @DocsEditable
1916 AnimatedString get in1 native "SVGFEDisplacementMapElement_in1_Getter"; 1980 AnimatedString get in1 native "SVGFEDisplacementMapElement_in1_Getter";
1917 1981
1918 @DomName('SVGFEDisplacementMapElement.in2') 1982 @DomName('SVGFEDisplacementMapElement.in2')
1919 @DocsEditable 1983 @DocsEditable
1920 AnimatedString get in2 native "SVGFEDisplacementMapElement_in2_Getter"; 1984 AnimatedString get in2 native "SVGFEDisplacementMapElement_in2_Getter";
1921 1985
(...skipping 415 matching lines...) Expand 10 before | Expand all | Expand 10 after
2337 2401
2338 @DocsEditable 2402 @DocsEditable
2339 @DomName('SVGFEMorphologyElement') 2403 @DomName('SVGFEMorphologyElement')
2340 @SupportedBrowser(SupportedBrowser.CHROME) 2404 @SupportedBrowser(SupportedBrowser.CHROME)
2341 @SupportedBrowser(SupportedBrowser.FIREFOX) 2405 @SupportedBrowser(SupportedBrowser.FIREFOX)
2342 @SupportedBrowser(SupportedBrowser.IE, '10') 2406 @SupportedBrowser(SupportedBrowser.IE, '10')
2343 @SupportedBrowser(SupportedBrowser.SAFARI) 2407 @SupportedBrowser(SupportedBrowser.SAFARI)
2344 class FEMorphologyElement extends StyledElement implements FilterPrimitiveStanda rdAttributes { 2408 class FEMorphologyElement extends StyledElement implements FilterPrimitiveStanda rdAttributes {
2345 FEMorphologyElement.internal() : super.internal(); 2409 FEMorphologyElement.internal() : super.internal();
2346 2410
2411 @DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_DILATE')
2412 @DocsEditable
2347 static const int SVG_MORPHOLOGY_OPERATOR_DILATE = 2; 2413 static const int SVG_MORPHOLOGY_OPERATOR_DILATE = 2;
2348 2414
2415 @DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_ERODE')
2416 @DocsEditable
2349 static const int SVG_MORPHOLOGY_OPERATOR_ERODE = 1; 2417 static const int SVG_MORPHOLOGY_OPERATOR_ERODE = 1;
2350 2418
2419 @DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_UNKNOWN')
2420 @DocsEditable
2351 static const int SVG_MORPHOLOGY_OPERATOR_UNKNOWN = 0; 2421 static const int SVG_MORPHOLOGY_OPERATOR_UNKNOWN = 0;
2352 2422
2353 @DomName('SVGFEMorphologyElement.in1') 2423 @DomName('SVGFEMorphologyElement.in1')
2354 @DocsEditable 2424 @DocsEditable
2355 AnimatedString get in1 native "SVGFEMorphologyElement_in1_Getter"; 2425 AnimatedString get in1 native "SVGFEMorphologyElement_in1_Getter";
2356 2426
2357 @DomName('SVGFEMorphologyElement.operator') 2427 @DomName('SVGFEMorphologyElement.operator')
2358 @DocsEditable 2428 @DocsEditable
2359 AnimatedEnumeration get operator native "SVGFEMorphologyElement_operator_Gette r"; 2429 AnimatedEnumeration get operator native "SVGFEMorphologyElement_operator_Gette r";
2360 2430
(...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after
2663 class FETurbulenceElement extends StyledElement implements FilterPrimitiveStanda rdAttributes { 2733 class FETurbulenceElement extends StyledElement implements FilterPrimitiveStanda rdAttributes {
2664 FETurbulenceElement.internal() : super.internal(); 2734 FETurbulenceElement.internal() : super.internal();
2665 2735
2666 @DomName('SVGFETurbulenceElement.SVGFETurbulenceElement') 2736 @DomName('SVGFETurbulenceElement.SVGFETurbulenceElement')
2667 @DocsEditable 2737 @DocsEditable
2668 factory FETurbulenceElement() => _SvgElementFactoryProvider.createSvgElement_t ag("feTurbulence"); 2738 factory FETurbulenceElement() => _SvgElementFactoryProvider.createSvgElement_t ag("feTurbulence");
2669 2739
2670 /// Checks if this type is supported on the current platform. 2740 /// Checks if this type is supported on the current platform.
2671 static bool get supported => true; 2741 static bool get supported => true;
2672 2742
2743 @DomName('SVGFETurbulenceElement.SVG_STITCHTYPE_NOSTITCH')
2744 @DocsEditable
2673 static const int SVG_STITCHTYPE_NOSTITCH = 2; 2745 static const int SVG_STITCHTYPE_NOSTITCH = 2;
2674 2746
2747 @DomName('SVGFETurbulenceElement.SVG_STITCHTYPE_STITCH')
2748 @DocsEditable
2675 static const int SVG_STITCHTYPE_STITCH = 1; 2749 static const int SVG_STITCHTYPE_STITCH = 1;
2676 2750
2751 @DomName('SVGFETurbulenceElement.SVG_STITCHTYPE_UNKNOWN')
2752 @DocsEditable
2677 static const int SVG_STITCHTYPE_UNKNOWN = 0; 2753 static const int SVG_STITCHTYPE_UNKNOWN = 0;
2678 2754
2755 @DomName('SVGFETurbulenceElement.SVG_TURBULENCE_TYPE_FRACTALNOISE')
2756 @DocsEditable
2679 static const int SVG_TURBULENCE_TYPE_FRACTALNOISE = 1; 2757 static const int SVG_TURBULENCE_TYPE_FRACTALNOISE = 1;
2680 2758
2759 @DomName('SVGFETurbulenceElement.SVG_TURBULENCE_TYPE_TURBULENCE')
2760 @DocsEditable
2681 static const int SVG_TURBULENCE_TYPE_TURBULENCE = 2; 2761 static const int SVG_TURBULENCE_TYPE_TURBULENCE = 2;
2682 2762
2763 @DomName('SVGFETurbulenceElement.SVG_TURBULENCE_TYPE_UNKNOWN')
2764 @DocsEditable
2683 static const int SVG_TURBULENCE_TYPE_UNKNOWN = 0; 2765 static const int SVG_TURBULENCE_TYPE_UNKNOWN = 0;
2684 2766
2685 @DomName('SVGFETurbulenceElement.baseFrequencyX') 2767 @DomName('SVGFETurbulenceElement.baseFrequencyX')
2686 @DocsEditable 2768 @DocsEditable
2687 AnimatedNumber get baseFrequencyX native "SVGFETurbulenceElement_baseFrequency X_Getter"; 2769 AnimatedNumber get baseFrequencyX native "SVGFETurbulenceElement_baseFrequency X_Getter";
2688 2770
2689 @DomName('SVGFETurbulenceElement.baseFrequencyY') 2771 @DomName('SVGFETurbulenceElement.baseFrequencyY')
2690 @DocsEditable 2772 @DocsEditable
2691 AnimatedNumber get baseFrequencyY native "SVGFETurbulenceElement_baseFrequency Y_Getter"; 2773 AnimatedNumber get baseFrequencyY native "SVGFETurbulenceElement_baseFrequency Y_Getter";
2692 2774
(...skipping 498 matching lines...) Expand 10 before | Expand all | Expand 10 after
3191 // BSD-style license that can be found in the LICENSE file. 3273 // BSD-style license that can be found in the LICENSE file.
3192 3274
3193 // WARNING: Do not edit - generated code. 3275 // WARNING: Do not edit - generated code.
3194 3276
3195 3277
3196 @DocsEditable 3278 @DocsEditable
3197 @DomName('SVGLength') 3279 @DomName('SVGLength')
3198 class Length extends NativeFieldWrapperClass1 { 3280 class Length extends NativeFieldWrapperClass1 {
3199 Length.internal(); 3281 Length.internal();
3200 3282
3283 @DomName('SVGLength.SVG_LENGTHTYPE_CM')
3284 @DocsEditable
3201 static const int SVG_LENGTHTYPE_CM = 6; 3285 static const int SVG_LENGTHTYPE_CM = 6;
3202 3286
3287 @DomName('SVGLength.SVG_LENGTHTYPE_EMS')
3288 @DocsEditable
3203 static const int SVG_LENGTHTYPE_EMS = 3; 3289 static const int SVG_LENGTHTYPE_EMS = 3;
3204 3290
3291 @DomName('SVGLength.SVG_LENGTHTYPE_EXS')
3292 @DocsEditable
3205 static const int SVG_LENGTHTYPE_EXS = 4; 3293 static const int SVG_LENGTHTYPE_EXS = 4;
3206 3294
3295 @DomName('SVGLength.SVG_LENGTHTYPE_IN')
3296 @DocsEditable
3207 static const int SVG_LENGTHTYPE_IN = 8; 3297 static const int SVG_LENGTHTYPE_IN = 8;
3208 3298
3299 @DomName('SVGLength.SVG_LENGTHTYPE_MM')
3300 @DocsEditable
3209 static const int SVG_LENGTHTYPE_MM = 7; 3301 static const int SVG_LENGTHTYPE_MM = 7;
3210 3302
3303 @DomName('SVGLength.SVG_LENGTHTYPE_NUMBER')
3304 @DocsEditable
3211 static const int SVG_LENGTHTYPE_NUMBER = 1; 3305 static const int SVG_LENGTHTYPE_NUMBER = 1;
3212 3306
3307 @DomName('SVGLength.SVG_LENGTHTYPE_PC')
3308 @DocsEditable
3213 static const int SVG_LENGTHTYPE_PC = 10; 3309 static const int SVG_LENGTHTYPE_PC = 10;
3214 3310
3311 @DomName('SVGLength.SVG_LENGTHTYPE_PERCENTAGE')
3312 @DocsEditable
3215 static const int SVG_LENGTHTYPE_PERCENTAGE = 2; 3313 static const int SVG_LENGTHTYPE_PERCENTAGE = 2;
3216 3314
3315 @DomName('SVGLength.SVG_LENGTHTYPE_PT')
3316 @DocsEditable
3217 static const int SVG_LENGTHTYPE_PT = 9; 3317 static const int SVG_LENGTHTYPE_PT = 9;
3218 3318
3319 @DomName('SVGLength.SVG_LENGTHTYPE_PX')
3320 @DocsEditable
3219 static const int SVG_LENGTHTYPE_PX = 5; 3321 static const int SVG_LENGTHTYPE_PX = 5;
3220 3322
3323 @DomName('SVGLength.SVG_LENGTHTYPE_UNKNOWN')
3324 @DocsEditable
3221 static const int SVG_LENGTHTYPE_UNKNOWN = 0; 3325 static const int SVG_LENGTHTYPE_UNKNOWN = 0;
3222 3326
3223 @DomName('SVGLength.unitType') 3327 @DomName('SVGLength.unitType')
3224 @DocsEditable 3328 @DocsEditable
3225 int get unitType native "SVGLength_unitType_Getter"; 3329 int get unitType native "SVGLength_unitType_Getter";
3226 3330
3227 @DomName('SVGLength.value') 3331 @DomName('SVGLength.value')
3228 @DocsEditable 3332 @DocsEditable
3229 num get value native "SVGLength_value_Getter"; 3333 num get value native "SVGLength_value_Getter";
3230 3334
(...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after
3495 3599
3496 @DocsEditable 3600 @DocsEditable
3497 @DomName('SVGMarkerElement') 3601 @DomName('SVGMarkerElement')
3498 class MarkerElement extends StyledElement implements FitToViewBox, ExternalResou rcesRequired, LangSpace { 3602 class MarkerElement extends StyledElement implements FitToViewBox, ExternalResou rcesRequired, LangSpace {
3499 MarkerElement.internal() : super.internal(); 3603 MarkerElement.internal() : super.internal();
3500 3604
3501 @DomName('SVGMarkerElement.SVGMarkerElement') 3605 @DomName('SVGMarkerElement.SVGMarkerElement')
3502 @DocsEditable 3606 @DocsEditable
3503 factory MarkerElement() => _SvgElementFactoryProvider.createSvgElement_tag("ma rker"); 3607 factory MarkerElement() => _SvgElementFactoryProvider.createSvgElement_tag("ma rker");
3504 3608
3609 @DomName('SVGMarkerElement.SVG_MARKERUNITS_STROKEWIDTH')
3610 @DocsEditable
3505 static const int SVG_MARKERUNITS_STROKEWIDTH = 2; 3611 static const int SVG_MARKERUNITS_STROKEWIDTH = 2;
3506 3612
3613 @DomName('SVGMarkerElement.SVG_MARKERUNITS_UNKNOWN')
3614 @DocsEditable
3507 static const int SVG_MARKERUNITS_UNKNOWN = 0; 3615 static const int SVG_MARKERUNITS_UNKNOWN = 0;
3508 3616
3617 @DomName('SVGMarkerElement.SVG_MARKERUNITS_USERSPACEONUSE')
3618 @DocsEditable
3509 static const int SVG_MARKERUNITS_USERSPACEONUSE = 1; 3619 static const int SVG_MARKERUNITS_USERSPACEONUSE = 1;
3510 3620
3621 @DomName('SVGMarkerElement.SVG_MARKER_ORIENT_ANGLE')
3622 @DocsEditable
3511 static const int SVG_MARKER_ORIENT_ANGLE = 2; 3623 static const int SVG_MARKER_ORIENT_ANGLE = 2;
3512 3624
3625 @DomName('SVGMarkerElement.SVG_MARKER_ORIENT_AUTO')
3626 @DocsEditable
3513 static const int SVG_MARKER_ORIENT_AUTO = 1; 3627 static const int SVG_MARKER_ORIENT_AUTO = 1;
3514 3628
3629 @DomName('SVGMarkerElement.SVG_MARKER_ORIENT_UNKNOWN')
3630 @DocsEditable
3515 static const int SVG_MARKER_ORIENT_UNKNOWN = 0; 3631 static const int SVG_MARKER_ORIENT_UNKNOWN = 0;
3516 3632
3517 @DomName('SVGMarkerElement.markerHeight') 3633 @DomName('SVGMarkerElement.markerHeight')
3518 @DocsEditable 3634 @DocsEditable
3519 AnimatedLength get markerHeight native "SVGMarkerElement_markerHeight_Getter"; 3635 AnimatedLength get markerHeight native "SVGMarkerElement_markerHeight_Getter";
3520 3636
3521 @DomName('SVGMarkerElement.markerUnits') 3637 @DomName('SVGMarkerElement.markerUnits')
3522 @DocsEditable 3638 @DocsEditable
3523 AnimatedEnumeration get markerUnits native "SVGMarkerElement_markerUnits_Gette r"; 3639 AnimatedEnumeration get markerUnits native "SVGMarkerElement_markerUnits_Gette r";
3524 3640
(...skipping 526 matching lines...) Expand 10 before | Expand all | Expand 10 after
4051 // BSD-style license that can be found in the LICENSE file. 4167 // BSD-style license that can be found in the LICENSE file.
4052 4168
4053 // WARNING: Do not edit - generated code. 4169 // WARNING: Do not edit - generated code.
4054 4170
4055 4171
4056 @DocsEditable 4172 @DocsEditable
4057 @DomName('SVGPathSeg') 4173 @DomName('SVGPathSeg')
4058 class PathSeg extends NativeFieldWrapperClass1 { 4174 class PathSeg extends NativeFieldWrapperClass1 {
4059 PathSeg.internal(); 4175 PathSeg.internal();
4060 4176
4177 @DomName('SVGPathSeg.PATHSEG_ARC_ABS')
4178 @DocsEditable
4061 static const int PATHSEG_ARC_ABS = 10; 4179 static const int PATHSEG_ARC_ABS = 10;
4062 4180
4181 @DomName('SVGPathSeg.PATHSEG_ARC_REL')
4182 @DocsEditable
4063 static const int PATHSEG_ARC_REL = 11; 4183 static const int PATHSEG_ARC_REL = 11;
4064 4184
4185 @DomName('SVGPathSeg.PATHSEG_CLOSEPATH')
4186 @DocsEditable
4065 static const int PATHSEG_CLOSEPATH = 1; 4187 static const int PATHSEG_CLOSEPATH = 1;
4066 4188
4189 @DomName('SVGPathSeg.PATHSEG_CURVETO_CUBIC_ABS')
4190 @DocsEditable
4067 static const int PATHSEG_CURVETO_CUBIC_ABS = 6; 4191 static const int PATHSEG_CURVETO_CUBIC_ABS = 6;
4068 4192
4193 @DomName('SVGPathSeg.PATHSEG_CURVETO_CUBIC_REL')
4194 @DocsEditable
4069 static const int PATHSEG_CURVETO_CUBIC_REL = 7; 4195 static const int PATHSEG_CURVETO_CUBIC_REL = 7;
4070 4196
4197 @DomName('SVGPathSeg.PATHSEG_CURVETO_CUBIC_SMOOTH_ABS')
4198 @DocsEditable
4071 static const int PATHSEG_CURVETO_CUBIC_SMOOTH_ABS = 16; 4199 static const int PATHSEG_CURVETO_CUBIC_SMOOTH_ABS = 16;
4072 4200
4201 @DomName('SVGPathSeg.PATHSEG_CURVETO_CUBIC_SMOOTH_REL')
4202 @DocsEditable
4073 static const int PATHSEG_CURVETO_CUBIC_SMOOTH_REL = 17; 4203 static const int PATHSEG_CURVETO_CUBIC_SMOOTH_REL = 17;
4074 4204
4205 @DomName('SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_ABS')
4206 @DocsEditable
4075 static const int PATHSEG_CURVETO_QUADRATIC_ABS = 8; 4207 static const int PATHSEG_CURVETO_QUADRATIC_ABS = 8;
4076 4208
4209 @DomName('SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_REL')
4210 @DocsEditable
4077 static const int PATHSEG_CURVETO_QUADRATIC_REL = 9; 4211 static const int PATHSEG_CURVETO_QUADRATIC_REL = 9;
4078 4212
4213 @DomName('SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS')
4214 @DocsEditable
4079 static const int PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS = 18; 4215 static const int PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS = 18;
4080 4216
4217 @DomName('SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL')
4218 @DocsEditable
4081 static const int PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL = 19; 4219 static const int PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL = 19;
4082 4220
4221 @DomName('SVGPathSeg.PATHSEG_LINETO_ABS')
4222 @DocsEditable
4083 static const int PATHSEG_LINETO_ABS = 4; 4223 static const int PATHSEG_LINETO_ABS = 4;
4084 4224
4225 @DomName('SVGPathSeg.PATHSEG_LINETO_HORIZONTAL_ABS')
4226 @DocsEditable
4085 static const int PATHSEG_LINETO_HORIZONTAL_ABS = 12; 4227 static const int PATHSEG_LINETO_HORIZONTAL_ABS = 12;
4086 4228
4229 @DomName('SVGPathSeg.PATHSEG_LINETO_HORIZONTAL_REL')
4230 @DocsEditable
4087 static const int PATHSEG_LINETO_HORIZONTAL_REL = 13; 4231 static const int PATHSEG_LINETO_HORIZONTAL_REL = 13;
4088 4232
4233 @DomName('SVGPathSeg.PATHSEG_LINETO_REL')
4234 @DocsEditable
4089 static const int PATHSEG_LINETO_REL = 5; 4235 static const int PATHSEG_LINETO_REL = 5;
4090 4236
4237 @DomName('SVGPathSeg.PATHSEG_LINETO_VERTICAL_ABS')
4238 @DocsEditable
4091 static const int PATHSEG_LINETO_VERTICAL_ABS = 14; 4239 static const int PATHSEG_LINETO_VERTICAL_ABS = 14;
4092 4240
4241 @DomName('SVGPathSeg.PATHSEG_LINETO_VERTICAL_REL')
4242 @DocsEditable
4093 static const int PATHSEG_LINETO_VERTICAL_REL = 15; 4243 static const int PATHSEG_LINETO_VERTICAL_REL = 15;
4094 4244
4245 @DomName('SVGPathSeg.PATHSEG_MOVETO_ABS')
4246 @DocsEditable
4095 static const int PATHSEG_MOVETO_ABS = 2; 4247 static const int PATHSEG_MOVETO_ABS = 2;
4096 4248
4249 @DomName('SVGPathSeg.PATHSEG_MOVETO_REL')
4250 @DocsEditable
4097 static const int PATHSEG_MOVETO_REL = 3; 4251 static const int PATHSEG_MOVETO_REL = 3;
4098 4252
4253 @DomName('SVGPathSeg.PATHSEG_UNKNOWN')
4254 @DocsEditable
4099 static const int PATHSEG_UNKNOWN = 0; 4255 static const int PATHSEG_UNKNOWN = 0;
4100 4256
4101 @DomName('SVGPathSeg.pathSegType') 4257 @DomName('SVGPathSeg.pathSegType')
4102 @DocsEditable 4258 @DocsEditable
4103 int get pathSegType native "SVGPathSeg_pathSegType_Getter"; 4259 int get pathSegType native "SVGPathSeg_pathSegType_Getter";
4104 4260
4105 @DomName('SVGPathSeg.pathSegTypeAsLetter') 4261 @DomName('SVGPathSeg.pathSegTypeAsLetter')
4106 @DocsEditable 4262 @DocsEditable
4107 String get pathSegTypeAsLetter native "SVGPathSeg_pathSegTypeAsLetter_Getter"; 4263 String get pathSegTypeAsLetter native "SVGPathSeg_pathSegTypeAsLetter_Getter";
4108 4264
(...skipping 1125 matching lines...) Expand 10 before | Expand all | Expand 10 after
5234 // BSD-style license that can be found in the LICENSE file. 5390 // BSD-style license that can be found in the LICENSE file.
5235 5391
5236 // WARNING: Do not edit - generated code. 5392 // WARNING: Do not edit - generated code.
5237 5393
5238 5394
5239 @DocsEditable 5395 @DocsEditable
5240 @DomName('SVGPreserveAspectRatio') 5396 @DomName('SVGPreserveAspectRatio')
5241 class PreserveAspectRatio extends NativeFieldWrapperClass1 { 5397 class PreserveAspectRatio extends NativeFieldWrapperClass1 {
5242 PreserveAspectRatio.internal(); 5398 PreserveAspectRatio.internal();
5243 5399
5400 @DomName('SVGPreserveAspectRatio.SVG_MEETORSLICE_MEET')
5401 @DocsEditable
5244 static const int SVG_MEETORSLICE_MEET = 1; 5402 static const int SVG_MEETORSLICE_MEET = 1;
5245 5403
5404 @DomName('SVGPreserveAspectRatio.SVG_MEETORSLICE_SLICE')
5405 @DocsEditable
5246 static const int SVG_MEETORSLICE_SLICE = 2; 5406 static const int SVG_MEETORSLICE_SLICE = 2;
5247 5407
5408 @DomName('SVGPreserveAspectRatio.SVG_MEETORSLICE_UNKNOWN')
5409 @DocsEditable
5248 static const int SVG_MEETORSLICE_UNKNOWN = 0; 5410 static const int SVG_MEETORSLICE_UNKNOWN = 0;
5249 5411
5412 @DomName('SVGPreserveAspectRatio.SVG_PRESERVEASPECTRATIO_NONE')
5413 @DocsEditable
5250 static const int SVG_PRESERVEASPECTRATIO_NONE = 1; 5414 static const int SVG_PRESERVEASPECTRATIO_NONE = 1;
5251 5415
5416 @DomName('SVGPreserveAspectRatio.SVG_PRESERVEASPECTRATIO_UNKNOWN')
5417 @DocsEditable
5252 static const int SVG_PRESERVEASPECTRATIO_UNKNOWN = 0; 5418 static const int SVG_PRESERVEASPECTRATIO_UNKNOWN = 0;
5253 5419
5420 @DomName('SVGPreserveAspectRatio.SVG_PRESERVEASPECTRATIO_XMAXYMAX')
5421 @DocsEditable
5254 static const int SVG_PRESERVEASPECTRATIO_XMAXYMAX = 10; 5422 static const int SVG_PRESERVEASPECTRATIO_XMAXYMAX = 10;
5255 5423
5424 @DomName('SVGPreserveAspectRatio.SVG_PRESERVEASPECTRATIO_XMAXYMID')
5425 @DocsEditable
5256 static const int SVG_PRESERVEASPECTRATIO_XMAXYMID = 7; 5426 static const int SVG_PRESERVEASPECTRATIO_XMAXYMID = 7;
5257 5427
5428 @DomName('SVGPreserveAspectRatio.SVG_PRESERVEASPECTRATIO_XMAXYMIN')
5429 @DocsEditable
5258 static const int SVG_PRESERVEASPECTRATIO_XMAXYMIN = 4; 5430 static const int SVG_PRESERVEASPECTRATIO_XMAXYMIN = 4;
5259 5431
5432 @DomName('SVGPreserveAspectRatio.SVG_PRESERVEASPECTRATIO_XMIDYMAX')
5433 @DocsEditable
5260 static const int SVG_PRESERVEASPECTRATIO_XMIDYMAX = 9; 5434 static const int SVG_PRESERVEASPECTRATIO_XMIDYMAX = 9;
5261 5435
5436 @DomName('SVGPreserveAspectRatio.SVG_PRESERVEASPECTRATIO_XMIDYMID')
5437 @DocsEditable
5262 static const int SVG_PRESERVEASPECTRATIO_XMIDYMID = 6; 5438 static const int SVG_PRESERVEASPECTRATIO_XMIDYMID = 6;
5263 5439
5440 @DomName('SVGPreserveAspectRatio.SVG_PRESERVEASPECTRATIO_XMIDYMIN')
5441 @DocsEditable
5264 static const int SVG_PRESERVEASPECTRATIO_XMIDYMIN = 3; 5442 static const int SVG_PRESERVEASPECTRATIO_XMIDYMIN = 3;
5265 5443
5444 @DomName('SVGPreserveAspectRatio.SVG_PRESERVEASPECTRATIO_XMINYMAX')
5445 @DocsEditable
5266 static const int SVG_PRESERVEASPECTRATIO_XMINYMAX = 8; 5446 static const int SVG_PRESERVEASPECTRATIO_XMINYMAX = 8;
5267 5447
5448 @DomName('SVGPreserveAspectRatio.SVG_PRESERVEASPECTRATIO_XMINYMID')
5449 @DocsEditable
5268 static const int SVG_PRESERVEASPECTRATIO_XMINYMID = 5; 5450 static const int SVG_PRESERVEASPECTRATIO_XMINYMID = 5;
5269 5451
5452 @DomName('SVGPreserveAspectRatio.SVG_PRESERVEASPECTRATIO_XMINYMIN')
5453 @DocsEditable
5270 static const int SVG_PRESERVEASPECTRATIO_XMINYMIN = 2; 5454 static const int SVG_PRESERVEASPECTRATIO_XMINYMIN = 2;
5271 5455
5272 @DomName('SVGPreserveAspectRatio.align') 5456 @DomName('SVGPreserveAspectRatio.align')
5273 @DocsEditable 5457 @DocsEditable
5274 int get align native "SVGPreserveAspectRatio_align_Getter"; 5458 int get align native "SVGPreserveAspectRatio_align_Getter";
5275 5459
5276 @DomName('SVGPreserveAspectRatio.align') 5460 @DomName('SVGPreserveAspectRatio.align')
5277 @DocsEditable 5461 @DocsEditable
5278 void set align(int value) native "SVGPreserveAspectRatio_align_Setter"; 5462 void set align(int value) native "SVGPreserveAspectRatio_align_Setter";
5279 5463
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
5482 // BSD-style license that can be found in the LICENSE file. 5666 // BSD-style license that can be found in the LICENSE file.
5483 5667
5484 // WARNING: Do not edit - generated code. 5668 // WARNING: Do not edit - generated code.
5485 5669
5486 5670
5487 @DocsEditable 5671 @DocsEditable
5488 @DomName('SVGRenderingIntent') 5672 @DomName('SVGRenderingIntent')
5489 class RenderingIntent extends NativeFieldWrapperClass1 { 5673 class RenderingIntent extends NativeFieldWrapperClass1 {
5490 RenderingIntent.internal(); 5674 RenderingIntent.internal();
5491 5675
5676 @DomName('SVGRenderingIntent.RENDERING_INTENT_ABSOLUTE_COLORIMETRIC')
5677 @DocsEditable
5492 static const int RENDERING_INTENT_ABSOLUTE_COLORIMETRIC = 5; 5678 static const int RENDERING_INTENT_ABSOLUTE_COLORIMETRIC = 5;
5493 5679
5680 @DomName('SVGRenderingIntent.RENDERING_INTENT_AUTO')
5681 @DocsEditable
5494 static const int RENDERING_INTENT_AUTO = 1; 5682 static const int RENDERING_INTENT_AUTO = 1;
5495 5683
5684 @DomName('SVGRenderingIntent.RENDERING_INTENT_PERCEPTUAL')
5685 @DocsEditable
5496 static const int RENDERING_INTENT_PERCEPTUAL = 2; 5686 static const int RENDERING_INTENT_PERCEPTUAL = 2;
5497 5687
5688 @DomName('SVGRenderingIntent.RENDERING_INTENT_RELATIVE_COLORIMETRIC')
5689 @DocsEditable
5498 static const int RENDERING_INTENT_RELATIVE_COLORIMETRIC = 3; 5690 static const int RENDERING_INTENT_RELATIVE_COLORIMETRIC = 3;
5499 5691
5692 @DomName('SVGRenderingIntent.RENDERING_INTENT_SATURATION')
5693 @DocsEditable
5500 static const int RENDERING_INTENT_SATURATION = 4; 5694 static const int RENDERING_INTENT_SATURATION = 4;
5501 5695
5696 @DomName('SVGRenderingIntent.RENDERING_INTENT_UNKNOWN')
5697 @DocsEditable
5502 static const int RENDERING_INTENT_UNKNOWN = 0; 5698 static const int RENDERING_INTENT_UNKNOWN = 0;
5503 5699
5504 } 5700 }
5505 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5701 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5506 // for details. All rights reserved. Use of this source code is governed by a 5702 // for details. All rights reserved. Use of this source code is governed by a
5507 // BSD-style license that can be found in the LICENSE file. 5703 // BSD-style license that can be found in the LICENSE file.
5508 5704
5509 // WARNING: Do not edit - generated code. 5705 // WARNING: Do not edit - generated code.
5510 5706
5511 5707
(...skipping 379 matching lines...) Expand 10 before | Expand all | Expand 10 after
5891 // BSD-style license that can be found in the LICENSE file. 6087 // BSD-style license that can be found in the LICENSE file.
5892 6088
5893 // WARNING: Do not edit - generated code. 6089 // WARNING: Do not edit - generated code.
5894 6090
5895 6091
5896 @DocsEditable 6092 @DocsEditable
5897 @DomName('SVGException') 6093 @DomName('SVGException')
5898 class SvgException extends NativeFieldWrapperClass1 { 6094 class SvgException extends NativeFieldWrapperClass1 {
5899 SvgException.internal(); 6095 SvgException.internal();
5900 6096
6097 @DomName('SVGException.SVG_INVALID_VALUE_ERR')
6098 @DocsEditable
5901 static const int SVG_INVALID_VALUE_ERR = 1; 6099 static const int SVG_INVALID_VALUE_ERR = 1;
5902 6100
6101 @DomName('SVGException.SVG_MATRIX_NOT_INVERTABLE')
6102 @DocsEditable
5903 static const int SVG_MATRIX_NOT_INVERTABLE = 2; 6103 static const int SVG_MATRIX_NOT_INVERTABLE = 2;
5904 6104
6105 @DomName('SVGException.SVG_WRONG_TYPE_ERR')
6106 @DocsEditable
5905 static const int SVG_WRONG_TYPE_ERR = 0; 6107 static const int SVG_WRONG_TYPE_ERR = 0;
5906 6108
5907 @DomName('SVGException.code') 6109 @DomName('SVGException.code')
5908 @DocsEditable 6110 @DocsEditable
5909 int get code native "SVGException_code_Getter"; 6111 int get code native "SVGException_code_Getter";
5910 6112
5911 @DomName('SVGException.message') 6113 @DomName('SVGException.message')
5912 @DocsEditable 6114 @DocsEditable
5913 String get message native "SVGException_message_Getter"; 6115 String get message native "SVGException_message_Getter";
5914 6116
(...skipping 439 matching lines...) Expand 10 before | Expand all | Expand 10 after
6354 // BSD-style license that can be found in the LICENSE file. 6556 // BSD-style license that can be found in the LICENSE file.
6355 6557
6356 // WARNING: Do not edit - generated code. 6558 // WARNING: Do not edit - generated code.
6357 6559
6358 6560
6359 @DocsEditable 6561 @DocsEditable
6360 @DomName('SVGTextContentElement') 6562 @DomName('SVGTextContentElement')
6361 class TextContentElement extends StyledElement implements Tests, ExternalResourc esRequired, LangSpace { 6563 class TextContentElement extends StyledElement implements Tests, ExternalResourc esRequired, LangSpace {
6362 TextContentElement.internal() : super.internal(); 6564 TextContentElement.internal() : super.internal();
6363 6565
6566 @DomName('SVGTextContentElement.LENGTHADJUST_SPACING')
6567 @DocsEditable
6364 static const int LENGTHADJUST_SPACING = 1; 6568 static const int LENGTHADJUST_SPACING = 1;
6365 6569
6570 @DomName('SVGTextContentElement.LENGTHADJUST_SPACINGANDGLYPHS')
6571 @DocsEditable
6366 static const int LENGTHADJUST_SPACINGANDGLYPHS = 2; 6572 static const int LENGTHADJUST_SPACINGANDGLYPHS = 2;
6367 6573
6574 @DomName('SVGTextContentElement.LENGTHADJUST_UNKNOWN')
6575 @DocsEditable
6368 static const int LENGTHADJUST_UNKNOWN = 0; 6576 static const int LENGTHADJUST_UNKNOWN = 0;
6369 6577
6370 @DomName('SVGTextContentElement.lengthAdjust') 6578 @DomName('SVGTextContentElement.lengthAdjust')
6371 @DocsEditable 6579 @DocsEditable
6372 AnimatedEnumeration get lengthAdjust native "SVGTextContentElement_lengthAdjus t_Getter"; 6580 AnimatedEnumeration get lengthAdjust native "SVGTextContentElement_lengthAdjus t_Getter";
6373 6581
6374 @DomName('SVGTextContentElement.textLength') 6582 @DomName('SVGTextContentElement.textLength')
6375 @DocsEditable 6583 @DocsEditable
6376 AnimatedLength get textLength native "SVGTextContentElement_textLength_Getter" ; 6584 AnimatedLength get textLength native "SVGTextContentElement_textLength_Getter" ;
6377 6585
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
6498 // BSD-style license that can be found in the LICENSE file. 6706 // BSD-style license that can be found in the LICENSE file.
6499 6707
6500 // WARNING: Do not edit - generated code. 6708 // WARNING: Do not edit - generated code.
6501 6709
6502 6710
6503 @DocsEditable 6711 @DocsEditable
6504 @DomName('SVGTextPathElement') 6712 @DomName('SVGTextPathElement')
6505 class TextPathElement extends TextContentElement implements UriReference { 6713 class TextPathElement extends TextContentElement implements UriReference {
6506 TextPathElement.internal() : super.internal(); 6714 TextPathElement.internal() : super.internal();
6507 6715
6716 @DomName('SVGTextPathElement.TEXTPATH_METHODTYPE_ALIGN')
6717 @DocsEditable
6508 static const int TEXTPATH_METHODTYPE_ALIGN = 1; 6718 static const int TEXTPATH_METHODTYPE_ALIGN = 1;
6509 6719
6720 @DomName('SVGTextPathElement.TEXTPATH_METHODTYPE_STRETCH')
6721 @DocsEditable
6510 static const int TEXTPATH_METHODTYPE_STRETCH = 2; 6722 static const int TEXTPATH_METHODTYPE_STRETCH = 2;
6511 6723
6724 @DomName('SVGTextPathElement.TEXTPATH_METHODTYPE_UNKNOWN')
6725 @DocsEditable
6512 static const int TEXTPATH_METHODTYPE_UNKNOWN = 0; 6726 static const int TEXTPATH_METHODTYPE_UNKNOWN = 0;
6513 6727
6728 @DomName('SVGTextPathElement.TEXTPATH_SPACINGTYPE_AUTO')
6729 @DocsEditable
6514 static const int TEXTPATH_SPACINGTYPE_AUTO = 1; 6730 static const int TEXTPATH_SPACINGTYPE_AUTO = 1;
6515 6731
6732 @DomName('SVGTextPathElement.TEXTPATH_SPACINGTYPE_EXACT')
6733 @DocsEditable
6516 static const int TEXTPATH_SPACINGTYPE_EXACT = 2; 6734 static const int TEXTPATH_SPACINGTYPE_EXACT = 2;
6517 6735
6736 @DomName('SVGTextPathElement.TEXTPATH_SPACINGTYPE_UNKNOWN')
6737 @DocsEditable
6518 static const int TEXTPATH_SPACINGTYPE_UNKNOWN = 0; 6738 static const int TEXTPATH_SPACINGTYPE_UNKNOWN = 0;
6519 6739
6520 @DomName('SVGTextPathElement.method') 6740 @DomName('SVGTextPathElement.method')
6521 @DocsEditable 6741 @DocsEditable
6522 AnimatedEnumeration get method native "SVGTextPathElement_method_Getter"; 6742 AnimatedEnumeration get method native "SVGTextPathElement_method_Getter";
6523 6743
6524 @DomName('SVGTextPathElement.spacing') 6744 @DomName('SVGTextPathElement.spacing')
6525 @DocsEditable 6745 @DocsEditable
6526 AnimatedEnumeration get spacing native "SVGTextPathElement_spacing_Getter"; 6746 AnimatedEnumeration get spacing native "SVGTextPathElement_spacing_Getter";
6527 6747
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
6605 // BSD-style license that can be found in the LICENSE file. 6825 // BSD-style license that can be found in the LICENSE file.
6606 6826
6607 // WARNING: Do not edit - generated code. 6827 // WARNING: Do not edit - generated code.
6608 6828
6609 6829
6610 @DocsEditable 6830 @DocsEditable
6611 @DomName('SVGTransform') 6831 @DomName('SVGTransform')
6612 class Transform extends NativeFieldWrapperClass1 { 6832 class Transform extends NativeFieldWrapperClass1 {
6613 Transform.internal(); 6833 Transform.internal();
6614 6834
6835 @DomName('SVGTransform.SVG_TRANSFORM_MATRIX')
6836 @DocsEditable
6615 static const int SVG_TRANSFORM_MATRIX = 1; 6837 static const int SVG_TRANSFORM_MATRIX = 1;
6616 6838
6839 @DomName('SVGTransform.SVG_TRANSFORM_ROTATE')
6840 @DocsEditable
6617 static const int SVG_TRANSFORM_ROTATE = 4; 6841 static const int SVG_TRANSFORM_ROTATE = 4;
6618 6842
6843 @DomName('SVGTransform.SVG_TRANSFORM_SCALE')
6844 @DocsEditable
6619 static const int SVG_TRANSFORM_SCALE = 3; 6845 static const int SVG_TRANSFORM_SCALE = 3;
6620 6846
6847 @DomName('SVGTransform.SVG_TRANSFORM_SKEWX')
6848 @DocsEditable
6621 static const int SVG_TRANSFORM_SKEWX = 5; 6849 static const int SVG_TRANSFORM_SKEWX = 5;
6622 6850
6851 @DomName('SVGTransform.SVG_TRANSFORM_SKEWY')
6852 @DocsEditable
6623 static const int SVG_TRANSFORM_SKEWY = 6; 6853 static const int SVG_TRANSFORM_SKEWY = 6;
6624 6854
6855 @DomName('SVGTransform.SVG_TRANSFORM_TRANSLATE')
6856 @DocsEditable
6625 static const int SVG_TRANSFORM_TRANSLATE = 2; 6857 static const int SVG_TRANSFORM_TRANSLATE = 2;
6626 6858
6859 @DomName('SVGTransform.SVG_TRANSFORM_UNKNOWN')
6860 @DocsEditable
6627 static const int SVG_TRANSFORM_UNKNOWN = 0; 6861 static const int SVG_TRANSFORM_UNKNOWN = 0;
6628 6862
6629 @DomName('SVGTransform.angle') 6863 @DomName('SVGTransform.angle')
6630 @DocsEditable 6864 @DocsEditable
6631 num get angle native "SVGTransform_angle_Getter"; 6865 num get angle native "SVGTransform_angle_Getter";
6632 6866
6633 @DomName('SVGTransform.matrix') 6867 @DomName('SVGTransform.matrix')
6634 @DocsEditable 6868 @DocsEditable
6635 Matrix get matrix native "SVGTransform_matrix_Getter"; 6869 Matrix get matrix native "SVGTransform_matrix_Getter";
6636 6870
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
6779 // BSD-style license that can be found in the LICENSE file. 7013 // BSD-style license that can be found in the LICENSE file.
6780 7014
6781 // WARNING: Do not edit - generated code. 7015 // WARNING: Do not edit - generated code.
6782 7016
6783 7017
6784 @DocsEditable 7018 @DocsEditable
6785 @DomName('SVGUnitTypes') 7019 @DomName('SVGUnitTypes')
6786 class UnitTypes extends NativeFieldWrapperClass1 { 7020 class UnitTypes extends NativeFieldWrapperClass1 {
6787 UnitTypes.internal(); 7021 UnitTypes.internal();
6788 7022
7023 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_OBJECTBOUNDINGBOX')
7024 @DocsEditable
6789 static const int SVG_UNIT_TYPE_OBJECTBOUNDINGBOX = 2; 7025 static const int SVG_UNIT_TYPE_OBJECTBOUNDINGBOX = 2;
6790 7026
7027 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_UNKNOWN')
7028 @DocsEditable
6791 static const int SVG_UNIT_TYPE_UNKNOWN = 0; 7029 static const int SVG_UNIT_TYPE_UNKNOWN = 0;
6792 7030
7031 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_USERSPACEONUSE')
7032 @DocsEditable
6793 static const int SVG_UNIT_TYPE_USERSPACEONUSE = 1; 7033 static const int SVG_UNIT_TYPE_USERSPACEONUSE = 1;
6794 7034
6795 } 7035 }
6796 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7036 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6797 // for details. All rights reserved. Use of this source code is governed by a 7037 // for details. All rights reserved. Use of this source code is governed by a
6798 // BSD-style license that can be found in the LICENSE file. 7038 // BSD-style license that can be found in the LICENSE file.
6799 7039
6800 // WARNING: Do not edit - generated code. 7040 // WARNING: Do not edit - generated code.
6801 7041
6802 7042
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
7018 // BSD-style license that can be found in the LICENSE file. 7258 // BSD-style license that can be found in the LICENSE file.
7019 7259
7020 // WARNING: Do not edit - generated code. 7260 // WARNING: Do not edit - generated code.
7021 7261
7022 7262
7023 @DocsEditable 7263 @DocsEditable
7024 @DomName('SVGZoomAndPan') 7264 @DomName('SVGZoomAndPan')
7025 class ZoomAndPan extends NativeFieldWrapperClass1 { 7265 class ZoomAndPan extends NativeFieldWrapperClass1 {
7026 ZoomAndPan.internal(); 7266 ZoomAndPan.internal();
7027 7267
7268 @DomName('SVGZoomAndPan.SVG_ZOOMANDPAN_DISABLE')
7269 @DocsEditable
7028 static const int SVG_ZOOMANDPAN_DISABLE = 1; 7270 static const int SVG_ZOOMANDPAN_DISABLE = 1;
7029 7271
7272 @DomName('SVGZoomAndPan.SVG_ZOOMANDPAN_MAGNIFY')
7273 @DocsEditable
7030 static const int SVG_ZOOMANDPAN_MAGNIFY = 2; 7274 static const int SVG_ZOOMANDPAN_MAGNIFY = 2;
7031 7275
7276 @DomName('SVGZoomAndPan.SVG_ZOOMANDPAN_UNKNOWN')
7277 @DocsEditable
7032 static const int SVG_ZOOMANDPAN_UNKNOWN = 0; 7278 static const int SVG_ZOOMANDPAN_UNKNOWN = 0;
7033 7279
7034 @DomName('SVGZoomAndPan.zoomAndPan') 7280 @DomName('SVGZoomAndPan.zoomAndPan')
7035 @DocsEditable 7281 @DocsEditable
7036 int get zoomAndPan native "SVGZoomAndPan_zoomAndPan_Getter"; 7282 int get zoomAndPan native "SVGZoomAndPan_zoomAndPan_Getter";
7037 7283
7038 @DomName('SVGZoomAndPan.zoomAndPan') 7284 @DomName('SVGZoomAndPan.zoomAndPan')
7039 @DocsEditable 7285 @DocsEditable
7040 void set zoomAndPan(int value) native "SVGZoomAndPan_zoomAndPan_Setter"; 7286 void set zoomAndPan(int value) native "SVGZoomAndPan_zoomAndPan_Setter";
7041 7287
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
7114 // BSD-style license that can be found in the LICENSE file. 7360 // BSD-style license that can be found in the LICENSE file.
7115 7361
7116 // WARNING: Do not edit - generated code. 7362 // WARNING: Do not edit - generated code.
7117 7363
7118 7364
7119 @DocsEditable 7365 @DocsEditable
7120 @DomName('SVGGradientElement') 7366 @DomName('SVGGradientElement')
7121 class _GradientElement extends StyledElement implements UriReference, ExternalRe sourcesRequired { 7367 class _GradientElement extends StyledElement implements UriReference, ExternalRe sourcesRequired {
7122 _GradientElement.internal() : super.internal(); 7368 _GradientElement.internal() : super.internal();
7123 7369
7370 @DomName('SVGGradientElement.SVG_SPREADMETHOD_PAD')
7371 @DocsEditable
7124 static const int SVG_SPREADMETHOD_PAD = 1; 7372 static const int SVG_SPREADMETHOD_PAD = 1;
7125 7373
7374 @DomName('SVGGradientElement.SVG_SPREADMETHOD_REFLECT')
7375 @DocsEditable
7126 static const int SVG_SPREADMETHOD_REFLECT = 2; 7376 static const int SVG_SPREADMETHOD_REFLECT = 2;
7127 7377
7378 @DomName('SVGGradientElement.SVG_SPREADMETHOD_REPEAT')
7379 @DocsEditable
7128 static const int SVG_SPREADMETHOD_REPEAT = 3; 7380 static const int SVG_SPREADMETHOD_REPEAT = 3;
7129 7381
7382 @DomName('SVGGradientElement.SVG_SPREADMETHOD_UNKNOWN')
7383 @DocsEditable
7130 static const int SVG_SPREADMETHOD_UNKNOWN = 0; 7384 static const int SVG_SPREADMETHOD_UNKNOWN = 0;
7131 7385
7132 @DomName('SVGGradientElement.gradientTransform') 7386 @DomName('SVGGradientElement.gradientTransform')
7133 @DocsEditable 7387 @DocsEditable
7134 AnimatedTransformList get gradientTransform native "SVGGradientElement_gradien tTransform_Getter"; 7388 AnimatedTransformList get gradientTransform native "SVGGradientElement_gradien tTransform_Getter";
7135 7389
7136 @DomName('SVGGradientElement.gradientUnits') 7390 @DomName('SVGGradientElement.gradientUnits')
7137 @DocsEditable 7391 @DocsEditable
7138 AnimatedEnumeration get gradientUnits native "SVGGradientElement_gradientUnits _Getter"; 7392 AnimatedEnumeration get gradientUnits native "SVGGradientElement_gradientUnits _Getter";
7139 7393
(...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after
7442 @DocsEditable 7696 @DocsEditable
7443 @DomName('SVGVKernElement') 7697 @DomName('SVGVKernElement')
7444 abstract class _SVGVKernElement extends SvgElement { 7698 abstract class _SVGVKernElement extends SvgElement {
7445 _SVGVKernElement.internal() : super.internal(); 7699 _SVGVKernElement.internal() : super.internal();
7446 7700
7447 @DomName('SVGVKernElement.SVGVKernElement') 7701 @DomName('SVGVKernElement.SVGVKernElement')
7448 @DocsEditable 7702 @DocsEditable
7449 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag( "vkern"); 7703 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag( "vkern");
7450 7704
7451 } 7705 }
OLDNEW
« no previous file with comments | « sdk/lib/svg/dart2js/svg_dart2js.dart ('k') | sdk/lib/web_audio/dart2js/web_audio_dart2js.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698