mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-26 14:28:49 +00:00
All Scripts have an associated settings object. https://html.spec.whatwg.org/multipage/webappapis.html#settings-object
20 lines
440 B
C++
20 lines
440 B
C++
/*
|
|
* Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibWeb/HTML/Scripting/Script.h>
|
|
|
|
namespace Web::HTML {
|
|
|
|
Script::Script(AK::URL base_url, String filename, EnvironmentSettingsObject& environment_settings_object)
|
|
: m_base_url(move(base_url))
|
|
, m_filename(move(filename))
|
|
, m_settings_object(environment_settings_object)
|
|
{
|
|
}
|
|
|
|
Script::~Script() = default;
|
|
|
|
}
|