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

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

Issue 347773002: Implement select listbox using shadow DOM (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/accessibility/AXObjectCache.cpp ('k') | Source/core/css/CSSSelector.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 198 matching lines...) Expand 10 before | Expand all | Expand 10 after
209 PseudoOutOfRange, 209 PseudoOutOfRange,
210 PseudoUserAgentCustomElement, 210 PseudoUserAgentCustomElement,
211 PseudoWebKitCustomElement, 211 PseudoWebKitCustomElement,
212 PseudoCue, 212 PseudoCue,
213 PseudoFutureCue, 213 PseudoFutureCue,
214 PseudoPastCue, 214 PseudoPastCue,
215 PseudoUnresolved, 215 PseudoUnresolved,
216 PseudoContent, 216 PseudoContent,
217 PseudoHost, 217 PseudoHost,
218 PseudoHostContext, 218 PseudoHostContext,
219 PseudoShadow 219 PseudoShadow,
220 PseudoSpatialNavigationFocus
220 }; 221 };
221 222
222 enum MarginBoxType { 223 enum MarginBoxType {
223 TopLeftCornerMarginBox, 224 TopLeftCornerMarginBox,
224 TopLeftMarginBox, 225 TopLeftMarginBox,
225 TopCenterMarginBox, 226 TopCenterMarginBox,
226 TopRightMarginBox, 227 TopRightMarginBox,
227 TopRightCornerMarginBox, 228 TopRightCornerMarginBox,
228 BottomLeftCornerMarginBox, 229 BottomLeftCornerMarginBox,
229 BottomLeftMarginBox, 230 BottomLeftMarginBox,
(...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after
518 if (m_hasRareData) 519 if (m_hasRareData)
519 return m_data.m_rareData->m_value; 520 return m_data.m_rareData->m_value;
520 // AtomicString is really just a StringImpl* so the cast below is safe. 521 // AtomicString is really just a StringImpl* so the cast below is safe.
521 // FIXME: Perhaps call sites could be changed to accept StringImpl? 522 // FIXME: Perhaps call sites could be changed to accept StringImpl?
522 return *reinterpret_cast<const AtomicString*>(&m_data.m_value); 523 return *reinterpret_cast<const AtomicString*>(&m_data.m_value);
523 } 524 }
524 525
525 } // namespace WebCore 526 } // namespace WebCore
526 527
527 #endif // CSSSelector_h 528 #endif // CSSSelector_h
OLDNEW
« no previous file with comments | « Source/core/accessibility/AXObjectCache.cpp ('k') | Source/core/css/CSSSelector.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698