mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
f3d57e1157
Since handling overflow: hidden in PaintableBox::before_children_paint while following paint traversal order can't result in correctly computed clip rectangle for elements that create their own stacking context (because before_children_paint is called only for parent but overflow: hidden can be set somewhere deeper but not in direct ancestor), here introduced new function PaintableBox::clip_rect() that computes clip rectangle by looking into containing block. should_clip_overflow flag that disables clip for absolutely positioned elements in before_children_paint and after_children_paint is removed because after changing clip rectangle to be computed from not parent but containing block it is not needed anymore (absolutely positioned item is clipped if it's containing block has hidden overflow)
28 lines
642 B
C++
28 lines
642 B
C++
/*
|
|
* Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/Layout/SVGSVGBox.h>
|
|
#include <LibWeb/Painting/PaintableBox.h>
|
|
|
|
namespace Web::Painting {
|
|
|
|
class SVGSVGPaintable : public PaintableBox {
|
|
public:
|
|
static NonnullRefPtr<SVGSVGPaintable> create(Layout::SVGSVGBox const&);
|
|
|
|
virtual void before_children_paint(PaintContext&, PaintPhase) const override;
|
|
virtual void after_children_paint(PaintContext&, PaintPhase) const override;
|
|
|
|
Layout::SVGSVGBox const& layout_box() const;
|
|
|
|
protected:
|
|
SVGSVGPaintable(Layout::SVGSVGBox const&);
|
|
};
|
|
|
|
}
|