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 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
165 PseudoReadOnly, | 165 PseudoReadOnly, |
166 PseudoReadWrite, | 166 PseudoReadWrite, |
167 PseudoValid, | 167 PseudoValid, |
168 PseudoInvalid, | 168 PseudoInvalid, |
169 PseudoIndeterminate, | 169 PseudoIndeterminate, |
170 PseudoTarget, | 170 PseudoTarget, |
171 PseudoBefore, | 171 PseudoBefore, |
172 PseudoAfter, | 172 PseudoAfter, |
173 PseudoBackdrop, | 173 PseudoBackdrop, |
174 PseudoLang, | 174 PseudoLang, |
| 175 PseudoMarker, |
175 PseudoNot, | 176 PseudoNot, |
176 PseudoResizer, | 177 PseudoResizer, |
177 PseudoRoot, | 178 PseudoRoot, |
178 PseudoScope, | 179 PseudoScope, |
179 PseudoScrollbar, | 180 PseudoScrollbar, |
180 PseudoScrollbarButton, | 181 PseudoScrollbarButton, |
181 PseudoScrollbarCorner, | 182 PseudoScrollbarCorner, |
182 PseudoScrollbarThumb, | 183 PseudoScrollbarThumb, |
183 PseudoScrollbarTrack, | 184 PseudoScrollbarTrack, |
184 PseudoScrollbarTrackPiece, | 185 PseudoScrollbarTrackPiece, |
(...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
541 if (m_hasRareData) | 542 if (m_hasRareData) |
542 return m_data.m_rareData->m_value; | 543 return m_data.m_rareData->m_value; |
543 // AtomicString is really just a StringImpl* so the cast below is safe. | 544 // AtomicString is really just a StringImpl* so the cast below is safe. |
544 // FIXME: Perhaps call sites could be changed to accept StringImpl? | 545 // FIXME: Perhaps call sites could be changed to accept StringImpl? |
545 return *reinterpret_cast<const AtomicString*>(&m_data.m_value); | 546 return *reinterpret_cast<const AtomicString*>(&m_data.m_value); |
546 } | 547 } |
547 | 548 |
548 } // namespace blink | 549 } // namespace blink |
549 | 550 |
550 #endif // CSSSelector_h | 551 #endif // CSSSelector_h |
OLD | NEW |