dom/tests/mochitest/geolocation/test_manyCurrentSerial.html

Tue, 06 Jan 2015 21:39:09 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Tue, 06 Jan 2015 21:39:09 +0100
branch
TOR_BUG_9701
changeset 8
97036ab72558
permissions
-rw-r--r--

Conditionally force memory storage according to privacy.thirdparty.isolate;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.

     1 <!DOCTYPE HTML>
     2 <html>
     3 <!--
     4 https://bugzilla.mozilla.org/show_bug.cgi?id=482260
     5 -->
     6 <head>
     7   <title>Test for getCurrentPosition </title>
     8   <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
     9   <script type="text/javascript" src="geolocation_common.js"></script>
    11 <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
    12 </head>
    13 <body>
    14 <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=482260">Mozilla Bug 482260</a>
    15 <p id="display"></p>
    16 <div id="content" style="display: none">
    18 </div>
    19 <pre id="test">
    20 <script class="testbody" type="text/javascript">
    22 SimpleTest.waitForExplicitFinish();
    24 resume_geolocationProvider(function() {
    25   force_prompt(true, test1);
    26 });
    28 var keepGoing = 10;
    30 function successCallback(position) {
    31   if (keepGoing-- > 0) {
    32     setTimeout(function() {navigator.geolocation.getCurrentPosition(successCallback);}, 0);
    33     return; 
    34   }
    36   ok(1, "100 successful calls");
    37   SimpleTest.finish();
    38 }
    40 function test1() {
    41   navigator.geolocation.getCurrentPosition(successCallback);
    42 }
    43 </script>
    44 </pre>
    45 </body>
    46 </html>

mercurial