Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(323)

Unified Diff: third_party/WebKit/Source/core/html/HTMLMarqueeElement.cpp

Issue 2701993002: DO NOT COMMIT: Results of running new (proposed) clang-format on Blink (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLLabelElement.cpp ('k') | third_party/WebKit/Source/core/html/HTMLOptionElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698