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

Side by Side Diff: third_party/WebKit/Source/core/css/properties/CSSPropertyAPILineHeightStep.cpp

Issue 2704343003: Catch up the spec update in CSS Rhythmic Sizing (Closed)
Patch Set: Sorted CSSProperties.json5 alphabetically (meade@'s nit) Created 3 years, 9 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
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "core/css/properties/CSSPropertyAPILineHeightStep.h"
6
7 #include "core/css/CSSValueList.h"
8 #include "core/css/parser/CSSParserContext.h"
9 #include "core/css/parser/CSSPropertyParserHelpers.h"
10
11 namespace blink {
12
13 const CSSValue* CSSPropertyAPILineHeightStep::parseSingleValue(
14 CSSParserTokenRange& range,
15 const CSSParserContext* context) {
16 return CSSPropertyParserHelpers::consumeLength(range, context->mode(),
17 ValueRangeNonNegative);
18 }
19
20 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698