Implement XMLSerializer interface

This commit is contained in:
George Roman 2019-03-14 19:08:17 +02:00
parent e58226814f
commit c6433efc1d
8 changed files with 76 additions and 67 deletions

View file

@ -0,0 +1,13 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
/*
* The origin of this IDL file is
* https://w3c.github.io/DOM-Parsing/#the-domparser-interface
*/
[Constructor]
interface XMLSerializer {
[Throws]
DOMString serializeToString(Node root);
};