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

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

Issue 20294002: Fix trailing whitespace in .cpp, .h, and .idl files (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 7 years, 5 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
« no previous file with comments | « Source/core/html/HTMLMarqueeElement.h ('k') | Source/core/html/HTMLMarqueeElement.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLMarqueeElement.cpp
diff --git a/Source/core/html/HTMLMarqueeElement.cpp b/Source/core/html/HTMLMarqueeElement.cpp
index 6c5362c273a39e4a5fabb46a90361edd0fd5561f..ccd1f12cb6c990184f8885daf696f894572ec797 100644
--- a/Source/core/html/HTMLMarqueeElement.cpp
+++ b/Source/core/html/HTMLMarqueeElement.cpp
@@ -126,7 +126,7 @@ int HTMLMarqueeElement::scrollAmount() const
int scrollAmount = fastGetAttribute(scrollamountAttr).toInt(&ok);
return ok && scrollAmount >= 0 ? scrollAmount : RenderStyle::initialMarqueeIncrement().intValue();
}
-
+
void HTMLMarqueeElement::setScrollAmount(int scrollAmount, ExceptionCode& ec)
{
if (scrollAmount < 0)
@@ -134,7 +134,7 @@ void HTMLMarqueeElement::setScrollAmount(int scrollAmount, ExceptionCode& ec)
else
setIntegralAttribute(scrollamountAttr, scrollAmount);
}
-
+
int HTMLMarqueeElement::scrollDelay() const
{
bool ok;
@@ -149,14 +149,14 @@ void HTMLMarqueeElement::setScrollDelay(int scrollDelay, ExceptionCode& ec)
else
setIntegralAttribute(scrolldelayAttr, scrollDelay);
}
-
+
int HTMLMarqueeElement::loop() const
{
bool ok;
int loopValue = fastGetAttribute(loopAttr).toInt(&ok);
return ok && loopValue > 0 ? loopValue : -1;
}
-
+
void HTMLMarqueeElement::setLoop(int loop, ExceptionCode& ec)
{
if (loop <= 0 && loop != -1)
« no previous file with comments | « Source/core/html/HTMLMarqueeElement.h ('k') | Source/core/html/HTMLMarqueeElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698