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

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

Issue 778003003: List marker pseudo elements. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 7 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/core.gypi ('k') | Source/core/css/CSSSelector.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-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 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 PseudoReadOnly, 166 PseudoReadOnly,
167 PseudoReadWrite, 167 PseudoReadWrite,
168 PseudoValid, 168 PseudoValid,
169 PseudoInvalid, 169 PseudoInvalid,
170 PseudoIndeterminate, 170 PseudoIndeterminate,
171 PseudoTarget, 171 PseudoTarget,
172 PseudoBefore, 172 PseudoBefore,
173 PseudoAfter, 173 PseudoAfter,
174 PseudoBackdrop, 174 PseudoBackdrop,
175 PseudoLang, 175 PseudoLang,
176 PseudoMarker,
176 PseudoNot, 177 PseudoNot,
177 PseudoResizer, 178 PseudoResizer,
178 PseudoRoot, 179 PseudoRoot,
179 PseudoScope, 180 PseudoScope,
180 PseudoScrollbar, 181 PseudoScrollbar,
181 PseudoScrollbarButton, 182 PseudoScrollbarButton,
182 PseudoScrollbarCorner, 183 PseudoScrollbarCorner,
183 PseudoScrollbarThumb, 184 PseudoScrollbarThumb,
184 PseudoScrollbarTrack, 185 PseudoScrollbarTrack,
185 PseudoScrollbarTrackPiece, 186 PseudoScrollbarTrackPiece,
(...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after
542 if (m_hasRareData) 543 if (m_hasRareData)
543 return m_data.m_rareData->m_value; 544 return m_data.m_rareData->m_value;
544 // AtomicString is really just a StringImpl* so the cast below is safe. 545 // AtomicString is really just a StringImpl* so the cast below is safe.
545 // FIXME: Perhaps call sites could be changed to accept StringImpl? 546 // FIXME: Perhaps call sites could be changed to accept StringImpl?
546 return *reinterpret_cast<const AtomicString*>(&m_data.m_value); 547 return *reinterpret_cast<const AtomicString*>(&m_data.m_value);
547 } 548 }
548 549
549 } // namespace blink 550 } // namespace blink
550 551
551 #endif // CSSSelector_h 552 #endif // CSSSelector_h
OLDNEW
« no previous file with comments | « Source/core/core.gypi ('k') | Source/core/css/CSSSelector.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698