Automatic update from web-platform-tests Make XSLT IDL source and idlharness.js test tentative (#17917) * Rename xslt.idl to xslt.tentative.idl This is to avoid it being removed by the reffy-reports sync process: https://github.com/web-platform-tests/wpt/pull/17847 * Update and rename idlharness.window.js to idlharness.tentative.window.js -- wpt-commits: 91fd78875c637702d8f30b95298b52fbec7cfdd2 wpt-pr: 17917
17 lines
837 B
Plaintext
17 lines
837 B
Plaintext
// Content was manually copied July 12 2019
|
|
// Source: https://wiki.whatwg.org/wiki/DOM_XSLTProcessor
|
|
// There is no standard for this API. Only the link above, and notes in
|
|
// the HTML5 standard (https://html.spec.whatwg.org/multipage/scripting.html#scriptTagXSLT)
|
|
|
|
[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();
|
|
};
|