OSDN Git Service

Merge Webkit at r70949: Initial merge by git.
[android-x86/external-webkit.git] / WebCore / svg / SVGRect.idl
index 2f8799c..4231ac0 100644 (file)
 
 module svg {
 
-    interface [Conditional=SVG, PODType=FloatRect] SVGRect {
-                 attribute float x
-                     setter raises(DOMException);
-                 attribute float y
-                     setter raises(DOMException);
-                 attribute float width
-                     setter raises(DOMException);
-                 attribute float height
-                     setter raises(DOMException);
+    interface [Conditional=SVG] SVGRect {
+        attribute [StrictTypeChecking] float x;
+        attribute [StrictTypeChecking] float y;
+        attribute [StrictTypeChecking] float width;
+        attribute [StrictTypeChecking] float height;
     };
 
 }