#include "third_party/blink/renderer/modules/webdatabase/dom_window_web_database.h"
#include "base/feature_list.h"
#include "base/strings/strcat.h"
#include "base/test/scoped_command_line.h"
#include "base/test/scoped_feature_list.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/public/common/features.h"
#include "third_party/blink/public/common/switches.h"
#include "third_party/blink/renderer/bindings/core/v8/v8_binding_for_testing.h"
#include "third_party/blink/renderer/core/frame/frame_test_helpers.h"
#include "third_party/blink/renderer/core/frame/local_dom_window.h"
#include "third_party/blink/renderer/modules/webdatabase/database.h"
#include "third_party/blink/renderer/platform/bindings/exception_state.h"
#include "third_party/blink/renderer/platform/testing/task_environment.h"
#include "third_party/blink/renderer/platform/testing/unit_test_helpers.h"
#include "third_party/blink/renderer/platform/testing/url_test_helpers.h"
#include "third_party/blink/renderer/platform/weborigin/kurl.h"
namespace blink {
void OpenWebDatabaseInIFrame(const char* outer_origin,
const char* outer_file,
const char* inner_origin,
const char* inner_file,
ExceptionState& exception_state) { … }
void OpenWebDatabaseInWindow(const char* outer_origin,
const char* outer_file,
ExceptionState& exception_state) { … }
TEST(DOMWindowWebDatabaseTest, WebSQLThirdPartyContext) { … }
TEST(DOMWindowWebDatabaseTest, WebSQLNonSecureContext) { … }
TEST(DOMWindowWebDatabaseTest, WebSQLFirstPartyContext) { … }
}