Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 <!DOCTYPE HTML>
2 <html>
3 <!--
4 -->
5 <head>
6 <title>Test for HTML serializer + innerHtml, bug 545644</title>
7 <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
8 <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css">
9 </head>
10 <body>
11 <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=545644">Mozilla Bug </a>
12 <p id="display"></p>
14 <pre id="test">
15 <script class="testbody" type="text/javascript">
17 function testInner () {
18 var div = document.getElementById("test_inner");
20 try {
21 div.innerHTML = "some \u00A0 text";
22 div.innerHTML += "!";
23 ok (true, "innerHTML in html", "test ok");
24 } catch (e) {
25 ok(false, "innerHTML in html", "test failed, unwanted exception "+e);
26 }
28 SimpleTest.finish();
29 }
32 SimpleTest.waitForExplicitFinish();
34 addLoadEvent(testInner);
36 </script>
37 </pre>
38 <div id="test_inner"></div>
39 </body>
40 </html>