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

// Copyright 2023 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/style_scope_data.h"

#include "third_party/blink/renderer/bindings/core/v8/v8_css_style_sheet_init.h"
#include "third_party/blink/renderer/core/css/css_style_sheet.h"
#include "third_party/blink/renderer/core/css/style_scope.h"
#include "third_party/blink/renderer/core/dom/document.h"
#include "third_party/blink/renderer/core/dom/element.h"
#include "third_party/blink/renderer/core/dom/shadow_root.h"
#include "third_party/blink/renderer/core/html/html_element.h"
#include "third_party/blink/renderer/core/html/html_style_element.h"
#include "third_party/blink/renderer/core/testing/page_test_base.h"

namespace blink {

class StyleScopeDataTest : public PageTestBase {};

TEST_F(StyleScopeDataTest, NoScopes) {}

TEST_F(StyleScopeDataTest, NotImplicitScope) {}

TEST_F(StyleScopeDataTest, Trivial) {}

TEST_F(StyleScopeDataTest, ExtraLeadingStyleRule) {}

TEST_F(StyleScopeDataTest, ExtraTrailingStyleRule) {}

TEST_F(StyleScopeDataTest, TwoInOne) {}

TEST_F(StyleScopeDataTest, TwoInOneNested) {}

TEST_F(StyleScopeDataTest, NestedNonImplicitOuter) {}

TEST_F(StyleScopeDataTest, DistinctContent) {}

TEST_F(StyleScopeDataTest, SharedContent) {}

TEST_F(StyleScopeDataTest, Tree) {}

// Mutations

TEST_F(StyleScopeDataTest, TrivialInsertRemove) {}

TEST_F(StyleScopeDataTest, DoubleInsertRemove) {}

TEST_F(StyleScopeDataTest, MutateSheet) {}

TEST_F(StyleScopeDataTest, ShadowHost) {}

TEST_F(StyleScopeDataTest, ShadowHostDoubleScope) {}

TEST_F(StyleScopeDataTest, AdoptedStylesheet) {}

}  // namespace blink