dom/encoding/test/test_TextDecoder.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 <head>
     4   <meta charset=utf-8>
     5   <title>Test for TextDecoder</title>
     6   <script type="text/javascript" src="/resources/testharness.js"></script>
     7   <script type="text/javascript" src="/resources/testharnessreport.js"></script>
     8   <script type="text/javascript" src="test_TextDecoder.js"></script>
     9   <script type="text/javascript" src="test_BOMEncoding.js"></script>
    10   <script type="text/javascript" src="worker_helper.js"></script>
    11 </head>
    12 <body>
    13 <div id="log"></div>
    14 <script>
    16 //SimpleTest.expectAssertions(0, 2);
    18 setup({explicit_done: true});
    19 runTest();
    21 function runTest()
    22 {
    23   runTextDecoderOptions();
    24   runTextDecoderBOMEnoding();
    25 }
    27 runTestInWorker(["test_TextDecoder.js", "test_BOMEncoding.js"]);
    29 </script>
    30 </body>
    31 </html>

mercurial