Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/docshell/test/browser/   (Firefox Browser Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 1 kB image not shown  

Quelle  browser_loadURI_postdata.js

  Sprache: JAVA
 

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


const gPostData = "postdata=true";
const gUrl =
  "http://mochi.test:8888/browser/docshell/test/browser/print_postdata.sjs";

add_task(async function test_loadURI_persists_postData() {
  waitForExplicitFinish();

  let tab = (gBrowser.selectedTab = BrowserTestUtils.addTab(gBrowser));
  registerCleanupFunction(function () {
    gBrowser.removeTab(tab);
  });

  var dataStream = Cc["@mozilla.org/io/string-input-stream;1"].createInstance(
    Ci.nsIStringInputStream
  );
  dataStream.setByteStringData(gPostData);

  var postStream = Cc[
    "@mozilla.org/network/mime-input-stream;1"
  ].createInstance(Ci.nsIMIMEInputStream);
  postStream.addHeader("Content-Type""application/x-www-form-urlencoded");
  postStream.setData(dataStream);
  var systemPrincipal = Cc["@mozilla.org/systemprincipal;1"].getService(
    Ci.nsIPrincipal
  );

  tab.linkedBrowser.loadURI(Services.io.newURI(gUrl), {
    triggeringPrincipal: systemPrincipal,
    postData: postStream,
  });
  await BrowserTestUtils.browserLoaded(tab.linkedBrowser, false, gUrl);
  let body = await SpecialPowers.spawn(
    tab.linkedBrowser,
    [],
    () => content.document.body.textContent
  );
  is(body, gPostData, "post data was submitted correctly");
  finish();
});

Messung V0.5 in Prozent
C=90 H=97 G=93

¤ Dauer der Verarbeitung: 0.13 Sekunden  (vorverarbeitet am  2026-06-06) ¤

*© 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.