| Index: third_party/WebKit/Source/core/html/HTMLMapElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLMapElement.cpp b/third_party/WebKit/Source/core/html/HTMLMapElement.cpp
|
| index d7b9ffbd9a77c4dc3f71e2ff414335af52e35919..b6f695ef5f398ff902417848c62dc559d2b7d8d5 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLMapElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLMapElement.cpp
|
| @@ -64,7 +64,7 @@ HTMLImageElement* HTMLMapElement::imageElement()
|
| {
|
| HTMLCollection* images = document().images();
|
| for (unsigned i = 0; Element* curr = images->item(i); ++i) {
|
| - ASSERT(isHTMLImageElement(curr));
|
| + DCHECK(isHTMLImageElement(curr));
|
|
|
| // The HTMLImageElement's useMap() value includes the '#' symbol at the beginning,
|
| // which has to be stripped off.
|
|
|