| Index: third_party/WebKit/Source/core/frame/ImageBitmap.cpp
|
| diff --git a/third_party/WebKit/Source/core/frame/ImageBitmap.cpp b/third_party/WebKit/Source/core/frame/ImageBitmap.cpp
|
| index 8665008fa049bf7335bb535c6e007d45884ed166..6722e752c0f30ab0f907bc6371adb26949100044 100644
|
| --- a/third_party/WebKit/Source/core/frame/ImageBitmap.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/ImageBitmap.cpp
|
| @@ -432,8 +432,9 @@ bool ImageBitmap::isSourceSizeValid(int sourceWidth,
|
| ExceptionState& exceptionState) {
|
| if (!sourceWidth || !sourceHeight) {
|
| exceptionState.throwDOMException(
|
| - IndexSizeError, String::format("The source %s provided is 0.",
|
| - sourceWidth ? "height" : "width"));
|
| + IndexSizeError,
|
| + String::format("The source %s provided is 0.",
|
| + sourceWidth ? "height" : "width"));
|
| return false;
|
| }
|
| return true;
|
|
|