mirror of
https://github.com/servo/servo.git
synced 2025-08-03 12:40:06 +01:00
Update web-platform-tests to revision 63459a30a61cda53c8c8ab4dc645b142cd2f85ea
This commit is contained in:
parent
005320c08c
commit
40ef4e9705
82 changed files with 986 additions and 154 deletions
16
tests/wpt/web-platform-tests/interfaces/xslt.idl
Normal file
16
tests/wpt/web-platform-tests/interfaces/xslt.idl
Normal 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();
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue