Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: dom/base/test/mochitest.toml
<!DOCTYPE HTML>
<html>
<!--
-->
<head>
<script 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">
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>