Chromium Code Reviews| Index: third_party/WebKit/Source/core/css/properties/CSSPropertyAPIFontFeatureSettings.cpp |
| diff --git a/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIFontFeatureSettings.cpp b/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIFontFeatureSettings.cpp |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..42f5ca3b8f33ace4f87611349f105fd35b69e7fe |
| --- /dev/null |
| +++ b/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIFontFeatureSettings.cpp |
| @@ -0,0 +1,19 @@ |
| +// Copyright 2017 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#include "core/css/properties/CSSPropertyAPIFontFeatureSettings.h" |
| + |
| +#include "core/css/parser/CSSParserContext.h" |
|
Bugs Nash
2017/05/04 03:25:30
this doesn't need to be included, can be forward d
Jia
2017/05/04 04:14:48
Done.
|
| +#include "core/css/properties/CSSPropertyFontUtils.h" |
| + |
| +namespace blink { |
| + |
| +const CSSValue* CSSPropertyAPIFontFeatureSettings::parseSingleValue( |
| + CSSParserTokenRange& range, |
| + const CSSParserContext&, |
| + CSSPropertyID) { |
| + return CSSPropertyFontUtils::ConsumeFontFeatureSettings(range); |
| +} |
| + |
| +} // namespace blink |