Well, this will not work if the XML file (starting with the standard PI:
<?xml-stylesheet type="text/xsl" href="..."?>
to refer to the XSL stylesheet) is used as "application / xml". In this case, Chrome will still load the XSL stylesheet that is referenced, but will not display anything, as it silently changes the document types from "application / xml" to "Document" (! ??) and "text / xsl "in" Stylesheet "(! ??), and then tries to display the XML document as if it were an HTML document (5), without starting its first XSLT processor. And nothing will be displayed on the screen (the contents of which will be displayed on the previous page that the XML page refers to, and will continue to rotate the icon, as if the document had never been fully loaded.
You can make good use of the Chrome console, which shows that all resources are loaded, but they are not interpreted correctly.
So, currently only XML files are displayed in Chrome (with its optional XSL style declaration), only if it is used as "text / xml", but not as "application / xml", as necessary for the XML client side with an XSL declaration .
For XML files that have been used as "text / xml" or "application / xml" and that do not contain XSL style declarations, Chrome should still use the default stylesheet to display it as a DOM tree, or at least as her text source. But this is not so, and here he again tries to display it as if it were HTML, and errors immediately on many scripts (including the built-in default) that try to access "document.body" to handle onLoad events and insert some javascript handler in it.
An example of a site that does not work properly (general Lisp documentation) in Chrome, but works in IE, which supports client XSLT:
http://common-lisp.net/project/bknr/static/lmman/toc.html
This index page displays correctly, but all links will access XML documents with a basic XSL declaration in an existing XSL stylesheet document, and you can wait endlessly thinking there are problems in the chapters that need to be downloaded. All you can do to read the documentation is open the console and read the source code in the Resources tab.