| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2011, 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 // WARNING: Do not edit - generated code. | |
| 6 | |
| 7 interface SVGSVGElement extends SVGElement, SVGTests, SVGLangSpace, SVGExternalR
esourcesRequired, SVGStylable, SVGLocatable, SVGFitToViewBox, SVGZoomAndPan { | |
| 8 | |
| 9 String get contentScriptType(); | |
| 10 | |
| 11 void set contentScriptType(String value); | |
| 12 | |
| 13 String get contentStyleType(); | |
| 14 | |
| 15 void set contentStyleType(String value); | |
| 16 | |
| 17 num get currentScale(); | |
| 18 | |
| 19 void set currentScale(num value); | |
| 20 | |
| 21 SVGPoint get currentTranslate(); | |
| 22 | |
| 23 SVGAnimatedLength get height(); | |
| 24 | |
| 25 num get pixelUnitToMillimeterX(); | |
| 26 | |
| 27 num get pixelUnitToMillimeterY(); | |
| 28 | |
| 29 num get screenPixelToMillimeterX(); | |
| 30 | |
| 31 num get screenPixelToMillimeterY(); | |
| 32 | |
| 33 bool get useCurrentView(); | |
| 34 | |
| 35 void set useCurrentView(bool value); | |
| 36 | |
| 37 SVGRect get viewport(); | |
| 38 | |
| 39 SVGAnimatedLength get width(); | |
| 40 | |
| 41 SVGAnimatedLength get x(); | |
| 42 | |
| 43 SVGAnimatedLength get y(); | |
| 44 | |
| 45 bool animationsPaused(); | |
| 46 | |
| 47 bool checkEnclosure(SVGElement element, SVGRect rect); | |
| 48 | |
| 49 bool checkIntersection(SVGElement element, SVGRect rect); | |
| 50 | |
| 51 SVGAngle createSVGAngle(); | |
| 52 | |
| 53 SVGLength createSVGLength(); | |
| 54 | |
| 55 SVGMatrix createSVGMatrix(); | |
| 56 | |
| 57 SVGNumber createSVGNumber(); | |
| 58 | |
| 59 SVGPoint createSVGPoint(); | |
| 60 | |
| 61 SVGRect createSVGRect(); | |
| 62 | |
| 63 SVGTransform createSVGTransform(); | |
| 64 | |
| 65 SVGTransform createSVGTransformFromMatrix(SVGMatrix matrix); | |
| 66 | |
| 67 void deselectAll(); | |
| 68 | |
| 69 void forceRedraw(); | |
| 70 | |
| 71 num getCurrentTime(); | |
| 72 | |
| 73 Element getElementById(String elementId); | |
| 74 | |
| 75 ElementList getEnclosureList(SVGRect rect, SVGElement referenceElement); | |
| 76 | |
| 77 ElementList getIntersectionList(SVGRect rect, SVGElement referenceElement); | |
| 78 | |
| 79 void pauseAnimations(); | |
| 80 | |
| 81 void setCurrentTime(num seconds); | |
| 82 | |
| 83 int suspendRedraw(int maxWaitMilliseconds); | |
| 84 | |
| 85 void unpauseAnimations(); | |
| 86 | |
| 87 void unsuspendRedraw(int suspendHandleId); | |
| 88 | |
| 89 void unsuspendRedrawAll(); | |
| 90 } | |
| OLD | NEW |