Upstream version 5.34.104.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / html / RadioNodeList.cpp
1 /*
2  * Copyright (c) 2012 Motorola Mobility, Inc. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY MOTOROLA MOBILITY, INC. AND ITS CONTRIBUTORS
14  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
15  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL MOTOROLA MOBILITY, INC. OR ITS
17  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
20  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
21  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
22  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
23  * THE POSSIBILITY OF SUCH DAMAGE.
24  */
25
26 #include "config.h"
27 #include "core/html/RadioNodeList.h"
28
29 #include "HTMLNames.h"
30 #include "core/dom/Element.h"
31 #include "core/dom/NodeRareData.h"
32 #include "core/html/HTMLFormElement.h"
33 #include "core/html/HTMLInputElement.h"
34 #include "core/html/HTMLObjectElement.h"
35
36 namespace WebCore {
37
38 using namespace HTMLNames;
39
40 RadioNodeList::RadioNodeList(ContainerNode* rootNode, const AtomicString& name, CollectionType type)
41     : LiveNodeList(rootNode, type, InvalidateForFormControls, rootNode->hasTagName(formTag) ? NodeListIsRootedAtDocument : NodeListIsRootedAtNode)
42     , m_name(name)
43     , m_onlyMatchImgElements(type == RadioImgNodeListType)
44 {
45     ScriptWrappable::init(this);
46 }
47
48 RadioNodeList::~RadioNodeList()
49 {
50     ownerNode()->nodeLists()->removeCache(this, m_onlyMatchImgElements ? RadioImgNodeListType : RadioNodeListType, m_name);
51 }
52
53 static inline HTMLInputElement* toRadioButtonInputElement(Node* node)
54 {
55     ASSERT(node->isElementNode());
56     if (!node->hasTagName(inputTag))
57         return 0;
58     HTMLInputElement* inputElement = toHTMLInputElement(node);
59     if (!inputElement->isRadioButton() || inputElement->value().isEmpty())
60         return 0;
61     return inputElement;
62 }
63
64 String RadioNodeList::value() const
65 {
66     if (m_onlyMatchImgElements)
67         return String();
68     for (unsigned i = 0; i < length(); ++i) {
69         Node* node = item(i);
70         const HTMLInputElement* inputElement = toRadioButtonInputElement(node);
71         if (!inputElement || !inputElement->checked())
72             continue;
73         return inputElement->value();
74     }
75     return String();
76 }
77
78 void RadioNodeList::setValue(const String& value)
79 {
80     if (m_onlyMatchImgElements)
81         return;
82     for (unsigned i = 0; i < length(); ++i) {
83         Node* node = item(i);
84         HTMLInputElement* inputElement = toRadioButtonInputElement(node);
85         if (!inputElement || inputElement->value() != value)
86             continue;
87         inputElement->setChecked(true);
88         return;
89     }
90 }
91
92 bool RadioNodeList::checkElementMatchesRadioNodeListFilter(const Element& testElement) const
93 {
94     ASSERT(!m_onlyMatchImgElements);
95     ASSERT(testElement.hasTagName(objectTag) || testElement.isFormControlElement());
96     if (ownerNode()->hasTagName(formTag)) {
97         HTMLFormElement* formElement = toHTMLElement(testElement).formOwner();
98         if (!formElement || formElement != ownerNode())
99             return false;
100     }
101
102     return testElement.getIdAttribute() == m_name || testElement.getNameAttribute() == m_name;
103 }
104
105 bool RadioNodeList::nodeMatches(const Element& testElement) const
106 {
107     if (m_onlyMatchImgElements)
108         return testElement.hasTagName(imgTag);
109
110     if (!testElement.hasTagName(objectTag) && !testElement.isFormControlElement())
111         return false;
112
113     if (testElement.hasTagName(inputTag) && toHTMLInputElement(testElement).isImageButton())
114         return false;
115
116     return checkElementMatchesRadioNodeListFilter(testElement);
117 }
118
119 } // namespace
120