ladybird/Userland/Libraries/LibWeb/HTML/TextMetrics.cpp
2022-09-06 00:27:09 +02:00

26 lines
628 B
C++

/*
* Copyright (c) 2021, sin-ack <sin-ack@protonmail.com>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibWeb/Bindings/TextMetricsPrototype.h>
#include <LibWeb/HTML/TextMetrics.h>
#include <LibWeb/HTML/Window.h>
namespace Web::HTML {
JS::NonnullGCPtr<TextMetrics> TextMetrics::create(HTML::Window& window)
{
return *window.heap().allocate<TextMetrics>(window.realm(), window);
}
TextMetrics::TextMetrics(HTML::Window& window)
: PlatformObject(window.realm())
{
set_prototype(&window.ensure_web_prototype<Bindings::TextMetricsPrototype>("TextMetrics"));
}
TextMetrics::~TextMetrics() = default;
}