| 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 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 444 | 444 |
| 445 for (nextContext.element = parentOrV0ShadowHostElement(*context.elem
ent); nextContext.element; nextContext.element = parentOrV0ShadowHostElement(*ne
xtContext.element)) { | 445 for (nextContext.element = parentOrV0ShadowHostElement(*context.elem
ent); nextContext.element; nextContext.element = parentOrV0ShadowHostElement(*ne
xtContext.element)) { |
| 446 Match match = matchSelector(nextContext, result); | 446 Match match = matchSelector(nextContext, result); |
| 447 if (match == SelectorMatches || match == SelectorFailsCompletely
) | 447 if (match == SelectorMatches || match == SelectorFailsCompletely
) |
| 448 return match; | 448 return match; |
| 449 if (nextSelectorExceedsScope(nextContext)) | 449 if (nextSelectorExceedsScope(nextContext)) |
| 450 return SelectorFailsCompletely; | 450 return SelectorFailsCompletely; |
| 451 } | 451 } |
| 452 return SelectorFailsCompletely; | 452 return SelectorFailsCompletely; |
| 453 } | 453 } |
| 454 case CSSSelector::ShadowSlot: |
| 455 // TODO(kochi): Add this in later CL. |
| 456 return SelectorFailsCompletely; |
| 454 | 457 |
| 455 case CSSSelector::SubSelector: | 458 case CSSSelector::SubSelector: |
| 456 ASSERT_NOT_REACHED(); | 459 ASSERT_NOT_REACHED(); |
| 457 } | 460 } |
| 458 | 461 |
| 459 ASSERT_NOT_REACHED(); | 462 ASSERT_NOT_REACHED(); |
| 460 return SelectorFailsCompletely; | 463 return SelectorFailsCompletely; |
| 461 } | 464 } |
| 462 | 465 |
| 463 SelectorChecker::Match SelectorChecker::matchForShadowDistributed(const Selector
CheckingContext& context, const Element& element, MatchResult& result) const | 466 SelectorChecker::Match SelectorChecker::matchForShadowDistributed(const Selector
CheckingContext& context, const Element& element, MatchResult& result) const |
| (...skipping 734 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1198 } | 1201 } |
| 1199 | 1202 |
| 1200 bool SelectorChecker::matchesFocusPseudoClass(const Element& element) | 1203 bool SelectorChecker::matchesFocusPseudoClass(const Element& element) |
| 1201 { | 1204 { |
| 1202 if (InspectorInstrumentation::forcePseudoState(const_cast<Element*>(&element
), CSSSelector::PseudoFocus)) | 1205 if (InspectorInstrumentation::forcePseudoState(const_cast<Element*>(&element
), CSSSelector::PseudoFocus)) |
| 1203 return true; | 1206 return true; |
| 1204 return element.focused() && isFrameFocused(element); | 1207 return element.focused() && isFrameFocused(element); |
| 1205 } | 1208 } |
| 1206 | 1209 |
| 1207 } | 1210 } |
| OLD | NEW |