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
(replace void into undefined, https://github.com/heycam/webidl/pull/906)
(→‎IDL: LegacyNullToEmptyString)
 
Line 12: Line 12:
   [CEReactions] DocumentFragment transformToFragment(Node source, Document output);
   [CEReactions] DocumentFragment transformToFragment(Node source, Document output);
   [CEReactions] Document transformToDocument(Node source);
   [CEReactions] Document transformToDocument(Node source);
   undefined setParameter([TreatNullAs=EmptyString] DOMString namespaceURI, DOMString localName, any value);
   undefined setParameter([LegacyNullToEmptyString] DOMString namespaceURI, DOMString localName, any value);
   any getParameter([TreatNullAs=EmptyString] DOMString namespaceURI, DOMString localName);
   any getParameter([LegacyNullToEmptyString] DOMString namespaceURI, DOMString localName);
   undefined removeParameter([TreatNullAs=EmptyString] DOMString namespaceURI, DOMString localName);
   undefined removeParameter([LegacyNullToEmptyString] DOMString namespaceURI, DOMString localName);
   undefined clearParameters();
   undefined clearParameters();
   undefined reset();
   undefined reset();

Latest revision as of 12:37, 15 April 2021

Issue for standardization

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

IDL

[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();
};

MDN

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