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 854 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
865 return true; | 865 return true; |
866 break; | 866 break; |
867 } | 867 } |
868 | 868 |
869 case CSSSelector::PseudoUnresolved: | 869 case CSSSelector::PseudoUnresolved: |
870 if (element.isUnresolvedCustomElement()) | 870 if (element.isUnresolvedCustomElement()) |
871 return true; | 871 return true; |
872 break; | 872 break; |
873 | 873 |
874 case CSSSelector::PseudoHost: | 874 case CSSSelector::PseudoHost: |
875 case CSSSelector::PseudoAncestor: | 875 case CSSSelector::PseudoHostContext: |
876 { | 876 { |
877 // :host only matches a shadow host when :host is in a shadow tr
ee of the shadow host. | 877 // :host only matches a shadow host when :host is in a shadow tr
ee of the shadow host. |
878 if (!context.scope) | 878 if (!context.scope) |
879 return false; | 879 return false; |
880 const ContainerNode* shadowHost = (context.behaviorAtBoundary &
ScopeIsShadowHost) ? context.scope : (context.scope->isInShadowTree() ? context.
scope->shadowHost() : 0); | 880 const ContainerNode* shadowHost = (context.behaviorAtBoundary &
ScopeIsShadowHost) ? context.scope : (context.scope->isInShadowTree() ? context.
scope->shadowHost() : 0); |
881 if (!shadowHost || shadowHost != element) | 881 if (!shadowHost || shadowHost != element) |
882 return false; | 882 return false; |
883 ASSERT(element.shadow()); | 883 ASSERT(element.shadow()); |
884 | 884 |
885 // For empty parameter case, i.e. just :host or :host(). | 885 // For empty parameter case, i.e. just :host or :host(). |
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1097 return element.focused() && isFrameFocused(element); | 1097 return element.focused() && isFrameFocused(element); |
1098 } | 1098 } |
1099 | 1099 |
1100 template | 1100 template |
1101 SelectorChecker::Match SelectorChecker::match(const SelectorCheckingContext&, co
nst DOMSiblingTraversalStrategy&, MatchResult*) const; | 1101 SelectorChecker::Match SelectorChecker::match(const SelectorCheckingContext&, co
nst DOMSiblingTraversalStrategy&, MatchResult*) const; |
1102 | 1102 |
1103 template | 1103 template |
1104 SelectorChecker::Match SelectorChecker::match(const SelectorCheckingContext&, co
nst ShadowDOMSiblingTraversalStrategy&, MatchResult*) const; | 1104 SelectorChecker::Match SelectorChecker::match(const SelectorCheckingContext&, co
nst ShadowDOMSiblingTraversalStrategy&, MatchResult*) const; |
1105 | 1105 |
1106 } | 1106 } |
OLD | NEW |