diff --git a/dom.bs b/dom.bs index e61c3fc0..9cda3502 100644 --- a/dom.bs +++ b/dom.bs @@ -10802,34 +10802,6 @@ methods on {{Document}}. -

XSLT

- -

XSL Transformations (XSLT) is a language for transforming XML documents -into other XML documents. The APIs defined in this section have been widely implemented, and are -maintained here so that they can be updated when Web IDL changes. Complete definitions -of these APIs remain necessary and such work is tracked and can be contributed to in -whatwg/dom#181. [[XSLT]] - - -

Interface {{XSLTProcessor}}

- -
-[Exposed=Window]
-interface XSLTProcessor {
-  constructor();
-  undefined importStylesheet(Node style);
-  [CEReactions] DocumentFragment transformToFragment(Node source, Document output);
-  [CEReactions] Document transformToDocument(Node source);
-  undefined setParameter([LegacyNullToEmptyString] DOMString namespaceURI, DOMString localName, any value);
-  any getParameter([LegacyNullToEmptyString] DOMString namespaceURI, DOMString localName);
-  undefined removeParameter([LegacyNullToEmptyString] DOMString namespaceURI, DOMString localName);
-  undefined clearParameters();
-  undefined reset();
-};
-
- - -

Security and privacy considerations

There are no known security or privacy considerations for this standard.