LibWeb: Implement XMLSerializer

The main thing that is missing is validating certain pieces of data
against XML productions in well-formed mode, but nothing uses
well-formed mode right now.

Required by Closure Library for sanitising HTML.
e687b3d8ab/closure/goog/html/sanitizer/safedomtreeprocessor.js (L117)
This commit is contained in:
Luke Wilde
2022-07-05 18:59:45 +01:00
committed by Andreas Kling
parent 60fc0ceabb
commit de88e119a0
Notes: sideshowbarker 2024-07-17 09:41:43 +09:00
10 changed files with 938 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
#import <DOM/Node.idl>
[Exposed=Window]
interface XMLSerializer {
constructor();
DOMString serializeToString(Node root);
};