LibWeb: Implement Document.rootElement (SVG2 extension to Document)

This commit is contained in:
Andreas Kling 2025-05-09 00:30:40 +02:00 committed by Andreas Kling
commit 879cba762b
Notes: github-actions[bot] 2025-05-16 18:37:14 +00:00
4 changed files with 16 additions and 3 deletions

View file

@ -156,6 +156,9 @@ interface Document : Node {
// special event handler IDL attributes that only apply to Document objects
[LegacyLenientThis] attribute EventHandler onreadystatechange;
attribute EventHandler onvisibilitychange;
// https://www.w3.org/TR/SVG2/struct.html#InterfaceDocumentExtensions
readonly attribute SVGSVGElement? rootElement;
};
dictionary ElementCreationOptions {