mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-09 04:32:51 +00:00
Many times, attribute mutation doesn't necessitate a full style invalidation on the element. However, the conditions are pretty elaborate, so this first version has a lot of false positives. We only need to invalidate style when any of these things apply: 1. The change may affect the match state of a selector somewhere. 2. The change may affect presentational hints applied to the element. For (1) in this first version, we have a fixed list of attribute names that may affect selectors. We also collect all names referenced by attribute selectors anywhere in the document. For (2), we add a new Element::is_presentational_hint() virtual that tells us whether a given attribute name is a presentational hint. This drastically reduces style work on many websites. As an example, https://cnn.com/ is once again browseable.
111 lines
3.5 KiB
C++
111 lines
3.5 KiB
C++
/*
|
|
* Copyright (c) 2020, Matthew Olsson <mattco@serenityos.org>
|
|
* Copyright (c) 2021-2022, Sam Atkins <atkinssj@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibGfx/PaintStyle.h>
|
|
#include <LibWeb/DOM/Node.h>
|
|
#include <LibWeb/SVG/AttributeParser.h>
|
|
#include <LibWeb/SVG/SVGAnimatedTransformList.h>
|
|
#include <LibWeb/SVG/SVGElement.h>
|
|
#include <LibWeb/SVG/SVGGradientElement.h>
|
|
#include <LibWeb/SVG/TagNames.h>
|
|
#include <LibWeb/SVG/ViewBox.h>
|
|
|
|
namespace Web::SVG {
|
|
|
|
struct SVGBoundingBoxOptions {
|
|
bool fill { true };
|
|
bool stroke { false };
|
|
bool markers { false };
|
|
bool clipped { false };
|
|
};
|
|
|
|
class SVGGraphicsElement : public SVGElement {
|
|
WEB_PLATFORM_OBJECT(SVGGraphicsElement, SVGElement);
|
|
|
|
public:
|
|
virtual bool is_presentational_hint(FlyString const&) const override;
|
|
virtual void apply_presentational_hints(GC::Ref<CSS::CascadedProperties>) const override;
|
|
|
|
virtual void attribute_changed(FlyString const& name, Optional<String> const& old_value, Optional<String> const& value, Optional<FlyString> const& namespace_) override;
|
|
|
|
Optional<Gfx::Color> fill_color() const;
|
|
Optional<Gfx::Color> stroke_color() const;
|
|
Vector<float> stroke_dasharray() const;
|
|
Optional<float> stroke_dashoffset() const;
|
|
Optional<float> stroke_width() const;
|
|
Optional<float> fill_opacity() const;
|
|
Optional<CSS::StrokeLinecap> stroke_linecap() const;
|
|
Optional<CSS::StrokeLinejoin> stroke_linejoin() const;
|
|
Optional<CSS::NumberOrCalculated> stroke_miterlimit() const;
|
|
Optional<float> stroke_opacity() const;
|
|
Optional<FillRule> fill_rule() const;
|
|
Optional<ClipRule> clip_rule() const;
|
|
|
|
float visible_stroke_width() const
|
|
{
|
|
if (auto color = stroke_color(); color.has_value() && color->alpha() > 0)
|
|
return stroke_width().value_or(0);
|
|
return 0;
|
|
}
|
|
|
|
Gfx::AffineTransform get_transform() const;
|
|
|
|
Optional<Painting::PaintStyle> fill_paint_style(SVGPaintContext const&) const;
|
|
Optional<Painting::PaintStyle> stroke_paint_style(SVGPaintContext const&) const;
|
|
|
|
GC::Ptr<SVG::SVGMaskElement const> mask() const;
|
|
GC::Ptr<SVG::SVGClipPathElement const> clip_path() const;
|
|
|
|
GC::Ref<Geometry::DOMRect> get_b_box(Optional<SVGBoundingBoxOptions>);
|
|
GC::Ref<SVGAnimatedTransformList> transform() const;
|
|
|
|
GC::Ptr<Geometry::DOMMatrix> get_screen_ctm();
|
|
|
|
protected:
|
|
SVGGraphicsElement(DOM::Document&, DOM::QualifiedName);
|
|
|
|
virtual void initialize(JS::Realm&) override;
|
|
|
|
virtual Gfx::AffineTransform element_transform() const
|
|
{
|
|
return m_transform;
|
|
}
|
|
|
|
Optional<Painting::PaintStyle> svg_paint_computed_value_to_gfx_paint_style(SVGPaintContext const& paint_context, Optional<CSS::SVGPaint> const& paint_value) const;
|
|
|
|
Gfx::AffineTransform m_transform = {};
|
|
|
|
template<typename T>
|
|
GC::Ptr<T> try_resolve_url_to(URL::URL const& url) const
|
|
{
|
|
if (!url.fragment().has_value())
|
|
return {};
|
|
auto node = document().get_element_by_id(*url.fragment());
|
|
if (!node)
|
|
return {};
|
|
if (is<T>(*node))
|
|
return static_cast<T&>(*node);
|
|
return {};
|
|
}
|
|
|
|
private:
|
|
virtual bool is_svg_graphics_element() const final { return true; }
|
|
float resolve_relative_to_viewport_size(CSS::LengthPercentage const& length_percentage) const;
|
|
};
|
|
|
|
Gfx::AffineTransform transform_from_transform_list(ReadonlySpan<Transform> transform_list);
|
|
|
|
}
|
|
|
|
namespace Web::DOM {
|
|
|
|
template<>
|
|
inline bool Node::fast_is<SVG::SVGGraphicsElement>() const { return is_svg_graphics_element(); }
|
|
|
|
}
|