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

Side by Side Diff: third_party/WebKit/Source/core/css/parser/CSSPropertyParser.h

Issue 2737843003: [css-align] Implement place-items alignment shorthand (Closed)
Patch Set: More layout tests fixes. Created 3 years, 8 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 * Copyright (C) 2003 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 2003 Lars Knoll (knoll@kde.org)
3 * Copyright (C) 2004, 2005, 2006, 2008, 2009, 2010 Apple Inc. All rights 3 * Copyright (C) 2004, 2005, 2006, 2008, 2009, 2010 Apple Inc. All rights
4 * reserved. 4 * reserved.
5 * Copyright (C) 2008 Eric Seidel <eric@webkit.org> 5 * Copyright (C) 2008 Eric Seidel <eric@webkit.org>
6 * Copyright (C) 2009 - 2010 Torch Mobile (Beijing) Co. Ltd. All rights 6 * Copyright (C) 2009 - 2010 Torch Mobile (Beijing) Co. Ltd. All rights
7 * reserved. 7 * reserved.
8 * 8 *
9 * This library is free software; you can redistribute it and/or 9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Library General Public 10 * modify it under the terms of the GNU Library General Public
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 95
96 bool consumeColumns(bool important); 96 bool consumeColumns(bool important);
97 97
98 bool consumeGridItemPositionShorthand(CSSPropertyID, bool important); 98 bool consumeGridItemPositionShorthand(CSSPropertyID, bool important);
99 bool consumeGridTemplateRowsAndAreasAndColumns(CSSPropertyID, bool important); 99 bool consumeGridTemplateRowsAndAreasAndColumns(CSSPropertyID, bool important);
100 bool consumeGridTemplateShorthand(CSSPropertyID, bool important); 100 bool consumeGridTemplateShorthand(CSSPropertyID, bool important);
101 bool consumeGridShorthand(bool important); 101 bool consumeGridShorthand(bool important);
102 bool consumeGridAreaShorthand(bool important); 102 bool consumeGridAreaShorthand(bool important);
103 103
104 bool consumePlaceContentShorthand(bool important); 104 bool consumePlaceContentShorthand(bool important);
105 bool consumePlaceItemsShorthand(bool important);
105 106
106 bool consumeFont(bool important); 107 bool consumeFont(bool important);
107 bool consumeFontVariantShorthand(bool important); 108 bool consumeFontVariantShorthand(bool important);
108 bool consumeSystemFont(bool important); 109 bool consumeSystemFont(bool important);
109 110
110 bool consumeBorderSpacing(bool important); 111 bool consumeBorderSpacing(bool important);
111 112
112 // CSS3 Parsing Routines (for properties specific to CSS3) 113 // CSS3 Parsing Routines (for properties specific to CSS3)
113 bool consumeBorderImage(CSSPropertyID, bool important); 114 bool consumeBorderImage(CSSPropertyID, bool important);
114 115
115 bool consumeFlex(bool important); 116 bool consumeFlex(bool important);
116 117
117 bool consumeLegacyBreakProperty(CSSPropertyID, bool important); 118 bool consumeLegacyBreakProperty(CSSPropertyID, bool important);
118 119
119 private: 120 private:
120 // Inputs: 121 // Inputs:
121 CSSParserTokenRange m_range; 122 CSSParserTokenRange m_range;
122 Member<const CSSParserContext> m_context; 123 Member<const CSSParserContext> m_context;
123 // Outputs: 124 // Outputs:
124 HeapVector<CSSProperty, 256>* m_parsedProperties; 125 HeapVector<CSSProperty, 256>* m_parsedProperties;
125 }; 126 };
126 127
127 CSSPropertyID unresolvedCSSPropertyID(StringView); 128 CSSPropertyID unresolvedCSSPropertyID(StringView);
128 CSSValueID cssValueKeywordID(StringView); 129 CSSValueID cssValueKeywordID(StringView);
129 130
130 } // namespace blink 131 } // namespace blink
131 132
132 #endif // CSSPropertyParser_h 133 #endif // CSSPropertyParser_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698