#include "third_party/blink/renderer/core/css/parser/css_parser_fast_paths.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/core/css/css_color.h"
#include "third_party/blink/renderer/core/css/css_identifier_value.h"
#include "third_party/blink/renderer/core/css/css_numeric_literal_value.h"
#include "third_party/blink/renderer/core/css/css_value_list.h"
#include "third_party/blink/renderer/core/execution_context/security_context.h"
namespace blink {
TEST(CSSParserFastPathsTest, ParseKeyword) { … }
TEST(CSSParserFastPathsTest, ParseCSSWideKeywords) { … }
TEST(CSSParserFastPathsTest, ParseRevert) { … }
TEST(CSSParserFastPathsTest, ParseRevertLayer) { … }
TEST(CSSParserFastPathsTest, ParseSimpleLength) { … }
TEST(CSSParserFastPathsTest, VariousNumberOfDecimalsInLength) { … }
TEST(CSSParserFastPathsTest, ParseTransform) { … }
TEST(CSSParserFastPathsTest, ParseComplexTransform) { … }
TEST(CSSParserFastPathsTest, ParseTransformNotFastPath) { … }
TEST(CSSParserFastPathsTest, ParseInvalidTransform) { … }
TEST(CSSParserFastPathsTest, ParseColorWithLargeAlpha) { … }
TEST(CSSParserFastPathsTest, ParseColorWithNewSyntax) { … }
TEST(CSSParserFastPathsTest, ParseColorWithDecimal) { … }
TEST(CSSParserFastPathsTest, ParseHSL) { … }
TEST(CSSParserFastPathsTest, ParseHSLWithAlpha) { … }
TEST(CSSParserFastPathsTest, ParseHSLInvalid) { … }
TEST(CSSParserFastPathsTest, IsValidKeywordPropertyAndValueOverflowClip) { … }
TEST(CSSParserFastPathsTest, InternalColorsOnlyAllowedInUaMode) { … }
}