diff options
Diffstat (limited to 'dom/webidl/XMLSerializer.webidl')
-rw-r--r-- | dom/webidl/XMLSerializer.webidl | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/dom/webidl/XMLSerializer.webidl b/dom/webidl/XMLSerializer.webidl new file mode 100644 index 000000000..700098e2f --- /dev/null +++ b/dom/webidl/XMLSerializer.webidl @@ -0,0 +1,20 @@ +/* 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 http://mozilla.org/MPL/2.0/. + * + * The origin of this IDL file is + * http://domparsing.spec.whatwg.org/#the-xmlserializer-interface + */ + +interface OutputStream; + +[Constructor] +interface XMLSerializer { + [Throws] + DOMString serializeToString(Node root); + + // Mozilla-specific stuff + [Throws, ChromeOnly] + void serializeToStream(Node root, OutputStream stream, DOMString? charset); +}; + |