// 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. #include "third_party/blink/renderer/core/style/scoped_css_name.h" #include "testing/gtest/include/gtest/gtest.h" #include "third_party/blink/renderer/platform/heap/collection_support/heap_hash_set.h" namespace blink { // Tests that hash tables of Member<ScopedCSSName> hash the names // themselves, not the wrapper pointers. TEST(ScopedCSSNameTest, HashInsertDuplicate) { … } TEST(ScopedCSSNameTest, HashDifferentNames) { … } TEST(ScopedCSSNameTest, HashEqualNames) { … } TEST(ScopedCSSNameTest, LookupEmpty) { … } TEST(ScopedCSSNameTest, LookupDeleted) { … } } // namespace blink