Chromium Code Reviews| Index: third_party/WebKit/Source/core/css/properties/CSSPropertyAPIWebkitHighlight.cpp |
| diff --git a/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIWebkitHighlight.cpp b/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIWebkitHighlight.cpp |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..68deb808d482efed5ccc004dda54c758f13881c3 |
| --- /dev/null |
| +++ b/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIWebkitHighlight.cpp |
| @@ -0,0 +1,20 @@ |
| +// 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/CSSPropertyAPIWebkitHighlight.h" |
| + |
| +#include "core/css/CSSStringValue.h" |
|
sashab
2017/01/06 05:28:08
This isn't needed
|
| +#include "core/css/parser/CSSPropertyParserHelpers.h" |
| + |
| +namespace blink { |
| + |
| +const CSSValue* CSSPropertyAPIWebkitHighlight::parseSingleValue( |
| + CSSParserTokenRange& range, |
| + const CSSParserContext& context) { |
| + if (range.peek().id() == CSSValueNone) |
| + return CSSPropertyParserHelpers::consumeIdent(range); |
| + return CSSPropertyParserHelpers::consumeString(range); |
| +} |
| + |
| +} // namespace blink |