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

// Copyright 2018 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_traversal_root.h"

#include "testing/gtest/include/gtest/gtest.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/flat_tree_traversal.h"
#include "third_party/blink/renderer/core/testing/null_execution_context.h"
#include "third_party/blink/renderer/platform/heap/garbage_collected.h"
#include "third_party/blink/renderer/platform/heap/persistent.h"
#include "third_party/blink/renderer/platform/testing/task_environment.h"

namespace blink {

class StyleTraversalRootTestImpl : public StyleTraversalRoot {};

class StyleTraversalRootTest : public testing::Test {};

TEST_F(StyleTraversalRootTest, Update_SingleRoot) {}

TEST_F(StyleTraversalRootTest, Update_CommonRoot) {}

TEST_F(StyleTraversalRootTest, Update_CommonRootDirtySubtree) {}

TEST_F(StyleTraversalRootTest, Update_CommonRootDocumentFallback) {}

TEST_F(StyleTraversalRootTest, SubtreeModified) {}

class StyleTraversalRootFlatTreeTestImpl : public StyleTraversalRootTestImpl {};

TEST_F(StyleTraversalRootTest, Update_CommonRoot_FlatTree) {}

}  // namespace blink