| Index: third_party/WebKit/Source/core/html/HTMLMarqueeElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLMarqueeElement.cpp b/third_party/WebKit/Source/core/html/HTMLMarqueeElement.cpp
|
| index 8b1945ea8e347756a51cd36bc2f1e06cae294f16..3bb5b162093d1599bc24bf5e9ecb87bc61f581ed 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLMarqueeElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLMarqueeElement.cpp
|
| @@ -192,9 +192,10 @@ int HTMLMarqueeElement::loop() const {
|
|
|
| void HTMLMarqueeElement::setLoop(int value, ExceptionState& exceptionState) {
|
| if (value <= 0 && value != -1) {
|
| - exceptionState.throwDOMException(
|
| - IndexSizeError, "The provided value (" + String::number(value) +
|
| - ") is neither positive nor -1.");
|
| + exceptionState.throwDOMException(IndexSizeError,
|
| + "The provided value (" +
|
| + String::number(value) +
|
| + ") is neither positive nor -1.");
|
| return;
|
| }
|
| setIntegralAttribute(HTMLNames::loopAttr, value);
|
|
|