content/media/test/test_bug919265.html

branch
TOR_BUG_9701
changeset 8
97036ab72558
equal deleted inserted replaced
-1:000000000000 0:101b2033af3e
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