test_bug392511.html (1456B)
1 <!DOCTYPE HTML> 2 <html> 3 <!-- 4 https://bugzilla.mozilla.org/show_bug.cgi?id=392511 5 --> 6 <head> 7 <title>Test for Bug 392511</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=392511">Mozilla Bug 392511</a> 13 <p id="display"></p> 14 <div id="content" style="display: none"> 15 <div id="t1"><span onclick=""&"></span></div> 16 <div id="t2"><span foo=""&"></span></div> 17 <div id="t3"><span onclick=''&'></span></div> 18 <div id="t4"><span foo=''&'></span></div> 19 <div id="t5"><span onclick='"'&'></span></div> 20 <div id="t6"><span foo='"'&'></span></div> 21 <div id="t7"><span onclick="'"&"></span></div> 22 <div id="t8"><span foo="'"&"></span></div> 23 </div> 24 <pre id="test"> 25 <script class="testbody" type="text/javascript"> 26 27 /** Test for Bug 392511 */ 28 29 var results = [ 30 "\""&\"", 31 "\""&\"", 32 "\"'&\"", 33 "\"'&\"", 34 "\""'&\"", 35 "\""'&\"", 36 "\"'"&\"", 37 "\"'"&\"" 38 ]; 39 40 for (var i = 1; i <= 8; ++i) { 41 var id = "t" + i; 42 var str = $(id).innerHTML; 43 var expect = "<span "; 44 expect += (i % 2) ? "onclick" : "foo"; 45 expect += "=" + results[i-1] + "></span>"; 46 is (str, expect, "Wrong string for test " + id); 47 } 48 49 </script> 50 </pre> 51 </body> 52 </html>