Haxe API Documentation
Back | Index
extern class js.html.XSLTProcessor
Available in js

XSLTProcesor is an object providing an interface to XSLT engine in Mozilla. It is available to unprivileged JavaScript.



Documentation for this class was provided by MDN.
function new() : Void
function clearParameters() : Void
function getParameter(namespaceURI : String, localName : String) : String
function importStylesheet(stylesheet : Node) : Void
function removeParameter(namespaceURI : String, localName : String) : Void
function reset() : Void
function setParameter(namespaceURI : String, localName : String, value : String) : Void
function transformToDocument(source : Node) : Document
function transformToFragment(source : Node, docVal : Document) : DocumentFragment
Back | Index