| Index: third_party/WebKit/Source/core/css/cssom/CSSTranslation.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/cssom/CSSTranslation.cpp b/third_party/WebKit/Source/core/css/cssom/CSSTranslation.cpp
|
| index 417242d18ecb1be30e7c7291d7271f77ffcf6413..2b045db8455c6b5738ca9929065f40c8adb5d75b 100644
|
| --- a/third_party/WebKit/Source/core/css/cssom/CSSTranslation.cpp
|
| +++ b/third_party/WebKit/Source/core/css/cssom/CSSTranslation.cpp
|
| @@ -10,10 +10,10 @@
|
|
|
| namespace blink {
|
|
|
| -CSSTranslation* CSSTranslation::create(LengthValue* x, LengthValue* y, LengthValue* z, ExceptionState& exceptionState)
|
| +CSSTranslation* CSSTranslation::create(CSSLengthValue* x, CSSLengthValue* y, CSSLengthValue* z, ExceptionState& exceptionState)
|
| {
|
| if (z->containsPercent()) {
|
| - exceptionState.throwTypeError("CSSTranslation does not support z LengthValue with percent units");
|
| + exceptionState.throwTypeError("CSSTranslation does not support z CSSLengthValue with percent units");
|
| return nullptr;
|
| }
|
| return new CSSTranslation(x, y, z);
|
|
|