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

Unified Diff: third_party/WebKit/Source/core/svg/SVGSVGElement.idl

Issue 2572853002: Replace remaining /TR/ links in SVG IDL (Closed)
Patch Set: Created 4 years 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
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGMaskElement.idl ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/svg/SVGSVGElement.idl
diff --git a/third_party/WebKit/Source/core/svg/SVGSVGElement.idl b/third_party/WebKit/Source/core/svg/SVGSVGElement.idl
index 4da0d52ab8b4c9ba87ab1132432af31fe1ad0381..36aa1fee4b11cf423fd19f794bc71ef5f9ee141b 100644
--- a/third_party/WebKit/Source/core/svg/SVGSVGElement.idl
+++ b/third_party/WebKit/Source/core/svg/SVGSVGElement.idl
@@ -27,27 +27,19 @@ interface SVGSVGElement : SVGGraphicsElement {
[MeasureAs=SVG1DOMSVGElement] readonly attribute SVGAnimatedLength y;
[MeasureAs=SVG1DOMSVGElement] readonly attribute SVGAnimatedLength width;
[MeasureAs=SVG1DOMSVGElement] readonly attribute SVGAnimatedLength height;
- attribute float currentScale;
+
+ attribute float currentScale;
// TODO(foolip): currentTranslate should be a DOMPointReadOnly.
[ImplementedAs=currentTranslateFromJavascript] readonly attribute SVGPoint currentTranslate;
- [MeasureAs=SVGSVGElementSuspendRedraw] unsigned long suspendRedraw(unsigned long maxWaitMilliseconds);
- [MeasureAs=SVGSVGElementUnsuspendRedraw] void unsuspendRedraw(unsigned long suspendHandleId);
- [MeasureAs=SVGSVGElementUnsuspendRedrawAll] void unsuspendRedrawAll();
- [MeasureAs=SVGSVGElementForceRedraw] void forceRedraw();
-
- [MeasureAs=SVGSMILPausing, RuntimeEnabled=smil] void pauseAnimations();
- [MeasureAs=SVGSMILPausing, RuntimeEnabled=smil] void unpauseAnimations();
- [MeasureAs=SVGSMILPausing, RuntimeEnabled=smil] boolean animationsPaused();
- [MeasureAs=SVGSMILCurrentTime, RuntimeEnabled=smil] float getCurrentTime();
- [MeasureAs=SVGSMILCurrentTime, RuntimeEnabled=smil] void setCurrentTime(float seconds);
-
// TODO(foolip): The rect arguments should be DOMRectReadOnly.
NodeList getIntersectionList(SVGRect rect, SVGElement? referenceElement);
NodeList getEnclosureList(SVGRect rect, SVGElement? referenceElement);
boolean checkIntersection(SVGElement element, SVGRect rect);
boolean checkEnclosure(SVGElement element, SVGRect rect);
+
void deselectAll();
+
[Measure] SVGNumber createSVGNumber();
[Measure] SVGLength createSVGLength();
[Measure] SVGAngle createSVGAngle();
@@ -58,9 +50,20 @@ interface SVGSVGElement : SVGGraphicsElement {
[Measure] SVGTransform createSVGTransform();
[Measure] SVGTransform createSVGTransformFromMatrix(SVGMatrix matrix);
- // TODO(foolip): The following was part of SVG 1.1:
- // http://www.w3.org/TR/SVG11/struct.html#InterfaceSVGSVGElement
[Measure] Element getElementById(DOMString elementId);
+
+ [MeasureAs=SVGSVGElementSuspendRedraw] unsigned long suspendRedraw(unsigned long maxWaitMilliseconds);
+ [MeasureAs=SVGSVGElementUnsuspendRedraw] void unsuspendRedraw(unsigned long suspendHandleId);
+ [MeasureAs=SVGSVGElementUnsuspendRedrawAll] void unsuspendRedrawAll();
+ [MeasureAs=SVGSVGElementForceRedraw] void forceRedraw();
+
+ // SVG Animations
+ // https://svgwg.org/specs/animations/#InterfaceSVGSVGElement
+ [MeasureAs=SVGSMILPausing, RuntimeEnabled=smil] void pauseAnimations();
+ [MeasureAs=SVGSMILPausing, RuntimeEnabled=smil] void unpauseAnimations();
+ [MeasureAs=SVGSMILPausing, RuntimeEnabled=smil] boolean animationsPaused();
+ [MeasureAs=SVGSMILCurrentTime, RuntimeEnabled=smil] float getCurrentTime();
+ [MeasureAs=SVGSMILCurrentTime, RuntimeEnabled=smil] void setCurrentTime(float seconds);
};
SVGSVGElement implements SVGFitToViewBox;
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGMaskElement.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698