Index: Source/core/svg/SVGLineElement.idl |
diff --git a/Source/core/svg/SVGLineElement.idl b/Source/core/svg/SVGLineElement.idl |
index 5adea6ffa5fbbb769a656dd5f3354d036ff2d72d..d76508e087b6e00b873bdb93affedf9a408b6138 100644 |
--- a/Source/core/svg/SVGLineElement.idl |
+++ b/Source/core/svg/SVGLineElement.idl |
@@ -24,9 +24,8 @@ |
*/ |
interface SVGLineElement : SVGGeometryElement { |
- readonly attribute SVGAnimatedLength x1; |
- readonly attribute SVGAnimatedLength y1; |
- readonly attribute SVGAnimatedLength x2; |
- readonly attribute SVGAnimatedLength y2; |
+ [RuntimeEnabled=SVG1DOM] readonly attribute SVGAnimatedLength x1; |
+ [RuntimeEnabled=SVG1DOM] readonly attribute SVGAnimatedLength y1; |
+ [RuntimeEnabled=SVG1DOM] readonly attribute SVGAnimatedLength x2; |
+ [RuntimeEnabled=SVG1DOM] readonly attribute SVGAnimatedLength y2; |
}; |
- |