| Index: Source/core/html/CollectionType.h
|
| diff --git a/Source/core/html/CollectionType.h b/Source/core/html/CollectionType.h
|
| index df65cadbc9010bb9f1c700a1e265261d3759a52d..d63a3bc55a20381c6d0f913a97431f29868e65b6 100644
|
| --- a/Source/core/html/CollectionType.h
|
| +++ b/Source/core/html/CollectionType.h
|
| @@ -63,11 +63,11 @@ enum CollectionType {
|
| LabelsNodeListType,
|
| };
|
|
|
| -static const CollectionType FirstNodeListType = ChildNodeListType;
|
| +static const CollectionType FirstLiveNodeListType = ChildNodeListType;
|
|
|
| -inline bool isNodeList(CollectionType type)
|
| +inline bool isLiveNodeListType(CollectionType type)
|
| {
|
| - return type >= FirstNodeListType;
|
| + return type >= FirstLiveNodeListType;
|
| }
|
|
|
| } // namespace
|
|
|