| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 /// @domName SVGSVGElement |
| 6 interface SVGSVGElement extends SVGElement, SVGTests, SVGLangSpace, SVGExternalR
esourcesRequired, SVGStylable, SVGLocatable, SVGFitToViewBox, SVGZoomAndPan |
| 7 default _SVGSVGElementFactoryProvider { |
| 8 SVGSVGElement(); |
| 9 |
| 10 |
| 11 /** @domName SVGSVGElement.contentScriptType */ |
| 12 String contentScriptType; |
| 13 |
| 14 /** @domName SVGSVGElement.contentStyleType */ |
| 15 String contentStyleType; |
| 16 |
| 17 /** @domName SVGSVGElement.currentScale */ |
| 18 num currentScale; |
| 19 |
| 20 /** @domName SVGSVGElement.currentTranslate */ |
| 21 final SVGPoint currentTranslate; |
| 22 |
| 23 /** @domName SVGSVGElement.currentView */ |
| 24 final SVGViewSpec currentView; |
| 25 |
| 26 /** @domName SVGSVGElement.height */ |
| 27 final SVGAnimatedLength height; |
| 28 |
| 29 /** @domName SVGSVGElement.pixelUnitToMillimeterX */ |
| 30 final num pixelUnitToMillimeterX; |
| 31 |
| 32 /** @domName SVGSVGElement.pixelUnitToMillimeterY */ |
| 33 final num pixelUnitToMillimeterY; |
| 34 |
| 35 /** @domName SVGSVGElement.screenPixelToMillimeterX */ |
| 36 final num screenPixelToMillimeterX; |
| 37 |
| 38 /** @domName SVGSVGElement.screenPixelToMillimeterY */ |
| 39 final num screenPixelToMillimeterY; |
| 40 |
| 41 /** @domName SVGSVGElement.useCurrentView */ |
| 42 final bool useCurrentView; |
| 43 |
| 44 /** @domName SVGSVGElement.viewport */ |
| 45 final SVGRect viewport; |
| 46 |
| 47 /** @domName SVGSVGElement.width */ |
| 48 final SVGAnimatedLength width; |
| 49 |
| 50 /** @domName SVGSVGElement.x */ |
| 51 final SVGAnimatedLength x; |
| 52 |
| 53 /** @domName SVGSVGElement.y */ |
| 54 final SVGAnimatedLength y; |
| 55 |
| 56 /** @domName SVGSVGElement.animationsPaused */ |
| 57 bool animationsPaused(); |
| 58 |
| 59 /** @domName SVGSVGElement.checkEnclosure */ |
| 60 bool checkEnclosure(SVGElement element, SVGRect rect); |
| 61 |
| 62 /** @domName SVGSVGElement.checkIntersection */ |
| 63 bool checkIntersection(SVGElement element, SVGRect rect); |
| 64 |
| 65 /** @domName SVGSVGElement.createSVGAngle */ |
| 66 SVGAngle createSVGAngle(); |
| 67 |
| 68 /** @domName SVGSVGElement.createSVGLength */ |
| 69 SVGLength createSVGLength(); |
| 70 |
| 71 /** @domName SVGSVGElement.createSVGMatrix */ |
| 72 SVGMatrix createSVGMatrix(); |
| 73 |
| 74 /** @domName SVGSVGElement.createSVGNumber */ |
| 75 SVGNumber createSVGNumber(); |
| 76 |
| 77 /** @domName SVGSVGElement.createSVGPoint */ |
| 78 SVGPoint createSVGPoint(); |
| 79 |
| 80 /** @domName SVGSVGElement.createSVGRect */ |
| 81 SVGRect createSVGRect(); |
| 82 |
| 83 /** @domName SVGSVGElement.createSVGTransform */ |
| 84 SVGTransform createSVGTransform(); |
| 85 |
| 86 /** @domName SVGSVGElement.createSVGTransformFromMatrix */ |
| 87 SVGTransform createSVGTransformFromMatrix(SVGMatrix matrix); |
| 88 |
| 89 /** @domName SVGSVGElement.deselectAll */ |
| 90 void deselectAll(); |
| 91 |
| 92 /** @domName SVGSVGElement.forceRedraw */ |
| 93 void forceRedraw(); |
| 94 |
| 95 /** @domName SVGSVGElement.getCurrentTime */ |
| 96 num getCurrentTime(); |
| 97 |
| 98 /** @domName SVGSVGElement.getElementById */ |
| 99 Element getElementById(String elementId); |
| 100 |
| 101 /** @domName SVGSVGElement.getEnclosureList */ |
| 102 NodeList getEnclosureList(SVGRect rect, SVGElement referenceElement); |
| 103 |
| 104 /** @domName SVGSVGElement.getIntersectionList */ |
| 105 NodeList getIntersectionList(SVGRect rect, SVGElement referenceElement); |
| 106 |
| 107 /** @domName SVGSVGElement.pauseAnimations */ |
| 108 void pauseAnimations(); |
| 109 |
| 110 /** @domName SVGSVGElement.setCurrentTime */ |
| 111 void setCurrentTime(num seconds); |
| 112 |
| 113 /** @domName SVGSVGElement.suspendRedraw */ |
| 114 int suspendRedraw(int maxWaitMilliseconds); |
| 115 |
| 116 /** @domName SVGSVGElement.unpauseAnimations */ |
| 117 void unpauseAnimations(); |
| 118 |
| 119 /** @domName SVGSVGElement.unsuspendRedraw */ |
| 120 void unsuspendRedraw(int suspendHandleId); |
| 121 |
| 122 /** @domName SVGSVGElement.unsuspendRedrawAll */ |
| 123 void unsuspendRedrawAll(); |
| 124 |
| 125 } |
| OLD | NEW |