mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-03 04:52:06 +02:00
LibWeb: Move XMLSerializer into HTML directory
The DOMParsing spec is in the process of being merged into the HTML one,
gradually. The linked spec change moves XMLSerializer, but many of the
algorithms are still in the DOMParsing spec so I've left the links to
those alone.
I've done my best to update the GN build but since I'm not actually
using it, I might have done that wrong.
Corresponds to 2edb8cc7ee
This commit is contained in:
committed by
Tim Ledbetter
parent
a11848f163
commit
f148af0a93
Notes:
github-actions[bot]
2025-03-04 16:45:51 +00:00
Author: https://github.com/AtkinsSJ Commit: https://github.com/LadybirdBrowser/ladybird/commit/f148af0a939 Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/3779 Reviewed-by: https://github.com/tcl3 ✅
8
Libraries/LibWeb/HTML/XMLSerializer.idl
Normal file
8
Libraries/LibWeb/HTML/XMLSerializer.idl
Normal file
@@ -0,0 +1,8 @@
|
||||
#import <DOM/Node.idl>
|
||||
|
||||
// https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.html#xmlserializer
|
||||
[Exposed=Window]
|
||||
interface XMLSerializer {
|
||||
constructor();
|
||||
DOMString serializeToString(Node root);
|
||||
};
|
||||
Reference in New Issue
Block a user