Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / html / HTMLContentElement.cpp
1 /*
2  * Copyright (C) 2011 Google 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 are
6  * met:
7  *
8  *     * Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  *     * Neither the name of Google Inc. nor the names of its
11  * contributors may be used to endorse or promote products derived from
12  * this software without specific prior written permission.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
15  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
16  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
17  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
18  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
19  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
20  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
24  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25  */
26
27 #include "config.h"
28 #include "core/html/HTMLContentElement.h"
29
30 #include "HTMLNames.h"
31 #include "RuntimeEnabledFeatures.h"
32 #include "core/css/SelectorChecker.h"
33 #include "core/css/SiblingTraversalStrategies.h"
34 #include "core/css/parser/BisonCSSParser.h"
35 #include "core/dom/QualifiedName.h"
36 #include "core/dom/shadow/ElementShadow.h"
37 #include "core/dom/shadow/ShadowRoot.h"
38
39 namespace WebCore {
40
41 using namespace HTMLNames;
42
43 PassRefPtrWillBeRawPtr<HTMLContentElement> HTMLContentElement::create(Document& document)
44 {
45     return adoptRefWillBeRefCountedGarbageCollected(new HTMLContentElement(document));
46 }
47
48 HTMLContentElement::HTMLContentElement(Document& document)
49     : InsertionPoint(contentTag, document)
50     , m_shouldParseSelect(false)
51     , m_isValidSelector(true)
52 {
53     ScriptWrappable::init(this);
54 }
55
56 HTMLContentElement::~HTMLContentElement()
57 {
58 }
59
60 void HTMLContentElement::parseSelect()
61 {
62     ASSERT(m_shouldParseSelect);
63
64     BisonCSSParser parser(CSSParserContext(document(), 0));
65     parser.parseSelector(m_select, m_selectorList);
66     m_shouldParseSelect = false;
67     m_isValidSelector = validateSelect();
68     if (!m_isValidSelector) {
69         CSSSelectorList emptyList;
70         m_selectorList.adopt(emptyList);
71     }
72 }
73
74 void HTMLContentElement::parseAttribute(const QualifiedName& name, const AtomicString& value)
75 {
76     if (name == selectAttr) {
77         if (ShadowRoot* root = containingShadowRoot())
78             root->owner()->willAffectSelector();
79         m_shouldParseSelect = true;
80         m_select = value;
81     } else {
82         InsertionPoint::parseAttribute(name, value);
83     }
84 }
85
86 bool HTMLContentElement::validateSelect() const
87 {
88     ASSERT(!m_shouldParseSelect);
89
90     if (m_select.isNull() || m_select.isEmpty())
91         return true;
92
93     if (!m_selectorList.isValid())
94         return false;
95
96     bool disallowPseudoClasses = !RuntimeEnabledFeatures::pseudoClassesInMatchingCriteriaInAuthorShadowTreesEnabled() && containingShadowRoot() && containingShadowRoot()->type() == ShadowRoot::AuthorShadowRoot;
97
98     for (const CSSSelector* selector = m_selectorList.first(); selector; selector = m_selectorList.next(*selector)) {
99         if (!selector->isCompound())
100             return false;
101         if (!disallowPseudoClasses)
102             continue;
103         for (const CSSSelector* subSelector = selector; subSelector; subSelector = subSelector->tagHistory()) {
104             if (subSelector->m_match == CSSSelector::PseudoClass)
105                 return false;
106         }
107     }
108     return true;
109 }
110
111 static inline bool checkOneSelector(const CSSSelector& selector, const Vector<Node*, 32>& siblings, int nth)
112 {
113     Element* element = toElement(siblings[nth]);
114     SelectorChecker selectorChecker(element->document(), SelectorChecker::CollectingCSSRules);
115     SelectorChecker::SelectorCheckingContext context(selector, element, SelectorChecker::VisitedMatchEnabled);
116     ShadowDOMSiblingTraversalStrategy strategy(siblings, nth);
117     return selectorChecker.match(context, strategy) == SelectorChecker::SelectorMatches;
118 }
119
120 bool HTMLContentElement::matchSelector(const Vector<Node*, 32>& siblings, int nth) const
121 {
122     for (const CSSSelector* selector = selectorList().first(); selector; selector = CSSSelectorList::next(*selector)) {
123         if (checkOneSelector(*selector, siblings, nth))
124             return true;
125     }
126     return false;
127 }
128
129 }