[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:49:06 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit adfef7123a2cc5e2d52c5657d9a8aad772a947d7
Author: hayato at chromium.org <hayato at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Oct 21 06:25:04 2010 +0000

    2010-10-20  Sheriff Bot  <webkit.review.bot at gmail.com>
    
            Unreviewed, rolling out r70040.
            http://trac.webkit.org/changeset/70040
            https://bugs.webkit.org/show_bug.cgi?id=48042
    
            "Reverting a performance regression detected by page_cycler"
            (Requested by hayato on #webkit).
    
            * fast/css/long-css-selector-matches-expected.txt: Removed.
            * fast/css/long-css-selector-matches.html: Removed.
    2010-10-20  Sheriff Bot  <webkit.review.bot at gmail.com>
    
            Unreviewed, rolling out r70040.
            http://trac.webkit.org/changeset/70040
            https://bugs.webkit.org/show_bug.cgi?id=48042
    
            "Reverting a performance regression detected by page_cycler"
            (Requested by hayato on #webkit).
    
            * css/CSSStyleSelector.cpp:
            (WebCore::CSSStyleSelector::SelectorChecker::checkSelector):
            (WebCore::CSSStyleSelector::checkSelector):
            * css/CSSStyleSelector.h:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@70209 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog
index 6e2b474..c184a2f 100644
--- a/LayoutTests/ChangeLog
+++ b/LayoutTests/ChangeLog
@@ -1,3 +1,15 @@
+2010-10-20  Sheriff Bot  <webkit.review.bot at gmail.com>
+
+        Unreviewed, rolling out r70040.
+        http://trac.webkit.org/changeset/70040
+        https://bugs.webkit.org/show_bug.cgi?id=48042
+
+        "Reverting a performance regression detected by page_cycler"
+        (Requested by hayato on #webkit).
+
+        * fast/css/long-css-selector-matches-expected.txt: Removed.
+        * fast/css/long-css-selector-matches.html: Removed.
+
 2010-10-20  Adam Roben  <aroben at apple.com>
 
         Remove some no-longer-needed Windows-specific results
diff --git a/LayoutTests/fast/css/long-css-selector-matches-expected.txt b/LayoutTests/fast/css/long-css-selector-matches-expected.txt
deleted file mode 100644
index a16616b..0000000
--- a/LayoutTests/fast/css/long-css-selector-matches-expected.txt
+++ /dev/null
@@ -1,4 +0,0 @@
-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
deleted file mode 100644
index 8f59bb8..0000000
--- a/LayoutTests/fast/css/long-css-selector-matches.html
+++ /dev/null
@@ -1,40 +0,0 @@
-<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 4687e24..83f63cc 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,17 @@
+2010-10-20  Sheriff Bot  <webkit.review.bot at gmail.com>
+
+        Unreviewed, rolling out r70040.
+        http://trac.webkit.org/changeset/70040
+        https://bugs.webkit.org/show_bug.cgi?id=48042
+
+        "Reverting a performance regression detected by page_cycler"
+        (Requested by hayato on #webkit).
+
+        * css/CSSStyleSelector.cpp:
+        (WebCore::CSSStyleSelector::SelectorChecker::checkSelector):
+        (WebCore::CSSStyleSelector::checkSelector):
+        * css/CSSStyleSelector.h:
+
 2010-10-19  Simon Fraser  <simon.fraser at apple.com>
 
         Reviewed by Gavin Barraclough.
diff --git a/WebCore/css/CSSStyleSelector.cpp b/WebCore/css/CSSStyleSelector.cpp
index a47aaf3..35406d5 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);
+    return checkSelector(sel, element, 0, dynamicPseudo, false, false) == SelectorMatches;
 }
 
 static const unsigned cStyleSearchThreshold = 10;
@@ -1909,7 +1909,8 @@ bool CSSStyleSelector::checkSelector(CSSSelector* sel)
     m_dynamicPseudo = NOPSEUDO;
 
     // Check the selector
-    if (!m_checker.checkSelector(sel, m_element, &m_selectorAttrs, m_dynamicPseudo, false, false, style(), m_parentNode ? m_parentNode->renderStyle() : 0))
+    SelectorMatch match = m_checker.checkSelector(sel, m_element, &m_selectorAttrs, m_dynamicPseudo, false, false, style(), m_parentNode ? m_parentNode->renderStyle() : 0);
+    if (match != SelectorMatches)
         return false;
 
     if (m_checker.m_pseudoStyle != NOPSEUDO && m_checker.m_pseudoStyle != m_dynamicPseudo)
@@ -1918,220 +1919,114 @@ bool CSSStyleSelector::checkSelector(CSSSelector* sel)
     return true;
 }
 
-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
+// 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
 {
-    // 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 (element->isSVGElement() && element->isShadowNode())
-            return false;
+    // 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;
 #endif
-        // first selector has to match
-        bool matched = checkOneSelector(selector, element, selectorAttrs, dynamicPseudo, isSubSelector, elementStyle, elementParentStyle);
-        bool needUnwinding = !matched;
-
-        if (matched) {
-            // The rest of the selectors has to match
-            CSSSelector::Relation relation = selector->relation();
-
-            // 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;
-                }
-            }
+    // 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;
+        }
+    }
 
-            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;
-            }
-            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;
-            }
-            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;
-                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;
+    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;
             }
+            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);
         }
-        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;
+        case CSSSelector::DirectAdjacent:
+        {
+            if (!m_collectRulesOnly && e->parentNode() && e->parentNode()->isElementNode()) {
+                RenderStyle* parentStyle = elementStyle ? elementParentStyle : e->parentNode()->renderStyle();
+                if (parentStyle)
+                    parentStyle->setChildrenAffectedByDirectAdjacentRules();
             }
+            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();
             }
+            while (true) {
+                Node* n = e->previousSibling();
+                while (n && !n->isElementNode())
+                    n = n->previousSibling();
+                if (!n)
+                    return SelectorFailsLocally;
+                e = static_cast<Element*>(n);
+                m_matchVisitedPseudoClass = false;
+                SelectorMatch match = checkSelector(sel, e, selectorAttrs, dynamicPseudo, false, encounteredLink);
+                if (match != SelectorFailsLocally)
+                    return match;
+            };
             break;
-        }
-        if (callStack.isEmpty())
-            return false;
+        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);
     }
+
+    return SelectorFailsCompletely;
 }
 
 static void addLocalNameToSet(HashSet<AtomicStringImpl*>* set, const QualifiedName& qName)
diff --git a/WebCore/css/CSSStyleSelector.h b/WebCore/css/CSSStyleSelector.h
index afe6cde..5f70e05 100644
--- a/WebCore/css/CSSStyleSelector.h
+++ b/WebCore/css/CSSStyleSelector.h
@@ -174,6 +174,8 @@ 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);
@@ -217,7 +219,7 @@ public:
             SelectorChecker(Document*, bool strictParsing);
 
             bool checkSelector(CSSSelector*, Element*) const;
-            bool checkSelector(CSSSelector*, Element*, HashSet<AtomicStringImpl*>* selectorAttrs, PseudoId& dynamicPseudo, bool isSubSelector, bool encounteredLink, RenderStyle* = 0, RenderStyle* elementParentStyle = 0) const;
+            SelectorMatch 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