Test for bug 370098 (Some constructors raise a "XXX is not a function" exception when called (DOMParser, XMLSerializer, XMLHttpRequest, XPathEvaluator, XSLTProcessor)). r=jst.

This commit is contained in:
peterv%propagandism.org 2007-05-25 16:06:02 +00:00
Родитель ecbdc69890
Коммит a1e2d177c5
2 изменённых файлов: 47 добавлений и 0 удалений

Просмотреть файл

@ -51,6 +51,7 @@ _TEST_FILES = \
test_bug342448.html \
test_bug345521.html \
test_bug351601.html \
test_bug370098.html \
test_bug377539.html \
$(NULL)

Просмотреть файл

@ -0,0 +1,46 @@
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=370098
-->
<head>
<title>Test for Bug 370098</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=370098">Mozilla Bug 370098</a>
<p id="display"></p>
<div id="content" style="display: none">
</div>
<pre id="test">
<script class="testbody" type="text/javascript">
/** Test for Bug 370098 **/
var dom_protos =
[ "Document", "Element", "Image", "DOMParser", "XMLSerializer",
"XMLHttpRequest", "XPathEvaluator", "XSLTProcessor" ];
for each (var dom_proto in dom_protos) {
var shouldthrow = typeof window[dom_proto] != "function";
var threw = false;
try {
window[dom_proto]();
} catch (e) {
threw = true;
}
is(threw, shouldthrow, "Calling |" + dom_proto + "()| should" + (shouldthrow ? " " : " not ") + "throw");
threw = false;
try {
new window[dom_proto]();
} catch (e) {
threw = true;
}
is(threw, shouldthrow, "Calling |new " + dom_proto + "()| should" + (shouldthrow ? " " : " not ") + "throw");
}
</script>
</pre>
</body>
</html>