| 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 759 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 770 if (ContainerNode* parent = element.parentElementOrDocumentFragment()) { | 770 if (ContainerNode* parent = element.parentElementOrDocumentFragment()) { |
| 771 if (m_mode == ResolvingStyle) { | 771 if (m_mode == ResolvingStyle) { |
| 772 parent->setChildrenAffectedByForwardPositionalRules(); | 772 parent->setChildrenAffectedByForwardPositionalRules(); |
| 773 parent->setChildrenAffectedByBackwardPositionalRules(); | 773 parent->setChildrenAffectedByBackwardPositionalRules(); |
| 774 } | 774 } |
| 775 if (!parent->isFinishedParsingChildren()) | 775 if (!parent->isFinishedParsingChildren()) |
| 776 return false; | 776 return false; |
| 777 return isFirstOfType(element, element.tagQName()) && isLastOfType(el
ement, element.tagQName()); | 777 return isFirstOfType(element, element.tagQName()) && isLastOfType(el
ement, element.tagQName()); |
| 778 } | 778 } |
| 779 break; | 779 break; |
| 780 case CSSSelector::PseudoPlaceholderShown: |
| 781 if (isHTMLTextFormControlElement(element)) |
| 782 return toHTMLTextFormControlElement(element).isPlaceholderVisible(); |
| 783 break; |
| 780 case CSSSelector::PseudoNthChild: | 784 case CSSSelector::PseudoNthChild: |
| 781 if (ContainerNode* parent = element.parentElementOrDocumentFragment()) { | 785 if (ContainerNode* parent = element.parentElementOrDocumentFragment()) { |
| 782 if (m_mode == ResolvingStyle) | 786 if (m_mode == ResolvingStyle) |
| 783 parent->setChildrenAffectedByForwardPositionalRules(); | 787 parent->setChildrenAffectedByForwardPositionalRules(); |
| 784 return selector.matchNth(nthChildIndex(element)); | 788 return selector.matchNth(nthChildIndex(element)); |
| 785 } | 789 } |
| 786 break; | 790 break; |
| 787 case CSSSelector::PseudoNthOfType: | 791 case CSSSelector::PseudoNthOfType: |
| 788 if (ContainerNode* parent = element.parentElementOrDocumentFragment()) { | 792 if (ContainerNode* parent = element.parentElementOrDocumentFragment()) { |
| 789 if (m_mode == ResolvingStyle) | 793 if (m_mode == ResolvingStyle) |
| (...skipping 398 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1188 } | 1192 } |
| 1189 | 1193 |
| 1190 bool SelectorChecker::matchesFocusPseudoClass(const Element& element) | 1194 bool SelectorChecker::matchesFocusPseudoClass(const Element& element) |
| 1191 { | 1195 { |
| 1192 if (InspectorInstrumentation::forcePseudoState(const_cast<Element*>(&element
), CSSSelector::PseudoFocus)) | 1196 if (InspectorInstrumentation::forcePseudoState(const_cast<Element*>(&element
), CSSSelector::PseudoFocus)) |
| 1193 return true; | 1197 return true; |
| 1194 return element.focused() && isFrameFocused(element); | 1198 return element.focused() && isFrameFocused(element); |
| 1195 } | 1199 } |
| 1196 | 1200 |
| 1197 } | 1201 } |
| OLD | NEW |