| Index: Source/core/svg/SVGLineElement.cpp
|
| diff --git a/Source/core/svg/SVGLineElement.cpp b/Source/core/svg/SVGLineElement.cpp
|
| index 6f50d201ea16eae65841b0aef3b29b6b9206d45a..715f8affdfa94ee14657b287f2dace1e64d8c91e 100644
|
| --- a/Source/core/svg/SVGLineElement.cpp
|
| +++ b/Source/core/svg/SVGLineElement.cpp
|
| @@ -135,10 +135,10 @@ void SVGLineElement::svgAttributeChanged(const QualifiedName& attrName)
|
|
|
| bool SVGLineElement::selfHasRelativeLengths() const
|
| {
|
| - return x1().isRelative()
|
| - || y1().isRelative()
|
| - || x2().isRelative()
|
| - || y2().isRelative();
|
| + return x1CurrentValue().isRelative()
|
| + || y1CurrentValue().isRelative()
|
| + || x2CurrentValue().isRelative()
|
| + || y2CurrentValue().isRelative();
|
| }
|
|
|
| }
|
|
|