chromium/third_party/blink/renderer/core/html/custom/custom_element_upgrade_sorter_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/html/custom/custom_element_upgrade_sorter.h"

#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/bindings/core/v8/v8_binding_for_core.h"
#include "third_party/blink/renderer/bindings/core/v8/v8_shadow_root_init.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_document.h"
#include "third_party/blink/renderer/core/html_names.h"
#include "third_party/blink/renderer/core/testing/null_execution_context.h"
#include "third_party/blink/renderer/core/testing/page_test_base.h"
#include "third_party/blink/renderer/platform/bindings/exception_state.h"
#include "third_party/blink/renderer/platform/heap/collection_support/heap_vector.h"
#include "third_party/blink/renderer/platform/wtf/text/atomic_string.h"

namespace blink {

class CustomElementUpgradeSorterTest : public PageTestBase {};

TEST_F(CustomElementUpgradeSorterTest, inOtherDocument_notInSet) {}

TEST_F(CustomElementUpgradeSorterTest, oneCandidate) {}

TEST_F(CustomElementUpgradeSorterTest, candidatesInDocumentOrder) {}

TEST_F(CustomElementUpgradeSorterTest, sorter_ancestorInSet) {}

TEST_F(CustomElementUpgradeSorterTest, sorter_deepShallow) {}

TEST_F(CustomElementUpgradeSorterTest, sorter_shallowDeep) {}

TEST_F(CustomElementUpgradeSorterTest, sorter_shadow) {}

}  // namespace blink