summaryrefslogtreecommitdiff
path: root/javascript/WebIDL/dom-parsing.idl
diff options
context:
space:
mode:
Diffstat (limited to 'javascript/WebIDL/dom-parsing.idl')
-rw-r--r--javascript/WebIDL/dom-parsing.idl35
1 files changed, 0 insertions, 35 deletions
diff --git a/javascript/WebIDL/dom-parsing.idl b/javascript/WebIDL/dom-parsing.idl
deleted file mode 100644
index d2581328e..000000000
--- a/javascript/WebIDL/dom-parsing.idl
+++ /dev/null
@@ -1,35 +0,0 @@
-// Retrived from http://www.w3.org/TR/DOM-Parsing/
-// Wed Nov 4 15:39:43 GMT 2015
-// Manually extracted IDL
-
-enum SupportedType {
- "text/html",
- "text/xml",
- "application/xml",
- "application/xhtml+xml",
- "image/svg+xml"
-};
-
-[Constructor]
-interface DOMParser {
- [NewObject]
- Document parseFromString (DOMString str, SupportedType type);
-};
-
-[Constructor]
-interface XMLSerializer {
- DOMString serializeToString (Node root);
-};
-
-partial interface Element {
- [TreatNullAs=EmptyString]
- attribute DOMString innerHTML;
- [TreatNullAs=EmptyString]
- attribute DOMString outerHTML;
- void insertAdjacentHTML (DOMString position, DOMString text);
-};
-
-partial interface Range {
- [NewObject]
- DocumentFragment createContextualFragment (DOMString fragment);
-};