Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/toolkit/content/tests/browser/   (Firefox Browser Version 153.0.1©)  Datei vom 27.6.2026 mit Größe 2 kB image not shown  

Quelle  browser_isSynthetic.js

  Sprache: JAVA
 

function LocationChangeListener(browser) {
  this.browser = browser;
  browser.addProgressListener(this, Ci.nsIWebProgress.NOTIFY_LOCATION);
}

LocationChangeListener.prototype = {
  wasSynthetic: false,
  browser: null,

  destroy() {
    this.browser.removeProgressListener(this);
  },

  onLocationChange() {
    this.wasSynthetic = this.browser.isSyntheticDocument;
  },

  QueryInterface: ChromeUtils.generateQI([
    "nsIWebProgressListener",
    "nsISupportsWeakReference",
  ]),
};

const FILES = gTestPath
  .replace("browser_isSynthetic.js""")
  .replace("chrome://mochitests/content/", "http://example.com/");

function waitForPageShow(browser) {
  return BrowserTestUtils.waitForContentEvent(browser, "pageshow"true);
}

add_task(async function () {
  let tab = BrowserTestUtils.addTab(gBrowser, "about:blank");
  let browser = tab.linkedBrowser;
  await BrowserTestUtils.browserLoaded(browser, { wantLoad: "about:blank" });
  let listener = new LocationChangeListener(browser);

  is(browser.isSyntheticDocument, false"Should not be synthetic");

  let loadPromise = waitForPageShow(browser);
  BrowserTestUtils.startLoadingURIString(
    browser,
    "data:text/html;charset=utf-8,<html/>"
  );
  await loadPromise;
  is(listener.wasSynthetic, false"Should not be synthetic");
  is(browser.isSyntheticDocument, false"Should not be synthetic");

  loadPromise = waitForPageShow(browser);
  BrowserTestUtils.startLoadingURIString(browser, FILES + "empty.png");
  await loadPromise;
  is(listener.wasSynthetic, true"Should be synthetic");
  is(browser.isSyntheticDocument, true"Should be synthetic");

  loadPromise = waitForPageShow(browser);
  browser.goBack();
  await loadPromise;
  is(listener.wasSynthetic, false"Should not be synthetic");
  is(browser.isSyntheticDocument, false"Should not be synthetic");

  loadPromise = waitForPageShow(browser);
  browser.goForward();
  await loadPromise;
  is(listener.wasSynthetic, true"Should be synthetic");
  is(browser.isSyntheticDocument, true"Should be synthetic");

  listener.destroy();
  gBrowser.removeTab(tab);
});

Messung V0.5 in Prozent
C=99 H=100 G=99

¤ Dauer der Verarbeitung: 0.3 Sekunden  ¤

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