31

The Safari browser does not support XSLT 2.0 documents.

What browsers, if any, support XSLT 2.0?

Dave Jarvis
  • 29,586
  • 38
  • 176
  • 304
Pacerier
  • 81,402
  • 98
  • 349
  • 618

1 Answers1

29

Browsers do not yet support XSLT 2.0, natively.

  • Saxon 9 CE is a JavaScript-based XSLT 2.0 implementation.
  • Frameless is another, more light-weight XSLT 2.0 implementation in the browser, supporting large parts of the XSLT 2.0 and XPath 2.0 functionality

See also:

Community
  • 1
  • 1
Martin Honnen
  • 149,505
  • 6
  • 83
  • 100
  • 9
    An update to this: Saxon-CE is now a product, and provides client-side XSLT 2.0 processing on all major browsers. (It's written in Java, cross-compiled to Javascript using GWT). – Michael Kay Jun 16 '12 at 15:54
  • 5
    A further update: Saxon-CE is now replaced by Saxon-JS, which is written in native Javascript rather than being cross-compiled from Java using GWT; it also supports most of XSLT 3.0. – Michael Kay May 18 '17 at 16:22