| Index: third_party/WebKit/Source/core/html/parser/HTMLFormattingElementList.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/parser/HTMLFormattingElementList.cpp b/third_party/WebKit/Source/core/html/parser/HTMLFormattingElementList.cpp
|
| index 6e568daa671f108790326905b21fee9fa2563666..7b5d368487a308e5489ae00e68c51d6d808be876 100644
|
| --- a/third_party/WebKit/Source/core/html/parser/HTMLFormattingElementList.cpp
|
| +++ b/third_party/WebKit/Source/core/html/parser/HTMLFormattingElementList.cpp
|
| @@ -85,7 +85,7 @@ void HTMLFormattingElementList::swapTo(Element* oldElement,
|
| return;
|
| }
|
| size_t index = bookmark.mark() - first();
|
| - ASSERT_WITH_SECURITY_IMPLICATION(index < size());
|
| + SECURITY_DCHECK(index < size());
|
| m_entries.insert(index + 1, newItem);
|
| remove(oldElement);
|
| }
|
|
|