[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

hayato at chromium.org hayato at chromium.org
Wed Dec 22 14:45:06 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit a45a3aecd15e94f8a9dddc1feac760a1a38ac79a
Author: hayato at chromium.org <hayato at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Oct 19 08:57:14 2010 +0000

    2010-10-19  Hayato Ito  <hayato at chromium.org>
    
            Reviewed by Darin Adler.
    
            Make CSS style selector non-recursive.
            https://bugs.webkit.org/show_bug.cgi?id=43783
    
            This change is one of the required changes to fix the following master bug:
            https://bugs.webkit.org/show_bug.cgi?id=42806
    
            To avoid recursion, we prepare a call stack and maintain a list of
            function call state by ourselves and try matching iteratively.
    
            * fast/css/long-css-selector-matches-expected.txt: Added.
            * fast/css/long-css-selector-matches.html: Added.
    2010-10-19  Hayato Ito  <hayato at chromium.org>
    
            Reviewed by Darin Adler.
    
            Make CSS style selector non-recursive.
            https://bugs.webkit.org/show_bug.cgi?id=43783
    
            This change is one of the required changes to fix the following master bug:
            https://bugs.webkit.org/show_bug.cgi?id=42806
    
            To avoid recursion, we prepare a call stack and maintain a list of
            function call state by ourselves and try matching iteratively.
    
            Test: fast/css/long-css-selector-matches.html
    
            * css/CSSStyleSelector.cpp:
            (WebCore::CSSStyleSelector::SelectorChecker::checkSelector):
            (WebCore::CSSStyleSelector::checkSelector):
            * css/CSSStyleSelector.h:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@70040 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog
index 51d03a3..b942de0 100644
--- a/LayoutTests/ChangeLog
+++ b/LayoutTests/ChangeLog
@@ -1,3 +1,19 @@
+2010-10-19  Hayato Ito  <hayato at chromium.org>
+
+        Reviewed by Darin Adler.
+
+        Make CSS style selector non-recursive.
+        https://bugs.webkit.org/show_bug.cgi?id=43783
+
+        This change is one of the required changes to fix the following master bug:
+        https://bugs.webkit.org/show_bug.cgi?id=42806
+
+        To avoid recursion, we prepare a call stack and maintain a list of
+        function call state by ourselves and try matching iteratively.
+
+        * fast/css/long-css-selector-matches-expected.txt: Added.
+        * fast/css/long-css-selector-matches.html: Added.
+
 2010-10-19  Sergio Villar Senín  <svillar at igalia.com>
 
         Reviewed by Xan Lopez.
diff --git a/LayoutTests/fast/css/long-css-selector-matches-expected.txt b/LayoutTests/fast/css/long-css-selector-matches-expected.txt
new file mode 100644
index 0000000..a16616b
--- /dev/null
+++ b/LayoutTests/fast/css/long-css-selector-matches-expected.txt
@@ -0,0 +1,4 @@
+Hello World
+Test case for http://bugs.webkit.org/show_bug.cgi?id=43783
+
+If browser didn't crash, the test passed.
diff --git a/LayoutTests/fast/css/long-css-selector-matches.html b/LayoutTests/fast/css/long-css-selector-matches.html
new file mode 100644
index 0000000..8f59bb8
--- /dev/null
+++ b/LayoutTests/fast/css/long-css-selector-matches.html
@@ -0,0 +1,40 @@
+<html>
+<head></head>
+<body>
+<script>
+function generate_deeply_nested_selector(nestlevel, color) {
+    var selector = []
+    for (var i = 0; i < nestlevel; ++i) {
+        selector.push('#id' + i + ' + \n');
+    }
+    selector.push('* {background:' + color + '}');
+
+    var style = document.createElement('style');
+    style.type = 'text/css';
+    style.innerHTML = selector.join('');
+    document.head.appendChild(style);
+}
+
+function generate_deeply_nested_elements(nestlevel) {
+    var text = [];
+    for (var i = 0; i < nestlevel; ++i) {
+        text.push('<div id=id' + i + '></div>\n');
+    }
+    text.push('<div>Hello World</div>');
+    var div = document.createElement('div')
+    div.innerHTML = text.join('');
+    document.body.appendChild(div);
+}
+
+generate_deeply_nested_selector(10000, 'red');
+generate_deeply_nested_selector(10000, 'blue');
+
+generate_deeply_nested_elements(10000);
+
+if (window.layoutTestController)
+    layoutTestController.dumpAsText();
+</script>
+<p>Test case for <a href="http://bugs.webkit.org/show_bug.cgi?id=43783">http://bugs.webkit.org/show_bug.cgi?id=43783</a></p>
+<p>If browser didn't crash, the test passed.</p>
+</body>
+</html>
diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 5953e92..37bac81 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,23 @@
+2010-10-19  Hayato Ito  <hayato at chromium.org>
+
+        Reviewed by Darin Adler.
+
+        Make CSS style selector non-recursive.
+        https://bugs.webkit.org/show_bug.cgi?id=43783
+
+        This change is one of the required changes to fix the following master bug:
+        https://bugs.webkit.org/show_bug.cgi?id=42806
+
+        To avoid recursion, we prepare a call stack and maintain a list of
+        function call state by ourselves and try matching iteratively.
+
+        Test: fast/css/long-css-selector-matches.html
+
+        * css/CSSStyleSelector.cpp:
+        (WebCore::CSSStyleSelector::SelectorChecker::checkSelector):
+        (WebCore::CSSStyleSelector::checkSelector):
+        * css/CSSStyleSelector.h:
+
 2010-10-19  Sheriff Bot  <webkit.review.bot at gmail.com>
 
         Unreviewed, rolling out r70034.
diff --git a/WebCore/css/CSSStyleSelector.cpp b/WebCore/css/CSSStyleSelector.cpp
index 9a089af..1c5b368 100644
--- a/WebCore/css/CSSStyleSelector.cpp
+++ b/WebCore/css/CSSStyleSelector.cpp
@@ -939,7 +939,7 @@ EInsideLink CSSStyleSelector::SelectorChecker::determineLinkStateSlowCase(Elemen
 bool CSSStyleSelector::SelectorChecker::checkSelector(CSSSelector* sel, Element* element) const
 {
     PseudoId dynamicPseudo = NOPSEUDO;
-    return checkSelector(sel, element, 0, dynamicPseudo, false, false) == SelectorMatches;
+    return checkSelector(sel, element, 0, dynamicPseudo, false, false);
 }
 
 static const unsigned cStyleSearchThreshold = 10;
@@ -1909,8 +1909,7 @@ bool CSSStyleSelector::checkSelector(CSSSelector* sel)
     m_dynamicPseudo = NOPSEUDO;
 
     // Check the selector
-    SelectorMatch match = m_checker.checkSelector(sel, m_element, &m_selectorAttrs, m_dynamicPseudo, false, false, style(), m_parentNode ? m_parentNode->renderStyle() : 0);
-    if (match != SelectorMatches)
+    if (!m_checker.checkSelector(sel, m_element, &m_selectorAttrs, m_dynamicPseudo, false, false, style(), m_parentNode ? m_parentNode->renderStyle() : 0))
         return false;
 
     if (m_checker.m_pseudoStyle != NOPSEUDO && m_checker.m_pseudoStyle != m_dynamicPseudo)
@@ -1919,114 +1918,220 @@ bool CSSStyleSelector::checkSelector(CSSSelector* sel)
     return true;
 }
 
-// Recursive check of selectors and combinators
-// It can return 3 different values:
-// * SelectorMatches         - the selector matches the element e
-// * SelectorFailsLocally    - the selector fails for the element e
-// * SelectorFailsCompletely - the selector fails for e and any sibling or ancestor of e
-CSSStyleSelector::SelectorMatch CSSStyleSelector::SelectorChecker::checkSelector(CSSSelector* sel, Element* e, HashSet<AtomicStringImpl*>* selectorAttrs, PseudoId& dynamicPseudo, bool isSubSelector, bool encounteredLink, RenderStyle* elementStyle, RenderStyle* elementParentStyle) const
+namespace {
+
+// Internally used from CSSStyleSelector::SelectorChecker::checkSelector.
+struct CallState {
+    enum State {
+        SeekingDescendant, SeekingIndirectAdjacent,
+    };
+
+    State state;
+    CSSSelector* selector;
+    Element* element;
+    bool isSubSelector;
+    bool encounteredLink;
+    RenderStyle* elementStyle;
+    RenderStyle* elementParentStyle;
+
+    CallState(State state, CSSSelector* selector, Element* element, bool isSubSelector, bool encounteredLink, RenderStyle* elementStyle, RenderStyle* elementParentStyle)
+        : state(state)
+        , selector(selector)
+        , element(element)
+        , isSubSelector(isSubSelector)
+        , encounteredLink(encounteredLink)
+        , elementStyle(elementStyle)
+        , elementParentStyle(elementParentStyle)
+    {
+    }
+};
+
+class CallStack {
+public:
+    bool isEmpty() const
+    {
+        return m_stack.isEmpty();
+    }
+
+    void push(const CallState& state)
+    {
+        m_stack.append(state);
+    }
+
+    CallState pop()
+    {
+        ASSERT(!isEmpty());
+        CallState state = m_stack.last();
+        m_stack.removeLast();
+        return state;
+    }
+
+private:
+    Vector<CallState, 20> m_stack;
+};
+
+} // anonymous namespace
+
+// Check selectors and combinators.
+bool CSSStyleSelector::SelectorChecker::checkSelector(CSSSelector* selector, Element* element, HashSet<AtomicStringImpl*>* selectorAttrs, PseudoId& dynamicPseudo, bool isSubSelector, bool encounteredLink, RenderStyle* elementStyle, RenderStyle* elementParentStyle) const
 {
+    // We should avoid recursive calls, which might cause stack overflow if the chain of selector is very long.
+    // Therefore we have to maintain a call stack by ourselves so that we can check selectors iteratively.
+    CallStack callStack;
+    while (true) {
 #if ENABLE(SVG)
-    // Spec: CSS2 selectors cannot be applied to the (conceptually) cloned DOM tree
-    // because its contents are not part of the formal document structure.
-    if (e->isSVGElement() && e->isShadowNode())
-        return SelectorFailsCompletely;
+        // Spec: CSS2 selectors cannot be applied to the (conceptually) cloned DOM tree
+        // because its contents are not part of the formal document structure.
+        if (element->isSVGElement() && element->isShadowNode())
+            return false;
 #endif
+        // first selector has to match
+        bool matched = checkOneSelector(selector, element, selectorAttrs, dynamicPseudo, isSubSelector, elementStyle, elementParentStyle);
+        bool needUnwinding = !matched;
 
-    // first selector has to match
-    if (!checkOneSelector(sel, e, selectorAttrs, dynamicPseudo, isSubSelector, elementStyle, elementParentStyle))
-        return SelectorFailsLocally;
-
-    // The rest of the selectors has to match
-    CSSSelector::Relation relation = sel->relation();
-
-    // Prepare next sel
-    sel = sel->tagHistory();
-    if (!sel)
-        return SelectorMatches;
-
-    if (relation != CSSSelector::SubSelector)
-        // Bail-out if this selector is irrelevant for the pseudoStyle
-        if (m_pseudoStyle != NOPSEUDO && m_pseudoStyle != dynamicPseudo)
-            return SelectorFailsCompletely;
-
-    // Check for nested links.
-    if (m_matchVisitedPseudoClass && !isSubSelector) {
-        RenderStyle* currentStyle = elementStyle ? elementStyle : e->renderStyle();
-        if (currentStyle && currentStyle->insideLink() && e->isLink()) {
-            if (encounteredLink)
-                m_matchVisitedPseudoClass = false; // This link is not relevant to the style being resolved, so disable matching.
-            else
-                encounteredLink = true;
-        }
-    }
+        if (matched) {
+            // The rest of the selectors has to match
+            CSSSelector::Relation relation = selector->relation();
 
-    switch (relation) {
-        case CSSSelector::Descendant:
-            while (true) {
-                ContainerNode* n = e->parentNode();
-                if (!n || !n->isElementNode())
-                    return SelectorFailsCompletely;
-                e = static_cast<Element*>(n);
-                SelectorMatch match = checkSelector(sel, e, selectorAttrs, dynamicPseudo, false, encounteredLink);
-                if (match != SelectorFailsLocally)
-                    return match;
+            // Prepare next sel
+            selector = selector->tagHistory();
+            if (!selector)
+                return true;
+
+            if (relation != CSSSelector::SubSelector)
+                // Bail-out if this selector is irrelevant for the pseudoStyle
+                if (m_pseudoStyle != NOPSEUDO && m_pseudoStyle != dynamicPseudo)
+                    return false;
+
+            // Check for nested links.
+            if (m_matchVisitedPseudoClass && !isSubSelector) {
+                RenderStyle* currentStyle = elementStyle ? elementStyle : element->renderStyle();
+                if (currentStyle && currentStyle->insideLink() && element->isLink()) {
+                    if (encounteredLink)
+                        m_matchVisitedPseudoClass = false; // This link is not relevant to the style being resolved, so disable matching.
+                    else
+                        encounteredLink = true;
+                }
             }
-            break;
-        case CSSSelector::Child:
-        {
-            ContainerNode* n = e->parentNode();
-            if (!n || !n->isElementNode())
-                return SelectorFailsCompletely;
-            e = static_cast<Element*>(n);
-            return checkSelector(sel, e, selectorAttrs, dynamicPseudo, false, encounteredLink);
-        }
-        case CSSSelector::DirectAdjacent:
-        {
-            if (!m_collectRulesOnly && e->parentNode() && e->parentNode()->isElementNode()) {
-                RenderStyle* parentStyle = elementStyle ? elementParentStyle : e->parentNode()->renderStyle();
-                if (parentStyle)
-                    parentStyle->setChildrenAffectedByDirectAdjacentRules();
+
+            switch (relation) {
+            case CSSSelector::Descendant: {
+                ContainerNode* node = element->parentNode();
+                if (!node || !node->isElementNode())
+                    return false;
+                element = static_cast<Element*>(node);
+                callStack.push(CallState(CallState::SeekingDescendant, selector, element, isSubSelector, encounteredLink, elementStyle, elementParentStyle));
+                isSubSelector = false;
+                elementStyle = 0;
+                elementParentStyle = 0;
+                break;
             }
-            Node* n = e->previousSibling();
-            while (n && !n->isElementNode())
-                n = n->previousSibling();
-            if (!n)
-                return SelectorFailsLocally;
-            e = static_cast<Element*>(n);
-            m_matchVisitedPseudoClass = false;
-            return checkSelector(sel, e, selectorAttrs, dynamicPseudo, false, encounteredLink); 
-        }
-        case CSSSelector::IndirectAdjacent:
-            if (!m_collectRulesOnly && e->parentNode() && e->parentNode()->isElementNode()) {
-                RenderStyle* parentStyle = elementStyle ? elementParentStyle : e->parentNode()->renderStyle();
-                if (parentStyle)
-                    parentStyle->setChildrenAffectedByForwardPositionalRules();
+            case CSSSelector::Child: {
+                ContainerNode* node = element->parentNode();
+                if (!node || !node->isElementNode())
+                    return false;
+                element = static_cast<Element*>(node);
+                isSubSelector = false;
+                elementStyle = 0;
+                elementParentStyle = 0;
+                break;
             }
-            while (true) {
-                Node* n = e->previousSibling();
-                while (n && !n->isElementNode())
-                    n = n->previousSibling();
-                if (!n)
-                    return SelectorFailsLocally;
-                e = static_cast<Element*>(n);
+            case CSSSelector::DirectAdjacent: {
+                if (!m_collectRulesOnly && element->parentNode() && element->parentNode()->isElementNode()) {
+                    RenderStyle* parentStyle = elementStyle ? elementParentStyle : element->parentNode()->renderStyle();
+                    if (parentStyle)
+                        parentStyle->setChildrenAffectedByDirectAdjacentRules();
+                }
+                Node* node = element->previousSibling();
+                while (node && !node->isElementNode())
+                    node = node->previousSibling();
+                if (!node) {
+                    needUnwinding = true;
+                    break;
+                }
+                element = static_cast<Element*>(node);
+                m_matchVisitedPseudoClass = false;
+                isSubSelector = false;
+                elementStyle = 0;
+                elementParentStyle = 0;
+                break;
+            }
+            case CSSSelector::IndirectAdjacent: {
+                if (!m_collectRulesOnly && element->parentNode() && element->parentNode()->isElementNode()) {
+                    RenderStyle* parentStyle = elementStyle ? elementParentStyle : element->parentNode()->renderStyle();
+                    if (parentStyle)
+                        parentStyle->setChildrenAffectedByForwardPositionalRules();
+                }
+                Node* node = element->previousSibling();
+                while (node && !node->isElementNode())
+                    node = node->previousSibling();
+                if (!node) {
+                    needUnwinding = true;
+                    break;
+                }
+                element = static_cast<Element*>(node);
                 m_matchVisitedPseudoClass = false;
-                SelectorMatch match = checkSelector(sel, e, selectorAttrs, dynamicPseudo, false, encounteredLink);
-                if (match != SelectorFailsLocally)
-                    return match;
-            };
+                callStack.push(CallState(CallState::SeekingIndirectAdjacent, selector, element, isSubSelector, encounteredLink, elementStyle, elementParentStyle));
+                isSubSelector = false;
+                elementStyle = 0;
+                elementParentStyle = 0;
+                break;
+            }
+            case CSSSelector::SubSelector:
+                // a selector is invalid if something follows a pseudo-element
+                // We make an exception for scrollbar pseudo elements and allow a set of pseudo classes (but nothing else)
+                // to follow the pseudo elements.
+                if ((elementStyle || m_collectRulesOnly) && dynamicPseudo != NOPSEUDO && dynamicPseudo != SELECTION
+                    && !((RenderScrollbar::scrollbarForStyleResolve() || dynamicPseudo == SCROLLBAR_CORNER || dynamicPseudo == RESIZER) && selector->m_match == CSSSelector::PseudoClass))
+                    return false;
+                isSubSelector = true;
+                break;
+            }
+        }
+        if (!needUnwinding)
+            continue;
+        while (!callStack.isEmpty()) {
+            // Unwinds call stack.
+            CallState callState = callStack.pop();
+            selector = callState.selector;
+            element = callState.element;
+            isSubSelector = callState.isSubSelector;
+            encounteredLink = callState.encounteredLink;
+            elementStyle = callState.elementStyle;
+            elementParentStyle = callState.elementParentStyle;
+
+            switch (callState.state) {
+            case CallState::SeekingDescendant: {
+                ContainerNode* node = element->parentNode();
+                if (!node || !node->isElementNode())
+                    return false;
+                element = static_cast<Element*>(node);
+                callStack.push(CallState(CallState::SeekingDescendant, selector, element, isSubSelector, encounteredLink, elementStyle, elementParentStyle));
+                isSubSelector = false;
+                elementStyle = 0;
+                elementParentStyle = 0;
+                break;
+            }
+            case CallState::SeekingIndirectAdjacent: {
+                Node* node = element->previousSibling();
+                while (node && !node->isElementNode())
+                    node = node->previousSibling();
+                if (!node)
+                    continue; // Continue to next while loop to unwind callStack further.
+                element = static_cast<Element*>(node);
+                m_matchVisitedPseudoClass = false;
+                callStack.push(CallState(CallState::SeekingIndirectAdjacent, selector, element, isSubSelector, encounteredLink, elementStyle, elementParentStyle));
+                isSubSelector = false;
+                elementStyle = 0;
+                elementParentStyle = 0;
+                break;
+            }
+            }
             break;
-        case CSSSelector::SubSelector:
-            // a selector is invalid if something follows a pseudo-element
-            // We make an exception for scrollbar pseudo elements and allow a set of pseudo classes (but nothing else)
-            // to follow the pseudo elements.
-            if ((elementStyle || m_collectRulesOnly) && dynamicPseudo != NOPSEUDO && dynamicPseudo != SELECTION &&
-                !((RenderScrollbar::scrollbarForStyleResolve() || dynamicPseudo == SCROLLBAR_CORNER || dynamicPseudo == RESIZER) && sel->m_match == CSSSelector::PseudoClass))
-                return SelectorFailsCompletely;
-            return checkSelector(sel, e, selectorAttrs, dynamicPseudo, true, encounteredLink, elementStyle, elementParentStyle);
+        }
+        if (callStack.isEmpty())
+            return false;
     }
-
-    return SelectorFailsCompletely;
 }
 
 static void addLocalNameToSet(HashSet<AtomicStringImpl*>* set, const QualifiedName& qName)
diff --git a/WebCore/css/CSSStyleSelector.h b/WebCore/css/CSSStyleSelector.h
index 5f70e05..afe6cde 100644
--- a/WebCore/css/CSSStyleSelector.h
+++ b/WebCore/css/CSSStyleSelector.h
@@ -174,8 +174,6 @@ public:
         static bool createTransformOperations(CSSValue* inValue, RenderStyle* inStyle, RenderStyle* rootStyle, TransformOperations& outOperations);
 
     private:
-        enum SelectorMatch { SelectorMatches, SelectorFailsLocally, SelectorFailsCompletely };
-
         // This function fixes up the default font size if it detects that the current generic font family has changed. -dwh
         void checkForGenericFamilyChange(RenderStyle*, RenderStyle* parentStyle);
         void checkForZoomChange(RenderStyle*, RenderStyle* parentStyle);
@@ -219,7 +217,7 @@ public:
             SelectorChecker(Document*, bool strictParsing);
 
             bool checkSelector(CSSSelector*, Element*) const;
-            SelectorMatch checkSelector(CSSSelector*, Element*, HashSet<AtomicStringImpl*>* selectorAttrs, PseudoId& dynamicPseudo, bool isSubSelector, bool encounteredLink, RenderStyle* = 0, RenderStyle* elementParentStyle = 0) const;
+            bool checkSelector(CSSSelector*, Element*, HashSet<AtomicStringImpl*>* selectorAttrs, PseudoId& dynamicPseudo, bool isSubSelector, bool encounteredLink, RenderStyle* = 0, RenderStyle* elementParentStyle = 0) const;
             bool checkOneSelector(CSSSelector*, Element*, HashSet<AtomicStringImpl*>* selectorAttrs, PseudoId& dynamicPseudo, bool isSubSelector, RenderStyle*, RenderStyle* elementParentStyle) const;
             bool checkScrollbarPseudoClass(CSSSelector*, PseudoId& dynamicPseudo) const;
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list