12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <!DOCTYPE HTML>
- <html>
- <!--
- https://bugzilla.mozilla.org/show_bug.cgi?id=453441
- -->
- <head>
- <title>Test for Bug 453441</title>
- <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
- <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
- </head>
- <body>
- <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=453441">Mozilla Bug 453441</a>
- <p id="display"></p>
- <div id="content" style="display: none">
-
- </div>
- <pre id="test">
- <script class="testbody" type="text/javascript">
- /** Test for Bug 453441 **/
- function tryImportStylesheet(xml, valid)
- {
- var processor = new XSLTProcessor;
- var xsltdoc = new DOMParser().parseFromString(xml, "text/xml");
- try
- {
- processor.importStylesheet(xsltdoc);
- ok(valid, "should be able to parse this XSLT stylesheet");
- }
- catch (e)
- {
- ok(!valid, "should not be able to parse this XSLT stylesheet");
- }
- }
- tryImportStylesheet(
- '<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">\n\
- <xsl:template match="/">\n\
- <html xmlns="http://www.w3.org/1999/xhtml" xsl:version="1.0" />\n\
- </xsl:template>\n\
- </xsl:stylesheet>'
- , true);
- tryImportStylesheet(
- '<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" />'
- , false);
- tryImportStylesheet(
- '<xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform" />'
- , false);
- </script>
- </pre>
- </body>
- </html>
|