mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 823173 test. Make sure that navigator doesn't have any broken interfaces on it. r=jlebar
This commit is contained in:
parent
f6e1b16e06
commit
83f5c67b46
@ -137,6 +137,7 @@ MOCHITEST_FILES = \
|
|||||||
test_sizetocontent_clamp.html \
|
test_sizetocontent_clamp.html \
|
||||||
test_protochains.html \
|
test_protochains.html \
|
||||||
test_bug817476.html \
|
test_bug817476.html \
|
||||||
|
test_bug823173.html \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
ifneq (Linux,$(OS_ARCH))
|
ifneq (Linux,$(OS_ARCH))
|
||||||
|
30
dom/tests/mochitest/bugs/test_bug823173.html
Normal file
30
dom/tests/mochitest/bugs/test_bug823173.html
Normal 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>
|
Loading…
Reference in New Issue
Block a user