Index: third_party/WebKit/Source/core/testing/InternalSettings.cpp |
diff --git a/third_party/WebKit/Source/core/testing/InternalSettings.cpp b/third_party/WebKit/Source/core/testing/InternalSettings.cpp |
index dc12dca40f28d2886bc75283822df5333c7fd8cb..db1c8d3b86c5fa8a19c2246e1067f22c07b1e7e8 100644 |
--- a/third_party/WebKit/Source/core/testing/InternalSettings.cpp |
+++ b/third_party/WebKit/Source/core/testing/InternalSettings.cpp |
@@ -316,8 +316,9 @@ void InternalSettings::setTextTrackKindUserPreference( |
userPreference = TextTrackKindUserPreference::Subtitles; |
else |
exceptionState.throwDOMException( |
- SyntaxError, "The user preference for text track kind " + preference + |
- ")' is invalid."); |
+ SyntaxError, |
+ "The user preference for text track kind " + preference + |
+ ")' is invalid."); |
settings()->setTextTrackKindUserPreference(userPreference); |
} |
@@ -347,9 +348,9 @@ void InternalSettings::setEditingBehavior(const String& editingBehavior, |
else if (equalIgnoringCase(editingBehavior, "android")) |
settings()->setEditingBehaviorType(EditingAndroidBehavior); |
else |
- exceptionState.throwDOMException( |
- SyntaxError, "The editing behavior type provided ('" + editingBehavior + |
- "') is invalid."); |
+ exceptionState.throwDOMException(SyntaxError, |
+ "The editing behavior type provided ('" + |
+ editingBehavior + "') is invalid."); |
} |
void InternalSettings::setLangAttributeAwareFormControlUIEnabled(bool enabled) { |