A user account is required in order to edit this wiki, but we've had to disable public user registrations due to spam.

To request an account, ask an autoconfirmed user on Chat (such as one of these permanent autoconfirmed members).

DOM XSLTProcessor: Difference between revisions

From WHATWG Wiki
Jump to navigation Jump to search
(→‎IDL: Add CEReactions)
(add [Exposed])
(One intermediate revision by the same user not shown)
Line 5: Line 5:
== IDL ==
== IDL ==


<pre>
<pre class="idl">
[Constructor]
[Exposed=Window, Constructor]
interface XSLTProcessor {
interface XSLTProcessor {
   void importStylesheet(Node style);
   void importStylesheet(Node style);

Revision as of 14:05, 10 June 2019

Issue for standardization

https://github.com/whatwg/dom/issues/181

IDL

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

MDN

https://developer.mozilla.org/en-US/docs/Web/API/XSLTProcessor