Bug 823173 test. Make sure that navigator doesn't have any broken interfaces on it. r=jlebar

This commit is contained in:
Boris Zbarsky 2012-12-19 16:21:18 -08:00
parent f6e1b16e06
commit 83f5c67b46
2 changed files with 31 additions and 0 deletions

View File

@ -137,6 +137,7 @@ MOCHITEST_FILES = \
test_sizetocontent_clamp.html \
test_protochains.html \
test_bug817476.html \
test_bug823173.html \
$(NULL)
ifneq (Linux,$(OS_ARCH))

View File

@ -0,0 +1,30 @@
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=823173
-->
<head>
<meta charset="utf-8">
<title>Test for Bug 823173</title>
<script type="application/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=823173">Mozilla Bug 823173</a>
<p id="display"></p>
<div id="content" style="display: none">
</div>
<pre id="test">
<script type="application/javascript">
/** Test for Bug 823173 **/
try {
ok(!(navigator instanceof Window), "navigator is not an instance of Window");
} catch (e) {
ok(false, "instanceof tests should not throw");
}
</script>
</pre>
</body>
</html>