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 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
157 PseudoAnimatingFullScreenTransition, | 157 PseudoAnimatingFullScreenTransition, |
158 PseudoInRange, | 158 PseudoInRange, |
159 PseudoOutOfRange, | 159 PseudoOutOfRange, |
160 PseudoUserAgentCustomElement, | 160 PseudoUserAgentCustomElement, |
161 PseudoWebKitCustomElement, | 161 PseudoWebKitCustomElement, |
162 #if ENABLE(VIDEO_TRACK) | 162 #if ENABLE(VIDEO_TRACK) |
163 PseudoCue, | 163 PseudoCue, |
164 PseudoFutureCue, | 164 PseudoFutureCue, |
165 PseudoPastCue, | 165 PseudoPastCue, |
166 #endif | 166 #endif |
167 #if ENABLE(IFRAME_SEAMLESS) | |
168 PseudoSeamlessDocument, | 167 PseudoSeamlessDocument, |
169 #endif | |
170 #if ENABLE(SHADOW_DOM) | 168 #if ENABLE(SHADOW_DOM) |
171 PseudoDistributed | 169 PseudoDistributed |
172 #endif | 170 #endif |
173 }; | 171 }; |
174 | 172 |
175 enum MarginBoxType { | 173 enum MarginBoxType { |
176 TopLeftCornerMarginBox, | 174 TopLeftCornerMarginBox, |
177 TopLeftMarginBox, | 175 TopLeftMarginBox, |
178 TopCenterMarginBox, | 176 TopCenterMarginBox, |
179 TopRightMarginBox, | 177 TopRightMarginBox, |
(...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
451 ASSERT(m_match != Tag); | 449 ASSERT(m_match != Tag); |
452 // AtomicString is really just an AtomicStringImpl* so the cast below is saf
e. | 450 // AtomicString is really just an AtomicStringImpl* so the cast below is saf
e. |
453 // FIXME: Perhaps call sites could be changed to accept AtomicStringImpl? | 451 // FIXME: Perhaps call sites could be changed to accept AtomicStringImpl? |
454 return *reinterpret_cast<const AtomicString*>(m_hasRareData ? &m_data.m_rare
Data->m_value : &m_data.m_value); | 452 return *reinterpret_cast<const AtomicString*>(m_hasRareData ? &m_data.m_rare
Data->m_value : &m_data.m_value); |
455 } | 453 } |
456 | 454 |
457 | 455 |
458 } // namespace WebCore | 456 } // namespace WebCore |
459 | 457 |
460 #endif // CSSSelector_h | 458 #endif // CSSSelector_h |
OLD | NEW |