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

Side by Side Diff: third_party/WebKit/Source/core/css/CSSSelector.h

Issue 1565263003: Implement CSS parser part for ::slotted pseudo element (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address rune's first round of comments in layout test. Created 4 years, 11 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999-2003 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999-2003 Lars Knoll (knoll@kde.org)
3 * 1999 Waldo Bastian (bastian@kde.org) 3 * 1999 Waldo Bastian (bastian@kde.org)
4 * Copyright (C) 2004, 2006, 2007, 2008, 2009, 2010, 2013 Apple Inc. All rights reserved. 4 * Copyright (C) 2004, 2006, 2007, 2008, 2009, 2010, 2013 Apple Inc. All rights reserved.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 FirstAttributeSelectorMatch = AttributeExact, 110 FirstAttributeSelectorMatch = AttributeExact,
111 }; 111 };
112 112
113 enum Relation { 113 enum Relation {
114 SubSelector, // No combinator 114 SubSelector, // No combinator
115 Descendant, // "Space" combinator 115 Descendant, // "Space" combinator
116 Child, // > combinator 116 Child, // > combinator
117 DirectAdjacent, // + combinator 117 DirectAdjacent, // + combinator
118 IndirectAdjacent, // ~ combinator 118 IndirectAdjacent, // ~ combinator
119 ShadowPseudo, // Special case of shadow DOM pseudo elements / shadow pse udo element 119 ShadowPseudo, // Special case of shadow DOM pseudo elements / shadow pse udo element
120 ShadowDeep // /deep/ combinator 120 ShadowDeep, // /deep/ combinator
121 ShadowSlot // slotted to <slot> element
121 }; 122 };
122 123
123 enum PseudoType { 124 enum PseudoType {
124 PseudoUnknown, 125 PseudoUnknown,
125 PseudoEmpty, 126 PseudoEmpty,
126 PseudoFirstChild, 127 PseudoFirstChild,
127 PseudoFirstOfType, 128 PseudoFirstOfType,
128 PseudoLastChild, 129 PseudoLastChild,
129 PseudoLastOfType, 130 PseudoLastOfType,
130 PseudoOnlyChild, 131 PseudoOnlyChild,
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 PseudoWebKitCustomElement, 195 PseudoWebKitCustomElement,
195 PseudoCue, 196 PseudoCue,
196 PseudoFutureCue, 197 PseudoFutureCue,
197 PseudoPastCue, 198 PseudoPastCue,
198 PseudoUnresolved, 199 PseudoUnresolved,
199 PseudoContent, 200 PseudoContent,
200 PseudoHost, 201 PseudoHost,
201 PseudoHostContext, 202 PseudoHostContext,
202 PseudoShadow, 203 PseudoShadow,
203 PseudoSpatialNavigationFocus, 204 PseudoSpatialNavigationFocus,
204 PseudoListBox 205 PseudoListBox,
206 PseudoSlotted
205 }; 207 };
206 208
207 enum AttributeMatchType { 209 enum AttributeMatchType {
208 CaseSensitive, 210 CaseSensitive,
209 CaseInsensitive, 211 CaseInsensitive,
210 }; 212 };
211 213
212 PseudoType pseudoType() const { return static_cast<PseudoType>(m_pseudoType) ; } 214 PseudoType pseudoType() const { return static_cast<PseudoType>(m_pseudoType) ; }
213 void updatePseudoType(const AtomicString&, bool hasArguments); 215 void updatePseudoType(const AtomicString&, bool hasArguments);
214 216
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 282
281 enum LinkMatchMask { MatchLink = 1, MatchVisited = 2, MatchAll = MatchLink | MatchVisited }; 283 enum LinkMatchMask { MatchLink = 1, MatchVisited = 2, MatchAll = MatchLink | MatchVisited };
282 unsigned computeLinkMatchType() const; 284 unsigned computeLinkMatchType() const;
283 285
284 bool isForPage() const { return m_isForPage; } 286 bool isForPage() const { return m_isForPage; }
285 void setForPage() { m_isForPage = true; } 287 void setForPage() { m_isForPage = true; }
286 288
287 bool relationIsAffectedByPseudoContent() const { return m_relationIsAffected ByPseudoContent; } 289 bool relationIsAffectedByPseudoContent() const { return m_relationIsAffected ByPseudoContent; }
288 void setRelationIsAffectedByPseudoContent() { m_relationIsAffectedByPseudoCo ntent = true; } 290 void setRelationIsAffectedByPseudoContent() { m_relationIsAffectedByPseudoCo ntent = true; }
289 291
292 bool relationIsAffectedByPseudoSlotted() const { return m_relationIsAffected ByPseudoSlotted; }
293 void setRelationIsAffectedByPseudoSlotted() { m_relationIsAffectedByPseudoSl otted = true; }
294
290 private: 295 private:
291 unsigned m_relation : 3; // enum Relation 296 unsigned m_relation : 3; // enum Relation
292 unsigned m_match : 4; // enum Match 297 unsigned m_match : 4; // enum Match
293 unsigned m_pseudoType : 8; // enum PseudoType 298 unsigned m_pseudoType : 8; // enum PseudoType
294 unsigned m_isLastInSelectorList : 1; 299 unsigned m_isLastInSelectorList : 1;
295 unsigned m_isLastInTagHistory : 1; 300 unsigned m_isLastInTagHistory : 1;
296 unsigned m_hasRareData : 1; 301 unsigned m_hasRareData : 1;
297 unsigned m_isForPage : 1; 302 unsigned m_isForPage : 1;
298 unsigned m_tagIsImplicit : 1; 303 unsigned m_tagIsImplicit : 1;
299 unsigned m_relationIsAffectedByPseudoContent : 1; 304 unsigned m_relationIsAffectedByPseudoContent : 1;
305 unsigned m_relationIsAffectedByPseudoSlotted : 1;
300 306
301 void setPseudoType(PseudoType pseudoType) 307 void setPseudoType(PseudoType pseudoType)
302 { 308 {
303 m_pseudoType = pseudoType; 309 m_pseudoType = pseudoType;
304 ASSERT(static_cast<PseudoType>(m_pseudoType) == pseudoType); // using a bitfield. 310 ASSERT(static_cast<PseudoType>(m_pseudoType) == pseudoType); // using a bitfield.
305 } 311 }
306 312
307 unsigned specificityForOneSelector() const; 313 unsigned specificityForOneSelector() const;
308 unsigned specificityForPage() const; 314 unsigned specificityForPage() const;
309 315
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
409 inline CSSSelector::CSSSelector() 415 inline CSSSelector::CSSSelector()
410 : m_relation(SubSelector) 416 : m_relation(SubSelector)
411 , m_match(Unknown) 417 , m_match(Unknown)
412 , m_pseudoType(PseudoUnknown) 418 , m_pseudoType(PseudoUnknown)
413 , m_isLastInSelectorList(false) 419 , m_isLastInSelectorList(false)
414 , m_isLastInTagHistory(true) 420 , m_isLastInTagHistory(true)
415 , m_hasRareData(false) 421 , m_hasRareData(false)
416 , m_isForPage(false) 422 , m_isForPage(false)
417 , m_tagIsImplicit(false) 423 , m_tagIsImplicit(false)
418 , m_relationIsAffectedByPseudoContent(false) 424 , m_relationIsAffectedByPseudoContent(false)
425 , m_relationIsAffectedByPseudoSlotted(false)
419 { 426 {
420 } 427 }
421 428
422 inline CSSSelector::CSSSelector(const QualifiedName& tagQName, bool tagIsImplici t) 429 inline CSSSelector::CSSSelector(const QualifiedName& tagQName, bool tagIsImplici t)
423 : m_relation(SubSelector) 430 : m_relation(SubSelector)
424 , m_match(Tag) 431 , m_match(Tag)
425 , m_pseudoType(PseudoUnknown) 432 , m_pseudoType(PseudoUnknown)
426 , m_isLastInSelectorList(false) 433 , m_isLastInSelectorList(false)
427 , m_isLastInTagHistory(true) 434 , m_isLastInTagHistory(true)
428 , m_hasRareData(false) 435 , m_hasRareData(false)
429 , m_isForPage(false) 436 , m_isForPage(false)
430 , m_tagIsImplicit(tagIsImplicit) 437 , m_tagIsImplicit(tagIsImplicit)
431 , m_relationIsAffectedByPseudoContent(false) 438 , m_relationIsAffectedByPseudoContent(false)
439 , m_relationIsAffectedByPseudoSlotted(false)
432 { 440 {
433 m_data.m_tagQName = tagQName.impl(); 441 m_data.m_tagQName = tagQName.impl();
434 m_data.m_tagQName->ref(); 442 m_data.m_tagQName->ref();
435 } 443 }
436 444
437 inline CSSSelector::CSSSelector(const CSSSelector& o) 445 inline CSSSelector::CSSSelector(const CSSSelector& o)
438 : m_relation(o.m_relation) 446 : m_relation(o.m_relation)
439 , m_match(o.m_match) 447 , m_match(o.m_match)
440 , m_pseudoType(o.m_pseudoType) 448 , m_pseudoType(o.m_pseudoType)
441 , m_isLastInSelectorList(o.m_isLastInSelectorList) 449 , m_isLastInSelectorList(o.m_isLastInSelectorList)
442 , m_isLastInTagHistory(o.m_isLastInTagHistory) 450 , m_isLastInTagHistory(o.m_isLastInTagHistory)
443 , m_hasRareData(o.m_hasRareData) 451 , m_hasRareData(o.m_hasRareData)
444 , m_isForPage(o.m_isForPage) 452 , m_isForPage(o.m_isForPage)
445 , m_tagIsImplicit(o.m_tagIsImplicit) 453 , m_tagIsImplicit(o.m_tagIsImplicit)
446 , m_relationIsAffectedByPseudoContent(o.m_relationIsAffectedByPseudoContent) 454 , m_relationIsAffectedByPseudoContent(o.m_relationIsAffectedByPseudoContent)
455 , m_relationIsAffectedByPseudoSlotted(o.m_relationIsAffectedByPseudoSlotted)
447 { 456 {
448 if (o.m_match == Tag) { 457 if (o.m_match == Tag) {
449 m_data.m_tagQName = o.m_data.m_tagQName; 458 m_data.m_tagQName = o.m_data.m_tagQName;
450 m_data.m_tagQName->ref(); 459 m_data.m_tagQName->ref();
451 } else if (o.m_hasRareData) { 460 } else if (o.m_hasRareData) {
452 m_data.m_rareData = o.m_data.m_rareData; 461 m_data.m_rareData = o.m_data.m_rareData;
453 m_data.m_rareData->ref(); 462 m_data.m_rareData->ref();
454 } else if (o.m_data.m_value) { 463 } else if (o.m_data.m_value) {
455 m_data.m_value = o.m_data.m_value; 464 m_data.m_value = o.m_data.m_value;
456 m_data.m_value->ref(); 465 m_data.m_value->ref();
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
489 if (m_hasRareData) 498 if (m_hasRareData)
490 return m_data.m_rareData->m_serializingValue; 499 return m_data.m_rareData->m_serializingValue;
491 // AtomicString is really just a StringImpl* so the cast below is safe. 500 // AtomicString is really just a StringImpl* so the cast below is safe.
492 // FIXME: Perhaps call sites could be changed to accept StringImpl? 501 // FIXME: Perhaps call sites could be changed to accept StringImpl?
493 return *reinterpret_cast<const AtomicString*>(&m_data.m_value); 502 return *reinterpret_cast<const AtomicString*>(&m_data.m_value);
494 } 503 }
495 504
496 } // namespace blink 505 } // namespace blink
497 506
498 #endif // CSSSelector_h 507 #endif // CSSSelector_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698