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

Side by Side Diff: third_party/WebKit/Source/core/css/resolver/StyleBuilderConverter.h

Issue 2166393002: [css-grid] grid-auto-flow|row should take a <track-size>+ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Patch for landing v2 Created 4 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * * Redistributions of source code must retain the above copyright 4 * * Redistributions of source code must retain the above copyright
5 * notice, this list of conditions and the following disclaimer. 5 * notice, this list of conditions and the following disclaimer.
6 * * Redistributions in binary form must reproduce the above 6 * * Redistributions in binary form must reproduce the above
7 * copyright notice, this list of conditions and the following disclaimer 7 * copyright notice, this list of conditions and the following disclaimer
8 * in the documentation and/or other materials provided with the 8 * in the documentation and/or other materials provided with the
9 * distribution. 9 * distribution.
10 * * Neither the name of Google Inc. nor the names of its 10 * * Neither the name of Google Inc. nor the names of its
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 static float convertFontSizeAdjust(StyleResolverState&, const CSSValue&); 70 static float convertFontSizeAdjust(StyleResolverState&, const CSSValue&);
71 static FontWeight convertFontWeight(StyleResolverState&, const CSSValue&); 71 static FontWeight convertFontWeight(StyleResolverState&, const CSSValue&);
72 static FontDescription::FontVariantCaps convertFontVariantCaps(StyleResolver State&, const CSSValue&); 72 static FontDescription::FontVariantCaps convertFontVariantCaps(StyleResolver State&, const CSSValue&);
73 static FontDescription::VariantLigatures convertFontVariantLigatures(StyleRe solverState&, const CSSValue&); 73 static FontDescription::VariantLigatures convertFontVariantLigatures(StyleRe solverState&, const CSSValue&);
74 static FontVariantNumeric convertFontVariantNumeric(StyleResolverState&, con st CSSValue&); 74 static FontVariantNumeric convertFontVariantNumeric(StyleResolverState&, con st CSSValue&);
75 static StyleSelfAlignmentData convertSelfOrDefaultAlignmentData(StyleResolve rState&, const CSSValue&); 75 static StyleSelfAlignmentData convertSelfOrDefaultAlignmentData(StyleResolve rState&, const CSSValue&);
76 static StyleContentAlignmentData convertContentAlignmentData(StyleResolverSt ate&, const CSSValue&); 76 static StyleContentAlignmentData convertContentAlignmentData(StyleResolverSt ate&, const CSSValue&);
77 static GridAutoFlow convertGridAutoFlow(StyleResolverState&, const CSSValue& ); 77 static GridAutoFlow convertGridAutoFlow(StyleResolverState&, const CSSValue& );
78 static GridPosition convertGridPosition(StyleResolverState&, const CSSValue& ); 78 static GridPosition convertGridPosition(StyleResolverState&, const CSSValue& );
79 static GridTrackSize convertGridTrackSize(StyleResolverState&, const CSSValu e&); 79 static GridTrackSize convertGridTrackSize(StyleResolverState&, const CSSValu e&);
80 static Vector<GridTrackSize> convertGridTrackSizeList(StyleResolverState&, c onst CSSValue&);
80 template <typename T> static T convertLineWidth(StyleResolverState&, const C SSValue&); 81 template <typename T> static T convertLineWidth(StyleResolverState&, const C SSValue&);
81 static Length convertLength(const StyleResolverState&, const CSSValue&); 82 static Length convertLength(const StyleResolverState&, const CSSValue&);
82 static UnzoomedLength convertUnzoomedLength(const StyleResolverState&, const CSSValue&); 83 static UnzoomedLength convertUnzoomedLength(const StyleResolverState&, const CSSValue&);
83 static Length convertLengthOrAuto(const StyleResolverState&, const CSSValue& ); 84 static Length convertLengthOrAuto(const StyleResolverState&, const CSSValue& );
84 static Length convertLengthSizing(StyleResolverState&, const CSSValue&); 85 static Length convertLengthSizing(StyleResolverState&, const CSSValue&);
85 static Length convertLengthMaxSizing(StyleResolverState&, const CSSValue&); 86 static Length convertLengthMaxSizing(StyleResolverState&, const CSSValue&);
86 static TabSize convertLengthOrTabSpaces(StyleResolverState&, const CSSValue& ); 87 static TabSize convertLengthOrTabSpaces(StyleResolverState&, const CSSValue& );
87 static Length convertLineHeight(StyleResolverState&, const CSSValue&); 88 static Length convertLineHeight(StyleResolverState&, const CSSValue&);
88 static float convertNumberOrPercentage(StyleResolverState&, const CSSValue&) ; 89 static float convertNumberOrPercentage(StyleResolverState&, const CSSValue&) ;
89 static StyleMotionRotation convertMotionRotation(StyleResolverState&, const CSSValue&); 90 static StyleMotionRotation convertMotionRotation(StyleResolverState&, const CSSValue&);
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 { 171 {
171 if (value.isStringValue()) 172 if (value.isStringValue())
172 return AtomicString(toCSSStringValue(value).value()); 173 return AtomicString(toCSSStringValue(value).value());
173 ASSERT(toCSSPrimitiveValue(value).getValueID() == IdForNone); 174 ASSERT(toCSSPrimitiveValue(value).getValueID() == IdForNone);
174 return nullAtom; 175 return nullAtom;
175 } 176 }
176 177
177 } // namespace blink 178 } // namespace blink
178 179
179 #endif 180 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698