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

Unified Diff: Source/core/svg/SVGRect.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/SVGRect.cpp ('k') | Source/core/svg/SVGRectTearOff.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGRect.idl
diff --git a/Source/core/svg/SVGRect.idl b/Source/core/svg/SVGRect.idl
index e148788295b608f6fe387ed948e89e5f58aeb981..3925a3a57031975bd0e75b0c7e765efb9beb6c9d 100644
--- a/Source/core/svg/SVGRect.idl
+++ b/Source/core/svg/SVGRect.idl
@@ -20,10 +20,13 @@
* Boston, MA 02110-1301, USA.
*/
-interface SVGRect {
- [StrictTypeChecking] attribute float x;
- [StrictTypeChecking] attribute float y;
- [StrictTypeChecking] attribute float width;
- [StrictTypeChecking] attribute float height;
+[
+ ImplementedAs=SVGRectTearOff,
+ SetReference(SVGElement contextElement)
+] interface SVGRect {
+ [StrictTypeChecking, RaisesException=Setter] attribute float x;
+ [StrictTypeChecking, RaisesException=Setter] attribute float y;
+ [StrictTypeChecking, RaisesException=Setter] attribute float width;
+ [StrictTypeChecking, RaisesException=Setter] attribute float height;
};
« no previous file with comments | « Source/core/svg/SVGRect.cpp ('k') | Source/core/svg/SVGRectTearOff.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698