Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(396)

Side by Side Diff: Source/core/css/RuleFeature.cpp

Issue 646853007: Remove fallback matching ::cue* pseudo-element selectors (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix inspector dependency Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/css/CSSSelector.cpp ('k') | Source/core/css/parser/BisonCSSParser-in.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 Apple Inc. All r ights reserved. 5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All r ights 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 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 case CSSSelector::PseudoVertical: 163 case CSSSelector::PseudoVertical:
164 case CSSSelector::PseudoStart: 164 case CSSSelector::PseudoStart:
165 case CSSSelector::PseudoEnd: 165 case CSSSelector::PseudoEnd:
166 case CSSSelector::PseudoDoubleButton: 166 case CSSSelector::PseudoDoubleButton:
167 case CSSSelector::PseudoSingleButton: 167 case CSSSelector::PseudoSingleButton:
168 case CSSSelector::PseudoNoButton: 168 case CSSSelector::PseudoNoButton:
169 case CSSSelector::PseudoSelection: 169 case CSSSelector::PseudoSelection:
170 case CSSSelector::PseudoFullScreen: 170 case CSSSelector::PseudoFullScreen:
171 case CSSSelector::PseudoFullScreenDocument: 171 case CSSSelector::PseudoFullScreenDocument:
172 case CSSSelector::PseudoFullScreenAncestor: 172 case CSSSelector::PseudoFullScreenAncestor:
173 case CSSSelector::PseudoUserAgentCustomElement:
174 case CSSSelector::PseudoWebKitCustomElement: 173 case CSSSelector::PseudoWebKitCustomElement:
175 case CSSSelector::PseudoCue: 174 case CSSSelector::PseudoCue:
176 case CSSSelector::PseudoFutureCue: 175 case CSSSelector::PseudoFutureCue:
177 case CSSSelector::PseudoPastCue: 176 case CSSSelector::PseudoPastCue:
178 case CSSSelector::PseudoSpatialNavigationFocus: 177 case CSSSelector::PseudoSpatialNavigationFocus:
179 // FIXME: Most pseudo classes/elements above can be supported and moved 178 // FIXME: Most pseudo classes/elements above can be supported and moved
180 // to assertSupportedPseudo(). Move on a case-by-case basis. If they 179 // to assertSupportedPseudo(). Move on a case-by-case basis. If they
181 // require subtree invalidation, document why. 180 // require subtree invalidation, document why.
182 case CSSSelector::PseudoHostContext: 181 case CSSSelector::PseudoHostContext:
183 // :host-context matches a shadow host, yet the simple selectors inside 182 // :host-context matches a shadow host, yet the simple selectors inside
(...skipping 465 matching lines...) Expand 10 before | Expand all | Expand 10 after
649 visitor->trace(uncommonAttributeRules); 648 visitor->trace(uncommonAttributeRules);
650 visitor->trace(m_classInvalidationSets); 649 visitor->trace(m_classInvalidationSets);
651 visitor->trace(m_attributeInvalidationSets); 650 visitor->trace(m_attributeInvalidationSets);
652 visitor->trace(m_idInvalidationSets); 651 visitor->trace(m_idInvalidationSets);
653 visitor->trace(m_pseudoInvalidationSets); 652 visitor->trace(m_pseudoInvalidationSets);
654 visitor->trace(m_styleInvalidator); 653 visitor->trace(m_styleInvalidator);
655 #endif 654 #endif
656 } 655 }
657 656
658 } // namespace blink 657 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/css/CSSSelector.cpp ('k') | Source/core/css/parser/BisonCSSParser-in.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698