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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 | 74 |
75 const CSSSelector* selector; | 75 const CSSSelector* selector; |
76 RawPtrWillBeMember<Element> element; | 76 RawPtrWillBeMember<Element> element; |
77 RawPtrWillBeMember<Element> previousElement; | 77 RawPtrWillBeMember<Element> previousElement; |
78 RawPtrWillBeMember<const ContainerNode> scope; | 78 RawPtrWillBeMember<const ContainerNode> scope; |
79 VisitedMatchType visitedMatchType; | 79 VisitedMatchType visitedMatchType; |
80 PseudoId pseudoId; | 80 PseudoId pseudoId; |
81 ComputedStyle* elementStyle; | 81 ComputedStyle* elementStyle; |
82 RawPtrWillBeMember<LayoutScrollbar> scrollbar; | 82 RawPtrWillBeMember<LayoutScrollbar> scrollbar; |
83 ScrollbarPart scrollbarPart; | 83 ScrollbarPart scrollbarPart; |
84 unsigned isSubSelector : 1; | 84 bool isSubSelector; |
85 unsigned hasScrollbarPseudo : 1; | 85 bool hasScrollbarPseudo; |
86 unsigned hasSelectionPseudo : 1; | 86 bool hasSelectionPseudo; |
87 unsigned isUARule : 1; | 87 bool isUARule; |
88 unsigned scopeContainsLastMatchedElement : 1; | 88 bool scopeContainsLastMatchedElement; |
89 unsigned treatShadowHostAsNormalScope : 1; | 89 bool treatShadowHostAsNormalScope; |
90 }; | 90 }; |
91 | 91 |
92 struct MatchResult { | 92 struct MatchResult { |
93 MatchResult() | 93 MatchResult() |
94 : dynamicPseudo(NOPSEUDO) | 94 : dynamicPseudo(NOPSEUDO) |
95 , specificity(0) { } | 95 , specificity(0) { } |
96 | 96 |
97 PseudoId dynamicPseudo; | 97 PseudoId dynamicPseudo; |
98 unsigned specificity; | 98 unsigned specificity; |
99 }; | 99 }; |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
163 } | 163 } |
164 | 164 |
165 inline bool SelectorChecker::isHostInItsShadowTree(const Element& element, const
ContainerNode* scope) | 165 inline bool SelectorChecker::isHostInItsShadowTree(const Element& element, const
ContainerNode* scope) |
166 { | 166 { |
167 return scope && scope->isInShadowTree() && scope->shadowHost() == element; | 167 return scope && scope->isInShadowTree() && scope->shadowHost() == element; |
168 } | 168 } |
169 | 169 |
170 } | 170 } |
171 | 171 |
172 #endif | 172 #endif |
OLD | NEW |