Problem: Discarding a document that contains an SVG “use” element could abort the process with a !is_in_list() verification failure in the IntrusiveListNode destructor. That surfaced intermittently in our style- invalidation stress tests, depending on GC sweep order. Cause: A “use” element connected to a document registers itself in the document’s list of “use” elements and unregisters during its removal steps. A GC’ed “use” element is swept without running those removal steps — so it stays linked. When it’s destroyed before its document, its list node is still linked — and the destructor aborts. Fix: Override finalize() to unregister the “use” element before destruction. The collector finalizes every dying cell before destroying any of them. So, the node is always unlinked in time — the same approach DocumentObserver and NavigationObserver already use.
100 lines
3.3 KiB
C++
100 lines
3.3 KiB
C++
/*
|
|
* Copyright (c) 2023, Preston Taylor <95388976+PrestonLTaylor@users.noreply.github.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/FlyString.h>
|
|
#include <AK/IntrusiveList.h>
|
|
#include <LibWeb/DOM/DocumentLoadEventDelayer.h>
|
|
#include <LibWeb/DOM/DocumentObserver.h>
|
|
#include <LibWeb/SVG/SVGAnimatedLength.h>
|
|
#include <LibWeb/SVG/SVGGraphicsElement.h>
|
|
#include <LibWeb/SVG/SVGURIReference.h>
|
|
|
|
namespace Web::SVG {
|
|
|
|
class SVGUseElement final
|
|
: public SVGGraphicsElement
|
|
, public SVGURIReferenceMixin<SupportsXLinkHref::Yes> {
|
|
WEB_PLATFORM_OBJECT(SVGUseElement, SVGGraphicsElement);
|
|
GC_DECLARE_ALLOCATOR(SVGUseElement);
|
|
|
|
public:
|
|
static constexpr bool OVERRIDES_FINALIZE = true;
|
|
|
|
virtual ~SVGUseElement() override = default;
|
|
|
|
virtual void attribute_changed(FlyString const& name, Optional<String> const& old_value, Optional<String> const& value, Optional<FlyString> const& namespace_) override;
|
|
|
|
void svg_element_changed(SVGElement&);
|
|
void svg_element_changed_before_document_complete(SVGElement&);
|
|
void svg_element_removed(SVGElement&);
|
|
|
|
GC::Ref<SVGAnimatedLength> x() const;
|
|
GC::Ref<SVGAnimatedLength> y() const;
|
|
GC::Ref<SVGAnimatedLength> width() const;
|
|
GC::Ref<SVGAnimatedLength> height() const;
|
|
|
|
GC::Ptr<SVGElement> instance_root() const;
|
|
GC::Ptr<SVGElement> animated_instance_root() const;
|
|
|
|
virtual Gfx::AffineTransform element_transform() const override;
|
|
|
|
private:
|
|
SVGUseElement(DOM::Document&, DOM::QualifiedName);
|
|
|
|
virtual void initialize(JS::Realm&) override;
|
|
virtual void visit_edges(Cell::Visitor&) override;
|
|
virtual void finalize() override;
|
|
virtual void adopted_from(DOM::Document&) override;
|
|
virtual void inserted() override;
|
|
virtual void removed_from(IsSubtreeRoot, Node* old_ancestor, Node& old_root) override;
|
|
virtual void moved_from(IsSubtreeRoot, GC::Ptr<Node> old_ancestor) override;
|
|
|
|
virtual bool is_svg_use_element() const override { return true; }
|
|
|
|
virtual RefPtr<Layout::Node> create_layout_node(CSS::ComputedProperties const&) override;
|
|
|
|
void process_the_url(Optional<String> const& href);
|
|
|
|
static Optional<FlyString> parse_id_from_href(StringView);
|
|
|
|
GC::Ptr<DOM::Element> referenced_element() const;
|
|
|
|
void fetch_the_document(URL::URL const& url);
|
|
bool is_referenced_element_same_document() const;
|
|
|
|
void clone_element_tree_as_our_shadow_tree(Element* to_clone);
|
|
bool is_valid_reference_element(Element const& reference_element) const;
|
|
bool would_create_circular_reference(Element const& target) const;
|
|
bool would_create_circular_reference_impl(Element const& target, GC::HeapHashTable<GC::Ref<Element const>>& visited) const;
|
|
void register_for_referenced_element_changes();
|
|
void unregister_for_referenced_element_changes();
|
|
|
|
Optional<float> m_x;
|
|
Optional<float> m_y;
|
|
bool m_needs_document_complete_reclone { false };
|
|
|
|
Optional<URL::URL> m_href;
|
|
|
|
GC::Ptr<DOM::DocumentObserver> m_document_observer;
|
|
GC::Ptr<HTML::SharedResourceRequest> m_resource_request;
|
|
Optional<DOM::DocumentLoadEventDelayer> m_load_event_delayer;
|
|
|
|
IntrusiveListNode<SVGUseElement> m_list_node;
|
|
|
|
public:
|
|
using DocumentUseElementList = IntrusiveList<&SVGUseElement::m_list_node>;
|
|
};
|
|
|
|
}
|
|
|
|
namespace Web::DOM {
|
|
|
|
template<>
|
|
inline bool Node::fast_is<SVG::SVGUseElement>() const { return is_svg_use_element(); }
|
|
|
|
}
|