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

Quelle  test_blob_fragment_and_query.html   Sprache: HTML

 
 products/Sources/formale Sprachen/C/Firefox/dom/file/tests/test_blob_fragment_and_query.html


<!DOCTYPE HTML>
<html>
<head>
  <meta charset="utf-8">
  <title>Test for Blob URI with fragments</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>
  <script>

var  blob = new Blob(['hello world']);
ok(blob, "We have a blob.");

var tests = [
  { part: "", revoke: false, ok: true },
  { part: "", revoke: true, ok: false },
  { part: "?aa", revoke: false, ok: false },
  { part: "?cc#dd", revoke: false, ok: false },
  // Stripping #fragment on fetch
  { part: "#bb", revoke: false, ok: true },
  { part: "#ee?ff", revoke: false, ok: true }
];

function runTest() {
  if (!tests.length) {
    SimpleTest.finish();
    return;
  }

  var url = URL.createObjectURL(blob);
  ok(url, "We have a URI");

  var test = tests.shift();

  if (test.revoke) {
    URL.revokeObjectURL(url + test.part);
  }

  var xhr = new XMLHttpRequest();
  xhr.open('GET', url + test.part);

  xhr.onload = function() {
    ok(test.ok, `URL with "${test.part}" should send()`);
    is(xhr.responseText, 'hello world''URL: ' + url + test.part);
    runTest();
  }

  xhr.onerror = function() {
    ok(!test.ok, `URL with "${test.part}" should fail on send()`);
    runTest();
  }

  xhr.send();
}

SimpleTest.waitForExplicitFinish();
runTest();

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

Messung V0.5
C=100 H=100 G=100

¤ Dauer der Verarbeitung: 0.24 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.