Dart API Referencedart:htmlXSLTProcessor

XSLTProcessor Interface

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

Constructors

Code new XSLTProcessor() #

XSLTProcessor();

Methods

Code void clearParameters() #

void clearParameters();

Code String getParameter(String namespaceURI, String localName) #

String getParameter(String namespaceURI, String localName);

Code void importStylesheet(Node stylesheet) #

void importStylesheet(Node stylesheet);

Code void removeParameter(String namespaceURI, String localName) #

void removeParameter(String namespaceURI, String localName);

Code void reset() #

void reset();

Code void setParameter(String namespaceURI, String localName, String value) #

void setParameter(String namespaceURI, String localName, String value);

Code Document transformToDocument(Node source) #

Document transformToDocument(Node source);

Code DocumentFragment transformToFragment(Node source, Document docVal) #

DocumentFragment transformToFragment(Node source, Document docVal);

This page includes content from the Mozilla Foundation that is graciously licensed under a Creative Commons: Attribution-Sharealike license. Mozilla has no other association with Dart or dartlang.org. We encourage you to improve the web by contributing to The Mozilla Developer Network.