<!DOCTYPE HTML> <html> <!-- https://bugzilla.mozilla.org/show_bug.cgi?id=392511 --> <head> <title>Test for Bug 392511</title> <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=392511">Mozilla Bug 392511</a> <p id="display"></p> <div id="content" style="display: none"> <div id="t1"><span onclick=""&"></span></div> <div id="t2"><span foo=""&"></span></div> <div id="t3"><span onclick=''&'></span></div> <div id="t4"><span foo=''&'></span></div> <div id="t5"><span onclick='"'&'></span></div> <div id="t6"><span foo='"'&'></span></div> <div id="t7"><span onclick="'"&"></span></div> <div id="t8"><span foo="'"&"></span></div> </div> <pre id="test"> <script class="testbody" type="text/javascript"> /** Test for Bug 392511 **/ var results = [ "\""&\"", "\""&\"", "\"'&\"", "\"'&\"", "\""'&\"", "\""'&\"", "\"'"&\"", "\"'"&\"" ]; for (var i = 1; i <= 8; ++i) { var id = "t" + i; var str = $(id).innerHTML; var expect = "<span "; expect += (i % 2) ? "onclick" : "foo"; expect += "=" + results[i-1] + "></span>"; is (str, expect, "Wrong string for test " + id); } </script> </pre> </body> </html>