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

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

Issue 1898403002: [WIP] Implement :dir() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase... other changes too probably Created 4 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
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 PseudoRequired, 156 PseudoRequired,
157 PseudoReadOnly, 157 PseudoReadOnly,
158 PseudoReadWrite, 158 PseudoReadWrite,
159 PseudoValid, 159 PseudoValid,
160 PseudoInvalid, 160 PseudoInvalid,
161 PseudoIndeterminate, 161 PseudoIndeterminate,
162 PseudoTarget, 162 PseudoTarget,
163 PseudoBefore, 163 PseudoBefore,
164 PseudoAfter, 164 PseudoAfter,
165 PseudoBackdrop, 165 PseudoBackdrop,
166 PseudoDir,
166 PseudoLang, 167 PseudoLang,
167 PseudoNot, 168 PseudoNot,
168 PseudoResizer, 169 PseudoResizer,
169 PseudoRoot, 170 PseudoRoot,
170 PseudoScope, 171 PseudoScope,
171 PseudoScrollbar, 172 PseudoScrollbar,
172 PseudoScrollbarButton, 173 PseudoScrollbarButton,
173 PseudoScrollbarCorner, 174 PseudoScrollbarCorner,
174 PseudoScrollbarThumb, 175 PseudoScrollbarThumb,
175 PseudoScrollbarTrack, 176 PseudoScrollbarTrack,
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after
475 if (m_hasRareData) 476 if (m_hasRareData)
476 return m_data.m_rareData->m_serializingValue; 477 return m_data.m_rareData->m_serializingValue;
477 // AtomicString is really just a StringImpl* so the cast below is safe. 478 // AtomicString is really just a StringImpl* so the cast below is safe.
478 // FIXME: Perhaps call sites could be changed to accept StringImpl? 479 // FIXME: Perhaps call sites could be changed to accept StringImpl?
479 return *reinterpret_cast<const AtomicString*>(&m_data.m_value); 480 return *reinterpret_cast<const AtomicString*>(&m_data.m_value);
480 } 481 }
481 482
482 } // namespace blink 483 } // namespace blink
483 484
484 #endif // CSSSelector_h 485 #endif // CSSSelector_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698