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

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

Issue 2246023002: SVG: Use counters for SMIL methods on <svg> root element (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: MeasureAs Created 4 years, 4 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: 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 4a662bf06859b6f2275bdfb89103ed14f5082576..6b9e2ad221c883d31ed9a0b60f5f9c1d41c25fbf 100644
--- a/third_party/WebKit/Source/core/svg/SVGSVGElement.idl
+++ b/third_party/WebKit/Source/core/svg/SVGSVGElement.idl
@@ -42,11 +42,11 @@ interface SVGSVGElement : SVGGraphicsElement {
[MeasureAs=SVGSVGElementUnsuspendRedrawAll] void unsuspendRedrawAll();
[MeasureAs=SVGSVGElementForceRedraw] void forceRedraw();
- [RuntimeEnabled=smil] void pauseAnimations();
- [RuntimeEnabled=smil] void unpauseAnimations();
- [RuntimeEnabled=smil] boolean animationsPaused();
- [RuntimeEnabled=smil] float getCurrentTime();
- [RuntimeEnabled=smil] void setCurrentTime(float seconds);
+ [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);

Powered by Google App Engine
This is Rietveld 408576698