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

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

Issue 927113002: Add TypeChecking=Unrestricted to SVG{Matrix,Rect,Point} (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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
« no previous file with comments | « Source/core/svg/SVGPoint.idl ('k') | no next file » | 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 28c1d9d5d5a3d568f2333fbb60bf34431f921a46..bdfbc3eb388a71debbd4384a7f2c654462c03930 100644
--- a/Source/core/svg/SVGRect.idl
+++ b/Source/core/svg/SVGRect.idl
@@ -23,11 +23,11 @@
[
ImplementedAs=SVGRectTearOff,
SetWrapperReferenceTo(SVGElement contextElement),
- TypeChecking=Interface,
+ TypeChecking=(Interface, Unrestricted),
WillBeGarbageCollected,
] interface SVGRect {
- [RaisesException=Setter] attribute float x;
- [RaisesException=Setter] attribute float y;
- [RaisesException=Setter] attribute float width;
- [RaisesException=Setter] attribute float height;
+ [RaisesException=Setter] attribute unrestricted float x;
+ [RaisesException=Setter] attribute unrestricted float y;
+ [RaisesException=Setter] attribute unrestricted float width;
+ [RaisesException=Setter] attribute unrestricted float height;
};
« no previous file with comments | « Source/core/svg/SVGPoint.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698