Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(895)

Unified Diff: third_party/WebKit/Source/core/layout/LayoutListItem.cpp

Issue 2840613006: Change DCHECK to CHECK in LayoutListItem::UpdateListMarkerNumbers (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/layout/LayoutListItem.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutListItem.cpp b/third_party/WebKit/Source/core/layout/LayoutListItem.cpp
index 2c7650cb82948873b2ef0bb93256544c3fb67089..b8055d1ae7d82e6e6391204d6c79714d1dea7818 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 =
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698