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