Quellcodebibliothek Statistik Leitseite products/sources/formale Sprachen/C/Firefox/dom/workers/test/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 1 kB image not shown  

Quelle  test_fileReaderSync_when_closing.html   Sprache: HTML

 
 products/sources/formale Sprachen/C/Firefox/dom/workers/test/test_fileReaderSync_when_closing.html


<!DOCTYPE HTML>
<html>
<head>
  <meta charset="utf-8">
  <title>Test for FileReaderSync when the worker is closing</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>
  <script type="application/javascript">

// In order to exercise FileReaderSync::SyncRead's syncLoop-using AsyncWait()
// path, we need to provide a stream that will both 1) not have all the data
// immediately available (eliminating memory-backed Blobs) and 2) return
// NS_BASE_STREAM_WOULD_BLOCK.  Under e10s, any Blob/File sourced from the
// parent process (as loadChromeScript performs) will be backed by an
// RemoteLazyInputStream and will behave this way on first use (when it is in
// the eInit state).  For ease of testing, we reuse script_createFile.js which
// involves a file on disk, but a memory-backed Blob from the parent process
// would be equally fine.  Under non-e10s, this File will not do the right
// thing because a synchronous nsFileInputStream will be made directly
// available and the AsyncWait path won't be taken, but the test will still
// pass.

var url = SimpleTest.getTestFileURL("script_createFile.js");
var script = SpecialPowers.loadChromeScript(url);

function onOpened(message) {
  function workerCode() {
    onmessage = function(e) {
      self.close();
      var fr = new FileReaderSync();
      self.postMessage(fr.readAsText(e.data));
    }
  }

  var b = new Blob([workerCode+'workerCode();']);
  var w = new Worker(URL.createObjectURL(b));
  w.onmessage = function(e) {
    is(e.data, "Hello world!""The blob content is OK!");
    SimpleTest.finish();
  }

  w.postMessage(message.data);
}

script.addMessageListener("nonEmptyFile.opened", onOpened);
script.sendAsyncMessage("nonEmptyFile.open");

SimpleTest.waitForExplicitFinish();

  </script>
</body>
</html>

Messung V0.5
C=93 H=99 G=95

¤ Dauer der Verarbeitung: 0.1 Sekunden  (vorverarbeitet)  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.