| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com) | 3 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com) |
| 4 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com) | 4 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com) |
| 5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc.
All rights reserved. | 5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc.
All rights reserved. |
| 6 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> | 6 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> |
| 7 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org> | 7 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org> |
| 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) | 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) |
| 9 * Copyright (c) 2011, Code Aurora Forum. All rights reserved. | 9 * Copyright (c) 2011, Code Aurora Forum. All rights reserved. |
| 10 * Copyright (C) Research In Motion Limited 2011. All rights reserved. | 10 * Copyright (C) Research In Motion Limited 2011. All rights reserved. |
| (...skipping 614 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 625 } | 625 } |
| 626 | 626 |
| 627 void StyleResolver::collectScopedResolversForHostedShadowTrees(const Element* el
ement, Vector<RawPtr<ScopedStyleResolver>, 8>& resolvers) | 627 void StyleResolver::collectScopedResolversForHostedShadowTrees(const Element* el
ement, Vector<RawPtr<ScopedStyleResolver>, 8>& resolvers) |
| 628 { | 628 { |
| 629 ElementShadow* shadow = element->shadow(); | 629 ElementShadow* shadow = element->shadow(); |
| 630 if (!shadow) | 630 if (!shadow) |
| 631 return; | 631 return; |
| 632 | 632 |
| 633 // Adding scoped resolver for active shadow roots for shadow host styling. | 633 // Adding scoped resolver for active shadow roots for shadow host styling. |
| 634 if (ShadowRoot* shadowRoot = shadow->shadowRoot()) { | 634 if (ShadowRoot* shadowRoot = shadow->shadowRoot()) { |
| 635 if (shadowRoot->numberOfStyles() > 0) { | 635 if (ScopedStyleResolver* resolver = shadowRoot->scopedStyleResolver()) |
| 636 if (ScopedStyleResolver* resolver = shadowRoot->scopedStyleResolver(
)) | 636 resolvers.append(resolver); |
| 637 resolvers.append(resolver); | |
| 638 } | |
| 639 } | 637 } |
| 640 } | 638 } |
| 641 | 639 |
| 642 void StyleResolver::styleTreeResolveScopedKeyframesRules(const Element* element,
Vector<RawPtr<ScopedStyleResolver>, 8>& resolvers) | 640 void StyleResolver::styleTreeResolveScopedKeyframesRules(const Element* element,
Vector<RawPtr<ScopedStyleResolver>, 8>& resolvers) |
| 643 { | 641 { |
| 644 // Add resolvers for shadow roots hosted by the given element. | 642 // Add resolvers for shadow roots hosted by the given element. |
| 645 collectScopedResolversForHostedShadowTrees(element, resolvers); | 643 collectScopedResolversForHostedShadowTrees(element, resolvers); |
| 646 | 644 |
| 647 // Add resolvers while walking up DOM tree from the given element. | 645 // Add resolvers while walking up DOM tree from the given element. |
| 648 if (ScopedStyleResolver* resolver = element->treeScope().scopedStyleResolver
()) | 646 if (ScopedStyleResolver* resolver = element->treeScope().scopedStyleResolver
()) |
| (...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 938 bool StyleResolver::mediaQueryAffectedByViewportChange() const | 936 bool StyleResolver::mediaQueryAffectedByViewportChange() const |
| 939 { | 937 { |
| 940 for (unsigned i = 0; i < m_viewportDependentMediaQueryResults.size(); ++i) { | 938 for (unsigned i = 0; i < m_viewportDependentMediaQueryResults.size(); ++i) { |
| 941 if (m_medium->eval(m_viewportDependentMediaQueryResults[i]->expression()
) != m_viewportDependentMediaQueryResults[i]->result()) | 939 if (m_medium->eval(m_viewportDependentMediaQueryResults[i]->expression()
) != m_viewportDependentMediaQueryResults[i]->result()) |
| 942 return true; | 940 return true; |
| 943 } | 941 } |
| 944 return false; | 942 return false; |
| 945 } | 943 } |
| 946 | 944 |
| 947 } // namespace blink | 945 } // namespace blink |
| OLD | NEW |