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

Unified Diff: client/html/generated/html/frog/SVGSVGElement.dart

Issue 9537001: Generate dart:html bindings for Dartium as well as Frog. All unittests now pass (or are disabled fo… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: client/html/generated/html/frog/SVGSVGElement.dart
diff --git a/client/html/generated/html/frog/SVGSVGElement.dart b/client/html/generated/html/frog/SVGSVGElement.dart
new file mode 100644
index 0000000000000000000000000000000000000000..fe00a954e63990e9e6b3c475874c0d249476fe0c
--- /dev/null
+++ b/client/html/generated/html/frog/SVGSVGElement.dart
@@ -0,0 +1,130 @@
+
+class _SVGSVGElementImpl extends _SVGElementImpl implements SVGSVGElement native "*SVGSVGElement" {
+
+ String contentScriptType;
+
+ String contentStyleType;
+
+ num currentScale;
+
+ final _SVGPointImpl currentTranslate;
+
+ final _SVGAnimatedLengthImpl height;
+
+ final num pixelUnitToMillimeterX;
+
+ final num pixelUnitToMillimeterY;
+
+ final num screenPixelToMillimeterX;
+
+ final num screenPixelToMillimeterY;
+
+ bool useCurrentView;
+
+ final _SVGRectImpl viewport;
+
+ final _SVGAnimatedLengthImpl width;
+
+ final _SVGAnimatedLengthImpl x;
+
+ final _SVGAnimatedLengthImpl y;
+
+ bool animationsPaused() native;
+
+ bool checkEnclosure(_SVGElementImpl element, _SVGRectImpl rect) native;
+
+ bool checkIntersection(_SVGElementImpl element, _SVGRectImpl rect) native;
+
+ _SVGAngleImpl createSVGAngle() native;
+
+ _SVGLengthImpl createSVGLength() native;
+
+ _SVGMatrixImpl createSVGMatrix() native;
+
+ _SVGNumberImpl createSVGNumber() native;
+
+ _SVGPointImpl createSVGPoint() native;
+
+ _SVGRectImpl createSVGRect() native;
+
+ _SVGTransformImpl createSVGTransform() native;
+
+ _SVGTransformImpl createSVGTransformFromMatrix(_SVGMatrixImpl matrix) native;
+
+ void deselectAll() native;
+
+ void forceRedraw() native;
+
+ num getCurrentTime() native;
+
+ _ElementImpl getElementById(String elementId) native;
+
+ _NodeListImpl getEnclosureList(_SVGRectImpl rect, _SVGElementImpl referenceElement) native;
+
+ _NodeListImpl getIntersectionList(_SVGRectImpl rect, _SVGElementImpl referenceElement) native;
+
+ void pauseAnimations() native;
+
+ void setCurrentTime(num seconds) native;
+
+ int suspendRedraw(int maxWaitMilliseconds) native;
+
+ void unpauseAnimations() native;
+
+ void unsuspendRedraw(int suspendHandleId) native;
+
+ void unsuspendRedrawAll() native;
+
+ // From SVGTests
+
+ final _SVGStringListImpl requiredExtensions;
+
+ final _SVGStringListImpl requiredFeatures;
+
+ final _SVGStringListImpl systemLanguage;
+
+ bool hasExtension(String extension) native;
+
+ // From SVGLangSpace
+
+ String xmllang;
+
+ String xmlspace;
+
+ // From SVGExternalResourcesRequired
+
+ final _SVGAnimatedBooleanImpl externalResourcesRequired;
+
+ // From SVGStylable
+
+ _SVGAnimatedStringImpl get _className() native "return this.className;";
+
+ // Use implementation from Element.
+ // final _CSSStyleDeclarationImpl style;
+
+ _CSSValueImpl getPresentationAttribute(String name) native;
+
+ // From SVGLocatable
+
+ final _SVGElementImpl farthestViewportElement;
+
+ final _SVGElementImpl nearestViewportElement;
+
+ _SVGRectImpl getBBox() native;
+
+ _SVGMatrixImpl getCTM() native;
+
+ _SVGMatrixImpl getScreenCTM() native;
+
+ _SVGMatrixImpl getTransformToElement(_SVGElementImpl element) native;
+
+ // From SVGFitToViewBox
+
+ final _SVGAnimatedPreserveAspectRatioImpl preserveAspectRatio;
+
+ final _SVGAnimatedRectImpl viewBox;
+
+ // From SVGZoomAndPan
+
+ int zoomAndPan;
+}

Powered by Google App Engine
This is Rietveld 408576698