| Index: third_party/WebKit/Source/core/dom/DOMImplementation.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/DOMImplementation.cpp b/third_party/WebKit/Source/core/dom/DOMImplementation.cpp
|
| index 4275e9dc030234312b2a84c7a69fe89652506aee..cd82533489e4fca2f77587bbc5ebe4d819e27721 100644
|
| --- a/third_party/WebKit/Source/core/dom/DOMImplementation.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/DOMImplementation.cpp
|
| @@ -205,7 +205,7 @@ RawPtr<HTMLDocument> DOMImplementation::createHTMLDocument(const String& title)
|
| d->write("<!doctype html><html><head></head><body></body></html>");
|
| if (!title.isNull()) {
|
| HTMLHeadElement* headElement = d->head();
|
| - ASSERT(headElement);
|
| + DCHECK(headElement);
|
| RawPtr<HTMLTitleElement> titleElement = HTMLTitleElement::create(*d);
|
| headElement->appendChild(titleElement);
|
| titleElement->appendChild(d->createTextNode(title), ASSERT_NO_EXCEPTION);
|
|
|