Index: Source/core/html/CollectionType.h |
diff --git a/Source/core/html/CollectionType.h b/Source/core/html/CollectionType.h |
index db7d302b992cf91477c30dc54da90192dca7ebbb..f57a0c223b94754346d1f75296b111154cd0ffc8 100644 |
--- a/Source/core/html/CollectionType.h |
+++ b/Source/core/html/CollectionType.h |
@@ -72,6 +72,11 @@ inline bool isUnnamedHTMLCollectionType(CollectionType type) |
return type < FirstNamedCollectionType; |
} |
+inline bool isHTMLCollectionType(CollectionType type) |
+{ |
+ return type < FirstLiveNodeListType; |
+} |
+ |
inline bool isLiveNodeListType(CollectionType type) |
{ |
return type >= FirstLiveNodeListType; |