#include "third_party/blink/renderer/core/html/custom/custom_element_descriptor.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/core/html/custom/custom_element_descriptor_hash.h"
#include "third_party/blink/renderer/core/html/custom/custom_element_test_helpers.h"
#include "third_party/blink/renderer/platform/testing/task_environment.h"
#include "third_party/blink/renderer/platform/wtf/hash_set.h"
#include "third_party/blink/renderer/platform/wtf/text/atomic_string.h"
namespace blink {
class Element;
TEST(CustomElementDescriptorTest, equal) { … }
TEST(CustomElementDescriptorTest, notEqual) { … }
TEST(CustomElementDescriptorTest, hashable) { … }
TEST(CustomElementDescriptorTest, matches_autonomous) { … }
TEST(CustomElementDescriptorTest,
matches_autonomous_shouldNotMatchCustomizedBuiltInElement) { … }
TEST(CustomElementDescriptorTest, matches_customizedBuiltIn) { … }
TEST(CustomElementDescriptorTest,
matches_customizedBuiltIn_shouldNotMatchAutonomousElement) { … }
TEST(CustomElementDescriptorTest,
matches_elementNotInHTMLNamespaceDoesNotMatch) { … }
}