| OLD | NEW |
| 1 | 1 |
| 2 class SVGPathElement extends SVGElement native "*SVGPathElement" { | 2 class SVGPathElement extends SVGElement native "*SVGPathElement" { |
| 3 | 3 |
| 4 SVGPathSegList animatedNormalizedPathSegList; | 4 SVGPathSegList get animatedNormalizedPathSegList() native "return this.animate
dNormalizedPathSegList;"; |
| 5 | 5 |
| 6 SVGPathSegList animatedPathSegList; | 6 SVGPathSegList get animatedPathSegList() native "return this.animatedPathSegLi
st;"; |
| 7 | 7 |
| 8 SVGPathSegList normalizedPathSegList; | 8 SVGPathSegList get normalizedPathSegList() native "return this.normalizedPathS
egList;"; |
| 9 | 9 |
| 10 SVGAnimatedNumber pathLength; | 10 SVGAnimatedNumber get pathLength() native "return this.pathLength;"; |
| 11 | 11 |
| 12 SVGPathSegList pathSegList; | 12 SVGPathSegList get pathSegList() native "return this.pathSegList;"; |
| 13 | 13 |
| 14 SVGPathSegArcAbs createSVGPathSegArcAbs(num x, num y, num r1, num r2, num angl
e, bool largeArcFlag, bool sweepFlag) native; | 14 SVGPathSegArcAbs createSVGPathSegArcAbs(num x, num y, num r1, num r2, num angl
e, bool largeArcFlag, bool sweepFlag) native; |
| 15 | 15 |
| 16 SVGPathSegArcRel createSVGPathSegArcRel(num x, num y, num r1, num r2, num angl
e, bool largeArcFlag, bool sweepFlag) native; | 16 SVGPathSegArcRel createSVGPathSegArcRel(num x, num y, num r1, num r2, num angl
e, bool largeArcFlag, bool sweepFlag) native; |
| 17 | 17 |
| 18 SVGPathSegClosePath createSVGPathSegClosePath() native; | 18 SVGPathSegClosePath createSVGPathSegClosePath() native; |
| 19 | 19 |
| 20 SVGPathSegCurvetoCubicAbs createSVGPathSegCurvetoCubicAbs(num x, num y, num x1
, num y1, num x2, num y2) native; | 20 SVGPathSegCurvetoCubicAbs createSVGPathSegCurvetoCubicAbs(num x, num y, num x1
, num y1, num x2, num y2) native; |
| 21 | 21 |
| 22 SVGPathSegCurvetoCubicRel createSVGPathSegCurvetoCubicRel(num x, num y, num x1
, num y1, num x2, num y2) native; | 22 SVGPathSegCurvetoCubicRel createSVGPathSegCurvetoCubicRel(num x, num y, num x1
, num y1, num x2, num y2) native; |
| (...skipping 27 matching lines...) Expand all Loading... |
| 50 SVGPathSegMovetoRel createSVGPathSegMovetoRel(num x, num y) native; | 50 SVGPathSegMovetoRel createSVGPathSegMovetoRel(num x, num y) native; |
| 51 | 51 |
| 52 int getPathSegAtLength(num distance) native; | 52 int getPathSegAtLength(num distance) native; |
| 53 | 53 |
| 54 SVGPoint getPointAtLength(num distance) native; | 54 SVGPoint getPointAtLength(num distance) native; |
| 55 | 55 |
| 56 num getTotalLength() native; | 56 num getTotalLength() native; |
| 57 | 57 |
| 58 // From SVGTests | 58 // From SVGTests |
| 59 | 59 |
| 60 SVGStringList requiredExtensions; | 60 SVGStringList get requiredExtensions() native "return this.requiredExtensions;
"; |
| 61 | 61 |
| 62 SVGStringList requiredFeatures; | 62 SVGStringList get requiredFeatures() native "return this.requiredFeatures;"; |
| 63 | 63 |
| 64 SVGStringList systemLanguage; | 64 SVGStringList get systemLanguage() native "return this.systemLanguage;"; |
| 65 | 65 |
| 66 bool hasExtension(String extension) native; | 66 bool hasExtension(String extension) native; |
| 67 | 67 |
| 68 // From SVGLangSpace | 68 // From SVGLangSpace |
| 69 | 69 |
| 70 String xmllang; | 70 String get xmllang() native "return this.xmllang;"; |
| 71 | 71 |
| 72 String xmlspace; | 72 void set xmllang(String value) native "this.xmllang = value;"; |
| 73 |
| 74 String get xmlspace() native "return this.xmlspace;"; |
| 75 |
| 76 void set xmlspace(String value) native "this.xmlspace = value;"; |
| 73 | 77 |
| 74 // From SVGExternalResourcesRequired | 78 // From SVGExternalResourcesRequired |
| 75 | 79 |
| 76 SVGAnimatedBoolean externalResourcesRequired; | 80 SVGAnimatedBoolean get externalResourcesRequired() native "return this.externa
lResourcesRequired;"; |
| 77 | 81 |
| 78 // From SVGStylable | 82 // From SVGStylable |
| 79 | 83 |
| 80 SVGAnimatedString className; | 84 SVGAnimatedString get className() native "return this.className;"; |
| 81 | 85 |
| 82 CSSStyleDeclaration style; | 86 CSSStyleDeclaration get style() native "return this.style;"; |
| 83 | 87 |
| 84 CSSValue getPresentationAttribute(String name) native; | 88 CSSValue getPresentationAttribute(String name) native; |
| 85 | 89 |
| 86 // From SVGTransformable | 90 // From SVGTransformable |
| 87 | 91 |
| 88 SVGAnimatedTransformList transform; | 92 SVGAnimatedTransformList get transform() native "return this.transform;"; |
| 89 | 93 |
| 90 // From SVGLocatable | 94 // From SVGLocatable |
| 91 | 95 |
| 92 SVGElement farthestViewportElement; | 96 SVGElement get farthestViewportElement() native "return this.farthestViewportE
lement;"; |
| 93 | 97 |
| 94 SVGElement nearestViewportElement; | 98 SVGElement get nearestViewportElement() native "return this.nearestViewportEle
ment;"; |
| 95 | 99 |
| 96 SVGRect getBBox() native; | 100 SVGRect getBBox() native; |
| 97 | 101 |
| 98 SVGMatrix getCTM() native; | 102 SVGMatrix getCTM() native; |
| 99 | 103 |
| 100 SVGMatrix getScreenCTM() native; | 104 SVGMatrix getScreenCTM() native; |
| 101 | 105 |
| 102 SVGMatrix getTransformToElement(SVGElement element) native; | 106 SVGMatrix getTransformToElement(SVGElement element) native; |
| 103 } | 107 } |
| OLD | NEW |