This commit is contained in:
Matheus Kerschbaum 2011-06-30 14:31:41 +02:00
Родитель 0a2730df51
Коммит c8116f9192
2 изменённых файлов: 42 добавлений и 0 удалений

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

@ -119,6 +119,7 @@ _TEST_FILES = \
test_bug372098.html \
test_bug375003-1.html \
test_bug375003-2.html \
test_bug383383.html \
test_bug384419.html \
test_bug386496.html \
test_bug386728.html \

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

@ -0,0 +1,41 @@
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=383383
-->
<head>
<title>Test for Bug 383383</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=383383">Mozilla Bug 383383</a>
<p id="display"></p>
<div id="content" style="display: none">
</div>
<pre id="test">
<script class="testbody" type="text/javascript" for=" window " event=" onload() ">
var foo = "bar";
</script>
<script class="testbody" type="text/javascript" for="object" event="handler">
// This script should fail to run
foo = "baz";
isnot(foo, "baz", "test failed");
</script>
<script class="testbody" type="text/javascript">
ok(foo == "bar", "test passed");
</script>
</pre>
</body>
</html>