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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/custom/V8CSSStyleDeclarationCustom.cpp

Issue 2386173002: reflow comments in Source/bindings/core/v8 (Closed)
Patch Set: Created 4 years, 2 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/bindings/core/v8/custom/V8CSSStyleDeclarationCustom.cpp
diff --git a/third_party/WebKit/Source/bindings/core/v8/custom/V8CSSStyleDeclarationCustom.cpp b/third_party/WebKit/Source/bindings/core/v8/custom/V8CSSStyleDeclarationCustom.cpp
index 09b1f59d34cea9d0f4fbbb951eb1abf3f5356259..529e7c006f3a53f44ba24e103b592c511deaf05d 100644
--- a/third_party/WebKit/Source/bindings/core/v8/custom/V8CSSStyleDeclarationCustom.cpp
+++ b/third_party/WebKit/Source/bindings/core/v8/custom/V8CSSStyleDeclarationCustom.cpp
@@ -55,7 +55,8 @@ namespace blink {
// Check for a CSS prefix.
// Passed prefix is all lowercase.
-// First character of the prefix within the property name may be upper or lowercase.
+// First character of the prefix within the property name may be upper or
+// lowercase.
// Other characters in the prefix within the property name must be lowercase.
// The prefix within the property name must be followed by a capital letter.
static bool hasCSSPropertyNamePrefix(const String& propertyName,
@@ -113,7 +114,8 @@ static CSSPropertyID parseCSSPropertyID(const String& propertyName) {
}
}
- // Reject names containing both dashes and upper-case characters, such as "border-rightColor".
+ // Reject names containing both dashes and upper-case characters, such as
+ // "border-rightColor".
if (hasSeenDash && hasSeenUpper)
return CSSPropertyInvalid;

Powered by Google App Engine
This is Rietveld 408576698