chromium/third_party/blink/renderer/core/css/parser/css_parser_fast_paths_test.cc

// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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) {}

// Mostly to stress-test the SIMD paths.
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) {}

}  // namespace blink