summaryrefslogtreecommitdiffstats
path: root/dom/xslt/tests/mochitest/test_bug453441.html
blob: 1d8b554c0037616f8f9869d3125dc6e4f3d4c48e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=453441
-->
<head>
  <title>Test for Bug 453441</title>
  <script 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>