| Index: Source/core/editing/markup.cpp
|
| diff --git a/Source/core/editing/markup.cpp b/Source/core/editing/markup.cpp
|
| index 36dac2404c431158a0502ec315a0f2162bb6be86..7e0f8074103de22e72b93d1514747bc8cf0aedb2 100644
|
| --- a/Source/core/editing/markup.cpp
|
| +++ b/Source/core/editing/markup.cpp
|
| @@ -752,7 +752,7 @@ static void fillContainerFromString(ContainerNode* paragraph, const String& stri
|
| return;
|
| }
|
|
|
| - ASSERT(string.find('\n') == notFound);
|
| + ASSERT(string.find('\n') == kNotFound);
|
|
|
| Vector<String> tabList;
|
| string.split('\t', true, tabList);
|
| @@ -835,7 +835,7 @@ PassRefPtr<DocumentFragment> createFragmentFromText(Range* context, const String
|
| }
|
|
|
| // A string with no newlines gets added inline, rather than being put into a paragraph.
|
| - if (string.find('\n') == notFound) {
|
| + if (string.find('\n') == kNotFound) {
|
| fillContainerFromString(fragment.get(), string);
|
| return fragment.release();
|
| }
|
|
|