content/media/test/test_bug919265.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=919265
     5 -->
     6 <head>
     7   <meta charset='utf-8'>
     8   <title>Regression test for bug 919265 - Leak on VTTCue::GetCueAsHTML()</title>
     9   <script type="text/javascript" src="/MochiKit/MochiKit.js"></script>
    10   <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
    11   <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
    12 </head>
    13 <body>
    14 <p id="display"></p>
    15 <div id="content" style="display: none">
    16 </div>
    17 <pre id="test">
    18 <script class="testbody" type="text/javascript">
    19 SimpleTest.waitForExplicitFinish();
    20 SpecialPowers.pushPrefEnv({"set": [["media.webvtt.enabled", true]]},
    21   function() {
    22     // We shouldn't leak upon shutdown.
    23     (new VTTCue(0, 0, "")).getCueAsHTML();
    24     // We need to assert something for Mochitest to be happy.
    25     ok(true);
    26     SimpleTest.finish();
    27   }
    28 );
    29 </script>
    30 </pre>
    31 </body>
    32 </html>

mercurial