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

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

Issue 1614343002: Implement CSS4 pseudo-class :dir() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated layout tests Created 4 years, 10 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 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 PseudoReadOnly, 156 PseudoReadOnly,
157 PseudoReadWrite, 157 PseudoReadWrite,
158 PseudoValid, 158 PseudoValid,
159 PseudoInvalid, 159 PseudoInvalid,
160 PseudoIndeterminate, 160 PseudoIndeterminate,
161 PseudoTarget, 161 PseudoTarget,
162 PseudoBefore, 162 PseudoBefore,
163 PseudoAfter, 163 PseudoAfter,
164 PseudoBackdrop, 164 PseudoBackdrop,
165 PseudoLang, 165 PseudoLang,
166 PseudoDir,
166 PseudoNot, 167 PseudoNot,
167 PseudoResizer, 168 PseudoResizer,
168 PseudoRoot, 169 PseudoRoot,
169 PseudoScope, 170 PseudoScope,
170 PseudoScrollbar, 171 PseudoScrollbar,
171 PseudoScrollbarButton, 172 PseudoScrollbarButton,
172 PseudoScrollbarCorner, 173 PseudoScrollbarCorner,
173 PseudoScrollbarThumb, 174 PseudoScrollbarThumb,
174 PseudoScrollbarTrack, 175 PseudoScrollbarTrack,
175 PseudoScrollbarTrackPiece, 176 PseudoScrollbarTrackPiece,
(...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after
491 if (m_hasRareData) 492 if (m_hasRareData)
492 return m_data.m_rareData->m_serializingValue; 493 return m_data.m_rareData->m_serializingValue;
493 // AtomicString is really just a StringImpl* so the cast below is safe. 494 // AtomicString is really just a StringImpl* so the cast below is safe.
494 // FIXME: Perhaps call sites could be changed to accept StringImpl? 495 // FIXME: Perhaps call sites could be changed to accept StringImpl?
495 return *reinterpret_cast<const AtomicString*>(&m_data.m_value); 496 return *reinterpret_cast<const AtomicString*>(&m_data.m_value);
496 } 497 }
497 498
498 } // namespace blink 499 } // namespace blink
499 500
500 #endif // CSSSelector_h 501 #endif // CSSSelector_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698