| 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 c240e1998e0bf5b566cdf44c52201cda3a3c5bf2..156510a5f2e8d2facaafde94cb81cb3980e6a8a0 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSMatrix.cpp
|
| +++ b/third_party/WebKit/Source/core/css/CSSMatrix.cpp
|
| @@ -70,7 +70,8 @@ void CSSMatrix::setMatrixValue(const String& string,
|
|
|
| if (const CSSValue* value =
|
| CSSParser::parseSingleValue(CSSPropertyTransform, string)) {
|
| - // Check for a "none" transform. In these cases we can use the default identity matrix.
|
| + // Check for a "none" transform. In these cases we can use the default
|
| + // identity matrix.
|
| if (value->isIdentifierValue() &&
|
| (toCSSIdentifierValue(value))->getValueID() == CSSValueNone)
|
| return;
|
| @@ -186,7 +187,8 @@ CSSMatrix* CSSMatrix::skewY(double angle) const {
|
| }
|
|
|
| String CSSMatrix::toString() const {
|
| - // FIXME - Need to ensure valid CSS floating point values (https://bugs.webkit.org/show_bug.cgi?id=20674)
|
| + // FIXME - Need to ensure valid CSS floating point values
|
| + // (https://bugs.webkit.org/show_bug.cgi?id=20674)
|
| if (m_matrix->isAffine())
|
| return String::format("matrix(%f, %f, %f, %f, %f, %f)", m_matrix->a(),
|
| m_matrix->b(), m_matrix->c(), m_matrix->d(),
|
|
|