chromium/third_party/pdfium/core/fxcrt/css/cfx_csssyntaxparser_unittest.cpp

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

#include "core/fxcrt/css/cfx_csssyntaxparser.h"

#include "testing/gtest/include/gtest/gtest.h"

// These tests cover the "declaration only" mode of the CSS Syntax Parser
// (i.e. inline style="" attribute). The cfx_cssstylesheet_unitttest.cpp
// file covers the full-up selector { ... } parsing.

TEST(CSSSyntaxParserTest, ParseEmpty) {}

TEST(CSSSyntaxParserTest, ParseBlank) {}

TEST(CSSSyntaxParserTest, ParseMissingColon) {}

TEST(CSSSyntaxParserTest, ParseMissingValue) {}

TEST(CSSSyntaxParserTest, ParseSingleProp1) {}

TEST(CSSSyntaxParserTest, ParseSingleProp2) {}

TEST(CSSSyntaxParserTest, ParseMissingColonMultiple) {}

TEST(CSSSyntaxParserTest, ParseMissingPropertyMultiple) {}

TEST(CSSSyntaxParserTest, ParseMultipleProp1) {}

TEST(CSSSyntaxParserTest, ParseMultipleProp2) {}

TEST(CSSSyntaxParserTest, ParseOpenBrace1) {}

TEST(CSSSyntaxParserTest, ParseOpenBrace2) {}

TEST(CSSSyntaxParserTest, ParseOpenBrace3) {}

TEST(CSSSyntaxParserTest, ParseOpenBrace4) {}

TEST(CSSSyntaxParserTest, ParseCloseBrace1) {}

TEST(CSSSyntaxParserTest, ParseCloseBrace2) {}

TEST(CSSSyntaxParserTest, ParseCloseBrace3) {}

TEST(CSSSyntaxParserTest, ParseCloseBrace4) {}