Index: core/svg/SVGForeignObjectElement.idl |
diff --git a/core/svg/SVGForeignObjectElement.idl b/core/svg/SVGForeignObjectElement.idl |
index 3d348fffbb0d06dfe9a3a055f6486ef7644f1ebe..bedb3bc0c8df8cec95aee194d01299a5883d8647 100644 |
--- a/core/svg/SVGForeignObjectElement.idl |
+++ b/core/svg/SVGForeignObjectElement.idl |
@@ -23,10 +23,11 @@ |
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
*/ |
+// http://www.w3.org/TR/SVG2/extend.html#InterfaceSVGForeignObjectElement |
+ |
interface SVGForeignObjectElement : SVGGraphicsElement { |
- readonly attribute SVGAnimatedLength x; |
- readonly attribute SVGAnimatedLength y; |
- readonly attribute SVGAnimatedLength width; |
- readonly attribute SVGAnimatedLength height; |
+ [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] readonly attribute SVGAnimatedLength x; |
+ [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] readonly attribute SVGAnimatedLength y; |
+ [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] readonly attribute SVGAnimatedLength width; |
+ [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] readonly attribute SVGAnimatedLength height; |
}; |
- |