| Index: third_party/WebKit/Source/core/html/HTMLAnchorElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLAnchorElement.cpp b/third_party/WebKit/Source/core/html/HTMLAnchorElement.cpp
|
| index 4e9e4a4d5458aa722f5c8017882623d2d04d84ac..eafc7bd93c69f5eb24eac96b254285d742d39943 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLAnchorElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLAnchorElement.cpp
|
| @@ -177,7 +177,7 @@ bool HTMLAnchorElement::isMouseFocusable() const
|
|
|
| bool HTMLAnchorElement::isKeyboardFocusable() const
|
| {
|
| - ASSERT(document().isActive());
|
| + DCHECK(document().isActive());
|
|
|
| if (isFocusable() && Element::supportsFocus())
|
| return HTMLElement::isKeyboardFocusable();
|
| @@ -192,9 +192,9 @@ static void appendServerMapMousePosition(StringBuilder& url, Event* event)
|
| if (!event->isMouseEvent())
|
| return;
|
|
|
| - ASSERT(event->target());
|
| + DCHECK(event->target());
|
| Node* target = event->target()->toNode();
|
| - ASSERT(target);
|
| + DCHECK(target);
|
| if (!isHTMLImageElement(*target))
|
| return;
|
|
|
|
|