| Index: third_party/WebKit/Source/core/css/CSSMatrix.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/CSSMatrix.cpp b/third_party/WebKit/Source/core/css/CSSMatrix.cpp
|
| index e1011aed50e631924b2e7b6eb8f59c7349c53183..62801770bf39e5a01e2ab5fd65197f260fe4cbae 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSMatrix.cpp
|
| +++ b/third_party/WebKit/Source/core/css/CSSMatrix.cpp
|
| @@ -34,6 +34,7 @@
|
| #include "core/css/resolver/TransformBuilder.h"
|
| #include "core/dom/ExceptionCode.h"
|
| #include "core/frame/UseCounter.h"
|
| +#include "core/layout/api/LayoutViewItem.h"
|
| #include "core/style/ComputedStyle.h"
|
| #include "core/style/StyleInheritedData.h"
|
| #include "wtf/MathExtras.h"
|
| @@ -76,7 +77,7 @@ void CSSMatrix::setMatrixValue(const String& string, ExceptionState& exceptionSt
|
|
|
| DEFINE_STATIC_REF(ComputedStyle, initialStyle, createInitialStyle());
|
| TransformOperations operations;
|
| - TransformBuilder::createTransformOperations(*value, CSSToLengthConversionData(initialStyle, initialStyle, nullptr, 1.0f), operations);
|
| + TransformBuilder::createTransformOperations(*value, CSSToLengthConversionData(initialStyle, initialStyle, LayoutViewItem(nullptr), 1.0f), operations);
|
|
|
| // Convert transform operations to a TransformationMatrix. This can fail
|
| // if a param has a percentage ('%')
|
|
|