chromium/third_party/blink/renderer/core/html/html_script_element_test.cc

// Copyright 2020 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/html_script_element.h"

#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/core/dom/create_element_flags.h"
#include "third_party/blink/renderer/core/dom/document.h"
#include "third_party/blink/renderer/core/dom/text.h"
#include "third_party/blink/renderer/core/testing/dummy_page_holder.h"
#include "third_party/blink/renderer/platform/testing/task_environment.h"

namespace blink {

class HTMLScriptElementTest : public testing::Test {};

TEST_F(HTMLScriptElementTest, ScriptTextInternalSlotSimple) {}

TEST_F(HTMLScriptElementTest, ScriptTextInternalSlotMultiple) {}

TEST_F(HTMLScriptElementTest,
       ScriptTextInternalSlotScriptParsingInterruptedByApiCall) {}

}  // namespace blink