#include "third_party/blink/renderer/core/html/forms/option_list.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/core/html/forms/html_option_element.h"
#include "third_party/blink/renderer/core/html/forms/html_select_element.h"
#include "third_party/blink/renderer/core/html/html_document.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/testing/task_environment.h"
namespace blink {
namespace {
AtomicString Id(const HTMLOptionElement* option) { … }
}
class OptionListTest : public testing::Test { … };
TEST_F(OptionListTest, Empty) { … }
TEST_F(OptionListTest, OptionOnly) { … }
TEST_F(OptionListTest, Optgroup) { … }
}