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

Side by Side Diff: sdk/lib/svg/dart2js/svg_dart2js.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/html/dartium/html_dartium.dart ('k') | sdk/lib/svg/dartium/svg_dartium.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 library dart.dom.svg; 1 library dart.dom.svg;
2 2
3 import 'dart:async'; 3 import 'dart:async';
4 import 'dart:collection'; 4 import 'dart:collection';
5 import 'dart:_collection-dev'; 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:_js_helper' show Creates, Returns, JavaScriptIndexingBehavior, JSNa me; 8 import 'dart:_js_helper' show Creates, Returns, JavaScriptIndexingBehavior, JSNa me;
9 import 'dart:_foreign_helper' show JS; 9 import 'dart:_foreign_helper' show JS;
10 // DO NOT EDIT - unless you are editing documentation as per: 10 // DO NOT EDIT - unless you are editing documentation as per:
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 } 182 }
183 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 183 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
184 // for details. All rights reserved. Use of this source code is governed by a 184 // for details. All rights reserved. Use of this source code is governed by a
185 // BSD-style license that can be found in the LICENSE file. 185 // BSD-style license that can be found in the LICENSE file.
186 186
187 187
188 @DocsEditable 188 @DocsEditable
189 @DomName('SVGAngle') 189 @DomName('SVGAngle')
190 class Angle native "SVGAngle" { 190 class Angle native "SVGAngle" {
191 191
192 @DomName('SVGAngle.SVG_ANGLETYPE_DEG')
193 @DocsEditable
192 static const int SVG_ANGLETYPE_DEG = 2; 194 static const int SVG_ANGLETYPE_DEG = 2;
193 195
196 @DomName('SVGAngle.SVG_ANGLETYPE_GRAD')
197 @DocsEditable
194 static const int SVG_ANGLETYPE_GRAD = 4; 198 static const int SVG_ANGLETYPE_GRAD = 4;
195 199
200 @DomName('SVGAngle.SVG_ANGLETYPE_RAD')
201 @DocsEditable
196 static const int SVG_ANGLETYPE_RAD = 3; 202 static const int SVG_ANGLETYPE_RAD = 3;
197 203
204 @DomName('SVGAngle.SVG_ANGLETYPE_UNKNOWN')
205 @DocsEditable
198 static const int SVG_ANGLETYPE_UNKNOWN = 0; 206 static const int SVG_ANGLETYPE_UNKNOWN = 0;
199 207
208 @DomName('SVGAngle.SVG_ANGLETYPE_UNSPECIFIED')
209 @DocsEditable
200 static const int SVG_ANGLETYPE_UNSPECIFIED = 1; 210 static const int SVG_ANGLETYPE_UNSPECIFIED = 1;
201 211
202 @DomName('SVGAngle.unitType') 212 @DomName('SVGAngle.unitType')
203 @DocsEditable 213 @DocsEditable
204 final int unitType; 214 final int unitType;
205 215
206 @DomName('SVGAngle.value') 216 @DomName('SVGAngle.value')
207 @DocsEditable 217 @DocsEditable
208 num value; 218 num value;
209 219
(...skipping 1129 matching lines...) Expand 10 before | Expand all | Expand 10 after
1339 @SupportedBrowser(SupportedBrowser.SAFARI) 1349 @SupportedBrowser(SupportedBrowser.SAFARI)
1340 class FEBlendElement extends StyledElement implements FilterPrimitiveStandardAtt ributes native "SVGFEBlendElement" { 1350 class FEBlendElement extends StyledElement implements FilterPrimitiveStandardAtt ributes native "SVGFEBlendElement" {
1341 1351
1342 @DomName('SVGFEBlendElement.SVGFEBlendElement') 1352 @DomName('SVGFEBlendElement.SVGFEBlendElement')
1343 @DocsEditable 1353 @DocsEditable
1344 factory FEBlendElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eBlend"); 1354 factory FEBlendElement() => _SvgElementFactoryProvider.createSvgElement_tag("f eBlend");
1345 1355
1346 /// Checks if this type is supported on the current platform. 1356 /// Checks if this type is supported on the current platform.
1347 static bool get supported => SvgElement.isTagSupported('feBlend') && (new SvgE lement.tag('feBlend') is FEBlendElement); 1357 static bool get supported => SvgElement.isTagSupported('feBlend') && (new SvgE lement.tag('feBlend') is FEBlendElement);
1348 1358
1359 @DomName('SVGFEBlendElement.SVG_FEBLEND_MODE_DARKEN')
1360 @DocsEditable
1349 static const int SVG_FEBLEND_MODE_DARKEN = 4; 1361 static const int SVG_FEBLEND_MODE_DARKEN = 4;
1350 1362
1363 @DomName('SVGFEBlendElement.SVG_FEBLEND_MODE_LIGHTEN')
1364 @DocsEditable
1351 static const int SVG_FEBLEND_MODE_LIGHTEN = 5; 1365 static const int SVG_FEBLEND_MODE_LIGHTEN = 5;
1352 1366
1367 @DomName('SVGFEBlendElement.SVG_FEBLEND_MODE_MULTIPLY')
1368 @DocsEditable
1353 static const int SVG_FEBLEND_MODE_MULTIPLY = 2; 1369 static const int SVG_FEBLEND_MODE_MULTIPLY = 2;
1354 1370
1371 @DomName('SVGFEBlendElement.SVG_FEBLEND_MODE_NORMAL')
1372 @DocsEditable
1355 static const int SVG_FEBLEND_MODE_NORMAL = 1; 1373 static const int SVG_FEBLEND_MODE_NORMAL = 1;
1356 1374
1375 @DomName('SVGFEBlendElement.SVG_FEBLEND_MODE_SCREEN')
1376 @DocsEditable
1357 static const int SVG_FEBLEND_MODE_SCREEN = 3; 1377 static const int SVG_FEBLEND_MODE_SCREEN = 3;
1358 1378
1379 @DomName('SVGFEBlendElement.SVG_FEBLEND_MODE_UNKNOWN')
1380 @DocsEditable
1359 static const int SVG_FEBLEND_MODE_UNKNOWN = 0; 1381 static const int SVG_FEBLEND_MODE_UNKNOWN = 0;
1360 1382
1361 @DomName('SVGFEBlendElement.in1') 1383 @DomName('SVGFEBlendElement.in1')
1362 @DocsEditable 1384 @DocsEditable
1363 final AnimatedString in1; 1385 final AnimatedString in1;
1364 1386
1365 @DomName('SVGFEBlendElement.in2') 1387 @DomName('SVGFEBlendElement.in2')
1366 @DocsEditable 1388 @DocsEditable
1367 final AnimatedString in2; 1389 final AnimatedString in2;
1368 1390
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
1405 @SupportedBrowser(SupportedBrowser.SAFARI) 1427 @SupportedBrowser(SupportedBrowser.SAFARI)
1406 class FEColorMatrixElement extends StyledElement implements FilterPrimitiveStand ardAttributes native "SVGFEColorMatrixElement" { 1428 class FEColorMatrixElement extends StyledElement implements FilterPrimitiveStand ardAttributes native "SVGFEColorMatrixElement" {
1407 1429
1408 @DomName('SVGFEColorMatrixElement.SVGFEColorMatrixElement') 1430 @DomName('SVGFEColorMatrixElement.SVGFEColorMatrixElement')
1409 @DocsEditable 1431 @DocsEditable
1410 factory FEColorMatrixElement() => _SvgElementFactoryProvider.createSvgElement_ tag("feColorMatrix"); 1432 factory FEColorMatrixElement() => _SvgElementFactoryProvider.createSvgElement_ tag("feColorMatrix");
1411 1433
1412 /// Checks if this type is supported on the current platform. 1434 /// Checks if this type is supported on the current platform.
1413 static bool get supported => SvgElement.isTagSupported('feColorMatrix') && (ne w SvgElement.tag('feColorMatrix') is FEColorMatrixElement); 1435 static bool get supported => SvgElement.isTagSupported('feColorMatrix') && (ne w SvgElement.tag('feColorMatrix') is FEColorMatrixElement);
1414 1436
1437 @DomName('SVGFEColorMatrixElement.SVG_FECOLORMATRIX_TYPE_HUEROTATE')
1438 @DocsEditable
1415 static const int SVG_FECOLORMATRIX_TYPE_HUEROTATE = 3; 1439 static const int SVG_FECOLORMATRIX_TYPE_HUEROTATE = 3;
1416 1440
1441 @DomName('SVGFEColorMatrixElement.SVG_FECOLORMATRIX_TYPE_LUMINANCETOALPHA')
1442 @DocsEditable
1417 static const int SVG_FECOLORMATRIX_TYPE_LUMINANCETOALPHA = 4; 1443 static const int SVG_FECOLORMATRIX_TYPE_LUMINANCETOALPHA = 4;
1418 1444
1445 @DomName('SVGFEColorMatrixElement.SVG_FECOLORMATRIX_TYPE_MATRIX')
1446 @DocsEditable
1419 static const int SVG_FECOLORMATRIX_TYPE_MATRIX = 1; 1447 static const int SVG_FECOLORMATRIX_TYPE_MATRIX = 1;
1420 1448
1449 @DomName('SVGFEColorMatrixElement.SVG_FECOLORMATRIX_TYPE_SATURATE')
1450 @DocsEditable
1421 static const int SVG_FECOLORMATRIX_TYPE_SATURATE = 2; 1451 static const int SVG_FECOLORMATRIX_TYPE_SATURATE = 2;
1422 1452
1453 @DomName('SVGFEColorMatrixElement.SVG_FECOLORMATRIX_TYPE_UNKNOWN')
1454 @DocsEditable
1423 static const int SVG_FECOLORMATRIX_TYPE_UNKNOWN = 0; 1455 static const int SVG_FECOLORMATRIX_TYPE_UNKNOWN = 0;
1424 1456
1425 @DomName('SVGFEColorMatrixElement.in1') 1457 @DomName('SVGFEColorMatrixElement.in1')
1426 @DocsEditable 1458 @DocsEditable
1427 final AnimatedString in1; 1459 final AnimatedString in1;
1428 1460
1429 @DomName('SVGFEColorMatrixElement.type') 1461 @DomName('SVGFEColorMatrixElement.type')
1430 @DocsEditable 1462 @DocsEditable
1431 final AnimatedEnumeration type; 1463 final AnimatedEnumeration type;
1432 1464
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
1504 } 1536 }
1505 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1537 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1506 // for details. All rights reserved. Use of this source code is governed by a 1538 // for details. All rights reserved. Use of this source code is governed by a
1507 // BSD-style license that can be found in the LICENSE file. 1539 // BSD-style license that can be found in the LICENSE file.
1508 1540
1509 1541
1510 @DocsEditable 1542 @DocsEditable
1511 @DomName('SVGFECompositeElement') 1543 @DomName('SVGFECompositeElement')
1512 class FECompositeElement extends StyledElement implements FilterPrimitiveStandar dAttributes native "SVGFECompositeElement" { 1544 class FECompositeElement extends StyledElement implements FilterPrimitiveStandar dAttributes native "SVGFECompositeElement" {
1513 1545
1546 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_ARITHMETIC')
1547 @DocsEditable
1514 static const int SVG_FECOMPOSITE_OPERATOR_ARITHMETIC = 6; 1548 static const int SVG_FECOMPOSITE_OPERATOR_ARITHMETIC = 6;
1515 1549
1550 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_ATOP')
1551 @DocsEditable
1516 static const int SVG_FECOMPOSITE_OPERATOR_ATOP = 4; 1552 static const int SVG_FECOMPOSITE_OPERATOR_ATOP = 4;
1517 1553
1554 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_IN')
1555 @DocsEditable
1518 static const int SVG_FECOMPOSITE_OPERATOR_IN = 2; 1556 static const int SVG_FECOMPOSITE_OPERATOR_IN = 2;
1519 1557
1558 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_OUT')
1559 @DocsEditable
1520 static const int SVG_FECOMPOSITE_OPERATOR_OUT = 3; 1560 static const int SVG_FECOMPOSITE_OPERATOR_OUT = 3;
1521 1561
1562 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_OVER')
1563 @DocsEditable
1522 static const int SVG_FECOMPOSITE_OPERATOR_OVER = 1; 1564 static const int SVG_FECOMPOSITE_OPERATOR_OVER = 1;
1523 1565
1566 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_UNKNOWN')
1567 @DocsEditable
1524 static const int SVG_FECOMPOSITE_OPERATOR_UNKNOWN = 0; 1568 static const int SVG_FECOMPOSITE_OPERATOR_UNKNOWN = 0;
1525 1569
1570 @DomName('SVGFECompositeElement.SVG_FECOMPOSITE_OPERATOR_XOR')
1571 @DocsEditable
1526 static const int SVG_FECOMPOSITE_OPERATOR_XOR = 5; 1572 static const int SVG_FECOMPOSITE_OPERATOR_XOR = 5;
1527 1573
1528 @DomName('SVGFECompositeElement.in1') 1574 @DomName('SVGFECompositeElement.in1')
1529 @DocsEditable 1575 @DocsEditable
1530 final AnimatedString in1; 1576 final AnimatedString in1;
1531 1577
1532 @DomName('SVGFECompositeElement.in2') 1578 @DomName('SVGFECompositeElement.in2')
1533 @DocsEditable 1579 @DocsEditable
1534 final AnimatedString in2; 1580 final AnimatedString in2;
1535 1581
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
1588 @SupportedBrowser(SupportedBrowser.SAFARI) 1634 @SupportedBrowser(SupportedBrowser.SAFARI)
1589 class FEConvolveMatrixElement extends StyledElement implements FilterPrimitiveSt andardAttributes native "SVGFEConvolveMatrixElement" { 1635 class FEConvolveMatrixElement extends StyledElement implements FilterPrimitiveSt andardAttributes native "SVGFEConvolveMatrixElement" {
1590 1636
1591 @DomName('SVGFEConvolveMatrixElement.SVGFEConvolveMatrixElement') 1637 @DomName('SVGFEConvolveMatrixElement.SVGFEConvolveMatrixElement')
1592 @DocsEditable 1638 @DocsEditable
1593 factory FEConvolveMatrixElement() => _SvgElementFactoryProvider.createSvgEleme nt_tag("feConvolveMatrix"); 1639 factory FEConvolveMatrixElement() => _SvgElementFactoryProvider.createSvgEleme nt_tag("feConvolveMatrix");
1594 1640
1595 /// Checks if this type is supported on the current platform. 1641 /// Checks if this type is supported on the current platform.
1596 static bool get supported => SvgElement.isTagSupported('feConvolveMatrix') && (new SvgElement.tag('feConvolveMatrix') is FEConvolveMatrixElement); 1642 static bool get supported => SvgElement.isTagSupported('feConvolveMatrix') && (new SvgElement.tag('feConvolveMatrix') is FEConvolveMatrixElement);
1597 1643
1644 @DomName('SVGFEConvolveMatrixElement.SVG_EDGEMODE_DUPLICATE')
1645 @DocsEditable
1598 static const int SVG_EDGEMODE_DUPLICATE = 1; 1646 static const int SVG_EDGEMODE_DUPLICATE = 1;
1599 1647
1648 @DomName('SVGFEConvolveMatrixElement.SVG_EDGEMODE_NONE')
1649 @DocsEditable
1600 static const int SVG_EDGEMODE_NONE = 3; 1650 static const int SVG_EDGEMODE_NONE = 3;
1601 1651
1652 @DomName('SVGFEConvolveMatrixElement.SVG_EDGEMODE_UNKNOWN')
1653 @DocsEditable
1602 static const int SVG_EDGEMODE_UNKNOWN = 0; 1654 static const int SVG_EDGEMODE_UNKNOWN = 0;
1603 1655
1656 @DomName('SVGFEConvolveMatrixElement.SVG_EDGEMODE_WRAP')
1657 @DocsEditable
1604 static const int SVG_EDGEMODE_WRAP = 2; 1658 static const int SVG_EDGEMODE_WRAP = 2;
1605 1659
1606 @DomName('SVGFEConvolveMatrixElement.bias') 1660 @DomName('SVGFEConvolveMatrixElement.bias')
1607 @DocsEditable 1661 @DocsEditable
1608 final AnimatedNumber bias; 1662 final AnimatedNumber bias;
1609 1663
1610 @DomName('SVGFEConvolveMatrixElement.divisor') 1664 @DomName('SVGFEConvolveMatrixElement.divisor')
1611 @DocsEditable 1665 @DocsEditable
1612 final AnimatedNumber divisor; 1666 final AnimatedNumber divisor;
1613 1667
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
1748 @SupportedBrowser(SupportedBrowser.SAFARI) 1802 @SupportedBrowser(SupportedBrowser.SAFARI)
1749 class FEDisplacementMapElement extends StyledElement implements FilterPrimitiveS tandardAttributes native "SVGFEDisplacementMapElement" { 1803 class FEDisplacementMapElement extends StyledElement implements FilterPrimitiveS tandardAttributes native "SVGFEDisplacementMapElement" {
1750 1804
1751 @DomName('SVGFEDisplacementMapElement.SVGFEDisplacementMapElement') 1805 @DomName('SVGFEDisplacementMapElement.SVGFEDisplacementMapElement')
1752 @DocsEditable 1806 @DocsEditable
1753 factory FEDisplacementMapElement() => _SvgElementFactoryProvider.createSvgElem ent_tag("feDisplacementMap"); 1807 factory FEDisplacementMapElement() => _SvgElementFactoryProvider.createSvgElem ent_tag("feDisplacementMap");
1754 1808
1755 /// Checks if this type is supported on the current platform. 1809 /// Checks if this type is supported on the current platform.
1756 static bool get supported => SvgElement.isTagSupported('feDisplacementMap') && (new SvgElement.tag('feDisplacementMap') is FEDisplacementMapElement); 1810 static bool get supported => SvgElement.isTagSupported('feDisplacementMap') && (new SvgElement.tag('feDisplacementMap') is FEDisplacementMapElement);
1757 1811
1812 @DomName('SVGFEDisplacementMapElement.SVG_CHANNEL_A')
1813 @DocsEditable
1758 static const int SVG_CHANNEL_A = 4; 1814 static const int SVG_CHANNEL_A = 4;
1759 1815
1816 @DomName('SVGFEDisplacementMapElement.SVG_CHANNEL_B')
1817 @DocsEditable
1760 static const int SVG_CHANNEL_B = 3; 1818 static const int SVG_CHANNEL_B = 3;
1761 1819
1820 @DomName('SVGFEDisplacementMapElement.SVG_CHANNEL_G')
1821 @DocsEditable
1762 static const int SVG_CHANNEL_G = 2; 1822 static const int SVG_CHANNEL_G = 2;
1763 1823
1824 @DomName('SVGFEDisplacementMapElement.SVG_CHANNEL_R')
1825 @DocsEditable
1764 static const int SVG_CHANNEL_R = 1; 1826 static const int SVG_CHANNEL_R = 1;
1765 1827
1828 @DomName('SVGFEDisplacementMapElement.SVG_CHANNEL_UNKNOWN')
1829 @DocsEditable
1766 static const int SVG_CHANNEL_UNKNOWN = 0; 1830 static const int SVG_CHANNEL_UNKNOWN = 0;
1767 1831
1768 @DomName('SVGFEDisplacementMapElement.in1') 1832 @DomName('SVGFEDisplacementMapElement.in1')
1769 @DocsEditable 1833 @DocsEditable
1770 final AnimatedString in1; 1834 final AnimatedString in1;
1771 1835
1772 @DomName('SVGFEDisplacementMapElement.in2') 1836 @DomName('SVGFEDisplacementMapElement.in2')
1773 @DocsEditable 1837 @DocsEditable
1774 final AnimatedString in2; 1838 final AnimatedString in2;
1775 1839
(...skipping 379 matching lines...) Expand 10 before | Expand all | Expand 10 after
2155 2219
2156 2220
2157 @DocsEditable 2221 @DocsEditable
2158 @DomName('SVGFEMorphologyElement') 2222 @DomName('SVGFEMorphologyElement')
2159 @SupportedBrowser(SupportedBrowser.CHROME) 2223 @SupportedBrowser(SupportedBrowser.CHROME)
2160 @SupportedBrowser(SupportedBrowser.FIREFOX) 2224 @SupportedBrowser(SupportedBrowser.FIREFOX)
2161 @SupportedBrowser(SupportedBrowser.IE, '10') 2225 @SupportedBrowser(SupportedBrowser.IE, '10')
2162 @SupportedBrowser(SupportedBrowser.SAFARI) 2226 @SupportedBrowser(SupportedBrowser.SAFARI)
2163 class FEMorphologyElement extends StyledElement implements FilterPrimitiveStanda rdAttributes native "SVGFEMorphologyElement" { 2227 class FEMorphologyElement extends StyledElement implements FilterPrimitiveStanda rdAttributes native "SVGFEMorphologyElement" {
2164 2228
2229 @DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_DILATE')
2230 @DocsEditable
2165 static const int SVG_MORPHOLOGY_OPERATOR_DILATE = 2; 2231 static const int SVG_MORPHOLOGY_OPERATOR_DILATE = 2;
2166 2232
2233 @DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_ERODE')
2234 @DocsEditable
2167 static const int SVG_MORPHOLOGY_OPERATOR_ERODE = 1; 2235 static const int SVG_MORPHOLOGY_OPERATOR_ERODE = 1;
2168 2236
2237 @DomName('SVGFEMorphologyElement.SVG_MORPHOLOGY_OPERATOR_UNKNOWN')
2238 @DocsEditable
2169 static const int SVG_MORPHOLOGY_OPERATOR_UNKNOWN = 0; 2239 static const int SVG_MORPHOLOGY_OPERATOR_UNKNOWN = 0;
2170 2240
2171 @DomName('SVGFEMorphologyElement.in1') 2241 @DomName('SVGFEMorphologyElement.in1')
2172 @DocsEditable 2242 @DocsEditable
2173 final AnimatedString in1; 2243 final AnimatedString in1;
2174 2244
2175 @DomName('SVGFEMorphologyElement.operator') 2245 @DomName('SVGFEMorphologyElement.operator')
2176 @DocsEditable 2246 @DocsEditable
2177 final AnimatedEnumeration operator; 2247 final AnimatedEnumeration operator;
2178 2248
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after
2465 @SupportedBrowser(SupportedBrowser.SAFARI) 2535 @SupportedBrowser(SupportedBrowser.SAFARI)
2466 class FETurbulenceElement extends StyledElement implements FilterPrimitiveStanda rdAttributes native "SVGFETurbulenceElement" { 2536 class FETurbulenceElement extends StyledElement implements FilterPrimitiveStanda rdAttributes native "SVGFETurbulenceElement" {
2467 2537
2468 @DomName('SVGFETurbulenceElement.SVGFETurbulenceElement') 2538 @DomName('SVGFETurbulenceElement.SVGFETurbulenceElement')
2469 @DocsEditable 2539 @DocsEditable
2470 factory FETurbulenceElement() => _SvgElementFactoryProvider.createSvgElement_t ag("feTurbulence"); 2540 factory FETurbulenceElement() => _SvgElementFactoryProvider.createSvgElement_t ag("feTurbulence");
2471 2541
2472 /// Checks if this type is supported on the current platform. 2542 /// Checks if this type is supported on the current platform.
2473 static bool get supported => SvgElement.isTagSupported('feTurbulence') && (new SvgElement.tag('feTurbulence') is FETurbulenceElement); 2543 static bool get supported => SvgElement.isTagSupported('feTurbulence') && (new SvgElement.tag('feTurbulence') is FETurbulenceElement);
2474 2544
2545 @DomName('SVGFETurbulenceElement.SVG_STITCHTYPE_NOSTITCH')
2546 @DocsEditable
2475 static const int SVG_STITCHTYPE_NOSTITCH = 2; 2547 static const int SVG_STITCHTYPE_NOSTITCH = 2;
2476 2548
2549 @DomName('SVGFETurbulenceElement.SVG_STITCHTYPE_STITCH')
2550 @DocsEditable
2477 static const int SVG_STITCHTYPE_STITCH = 1; 2551 static const int SVG_STITCHTYPE_STITCH = 1;
2478 2552
2553 @DomName('SVGFETurbulenceElement.SVG_STITCHTYPE_UNKNOWN')
2554 @DocsEditable
2479 static const int SVG_STITCHTYPE_UNKNOWN = 0; 2555 static const int SVG_STITCHTYPE_UNKNOWN = 0;
2480 2556
2557 @DomName('SVGFETurbulenceElement.SVG_TURBULENCE_TYPE_FRACTALNOISE')
2558 @DocsEditable
2481 static const int SVG_TURBULENCE_TYPE_FRACTALNOISE = 1; 2559 static const int SVG_TURBULENCE_TYPE_FRACTALNOISE = 1;
2482 2560
2561 @DomName('SVGFETurbulenceElement.SVG_TURBULENCE_TYPE_TURBULENCE')
2562 @DocsEditable
2483 static const int SVG_TURBULENCE_TYPE_TURBULENCE = 2; 2563 static const int SVG_TURBULENCE_TYPE_TURBULENCE = 2;
2484 2564
2565 @DomName('SVGFETurbulenceElement.SVG_TURBULENCE_TYPE_UNKNOWN')
2566 @DocsEditable
2485 static const int SVG_TURBULENCE_TYPE_UNKNOWN = 0; 2567 static const int SVG_TURBULENCE_TYPE_UNKNOWN = 0;
2486 2568
2487 @DomName('SVGFETurbulenceElement.baseFrequencyX') 2569 @DomName('SVGFETurbulenceElement.baseFrequencyX')
2488 @DocsEditable 2570 @DocsEditable
2489 final AnimatedNumber baseFrequencyX; 2571 final AnimatedNumber baseFrequencyX;
2490 2572
2491 @DomName('SVGFETurbulenceElement.baseFrequencyY') 2573 @DomName('SVGFETurbulenceElement.baseFrequencyY')
2492 @DocsEditable 2574 @DocsEditable
2493 final AnimatedNumber baseFrequencyY; 2575 final AnimatedNumber baseFrequencyY;
2494 2576
(...skipping 451 matching lines...) Expand 10 before | Expand all | Expand 10 after
2946 } 3028 }
2947 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3029 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2948 // for details. All rights reserved. Use of this source code is governed by a 3030 // for details. All rights reserved. Use of this source code is governed by a
2949 // BSD-style license that can be found in the LICENSE file. 3031 // BSD-style license that can be found in the LICENSE file.
2950 3032
2951 3033
2952 @DocsEditable 3034 @DocsEditable
2953 @DomName('SVGLength') 3035 @DomName('SVGLength')
2954 class Length native "SVGLength" { 3036 class Length native "SVGLength" {
2955 3037
3038 @DomName('SVGLength.SVG_LENGTHTYPE_CM')
3039 @DocsEditable
2956 static const int SVG_LENGTHTYPE_CM = 6; 3040 static const int SVG_LENGTHTYPE_CM = 6;
2957 3041
3042 @DomName('SVGLength.SVG_LENGTHTYPE_EMS')
3043 @DocsEditable
2958 static const int SVG_LENGTHTYPE_EMS = 3; 3044 static const int SVG_LENGTHTYPE_EMS = 3;
2959 3045
3046 @DomName('SVGLength.SVG_LENGTHTYPE_EXS')
3047 @DocsEditable
2960 static const int SVG_LENGTHTYPE_EXS = 4; 3048 static const int SVG_LENGTHTYPE_EXS = 4;
2961 3049
3050 @DomName('SVGLength.SVG_LENGTHTYPE_IN')
3051 @DocsEditable
2962 static const int SVG_LENGTHTYPE_IN = 8; 3052 static const int SVG_LENGTHTYPE_IN = 8;
2963 3053
3054 @DomName('SVGLength.SVG_LENGTHTYPE_MM')
3055 @DocsEditable
2964 static const int SVG_LENGTHTYPE_MM = 7; 3056 static const int SVG_LENGTHTYPE_MM = 7;
2965 3057
3058 @DomName('SVGLength.SVG_LENGTHTYPE_NUMBER')
3059 @DocsEditable
2966 static const int SVG_LENGTHTYPE_NUMBER = 1; 3060 static const int SVG_LENGTHTYPE_NUMBER = 1;
2967 3061
3062 @DomName('SVGLength.SVG_LENGTHTYPE_PC')
3063 @DocsEditable
2968 static const int SVG_LENGTHTYPE_PC = 10; 3064 static const int SVG_LENGTHTYPE_PC = 10;
2969 3065
3066 @DomName('SVGLength.SVG_LENGTHTYPE_PERCENTAGE')
3067 @DocsEditable
2970 static const int SVG_LENGTHTYPE_PERCENTAGE = 2; 3068 static const int SVG_LENGTHTYPE_PERCENTAGE = 2;
2971 3069
3070 @DomName('SVGLength.SVG_LENGTHTYPE_PT')
3071 @DocsEditable
2972 static const int SVG_LENGTHTYPE_PT = 9; 3072 static const int SVG_LENGTHTYPE_PT = 9;
2973 3073
3074 @DomName('SVGLength.SVG_LENGTHTYPE_PX')
3075 @DocsEditable
2974 static const int SVG_LENGTHTYPE_PX = 5; 3076 static const int SVG_LENGTHTYPE_PX = 5;
2975 3077
3078 @DomName('SVGLength.SVG_LENGTHTYPE_UNKNOWN')
3079 @DocsEditable
2976 static const int SVG_LENGTHTYPE_UNKNOWN = 0; 3080 static const int SVG_LENGTHTYPE_UNKNOWN = 0;
2977 3081
2978 @DomName('SVGLength.unitType') 3082 @DomName('SVGLength.unitType')
2979 @DocsEditable 3083 @DocsEditable
2980 final int unitType; 3084 final int unitType;
2981 3085
2982 @DomName('SVGLength.value') 3086 @DomName('SVGLength.value')
2983 @DocsEditable 3087 @DocsEditable
2984 num value; 3088 num value;
2985 3089
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
3209 3313
3210 3314
3211 @DocsEditable 3315 @DocsEditable
3212 @DomName('SVGMarkerElement') 3316 @DomName('SVGMarkerElement')
3213 class MarkerElement extends StyledElement implements FitToViewBox, ExternalResou rcesRequired, LangSpace native "SVGMarkerElement" { 3317 class MarkerElement extends StyledElement implements FitToViewBox, ExternalResou rcesRequired, LangSpace native "SVGMarkerElement" {
3214 3318
3215 @DomName('SVGMarkerElement.SVGMarkerElement') 3319 @DomName('SVGMarkerElement.SVGMarkerElement')
3216 @DocsEditable 3320 @DocsEditable
3217 factory MarkerElement() => _SvgElementFactoryProvider.createSvgElement_tag("ma rker"); 3321 factory MarkerElement() => _SvgElementFactoryProvider.createSvgElement_tag("ma rker");
3218 3322
3323 @DomName('SVGMarkerElement.SVG_MARKERUNITS_STROKEWIDTH')
3324 @DocsEditable
3219 static const int SVG_MARKERUNITS_STROKEWIDTH = 2; 3325 static const int SVG_MARKERUNITS_STROKEWIDTH = 2;
3220 3326
3327 @DomName('SVGMarkerElement.SVG_MARKERUNITS_UNKNOWN')
3328 @DocsEditable
3221 static const int SVG_MARKERUNITS_UNKNOWN = 0; 3329 static const int SVG_MARKERUNITS_UNKNOWN = 0;
3222 3330
3331 @DomName('SVGMarkerElement.SVG_MARKERUNITS_USERSPACEONUSE')
3332 @DocsEditable
3223 static const int SVG_MARKERUNITS_USERSPACEONUSE = 1; 3333 static const int SVG_MARKERUNITS_USERSPACEONUSE = 1;
3224 3334
3335 @DomName('SVGMarkerElement.SVG_MARKER_ORIENT_ANGLE')
3336 @DocsEditable
3225 static const int SVG_MARKER_ORIENT_ANGLE = 2; 3337 static const int SVG_MARKER_ORIENT_ANGLE = 2;
3226 3338
3339 @DomName('SVGMarkerElement.SVG_MARKER_ORIENT_AUTO')
3340 @DocsEditable
3227 static const int SVG_MARKER_ORIENT_AUTO = 1; 3341 static const int SVG_MARKER_ORIENT_AUTO = 1;
3228 3342
3343 @DomName('SVGMarkerElement.SVG_MARKER_ORIENT_UNKNOWN')
3344 @DocsEditable
3229 static const int SVG_MARKER_ORIENT_UNKNOWN = 0; 3345 static const int SVG_MARKER_ORIENT_UNKNOWN = 0;
3230 3346
3231 @DomName('SVGMarkerElement.markerHeight') 3347 @DomName('SVGMarkerElement.markerHeight')
3232 @DocsEditable 3348 @DocsEditable
3233 final AnimatedLength markerHeight; 3349 final AnimatedLength markerHeight;
3234 3350
3235 @DomName('SVGMarkerElement.markerUnits') 3351 @DomName('SVGMarkerElement.markerUnits')
3236 @DocsEditable 3352 @DocsEditable
3237 final AnimatedEnumeration markerUnits; 3353 final AnimatedEnumeration markerUnits;
3238 3354
(...skipping 489 matching lines...) Expand 10 before | Expand all | Expand 10 after
3728 } 3844 }
3729 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3845 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3730 // for details. All rights reserved. Use of this source code is governed by a 3846 // for details. All rights reserved. Use of this source code is governed by a
3731 // BSD-style license that can be found in the LICENSE file. 3847 // BSD-style license that can be found in the LICENSE file.
3732 3848
3733 3849
3734 @DocsEditable 3850 @DocsEditable
3735 @DomName('SVGPathSeg') 3851 @DomName('SVGPathSeg')
3736 class PathSeg native "SVGPathSeg" { 3852 class PathSeg native "SVGPathSeg" {
3737 3853
3854 @DomName('SVGPathSeg.PATHSEG_ARC_ABS')
3855 @DocsEditable
3738 static const int PATHSEG_ARC_ABS = 10; 3856 static const int PATHSEG_ARC_ABS = 10;
3739 3857
3858 @DomName('SVGPathSeg.PATHSEG_ARC_REL')
3859 @DocsEditable
3740 static const int PATHSEG_ARC_REL = 11; 3860 static const int PATHSEG_ARC_REL = 11;
3741 3861
3862 @DomName('SVGPathSeg.PATHSEG_CLOSEPATH')
3863 @DocsEditable
3742 static const int PATHSEG_CLOSEPATH = 1; 3864 static const int PATHSEG_CLOSEPATH = 1;
3743 3865
3866 @DomName('SVGPathSeg.PATHSEG_CURVETO_CUBIC_ABS')
3867 @DocsEditable
3744 static const int PATHSEG_CURVETO_CUBIC_ABS = 6; 3868 static const int PATHSEG_CURVETO_CUBIC_ABS = 6;
3745 3869
3870 @DomName('SVGPathSeg.PATHSEG_CURVETO_CUBIC_REL')
3871 @DocsEditable
3746 static const int PATHSEG_CURVETO_CUBIC_REL = 7; 3872 static const int PATHSEG_CURVETO_CUBIC_REL = 7;
3747 3873
3874 @DomName('SVGPathSeg.PATHSEG_CURVETO_CUBIC_SMOOTH_ABS')
3875 @DocsEditable
3748 static const int PATHSEG_CURVETO_CUBIC_SMOOTH_ABS = 16; 3876 static const int PATHSEG_CURVETO_CUBIC_SMOOTH_ABS = 16;
3749 3877
3878 @DomName('SVGPathSeg.PATHSEG_CURVETO_CUBIC_SMOOTH_REL')
3879 @DocsEditable
3750 static const int PATHSEG_CURVETO_CUBIC_SMOOTH_REL = 17; 3880 static const int PATHSEG_CURVETO_CUBIC_SMOOTH_REL = 17;
3751 3881
3882 @DomName('SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_ABS')
3883 @DocsEditable
3752 static const int PATHSEG_CURVETO_QUADRATIC_ABS = 8; 3884 static const int PATHSEG_CURVETO_QUADRATIC_ABS = 8;
3753 3885
3886 @DomName('SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_REL')
3887 @DocsEditable
3754 static const int PATHSEG_CURVETO_QUADRATIC_REL = 9; 3888 static const int PATHSEG_CURVETO_QUADRATIC_REL = 9;
3755 3889
3890 @DomName('SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS')
3891 @DocsEditable
3756 static const int PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS = 18; 3892 static const int PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS = 18;
3757 3893
3894 @DomName('SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL')
3895 @DocsEditable
3758 static const int PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL = 19; 3896 static const int PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL = 19;
3759 3897
3898 @DomName('SVGPathSeg.PATHSEG_LINETO_ABS')
3899 @DocsEditable
3760 static const int PATHSEG_LINETO_ABS = 4; 3900 static const int PATHSEG_LINETO_ABS = 4;
3761 3901
3902 @DomName('SVGPathSeg.PATHSEG_LINETO_HORIZONTAL_ABS')
3903 @DocsEditable
3762 static const int PATHSEG_LINETO_HORIZONTAL_ABS = 12; 3904 static const int PATHSEG_LINETO_HORIZONTAL_ABS = 12;
3763 3905
3906 @DomName('SVGPathSeg.PATHSEG_LINETO_HORIZONTAL_REL')
3907 @DocsEditable
3764 static const int PATHSEG_LINETO_HORIZONTAL_REL = 13; 3908 static const int PATHSEG_LINETO_HORIZONTAL_REL = 13;
3765 3909
3910 @DomName('SVGPathSeg.PATHSEG_LINETO_REL')
3911 @DocsEditable
3766 static const int PATHSEG_LINETO_REL = 5; 3912 static const int PATHSEG_LINETO_REL = 5;
3767 3913
3914 @DomName('SVGPathSeg.PATHSEG_LINETO_VERTICAL_ABS')
3915 @DocsEditable
3768 static const int PATHSEG_LINETO_VERTICAL_ABS = 14; 3916 static const int PATHSEG_LINETO_VERTICAL_ABS = 14;
3769 3917
3918 @DomName('SVGPathSeg.PATHSEG_LINETO_VERTICAL_REL')
3919 @DocsEditable
3770 static const int PATHSEG_LINETO_VERTICAL_REL = 15; 3920 static const int PATHSEG_LINETO_VERTICAL_REL = 15;
3771 3921
3922 @DomName('SVGPathSeg.PATHSEG_MOVETO_ABS')
3923 @DocsEditable
3772 static const int PATHSEG_MOVETO_ABS = 2; 3924 static const int PATHSEG_MOVETO_ABS = 2;
3773 3925
3926 @DomName('SVGPathSeg.PATHSEG_MOVETO_REL')
3927 @DocsEditable
3774 static const int PATHSEG_MOVETO_REL = 3; 3928 static const int PATHSEG_MOVETO_REL = 3;
3775 3929
3930 @DomName('SVGPathSeg.PATHSEG_UNKNOWN')
3931 @DocsEditable
3776 static const int PATHSEG_UNKNOWN = 0; 3932 static const int PATHSEG_UNKNOWN = 0;
3777 3933
3778 @DomName('SVGPathSeg.pathSegType') 3934 @DomName('SVGPathSeg.pathSegType')
3779 @DocsEditable 3935 @DocsEditable
3780 final int pathSegType; 3936 final int pathSegType;
3781 3937
3782 @DomName('SVGPathSeg.pathSegTypeAsLetter') 3938 @DomName('SVGPathSeg.pathSegTypeAsLetter')
3783 @DocsEditable 3939 @DocsEditable
3784 final String pathSegTypeAsLetter; 3940 final String pathSegTypeAsLetter;
3785 } 3941 }
(...skipping 791 matching lines...) Expand 10 before | Expand all | Expand 10 after
4577 } 4733 }
4578 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4734 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4579 // for details. All rights reserved. Use of this source code is governed by a 4735 // for details. All rights reserved. Use of this source code is governed by a
4580 // BSD-style license that can be found in the LICENSE file. 4736 // BSD-style license that can be found in the LICENSE file.
4581 4737
4582 4738
4583 @DocsEditable 4739 @DocsEditable
4584 @DomName('SVGPreserveAspectRatio') 4740 @DomName('SVGPreserveAspectRatio')
4585 class PreserveAspectRatio native "SVGPreserveAspectRatio" { 4741 class PreserveAspectRatio native "SVGPreserveAspectRatio" {
4586 4742
4743 @DomName('SVGPreserveAspectRatio.SVG_MEETORSLICE_MEET')
4744 @DocsEditable
4587 static const int SVG_MEETORSLICE_MEET = 1; 4745 static const int SVG_MEETORSLICE_MEET = 1;
4588 4746
4747 @DomName('SVGPreserveAspectRatio.SVG_MEETORSLICE_SLICE')
4748 @DocsEditable
4589 static const int SVG_MEETORSLICE_SLICE = 2; 4749 static const int SVG_MEETORSLICE_SLICE = 2;
4590 4750
4751 @DomName('SVGPreserveAspectRatio.SVG_MEETORSLICE_UNKNOWN')
4752 @DocsEditable
4591 static const int SVG_MEETORSLICE_UNKNOWN = 0; 4753 static const int SVG_MEETORSLICE_UNKNOWN = 0;
4592 4754
4755 @DomName('SVGPreserveAspectRatio.SVG_PRESERVEASPECTRATIO_NONE')
4756 @DocsEditable
4593 static const int SVG_PRESERVEASPECTRATIO_NONE = 1; 4757 static const int SVG_PRESERVEASPECTRATIO_NONE = 1;
4594 4758
4759 @DomName('SVGPreserveAspectRatio.SVG_PRESERVEASPECTRATIO_UNKNOWN')
4760 @DocsEditable
4595 static const int SVG_PRESERVEASPECTRATIO_UNKNOWN = 0; 4761 static const int SVG_PRESERVEASPECTRATIO_UNKNOWN = 0;
4596 4762
4763 @DomName('SVGPreserveAspectRatio.SVG_PRESERVEASPECTRATIO_XMAXYMAX')
4764 @DocsEditable
4597 static const int SVG_PRESERVEASPECTRATIO_XMAXYMAX = 10; 4765 static const int SVG_PRESERVEASPECTRATIO_XMAXYMAX = 10;
4598 4766
4767 @DomName('SVGPreserveAspectRatio.SVG_PRESERVEASPECTRATIO_XMAXYMID')
4768 @DocsEditable
4599 static const int SVG_PRESERVEASPECTRATIO_XMAXYMID = 7; 4769 static const int SVG_PRESERVEASPECTRATIO_XMAXYMID = 7;
4600 4770
4771 @DomName('SVGPreserveAspectRatio.SVG_PRESERVEASPECTRATIO_XMAXYMIN')
4772 @DocsEditable
4601 static const int SVG_PRESERVEASPECTRATIO_XMAXYMIN = 4; 4773 static const int SVG_PRESERVEASPECTRATIO_XMAXYMIN = 4;
4602 4774
4775 @DomName('SVGPreserveAspectRatio.SVG_PRESERVEASPECTRATIO_XMIDYMAX')
4776 @DocsEditable
4603 static const int SVG_PRESERVEASPECTRATIO_XMIDYMAX = 9; 4777 static const int SVG_PRESERVEASPECTRATIO_XMIDYMAX = 9;
4604 4778
4779 @DomName('SVGPreserveAspectRatio.SVG_PRESERVEASPECTRATIO_XMIDYMID')
4780 @DocsEditable
4605 static const int SVG_PRESERVEASPECTRATIO_XMIDYMID = 6; 4781 static const int SVG_PRESERVEASPECTRATIO_XMIDYMID = 6;
4606 4782
4783 @DomName('SVGPreserveAspectRatio.SVG_PRESERVEASPECTRATIO_XMIDYMIN')
4784 @DocsEditable
4607 static const int SVG_PRESERVEASPECTRATIO_XMIDYMIN = 3; 4785 static const int SVG_PRESERVEASPECTRATIO_XMIDYMIN = 3;
4608 4786
4787 @DomName('SVGPreserveAspectRatio.SVG_PRESERVEASPECTRATIO_XMINYMAX')
4788 @DocsEditable
4609 static const int SVG_PRESERVEASPECTRATIO_XMINYMAX = 8; 4789 static const int SVG_PRESERVEASPECTRATIO_XMINYMAX = 8;
4610 4790
4791 @DomName('SVGPreserveAspectRatio.SVG_PRESERVEASPECTRATIO_XMINYMID')
4792 @DocsEditable
4611 static const int SVG_PRESERVEASPECTRATIO_XMINYMID = 5; 4793 static const int SVG_PRESERVEASPECTRATIO_XMINYMID = 5;
4612 4794
4795 @DomName('SVGPreserveAspectRatio.SVG_PRESERVEASPECTRATIO_XMINYMIN')
4796 @DocsEditable
4613 static const int SVG_PRESERVEASPECTRATIO_XMINYMIN = 2; 4797 static const int SVG_PRESERVEASPECTRATIO_XMINYMIN = 2;
4614 4798
4615 @DomName('SVGPreserveAspectRatio.align') 4799 @DomName('SVGPreserveAspectRatio.align')
4616 @DocsEditable 4800 @DocsEditable
4617 int align; 4801 int align;
4618 4802
4619 @DomName('SVGPreserveAspectRatio.meetOrSlice') 4803 @DomName('SVGPreserveAspectRatio.meetOrSlice')
4620 @DocsEditable 4804 @DocsEditable
4621 int meetOrSlice; 4805 int meetOrSlice;
4622 } 4806 }
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
4789 } 4973 }
4790 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4974 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4791 // for details. All rights reserved. Use of this source code is governed by a 4975 // for details. All rights reserved. Use of this source code is governed by a
4792 // BSD-style license that can be found in the LICENSE file. 4976 // BSD-style license that can be found in the LICENSE file.
4793 4977
4794 4978
4795 @DocsEditable 4979 @DocsEditable
4796 @DomName('SVGRenderingIntent') 4980 @DomName('SVGRenderingIntent')
4797 class RenderingIntent native "SVGRenderingIntent" { 4981 class RenderingIntent native "SVGRenderingIntent" {
4798 4982
4983 @DomName('SVGRenderingIntent.RENDERING_INTENT_ABSOLUTE_COLORIMETRIC')
4984 @DocsEditable
4799 static const int RENDERING_INTENT_ABSOLUTE_COLORIMETRIC = 5; 4985 static const int RENDERING_INTENT_ABSOLUTE_COLORIMETRIC = 5;
4800 4986
4987 @DomName('SVGRenderingIntent.RENDERING_INTENT_AUTO')
4988 @DocsEditable
4801 static const int RENDERING_INTENT_AUTO = 1; 4989 static const int RENDERING_INTENT_AUTO = 1;
4802 4990
4991 @DomName('SVGRenderingIntent.RENDERING_INTENT_PERCEPTUAL')
4992 @DocsEditable
4803 static const int RENDERING_INTENT_PERCEPTUAL = 2; 4993 static const int RENDERING_INTENT_PERCEPTUAL = 2;
4804 4994
4995 @DomName('SVGRenderingIntent.RENDERING_INTENT_RELATIVE_COLORIMETRIC')
4996 @DocsEditable
4805 static const int RENDERING_INTENT_RELATIVE_COLORIMETRIC = 3; 4997 static const int RENDERING_INTENT_RELATIVE_COLORIMETRIC = 3;
4806 4998
4999 @DomName('SVGRenderingIntent.RENDERING_INTENT_SATURATION')
5000 @DocsEditable
4807 static const int RENDERING_INTENT_SATURATION = 4; 5001 static const int RENDERING_INTENT_SATURATION = 4;
4808 5002
5003 @DomName('SVGRenderingIntent.RENDERING_INTENT_UNKNOWN')
5004 @DocsEditable
4809 static const int RENDERING_INTENT_UNKNOWN = 0; 5005 static const int RENDERING_INTENT_UNKNOWN = 0;
4810 } 5006 }
4811 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5007 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4812 // for details. All rights reserved. Use of this source code is governed by a 5008 // for details. All rights reserved. Use of this source code is governed by a
4813 // BSD-style license that can be found in the LICENSE file. 5009 // BSD-style license that can be found in the LICENSE file.
4814 5010
4815 5011
4816 @DocsEditable 5012 @DocsEditable
4817 @DomName('SVGScriptElement') 5013 @DomName('SVGScriptElement')
4818 class ScriptElement extends SvgElement implements UriReference, ExternalResource sRequired native "SVGScriptElement" { 5014 class ScriptElement extends SvgElement implements UriReference, ExternalResource sRequired native "SVGScriptElement" {
(...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after
5142 } 5338 }
5143 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5339 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5144 // for details. All rights reserved. Use of this source code is governed by a 5340 // for details. All rights reserved. Use of this source code is governed by a
5145 // BSD-style license that can be found in the LICENSE file. 5341 // BSD-style license that can be found in the LICENSE file.
5146 5342
5147 5343
5148 @DocsEditable 5344 @DocsEditable
5149 @DomName('SVGException') 5345 @DomName('SVGException')
5150 class SvgException native "SVGException" { 5346 class SvgException native "SVGException" {
5151 5347
5348 @DomName('SVGException.SVG_INVALID_VALUE_ERR')
5349 @DocsEditable
5152 static const int SVG_INVALID_VALUE_ERR = 1; 5350 static const int SVG_INVALID_VALUE_ERR = 1;
5153 5351
5352 @DomName('SVGException.SVG_MATRIX_NOT_INVERTABLE')
5353 @DocsEditable
5154 static const int SVG_MATRIX_NOT_INVERTABLE = 2; 5354 static const int SVG_MATRIX_NOT_INVERTABLE = 2;
5155 5355
5356 @DomName('SVGException.SVG_WRONG_TYPE_ERR')
5357 @DocsEditable
5156 static const int SVG_WRONG_TYPE_ERR = 0; 5358 static const int SVG_WRONG_TYPE_ERR = 0;
5157 5359
5158 @DomName('SVGException.code') 5360 @DomName('SVGException.code')
5159 @DocsEditable 5361 @DocsEditable
5160 final int code; 5362 final int code;
5161 5363
5162 @DomName('SVGException.message') 5364 @DomName('SVGException.message')
5163 @DocsEditable 5365 @DocsEditable
5164 final String message; 5366 final String message;
5165 5367
(...skipping 415 matching lines...) Expand 10 before | Expand all | Expand 10 after
5581 } 5783 }
5582 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5784 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5583 // for details. All rights reserved. Use of this source code is governed by a 5785 // for details. All rights reserved. Use of this source code is governed by a
5584 // BSD-style license that can be found in the LICENSE file. 5786 // BSD-style license that can be found in the LICENSE file.
5585 5787
5586 5788
5587 @DocsEditable 5789 @DocsEditable
5588 @DomName('SVGTextContentElement') 5790 @DomName('SVGTextContentElement')
5589 class TextContentElement extends StyledElement implements Tests, ExternalResourc esRequired, LangSpace native "SVGTextContentElement" { 5791 class TextContentElement extends StyledElement implements Tests, ExternalResourc esRequired, LangSpace native "SVGTextContentElement" {
5590 5792
5793 @DomName('SVGTextContentElement.LENGTHADJUST_SPACING')
5794 @DocsEditable
5591 static const int LENGTHADJUST_SPACING = 1; 5795 static const int LENGTHADJUST_SPACING = 1;
5592 5796
5797 @DomName('SVGTextContentElement.LENGTHADJUST_SPACINGANDGLYPHS')
5798 @DocsEditable
5593 static const int LENGTHADJUST_SPACINGANDGLYPHS = 2; 5799 static const int LENGTHADJUST_SPACINGANDGLYPHS = 2;
5594 5800
5801 @DomName('SVGTextContentElement.LENGTHADJUST_UNKNOWN')
5802 @DocsEditable
5595 static const int LENGTHADJUST_UNKNOWN = 0; 5803 static const int LENGTHADJUST_UNKNOWN = 0;
5596 5804
5597 @DomName('SVGTextContentElement.lengthAdjust') 5805 @DomName('SVGTextContentElement.lengthAdjust')
5598 @DocsEditable 5806 @DocsEditable
5599 final AnimatedEnumeration lengthAdjust; 5807 final AnimatedEnumeration lengthAdjust;
5600 5808
5601 @DomName('SVGTextContentElement.textLength') 5809 @DomName('SVGTextContentElement.textLength')
5602 @DocsEditable 5810 @DocsEditable
5603 final AnimatedLength textLength; 5811 final AnimatedLength textLength;
5604 5812
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
5721 } 5929 }
5722 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5930 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5723 // for details. All rights reserved. Use of this source code is governed by a 5931 // for details. All rights reserved. Use of this source code is governed by a
5724 // BSD-style license that can be found in the LICENSE file. 5932 // BSD-style license that can be found in the LICENSE file.
5725 5933
5726 5934
5727 @DocsEditable 5935 @DocsEditable
5728 @DomName('SVGTextPathElement') 5936 @DomName('SVGTextPathElement')
5729 class TextPathElement extends TextContentElement implements UriReference native "SVGTextPathElement" { 5937 class TextPathElement extends TextContentElement implements UriReference native "SVGTextPathElement" {
5730 5938
5939 @DomName('SVGTextPathElement.TEXTPATH_METHODTYPE_ALIGN')
5940 @DocsEditable
5731 static const int TEXTPATH_METHODTYPE_ALIGN = 1; 5941 static const int TEXTPATH_METHODTYPE_ALIGN = 1;
5732 5942
5943 @DomName('SVGTextPathElement.TEXTPATH_METHODTYPE_STRETCH')
5944 @DocsEditable
5733 static const int TEXTPATH_METHODTYPE_STRETCH = 2; 5945 static const int TEXTPATH_METHODTYPE_STRETCH = 2;
5734 5946
5947 @DomName('SVGTextPathElement.TEXTPATH_METHODTYPE_UNKNOWN')
5948 @DocsEditable
5735 static const int TEXTPATH_METHODTYPE_UNKNOWN = 0; 5949 static const int TEXTPATH_METHODTYPE_UNKNOWN = 0;
5736 5950
5951 @DomName('SVGTextPathElement.TEXTPATH_SPACINGTYPE_AUTO')
5952 @DocsEditable
5737 static const int TEXTPATH_SPACINGTYPE_AUTO = 1; 5953 static const int TEXTPATH_SPACINGTYPE_AUTO = 1;
5738 5954
5955 @DomName('SVGTextPathElement.TEXTPATH_SPACINGTYPE_EXACT')
5956 @DocsEditable
5739 static const int TEXTPATH_SPACINGTYPE_EXACT = 2; 5957 static const int TEXTPATH_SPACINGTYPE_EXACT = 2;
5740 5958
5959 @DomName('SVGTextPathElement.TEXTPATH_SPACINGTYPE_UNKNOWN')
5960 @DocsEditable
5741 static const int TEXTPATH_SPACINGTYPE_UNKNOWN = 0; 5961 static const int TEXTPATH_SPACINGTYPE_UNKNOWN = 0;
5742 5962
5743 @DomName('SVGTextPathElement.method') 5963 @DomName('SVGTextPathElement.method')
5744 @DocsEditable 5964 @DocsEditable
5745 final AnimatedEnumeration method; 5965 final AnimatedEnumeration method;
5746 5966
5747 @DomName('SVGTextPathElement.spacing') 5967 @DomName('SVGTextPathElement.spacing')
5748 @DocsEditable 5968 @DocsEditable
5749 final AnimatedEnumeration spacing; 5969 final AnimatedEnumeration spacing;
5750 5970
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
5812 } 6032 }
5813 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6033 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5814 // for details. All rights reserved. Use of this source code is governed by a 6034 // for details. All rights reserved. Use of this source code is governed by a
5815 // BSD-style license that can be found in the LICENSE file. 6035 // BSD-style license that can be found in the LICENSE file.
5816 6036
5817 6037
5818 @DocsEditable 6038 @DocsEditable
5819 @DomName('SVGTransform') 6039 @DomName('SVGTransform')
5820 class Transform native "SVGTransform" { 6040 class Transform native "SVGTransform" {
5821 6041
6042 @DomName('SVGTransform.SVG_TRANSFORM_MATRIX')
6043 @DocsEditable
5822 static const int SVG_TRANSFORM_MATRIX = 1; 6044 static const int SVG_TRANSFORM_MATRIX = 1;
5823 6045
6046 @DomName('SVGTransform.SVG_TRANSFORM_ROTATE')
6047 @DocsEditable
5824 static const int SVG_TRANSFORM_ROTATE = 4; 6048 static const int SVG_TRANSFORM_ROTATE = 4;
5825 6049
6050 @DomName('SVGTransform.SVG_TRANSFORM_SCALE')
6051 @DocsEditable
5826 static const int SVG_TRANSFORM_SCALE = 3; 6052 static const int SVG_TRANSFORM_SCALE = 3;
5827 6053
6054 @DomName('SVGTransform.SVG_TRANSFORM_SKEWX')
6055 @DocsEditable
5828 static const int SVG_TRANSFORM_SKEWX = 5; 6056 static const int SVG_TRANSFORM_SKEWX = 5;
5829 6057
6058 @DomName('SVGTransform.SVG_TRANSFORM_SKEWY')
6059 @DocsEditable
5830 static const int SVG_TRANSFORM_SKEWY = 6; 6060 static const int SVG_TRANSFORM_SKEWY = 6;
5831 6061
6062 @DomName('SVGTransform.SVG_TRANSFORM_TRANSLATE')
6063 @DocsEditable
5832 static const int SVG_TRANSFORM_TRANSLATE = 2; 6064 static const int SVG_TRANSFORM_TRANSLATE = 2;
5833 6065
6066 @DomName('SVGTransform.SVG_TRANSFORM_UNKNOWN')
6067 @DocsEditable
5834 static const int SVG_TRANSFORM_UNKNOWN = 0; 6068 static const int SVG_TRANSFORM_UNKNOWN = 0;
5835 6069
5836 @DomName('SVGTransform.angle') 6070 @DomName('SVGTransform.angle')
5837 @DocsEditable 6071 @DocsEditable
5838 final num angle; 6072 final num angle;
5839 6073
5840 @DomName('SVGTransform.matrix') 6074 @DomName('SVGTransform.matrix')
5841 @DocsEditable 6075 @DocsEditable
5842 final Matrix matrix; 6076 final Matrix matrix;
5843 6077
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
5962 } 6196 }
5963 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6197 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5964 // for details. All rights reserved. Use of this source code is governed by a 6198 // for details. All rights reserved. Use of this source code is governed by a
5965 // BSD-style license that can be found in the LICENSE file. 6199 // BSD-style license that can be found in the LICENSE file.
5966 6200
5967 6201
5968 @DocsEditable 6202 @DocsEditable
5969 @DomName('SVGUnitTypes') 6203 @DomName('SVGUnitTypes')
5970 class UnitTypes native "SVGUnitTypes" { 6204 class UnitTypes native "SVGUnitTypes" {
5971 6205
6206 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_OBJECTBOUNDINGBOX')
6207 @DocsEditable
5972 static const int SVG_UNIT_TYPE_OBJECTBOUNDINGBOX = 2; 6208 static const int SVG_UNIT_TYPE_OBJECTBOUNDINGBOX = 2;
5973 6209
6210 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_UNKNOWN')
6211 @DocsEditable
5974 static const int SVG_UNIT_TYPE_UNKNOWN = 0; 6212 static const int SVG_UNIT_TYPE_UNKNOWN = 0;
5975 6213
6214 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_USERSPACEONUSE')
6215 @DocsEditable
5976 static const int SVG_UNIT_TYPE_USERSPACEONUSE = 1; 6216 static const int SVG_UNIT_TYPE_USERSPACEONUSE = 1;
5977 } 6217 }
5978 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6218 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5979 // for details. All rights reserved. Use of this source code is governed by a 6219 // for details. All rights reserved. Use of this source code is governed by a
5980 // BSD-style license that can be found in the LICENSE file. 6220 // BSD-style license that can be found in the LICENSE file.
5981 6221
5982 6222
5983 @DomName('SVGURIReference') 6223 @DomName('SVGURIReference')
5984 abstract class UriReference { 6224 abstract class UriReference {
5985 6225
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
6181 int zoomAndPan; 6421 int zoomAndPan;
6182 } 6422 }
6183 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6423 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6184 // for details. All rights reserved. Use of this source code is governed by a 6424 // for details. All rights reserved. Use of this source code is governed by a
6185 // BSD-style license that can be found in the LICENSE file. 6425 // BSD-style license that can be found in the LICENSE file.
6186 6426
6187 6427
6188 @DomName('SVGZoomAndPan') 6428 @DomName('SVGZoomAndPan')
6189 abstract class ZoomAndPan { 6429 abstract class ZoomAndPan {
6190 6430
6431 @DomName('SVGZoomAndPan.SVG_ZOOMANDPAN_DISABLE')
6432 @DocsEditable
6191 static const int SVG_ZOOMANDPAN_DISABLE = 1; 6433 static const int SVG_ZOOMANDPAN_DISABLE = 1;
6192 6434
6435 @DomName('SVGZoomAndPan.SVG_ZOOMANDPAN_MAGNIFY')
6436 @DocsEditable
6193 static const int SVG_ZOOMANDPAN_MAGNIFY = 2; 6437 static const int SVG_ZOOMANDPAN_MAGNIFY = 2;
6194 6438
6439 @DomName('SVGZoomAndPan.SVG_ZOOMANDPAN_UNKNOWN')
6440 @DocsEditable
6195 static const int SVG_ZOOMANDPAN_UNKNOWN = 0; 6441 static const int SVG_ZOOMANDPAN_UNKNOWN = 0;
6196 6442
6197 int zoomAndPan; 6443 int zoomAndPan;
6198 } 6444 }
6199 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6445 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6200 // for details. All rights reserved. Use of this source code is governed by a 6446 // for details. All rights reserved. Use of this source code is governed by a
6201 // BSD-style license that can be found in the LICENSE file. 6447 // BSD-style license that can be found in the LICENSE file.
6202 6448
6203 6449
6204 @DocsEditable 6450 @DocsEditable
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
6259 } 6505 }
6260 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6506 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6261 // for details. All rights reserved. Use of this source code is governed by a 6507 // for details. All rights reserved. Use of this source code is governed by a
6262 // BSD-style license that can be found in the LICENSE file. 6508 // BSD-style license that can be found in the LICENSE file.
6263 6509
6264 6510
6265 @DocsEditable 6511 @DocsEditable
6266 @DomName('SVGGradientElement') 6512 @DomName('SVGGradientElement')
6267 class _GradientElement extends StyledElement implements UriReference, ExternalRe sourcesRequired native "SVGGradientElement" { 6513 class _GradientElement extends StyledElement implements UriReference, ExternalRe sourcesRequired native "SVGGradientElement" {
6268 6514
6515 @DomName('SVGGradientElement.SVG_SPREADMETHOD_PAD')
6516 @DocsEditable
6269 static const int SVG_SPREADMETHOD_PAD = 1; 6517 static const int SVG_SPREADMETHOD_PAD = 1;
6270 6518
6519 @DomName('SVGGradientElement.SVG_SPREADMETHOD_REFLECT')
6520 @DocsEditable
6271 static const int SVG_SPREADMETHOD_REFLECT = 2; 6521 static const int SVG_SPREADMETHOD_REFLECT = 2;
6272 6522
6523 @DomName('SVGGradientElement.SVG_SPREADMETHOD_REPEAT')
6524 @DocsEditable
6273 static const int SVG_SPREADMETHOD_REPEAT = 3; 6525 static const int SVG_SPREADMETHOD_REPEAT = 3;
6274 6526
6527 @DomName('SVGGradientElement.SVG_SPREADMETHOD_UNKNOWN')
6528 @DocsEditable
6275 static const int SVG_SPREADMETHOD_UNKNOWN = 0; 6529 static const int SVG_SPREADMETHOD_UNKNOWN = 0;
6276 6530
6277 @DomName('SVGGradientElement.gradientTransform') 6531 @DomName('SVGGradientElement.gradientTransform')
6278 @DocsEditable 6532 @DocsEditable
6279 final AnimatedTransformList gradientTransform; 6533 final AnimatedTransformList gradientTransform;
6280 6534
6281 @DomName('SVGGradientElement.gradientUnits') 6535 @DomName('SVGGradientElement.gradientUnits')
6282 @DocsEditable 6536 @DocsEditable
6283 final AnimatedEnumeration gradientUnits; 6537 final AnimatedEnumeration gradientUnits;
6284 6538
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
6526 6780
6527 6781
6528 @DocsEditable 6782 @DocsEditable
6529 @DomName('SVGVKernElement') 6783 @DomName('SVGVKernElement')
6530 abstract class _SVGVKernElement extends SvgElement native "SVGVKernElement" { 6784 abstract class _SVGVKernElement extends SvgElement native "SVGVKernElement" {
6531 6785
6532 @DomName('SVGVKernElement.SVGVKernElement') 6786 @DomName('SVGVKernElement.SVGVKernElement')
6533 @DocsEditable 6787 @DocsEditable
6534 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag( "vkern"); 6788 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag( "vkern");
6535 } 6789 }
OLDNEW
« no previous file with comments | « sdk/lib/html/dartium/html_dartium.dart ('k') | sdk/lib/svg/dartium/svg_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698