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

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

Issue 132233010: [SVG] SVGAnimatedRect migration to new SVG property impl. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebsaed Created 6 years, 11 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
« no previous file with comments | « Source/core/svg/SVGSVGElement.cpp ('k') | Source/core/svg/SVGSymbolElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGSVGElement.idl
diff --git a/Source/core/svg/SVGSVGElement.idl b/Source/core/svg/SVGSVGElement.idl
index e861807fa44d78d0054e68c55c3f28e2ca0e5511..c8c8dcbb02c260f29ffd1086ca39b3c702427358 100644
--- a/Source/core/svg/SVGSVGElement.idl
+++ b/Source/core/svg/SVGSVGElement.idl
@@ -47,15 +47,15 @@ interface SVGSVGElement : SVGGraphicsElement {
void unpauseAnimations();
boolean animationsPaused();
float getCurrentTime();
- void setCurrentTime([Default=Undefined] optional float seconds);
- NodeList getIntersectionList([Default=Undefined] optional SVGRect rect,
- [Default=Undefined] optional SVGElement referenceElement);
- NodeList getEnclosureList([Default=Undefined] optional SVGRect rect,
- [Default=Undefined] optional SVGElement referenceElement);
- boolean checkIntersection([Default=Undefined] optional SVGElement element,
- [Default=Undefined] optional SVGRect rect);
- boolean checkEnclosure([Default=Undefined] optional SVGElement element,
- [Default=Undefined] optional SVGRect rect);
+ void setCurrentTime(float seconds);
+ NodeList getIntersectionList([StrictTypeChecking] SVGRect rect,
+ [StrictTypeChecking] SVGElement referenceElement);
+ NodeList getEnclosureList([StrictTypeChecking] SVGRect rect,
+ [StrictTypeChecking] SVGElement referenceElement);
+ boolean checkIntersection([StrictTypeChecking] SVGElement element,
+ [StrictTypeChecking] SVGRect rect);
+ boolean checkEnclosure([StrictTypeChecking] SVGElement element,
+ [StrictTypeChecking] SVGRect rect);
void deselectAll();
SVGNumber createSVGNumber();
« no previous file with comments | « Source/core/svg/SVGSVGElement.cpp ('k') | Source/core/svg/SVGSymbolElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698