test_bug383383.html (871B)
1 <!DOCTYPE HTML> 2 <html> 3 <!-- 4 https://bugzilla.mozilla.org/show_bug.cgi?id=383383 5 --> 6 <head> 7 <title>Test for Bug 383383</title> 8 <script src="/tests/SimpleTest/SimpleTest.js"></script> 9 <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" /> 10 </head> 11 <body> 12 <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=383383">Mozilla Bug 383383</a> 13 <p id="display"></p> 14 <div id="content" style="display: none"> 15 16 </div> 17 <pre id="test"> 18 <script class="testbody" type="text/javascript" for=" window " event=" onload() "> 19 20 var foo = "bar"; 21 22 </script> 23 24 <script class="testbody" type="text/javascript" for="object" event="handler"> 25 26 // This script should fail to run 27 foo = "baz"; 28 29 isnot(foo, "baz", "test failed"); 30 31 </script> 32 33 <script class="testbody" type="text/javascript"> 34 35 ok(foo == "bar", "test passed"); 36 37 </script> 38 </pre> 39 </body> 40 </html>