| Index: Source/core/html/RadioNodeList.cpp
|
| diff --git a/Source/core/html/RadioNodeList.cpp b/Source/core/html/RadioNodeList.cpp
|
| index bbdce83edbfccb6961bf2d8897e26af55aabd512..59e86c9777d90497ded61dcc194e2600fce6dc86 100644
|
| --- a/Source/core/html/RadioNodeList.cpp
|
| +++ b/Source/core/html/RadioNodeList.cpp
|
| @@ -37,8 +37,8 @@ namespace WebCore {
|
|
|
| using namespace HTMLNames;
|
|
|
| -RadioNodeList::RadioNodeList(ContainerNode* rootNode, const AtomicString& name, CollectionType type)
|
| - : LiveNodeList(rootNode, type, InvalidateForFormControls, rootNode->hasTagName(formTag) ? NodeListIsRootedAtDocument : NodeListIsRootedAtNode)
|
| +RadioNodeList::RadioNodeList(ContainerNode& rootNode, const AtomicString& name, CollectionType type)
|
| + : LiveNodeList(rootNode, type, InvalidateForFormControls, rootNode.hasTagName(formTag) ? NodeListIsRootedAtDocument : NodeListIsRootedAtNode)
|
| , m_name(name)
|
| , m_onlyMatchImgElements(type == RadioImgNodeListType)
|
| {
|
|
|