Add mochitest for "new HTMLDocument()" throwing and not asserting

This commit is contained in:
jruderman@hmc.edu 2008-02-08 16:24:43 -08:00
parent 649555b871
commit 8773920852
2 changed files with 35 additions and 0 deletions

View File

@ -49,6 +49,7 @@ _TEST_FILES = \
test_bug291377.html \
test_bug308856.html \
test_bug317448.html \
test_bug327891.html \
test_bug333983.html \
test_bug342448.html \
test_bug345521.html \

View File

@ -0,0 +1,34 @@
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=327891
-->
<head>
<title>Test for Bug 327891</title>
<script type="text/javascript" src="/MochiKit/MochiKit.js"></script>
<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=327891">Mozilla Bug 327891</a>
<p id="display"></p>
<div id="content" style="display: none">
</div>
<pre id="test">
<script class="testbody" type="text/javascript">
var pass = false;
try {
new HTMLDocument();
} catch(e) {
pass = true;
}
ok(pass, "new HTMLDocument() should have thrown");
</script>
</pre>
</body>
</html>