Revision e5950db5d3733da6cb2286216b83f1486bbc6898 authored by Nicolas B. Pierron on 15 January 2014, 13:53:35 UTC, committed by Nicolas B. Pierron on 15 January 2014, 13:53:35 UTC
1 parent dd19bf0
Raw File
test_lockedfile_lifetimes_nested.html
<!--
  Any copyright is dedicated to the Public Domain.
  http://creativecommons.org/publicdomain/zero/1.0/
-->
<html>
<head>
  <title>File Handle Test</title>

  <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>

  <script type="text/javascript;version=1.7">
  function testSteps()
  {
    for each (let fileStorage in fileStorages) {
      let request = getFileHandle(fileStorage.key, "test.txt");
      request.onerror = errorHandler;
      request.onsuccess = grabEventAndContinueHandler;
      let event = yield undefined;

      let fileHandle = event.target.result;
      fileHandle.onerror = errorHandler;

      let lockedFile = fileHandle.open();

      let lockedFile2;

      let comp = SpecialPowers.wrap(SpecialPowers.Components);
      let thread = comp.classes["@mozilla.org/thread-manager;1"]
                       .getService(comp.interfaces.nsIThreadManager)
                       .currentThread;

      let eventHasRun;

      thread.dispatch(function() {
        eventHasRun = true;

        lockedFile2 = fileHandle.open();
      }, SpecialPowers.Ci.nsIThread.DISPATCH_NORMAL);

      while (!eventHasRun) {
        thread.processNextEvent(false);
      }

      ok(lockedFile2, "Non-null lockedFile2");

      continueToNextStep();
      yield undefined;
    }

    finishTest();
    yield undefined;
  }
  </script>
  <script type="text/javascript;version=1.7" src="helpers.js"></script>

</head>

<body onload="runTest();"></body>

</html>
back to top