From ea39d1dc3b628c867bb78baddbf44e2f017e0456 Mon Sep 17 00:00:00 2001 From: eae Date: Tue, 25 Apr 2017 22:34:21 -0700 Subject: [PATCH] Change DCHECK to CHECK in LayoutListItem::UpdateListMarkerNumbers Speculative bug fix. BUG=713671 R=kojii@chromium.org Review-Url: https://codereview.chromium.org/2840613006 Cr-Commit-Position: refs/heads/master@{#467246} --- third_party/WebKit/Source/core/layout/LayoutListItem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/third_party/WebKit/Source/core/layout/LayoutListItem.cpp b/third_party/WebKit/Source/core/layout/LayoutListItem.cpp index 2c7650cb82948..b8055d1ae7d82 100644 --- a/third_party/WebKit/Source/core/layout/LayoutListItem.cpp +++ b/third_party/WebKit/Source/core/layout/LayoutListItem.cpp @@ -523,7 +523,7 @@ void LayoutListItem::UpdateListMarkerNumbers() { return; Node* list_node = EnclosingList(this); - DCHECK(list_node); + CHECK(list_node); bool is_list_reversed = false; HTMLOListElement* o_list_element = -- GitLab