| Index: Source/core/rendering/svg/RenderSVGRoot.cpp
|
| diff --git a/Source/core/rendering/svg/RenderSVGRoot.cpp b/Source/core/rendering/svg/RenderSVGRoot.cpp
|
| index a770a1610575a1e1eb5e54f71240e639ab8b5cde..af992ea674aa360edfbc077a39f085e238e3782b 100644
|
| --- a/Source/core/rendering/svg/RenderSVGRoot.cpp
|
| +++ b/Source/core/rendering/svg/RenderSVGRoot.cpp
|
| @@ -92,7 +92,7 @@ void RenderSVGRoot::computeIntrinsicRatioInformation(FloatSize& intrinsicSize, d
|
| // aspect ratio is calculated from the width and height values of the ‘viewBox’ specified for the current SVG document
|
| // fragment. If the ‘viewBox’ is not correctly specified, or set to 'none', the intrinsic aspect ratio cannot be
|
| // calculated and is considered unspecified.
|
| - intrinsicSize = svg->viewBoxCurrentValue().size();
|
| + intrinsicSize = svg->viewBox()->currentValue()->value().size();
|
| if (!intrinsicSize.isEmpty()) {
|
| // The viewBox can only yield an intrinsic ratio, not an intrinsic size.
|
| intrinsicRatio = intrinsicSize.width() / static_cast<double>(intrinsicSize.height());
|
|
|