content/base/test/test_bug392511.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 https://bugzilla.mozilla.org/show_bug.cgi?id=392511
     5 -->
     6 <head>
     7   <title>Test for Bug 392511</title>
     8   <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
     9   <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
    10 </head>
    11 <body>
    12 <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=392511">Mozilla Bug 392511</a>
    13 <p id="display"></p>
    14 <div id="content" style="display: none">
    15   <div id="t1"><span onclick="&quot;&amp;"></span></div>  
    16   <div id="t2"><span foo="&quot;&amp;"></span></div>  
    17   <div id="t3"><span onclick='&apos;&amp;'></span></div>  
    18   <div id="t4"><span foo='&apos;&amp;'></span></div>  
    19   <div id="t5"><span onclick='"&apos;&amp;'></span></div>  
    20   <div id="t6"><span foo='"&apos;&amp;'></span></div>  
    21   <div id="t7"><span onclick="'&quot;&amp;"></span></div>  
    22   <div id="t8"><span foo="'&quot;&amp;"></span></div>  
    23 </div>
    24 <pre id="test">
    25 <script class="testbody" type="text/javascript">
    27 /** Test for Bug 392511 **/
    29 var results = [
    30  "\"&quot;&amp;\"",
    31  "\"&quot;&amp;\"",
    32  "\"'&amp;\"",
    33  "\"'&amp;\"",
    34  "\"&quot;'&amp;\"",
    35  "\"&quot;'&amp;\"",
    36  "\"'&quot;&amp;\"",
    37  "\"'&quot;&amp;\""
    38 ];
    40 for (var i = 1; i <= 8; ++i) {
    41   var id = "t" + i;
    42   var str = $(id).innerHTML;
    43   var expect = "<span ";
    44   expect += (i % 2) ? "onclick" : "foo";
    45   expect += "=" + results[i-1] + "></span>";
    46   is (str, expect, "Wrong string for test " + id);
    47 }
    49 </script>
    50 </pre>
    51 </body>
    52 </html>

mercurial