31

The Safari browser does not support XSLT 2.0 documents.

What browsers, if any, support XSLT 2.0?

Dave Jarvis
  • 30,436
  • 41
  • 178
  • 315
Pacerier
  • 86,231
  • 106
  • 366
  • 634

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
  • 160,499
  • 6
  • 90
  • 110
  • 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