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

Quelle  Node-baseURI.html

  Sprache: HTML
 

 products/Sources/formale Sprachen/C/Firefox/testing/web-platform/tests/dom/nodes/Node-baseURI.html


<!DOCTYPE html>
<title>Node.baseURI</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="log"></div>
<script>
const elementTests = [
  {
    name: "elements belonging to document",
    creator: () => {
      const element = document.createElement("div");
      document.body.appendChild(element);
      return element;
    }
  },
  {
    name: "elements unassigned to document",
    creator: () => document.createElement("div")
  },
  {
    name: "elements belonging to document fragments",
    creator: () => {
      const fragment = document.createDocumentFragment();
      const element = document.createElement("div");
      fragment.appendChild(element);
      return element;
    }
  },
  {
    name: "elements belonging to document fragments in document",
    creator: () => {
      const fragment = document.createDocumentFragment();
      const element = document.createElement("div");
      fragment.appendChild(element);
      document.body.appendChild(fragment);
      return element;
    }
  },
];

const attributeTests = [
  {
    name: "attributes unassigned to element",
    creator: () => document.createAttribute("class")
  },
  ...elementTests.map(({ name, creator }) => ({
    name: "attributes in " + name,
    creator: () => {
      const element = creator();
      element.setAttribute("class""abc");
      return element.getAttributeNode("class");
    }
  }))
];

for (const { name, creator } of [...elementTests, ...attributeTests]) {
  test(function() {
    const node = creator();
    assert_equals(node.baseURI, document.URL);
  }, `For ${name}, baseURI should be document URL`)
}
</script>

Messung V0.5 in Prozent
C=87 H=96 G=91

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