| <?xml version="1.0" encoding="ISO-8859-1"?> |
| <html xmlns="http://www.w3.org/1999/xhtml"> |
| <div id="description">This test checks to see if setting innerHTML to a single non-breaking space works.</div> |
| <div id="test" style="display:none"></div> |
| var console = document.getElementById("console"); |
| console.appendChild(document.createTextNode(message)); |
| console.appendChild(document.createElement('br')); |
| var testElement = document.getElementById("test"); |
| testElement.innerHTML = html; |
| log("FAIL, exception thrown: " + e); |
| if (html == testElement.innerHTML) |
| log("FAIL, expected: " + html + " actual: " + testElement.innerHTML); |