chromium/third_party/blink/renderer/core/css/check_pseudo_has_cache_scope_context_test.cc

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

#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/351564777): Remove this and convert code to safer constructs.
#pragma allow_unsafe_buffers
#endif

#include <memory>
#include <utility>

#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/core/css/check_pseudo_has_argument_context.h"
#include "third_party/blink/renderer/core/css/check_pseudo_has_cache_scope.h"
#include "third_party/blink/renderer/core/css/css_selector_list.h"
#include "third_party/blink/renderer/core/css/parser/css_parser.h"
#include "third_party/blink/renderer/core/css/parser/css_parser_context.h"
#include "third_party/blink/renderer/core/dom/document.h"
#include "third_party/blink/renderer/core/html/html_document.h"
#include "third_party/blink/renderer/core/testing/null_execution_context.h"
#include "third_party/blink/renderer/core/testing/page_test_base.h"

namespace blink {

class CheckPseudoHasCacheScopeContextTest : public PageTestBase {};

TEST_F(CheckPseudoHasCacheScopeContextTest,
       Case1StartsWithDescendantCombinator) {}

TEST_F(CheckPseudoHasCacheScopeContextTest, Case1StartsWithChildCombinator) {}

TEST_F(CheckPseudoHasCacheScopeContextTest, Case2StartsWithIndirectAdjacent) {}

TEST_F(CheckPseudoHasCacheScopeContextTest, Case2StartsWithDirectAdjacent) {}

TEST_F(CheckPseudoHasCacheScopeContextTest, Case3) {}

TEST_F(CheckPseudoHasCacheScopeContextTest, Case4) {}

TEST_F(CheckPseudoHasCacheScopeContextTest,
       QuerySelectorAllCase1StartsWithDescendantCombinator) {}

TEST_F(CheckPseudoHasCacheScopeContextTest,
       QuerySelectorAllCase1StartsWithChildCombinator) {}

TEST_F(CheckPseudoHasCacheScopeContextTest,
       QuerySelectorAllCase1StartsWithChildCombinatorNonSubjectHas) {}

TEST_F(CheckPseudoHasCacheScopeContextTest,
       QuerySelectorAllCase2NonSubjectHas) {}

TEST_F(CheckPseudoHasCacheScopeContextTest,
       QuerySelectorAllCase3NonSubjectHas) {}

TEST_F(CheckPseudoHasCacheScopeContextTest,
       QuerySelectorAllCase4NonSubjectHas) {}

TEST_F(CheckPseudoHasCacheScopeContextTest,
       QuerySelectorAllCase4StartsWithDirectAdjacentCombinator) {}

TEST_F(CheckPseudoHasCacheScopeContextTest, QuerySelectorAllCase5) {}

TEST_F(CheckPseudoHasCacheScopeContextTest, QuerySelectorAllCase6) {}

TEST_F(CheckPseudoHasCacheScopeContextTest, QuerySelectorAllCase7) {}

TEST_F(CheckPseudoHasCacheScopeContextTest, QuerySelectorAllCase8) {}

}  // namespace blink