Update web-platform-tests to revision 63459a30a61cda53c8c8ab4dc645b142cd2f85ea

This commit is contained in:
WPT Sync Bot 2019-07-16 10:26:01 +00:00
parent 005320c08c
commit 40ef4e9705
82 changed files with 986 additions and 154 deletions

View file

@ -0,0 +1,16 @@
// 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();
};