| Index: Source/core/css/CSSMatrix.cpp
 | 
| diff --git a/Source/core/css/CSSMatrix.cpp b/Source/core/css/CSSMatrix.cpp
 | 
| index 7866dd968f70091616836ce5ce2897b6741ace07..386acb724c3b996dce51facf6756d375c091ed06 100644
 | 
| --- a/Source/core/css/CSSMatrix.cpp
 | 
| +++ b/Source/core/css/CSSMatrix.cpp
 | 
| @@ -78,7 +78,7 @@ void CSSMatrix::setMatrixValue(const String& string, ExceptionState& es)
 | 
|          // if a param has a percentage ('%')
 | 
|          TransformationMatrix t;
 | 
|          for (unsigned i = 0; i < operations.operations().size(); ++i) {
 | 
| -            if (operations.operations()[i].get()->apply(t, IntSize(0, 0))) {
 | 
| +            if (operations.operations()[i].get()->apply(t, IntSize(0, 0), 0)) {
 | 
|                  es.throwDOMException(SyntaxError);
 | 
|                  return;
 | 
|              }
 | 
| 
 |