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

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

Issue 82863002: Remove ::part. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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/CSSTokenizer-in.cpp ('k') | Source/core/css/RuleSet.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 30 matching lines...) Expand all
41 idsInRules.add(selector->value().impl()); 41 idsInRules.add(selector->value().impl());
42 else if (selector->m_match == CSSSelector::Class) 42 else if (selector->m_match == CSSSelector::Class)
43 classesInRules.add(selector->value().impl()); 43 classesInRules.add(selector->value().impl());
44 else if (selector->isAttributeSelector()) 44 else if (selector->isAttributeSelector())
45 attrsInRules.add(selector->attribute().localName().impl()); 45 attrsInRules.add(selector->attribute().localName().impl());
46 switch (selector->pseudoType()) { 46 switch (selector->pseudoType()) {
47 case CSSSelector::PseudoFirstLine: 47 case CSSSelector::PseudoFirstLine:
48 m_usesFirstLineRules = true; 48 m_usesFirstLineRules = true;
49 break; 49 break;
50 break; 50 break;
51 case CSSSelector::PseudoPart:
52 attrsInRules.add(HTMLNames::partAttr.localName().impl());
53 break;
54 case CSSSelector::PseudoHost: 51 case CSSSelector::PseudoHost:
55 collectFeaturesFromSelectorList(selector->selectorList()); 52 collectFeaturesFromSelectorList(selector->selectorList());
56 break; 53 break;
57 default: 54 default:
58 break; 55 break;
59 } 56 }
60 } 57 }
61 58
62 void RuleFeatureSet::collectFeaturesFromSelectorList(const CSSSelectorList* sele ctorList) 59 void RuleFeatureSet::collectFeaturesFromSelectorList(const CSSSelectorList* sele ctorList)
63 { 60 {
(...skipping 28 matching lines...) Expand all
92 idsInRules.clear(); 89 idsInRules.clear();
93 classesInRules.clear(); 90 classesInRules.clear();
94 attrsInRules.clear(); 91 attrsInRules.clear();
95 siblingRules.clear(); 92 siblingRules.clear();
96 uncommonAttributeRules.clear(); 93 uncommonAttributeRules.clear();
97 m_usesFirstLineRules = false; 94 m_usesFirstLineRules = false;
98 m_maxDirectAdjacentSelectors = 0; 95 m_maxDirectAdjacentSelectors = 0;
99 } 96 }
100 97
101 } // namespace WebCore 98 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/css/CSSTokenizer-in.cpp ('k') | Source/core/css/RuleSet.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698