mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-22 17:13:20 +00:00
24 lines
567 B
C++
24 lines
567 B
C++
![]() |
/*
|
||
|
* Copyright (c) 2024, MacDue <macdue@dueutil.tech>
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#include <LibWeb/Layout/SVGClipBox.h>
|
||
|
#include <LibWeb/Painting/SVGClipPaintable.h>
|
||
|
#include <LibWeb/Painting/StackingContext.h>
|
||
|
|
||
|
namespace Web::Layout {
|
||
|
|
||
|
SVGClipBox::SVGClipBox(DOM::Document& document, SVG::SVGClipPathElement& element, NonnullRefPtr<CSS::StyleProperties> properties)
|
||
|
: SVGBox(document, element, properties)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
JS::GCPtr<Painting::Paintable> SVGClipBox::create_paintable() const
|
||
|
{
|
||
|
return Painting::SVGClipPaintable::create(*this);
|
||
|
}
|
||
|
|
||
|
}
|