Index: Source/core/svg/SVGImageElement.idl |
diff --git a/Source/core/svg/SVGImageElement.idl b/Source/core/svg/SVGImageElement.idl |
index a659e29a06bb1a87ca012ff49933e5b803344cfc..d2a5d49bf9a45438f988f8bedd5c187babb26186 100644 |
--- a/Source/core/svg/SVGImageElement.idl |
+++ b/Source/core/svg/SVGImageElement.idl |
@@ -24,12 +24,11 @@ |
*/ |
interface SVGImageElement : SVGGraphicsElement { |
- readonly attribute SVGAnimatedLength x; |
- readonly attribute SVGAnimatedLength y; |
- readonly attribute SVGAnimatedLength width; |
- readonly attribute SVGAnimatedLength height; |
- readonly attribute SVGAnimatedPreserveAspectRatio preserveAspectRatio; |
+ [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; |
+ [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] readonly attribute SVGAnimatedPreserveAspectRatio preserveAspectRatio; |
}; |
SVGImageElement implements SVGURIReference; |
- |