Added a trailing / in the innerHTML support test to allow it to not

throw an error in XHTML documents. Fixes #3829.
This commit is contained in:
John Resig 2009-01-13 15:08:11 +00:00
parent 9c029f1687
commit d5858c7cb8

View file

@ -8,7 +8,7 @@
id = "script" + (new Date).getTime();
div.style.display = "none";
div.innerHTML = ' <link/><table></table><a href="/a" style="color:red;float:left;opacity:.5;">a</a><select><option>text</option></select><object><param></object>';
div.innerHTML = ' <link/><table></table><a href="/a" style="color:red;float:left;opacity:.5;">a</a><select><option>text</option></select><object><param/></object>';
var all = div.getElementsByTagName("*"),
a = div.getElementsByTagName("a")[0];