Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: os == 'linux' && os_version == '24.04' && arch == 'x86_64' && debug && verify-standalone
- 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>
<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   text";
      div.innerHTML += "!";
      ok(true, "innerHTML in html test ok");
    } catch (e) {
      ok(false, "innerHTML in html test failed, unwanted exception " + e);
    }
  SimpleTest.finish();
}
SimpleTest.waitForExplicitFinish();
addLoadEvent(testInner);
</script>
</pre>
<div id="test_inner"></div>
</body>
</html>