Bug 460437 - 'innerHtml doesn't update DOM when HTML markup goes from Invalid to Valid'. r+sr=mrbkap, a1.9.0.10=ss

git-svn-id: svn://10.0.0.236/trunk@257001 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
bent.mozilla%gmail.com
2009-04-21 18:16:35 +00:00
parent 7651dd6dce
commit b7da17e8f0
3 changed files with 47 additions and 0 deletions

View File

@@ -55,6 +55,7 @@ _TEST_FILES = parser_datreader.js \
test_bug358797.html \
test_bug396568.html \
test_bug418464.html \
test_bug460437.xhtml \
test_compatmode.html \
regressions.txt \
$(NULL)

View File

@@ -0,0 +1,38 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=460437
-->
<head>
<title>Test for Bug 460437</title>
<script type="application/javascript" src="/MochiKit/packed.js"></script>
<script type="application/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=460437">Mozilla Bug 460437</a>
<p id="display"><b id="test460437">orig</b></p>
<div id="content" style="display: none">
</div>
<pre id="test">
<script type="application/javascript">
<![CDATA[
/** Test for Bug 460437 **/
var s = '<i>invalid</i';
try {
document.getElementById('test460437').innerHTML = s;
} catch (e) {
}
is(document.getElementById('test460437').innerHTML, "", "setting invalid innerHTML should clear it");
s = '<i>valid</i>';
document.getElementById('test460437').innerHTML = s;
is(document.getElementById('test460437').innerHTML, "<i xmlns=\"http://www.w3.org/1999/xhtml\">valid</i>", "failed to set valid innerHTML");
]]>
</script>
</pre>
</body>
</html>