2020-03-19 19:07:56 +01:00
|
|
|
/*
|
2024-10-04 13:19:50 +02:00
|
|
|
* Copyright (c) 2020-2022, Andreas Kling <andreas@ladybird.org>
|
2020-03-19 19:07:56 +01:00
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-03-19 19:07:56 +01:00
|
|
|
*/
|
|
|
|
|
|
2020-11-22 15:53:01 +01:00
|
|
|
#include <LibWeb/Layout/CanvasBox.h>
|
2022-03-10 14:02:25 +01:00
|
|
|
#include <LibWeb/Painting/CanvasPaintable.h>
|
2020-03-19 19:07:56 +01:00
|
|
|
|
2020-11-22 15:53:01 +01:00
|
|
|
namespace Web::Layout {
|
2020-03-19 19:07:56 +01:00
|
|
|
|
2024-11-15 04:01:23 +13:00
|
|
|
GC_DEFINE_ALLOCATOR(CanvasBox);
|
2024-04-06 10:16:04 -07:00
|
|
|
|
2024-12-20 16:35:12 +01:00
|
|
|
CanvasBox::CanvasBox(DOM::Document& document, HTML::HTMLCanvasElement& element, GC::Ref<CSS::ComputedProperties> style)
|
2020-11-22 15:53:01 +01:00
|
|
|
: ReplacedBox(document, element, move(style))
|
2020-03-19 19:07:56 +01:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2022-03-14 13:21:51 -06:00
|
|
|
CanvasBox::~CanvasBox() = default;
|
2020-03-19 19:07:56 +01:00
|
|
|
|
2026-01-11 00:31:07 -06:00
|
|
|
CSS::SizeWithAspectRatio CanvasBox::compute_auto_content_box_size() const
|
2020-03-19 19:07:56 +01:00
|
|
|
{
|
2026-01-11 00:31:07 -06:00
|
|
|
auto width = dom_node().width();
|
|
|
|
|
auto height = dom_node().height();
|
|
|
|
|
if (width == 0 || height == 0)
|
|
|
|
|
return { width, height, {} };
|
|
|
|
|
return { width, height, CSSPixelFraction(width, height) };
|
2020-03-19 19:07:56 +01:00
|
|
|
}
|
|
|
|
|
|
2024-11-15 04:01:23 +13:00
|
|
|
GC::Ptr<Painting::Paintable> CanvasBox::create_paintable() const
|
2020-03-19 19:07:56 +01:00
|
|
|
{
|
2022-03-10 14:02:25 +01:00
|
|
|
return Painting::CanvasPaintable::create(*this);
|
2020-03-19 19:07:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|