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

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

Issue 662243003: Use ::-internal-media-controls* instead of ::-webkit-media-controls* (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: introduce PseudoInternalCustomElement Created 6 years, 1 month 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/mediaControls.css » ('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 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 case CSSSelector::PseudoVertical: 162 case CSSSelector::PseudoVertical:
163 case CSSSelector::PseudoStart: 163 case CSSSelector::PseudoStart:
164 case CSSSelector::PseudoEnd: 164 case CSSSelector::PseudoEnd:
165 case CSSSelector::PseudoDoubleButton: 165 case CSSSelector::PseudoDoubleButton:
166 case CSSSelector::PseudoSingleButton: 166 case CSSSelector::PseudoSingleButton:
167 case CSSSelector::PseudoNoButton: 167 case CSSSelector::PseudoNoButton:
168 case CSSSelector::PseudoSelection: 168 case CSSSelector::PseudoSelection:
169 case CSSSelector::PseudoFullScreen: 169 case CSSSelector::PseudoFullScreen:
170 case CSSSelector::PseudoFullScreenDocument: 170 case CSSSelector::PseudoFullScreenDocument:
171 case CSSSelector::PseudoFullScreenAncestor: 171 case CSSSelector::PseudoFullScreenAncestor:
172 case CSSSelector::PseudoInternalCustomElement:
172 case CSSSelector::PseudoUserAgentCustomElement: 173 case CSSSelector::PseudoUserAgentCustomElement:
173 case CSSSelector::PseudoWebKitCustomElement: 174 case CSSSelector::PseudoWebKitCustomElement:
174 case CSSSelector::PseudoCue: 175 case CSSSelector::PseudoCue:
175 case CSSSelector::PseudoFutureCue: 176 case CSSSelector::PseudoFutureCue:
176 case CSSSelector::PseudoPastCue: 177 case CSSSelector::PseudoPastCue:
177 case CSSSelector::PseudoSpatialNavigationFocus: 178 case CSSSelector::PseudoSpatialNavigationFocus:
178 // FIXME: Most pseudo classes/elements above can be supported and moved 179 // FIXME: Most pseudo classes/elements above can be supported and moved
179 // to assertSupportedPseudo(). Move on a case-by-case basis. If they 180 // to assertSupportedPseudo(). Move on a case-by-case basis. If they
180 // require subtree invalidation, document why. 181 // require subtree invalidation, document why.
181 case CSSSelector::PseudoHostContext: 182 case CSSSelector::PseudoHostContext:
(...skipping 457 matching lines...) Expand 10 before | Expand all | Expand 10 after
639 visitor->trace(uncommonAttributeRules); 640 visitor->trace(uncommonAttributeRules);
640 visitor->trace(m_classInvalidationSets); 641 visitor->trace(m_classInvalidationSets);
641 visitor->trace(m_attributeInvalidationSets); 642 visitor->trace(m_attributeInvalidationSets);
642 visitor->trace(m_idInvalidationSets); 643 visitor->trace(m_idInvalidationSets);
643 visitor->trace(m_pseudoInvalidationSets); 644 visitor->trace(m_pseudoInvalidationSets);
644 visitor->trace(m_styleInvalidator); 645 visitor->trace(m_styleInvalidator);
645 #endif 646 #endif
646 } 647 }
647 648
648 } // namespace blink 649 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/css/CSSSelector.cpp ('k') | Source/core/css/mediaControls.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698