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

Quelle  page_localstorage_snapshotting.html

  Sprache: HTML
 

 products/Sources/formale Sprachen/C/Firefox/dom/tests/browser/page_localstorage_snapshotting.html


<!doctype html>
<html>
<head>
  <meta charset="utf-8">
<script>
/**
 * Helper page used by browser_localStorage_snapshotting.js.
 *
 * We expose methods to be invoked by ContentTask.spawn() calls.
 *
 **/
var pageName = document.location.search.substring(1);
window.addEventListener(
  "load",
  () => { document.getElementById("pageNameH").textContent = pageName; });

function applyMutations(mutations) {
  mutations.forEach(function([key, value]) {
    if (key !== null) {
      if (value === null) {
        localStorage.removeItem(key);
      } else {
        localStorage.setItem(key, value);
      }
    } else {
      localStorage.clear();
    }
  });
}

function getState() {
  let state = {};
  let length = localStorage.length;
  for (let index = 0; index < length; index++) {
    let key = localStorage.key(index);
    state[key] = localStorage.getItem(key);
  }
  return state;
}

function getKeys() {
  return Object.keys(localStorage);
}

function beginExplicitSnapshot() {
  localStorage.beginExplicitSnapshot();
}

function checkpointExplicitSnapshot() {
  localStorage.checkpointExplicitSnapshot();
}

function endExplicitSnapshot() {
  localStorage.endExplicitSnapshot();
}

function getHasSnapshot() {
  return localStorage.hasSnapshot;
}

function getSnapshotUsage() {
  return localStorage.snapshotUsage;
}

</script>
</head>
<body><h2 id="pageNameH"></h2></body>
</html>

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

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

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