| Index: third_party/WebKit/Source/core/dom/AttributeCollection.h
|
| diff --git a/third_party/WebKit/Source/core/dom/AttributeCollection.h b/third_party/WebKit/Source/core/dom/AttributeCollection.h
|
| index 6e80e61f6e6c5d68b7c1651395e0b4f19fa61341..7db3439bbdb0df95ffcdc29185bca552ac30cfc7 100644
|
| --- a/third_party/WebKit/Source/core/dom/AttributeCollection.h
|
| +++ b/third_party/WebKit/Source/core/dom/AttributeCollection.h
|
| @@ -52,7 +52,7 @@ class AttributeCollectionGeneric {
|
|
|
| ValueType& operator[](unsigned index) const { return at(index); }
|
| ValueType& at(unsigned index) const {
|
| - RELEASE_ASSERT(index < size());
|
| + CHECK_LT(index, size());
|
| return begin()[index];
|
| }
|
|
|
|
|