Index: core/svg/SVGLineElement.idl |
diff --git a/core/svg/SVGLineElement.idl b/core/svg/SVGLineElement.idl |
index 5adea6ffa5fbbb769a656dd5f3354d036ff2d72d..db52f16622da9aeb36f623c47e6b54895451f960 100644 |
--- a/core/svg/SVGLineElement.idl |
+++ b/core/svg/SVGLineElement.idl |
@@ -23,10 +23,11 @@ |
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
*/ |
+// http://www.w3.org/TR/SVG2/shapes.html#InterfaceSVGLineElement |
+ |
interface SVGLineElement : SVGGeometryElement { |
- readonly attribute SVGAnimatedLength x1; |
- readonly attribute SVGAnimatedLength y1; |
- readonly attribute SVGAnimatedLength x2; |
- readonly attribute SVGAnimatedLength y2; |
+ [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] readonly attribute SVGAnimatedLength x1; |
+ [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] readonly attribute SVGAnimatedLength y1; |
+ [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] readonly attribute SVGAnimatedLength x2; |
+ [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] readonly attribute SVGAnimatedLength y2; |
}; |
- |