OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |