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

Unified Diff: core/svg/SVGRect.idl

Issue 1660113002: Updated to Chrome 45 (2454) moved from SVN to git. Base URL: https://github.com/dart-lang/webcore.git@roll_45
Patch Set: Created 4 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 | « core/svg/SVGRadialGradientElement.idl ('k') | core/svg/SVGRectElement.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/svg/SVGRect.idl
diff --git a/core/svg/SVGRect.idl b/core/svg/SVGRect.idl
index f602ce1ab915a803fb2c1a1b1fd77ecb99667210..3ab6c6a19246a3425817d40c19d2d1a67a84ca78 100644
--- a/core/svg/SVGRect.idl
+++ b/core/svg/SVGRect.idl
@@ -20,13 +20,17 @@
* Boston, MA 02110-1301, USA.
*/
+// http://www.w3.org/TR/SVG11/types.html#InterfaceSVGRect
+
+// TODO(philipj): SVGRect is gone from SVG 2, replaced by DOMRect.
[
ImplementedAs=SVGRectTearOff,
SetWrapperReferenceTo(SVGElement contextElement),
TypeChecking=Interface,
+ 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 | « core/svg/SVGRadialGradientElement.idl ('k') | core/svg/SVGRectElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698