Eine aufbereitete Darstellung der Quelle

 
     
 
 
Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 

Benutzer

Quelle  bug1014466_worker.js

  Sprache: JAVA
 

/**
 * Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/
 */


/* eslint-disable mozilla/no-comparison-or-assignment-inside-ok */

function ok(a, msg) {
  postMessage({ type: "status", status: !!a, msg });
}

onmessage = function (event) {
  function getResponse(url) {
    var xhr = new XMLHttpRequest();
    xhr.open("GET", url, false);
    xhr.send();
    return xhr.responseText;
  }

  const testFile1 = "bug1014466_data1.txt";
  const testFile2 = "bug1014466_data2.txt";
  const testData1 = getResponse(testFile1);
  const testData2 = getResponse(testFile2);

  var response_count = 0;
  var xhr = new XMLHttpRequest();
  xhr.onreadystatechange = function () {
    if (xhr.readyState == xhr.DONE && xhr.status == 200) {
      response_count++;
      switch (response_count) {
        case 1:
          ok(xhr.responseText == testData1, "Check data 1");
          test_data2();
          break;
        case 2:
          ok(xhr.responseText == testData2, "Check data 2");
          postMessage({ type: "finish" });
          break;
        default:
          ok(false"Unexpected response received");
          postMessage({ type: "finish" });
          break;
      }
    }
  };
  xhr.onerror = function (e) {
    ok(false"Got an error event: " + e);
    postMessage({ type: "finish" });
  };

  function test_data1() {
    xhr.open("GET", testFile1, true);
    xhr.responseType = "text";
    xhr.send();
  }

  function test_data2() {
    xhr.abort();
    xhr.open("GET", testFile2, true);
    xhr.responseType = "text";
    xhr.send();
  }

  test_data1();
};

Messung V0.5 in Prozent
C=96 H=80 G=88

¤ Dauer der Verarbeitung: 0.24 Sekunden  (vorverarbeitet am  2026-08-24) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

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.






                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Open Source Software

     Quellcodebibliothek
     Eigene Quellcodes
     Fremde Quellcodes
     Suchen

Jenseits des Üblichen ....

Besucherstatistik

Besucherstatistik

Statistik
#Sources=277311
#Domains=752002