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

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

Issue 17450016: Implementation of CSS3 nav-up/down/left/right properties from CSS3 UI. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed compilation error in mac and crash in linux/window that were reported by trybots. Created 6 years, 2 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 * (C) 1999-2003 Lars Knoll (knoll@kde.org) 2 * (C) 1999-2003 Lars Knoll (knoll@kde.org)
3 * Copyright (C) 2004, 2005, 2006, 2008 Apple Inc. All rights reserved. 3 * Copyright (C) 2004, 2005, 2006, 2008 Apple Inc. All rights reserved.
4 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> 4 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org>
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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 CSS_VMAX = 29, 105 CSS_VMAX = 29,
106 CSS_DPPX = 30, 106 CSS_DPPX = 30,
107 CSS_DPI = 31, 107 CSS_DPI = 31,
108 CSS_DPCM = 32, 108 CSS_DPCM = 32,
109 CSS_FR = 33, 109 CSS_FR = 33,
110 CSS_PAIR = 100, // We envision this being exposed as a means of getting computed style values for pairs (border-spacing/radius, background-position, etc .) 110 CSS_PAIR = 100, // We envision this being exposed as a means of getting computed style values for pairs (border-spacing/radius, background-position, etc .)
111 CSS_UNICODE_RANGE = 102, 111 CSS_UNICODE_RANGE = 102,
112 112
113 // FIXME: This is only used in CSSParserValue, so it's probably better a s part of the enum there 113 // FIXME: This is only used in CSSParserValue, so it's probably better a s part of the enum there
114 CSS_PARSER_HEXCOLOR = 105, 114 CSS_PARSER_HEXCOLOR = 105,
115 CSS_PARSER_IDSEL = 106,
115 116
116 // These are from CSS3 Values and Units, but that isn't a finished stand ard yet 117 // These are from CSS3 Values and Units, but that isn't a finished stand ard yet
117 CSS_TURN = 107, 118 CSS_TURN = 107,
118 CSS_REMS = 108, 119 CSS_REMS = 108,
119 CSS_CHS = 109, 120 CSS_CHS = 109,
120 121
121 // This is used internally for counter names (as opposed to counter valu es) 122 // This is used internally for counter names (as opposed to counter valu es)
122 CSS_COUNTER_NAME = 110, 123 CSS_COUNTER_NAME = 110,
123 124
124 // This is used by the CSS Shapes draft 125 // This is used by the CSS Shapes draft
(...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after
402 } m_value; 403 } m_value;
403 }; 404 };
404 405
405 typedef CSSPrimitiveValue::CSSLengthArray CSSLengthArray; 406 typedef CSSPrimitiveValue::CSSLengthArray CSSLengthArray;
406 407
407 DEFINE_CSS_VALUE_TYPE_CASTS(CSSPrimitiveValue, isPrimitiveValue()); 408 DEFINE_CSS_VALUE_TYPE_CASTS(CSSPrimitiveValue, isPrimitiveValue());
408 409
409 } // namespace blink 410 } // namespace blink
410 411
411 #endif // CSSPrimitiveValue_h 412 #endif // CSSPrimitiveValue_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698