content/base/test/test_bug545644.html

Thu, 15 Jan 2015 21:03:48 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 21:03:48 +0100
branch
TOR_BUG_9701
changeset 11
deefc01c0e14
permissions
-rw-r--r--

Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)

     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 &nbsp; 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>

mercurial