mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-20 08:03:21 +00:00
21 lines
270 B
C++
21 lines
270 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(URL base_url)
|
||
|
: m_base_url(move(base_url))
|
||
|
{
|
||
|
}
|
||
|
|
||
|
Script::~Script()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
}
|