Index: third_party/WebKit/Source/core/dom/Text.cpp |
diff --git a/third_party/WebKit/Source/core/dom/Text.cpp b/third_party/WebKit/Source/core/dom/Text.cpp |
index 7ab8e0701db4a629bac56af380740335743a2f07..e67029bc8b55699710d78cca6c44580a6b6ba194 100644 |
--- a/third_party/WebKit/Source/core/dom/Text.cpp |
+++ b/third_party/WebKit/Source/core/dom/Text.cpp |
@@ -105,8 +105,9 @@ Text* Text::splitText(unsigned offset, ExceptionState& exceptionState) { |
// the number of 16-bit units in data. |
if (offset > length()) { |
exceptionState.throwDOMException( |
- IndexSizeError, "The offset " + String::number(offset) + |
- " is larger than the Text node's length."); |
+ IndexSizeError, |
+ "The offset " + String::number(offset) + |
+ " is larger than the Text node's length."); |
return nullptr; |
} |