mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
51 lines
1.3 KiB
HTML
51 lines
1.3 KiB
HTML
<!DOCTYPE HTML>
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<!--
|
|
-->
|
|
<head>
|
|
<title>Test for XHTML serializer + innerHtml, bug 545644</title>
|
|
<script type="text/javascript" src="/MochiKit/packed.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=545644">Mozilla Bug </a>
|
|
<p id="display"></p>
|
|
|
|
<pre id="test">
|
|
<script class="testbody" type="text/javascript">
|
|
|
|
function testInner () {
|
|
var div = document.getElementById("test_inner");
|
|
|
|
try {
|
|
div.innerHTML = "some \u00A0 &nbsp; text";
|
|
ok(false, "innerHTML in xhtml", "test failed, no exception by the parser when giving an unexpected entity"+e);
|
|
} catch (e) {
|
|
ok (true, "innerHTML in xhtml", "test ok");
|
|
}
|
|
|
|
try {
|
|
div.innerHTML = "some \u00A0 text";
|
|
div.innerHTML += "!";
|
|
ok (true, "innerHTML in xhtml", "test ok");
|
|
} catch (e) {
|
|
ok(false, "innerHTML in xhtml", "test failed, unexpected exception "+e);
|
|
}
|
|
|
|
SimpleTest.finish();
|
|
}
|
|
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
addLoadEvent(testInner);
|
|
|
|
</script>
|
|
</pre>
|
|
<div id="test_inner"></div>
|
|
</body>
|
|
</html>
|
|
|
|
|