| Index: Source/core/dom/DOMURL.cpp
|
| diff --git a/Source/core/dom/DOMURL.cpp b/Source/core/dom/DOMURL.cpp
|
| index a61485e96a0d6a7af999cf0be9e19b27d0b1f46e..8881223f72445c4d4933110e6246154d56d8229f 100644
|
| --- a/Source/core/dom/DOMURL.cpp
|
| +++ b/Source/core/dom/DOMURL.cpp
|
| @@ -44,11 +44,11 @@ DOMURL::DOMURL(const String& url, const KURL& base, ExceptionState& exceptionSta
|
| {
|
| ScriptWrappable::init(this);
|
| if (!base.isValid())
|
| - exceptionState.throwDOMException(SyntaxError, ExceptionMessages::failedToConstruct("URL", "Invalid base URL"));
|
| + exceptionState.throwDOMException(SyntaxError, "Invalid base URL");
|
|
|
| m_url = KURL(base, url);
|
| if (!m_url.isValid())
|
| - exceptionState.throwDOMException(SyntaxError, ExceptionMessages::failedToConstruct("URL", "Invalid URL"));
|
| + exceptionState.throwDOMException(SyntaxError, "Invalid URL");
|
| }
|
|
|
| void DOMURL::setInput(const String& value)
|
|
|