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 2 kB image not shown  

Quelle  adoption.window.js

  Sprache: JAVA
 

// Testing DocumentFragment with host separately as it has a different node document by design
test(() => {
  const df = document.createElement("template").content;
  const child = df.appendChild(new Text('hi'));
  assert_not_equals(df.ownerDocument, document);
  const nodeDocument = df.ownerDocument;
  document.body.appendChild(df);
  assert_equals(df.childNodes.length, 0);
  assert_equals(child.ownerDocument, document);
  assert_equals(df.ownerDocument, nodeDocument);
}, `appendChild() and DocumentFragment with host`);

test(() => {
  const df = document.createElement("template").content;
  const child = df.appendChild(new Text('hi'));
  const nodeDocument = df.ownerDocument;
  document.adoptNode(df);
  assert_equals(df.childNodes.length, 1);
  assert_equals(child.ownerDocument, nodeDocument);
  assert_equals(df.ownerDocument, nodeDocument);
}, `adoptNode() and DocumentFragment with host`);

[
  {
    "name""DocumentFragment",
    "creator": doc => doc.createDocumentFragment()
  },
  {
    "name""ShadowRoot",
    "creator": doc => doc.createElementNS("http://www.w3.org/1999/xhtml", "div").attachShadow({mode: "closed"})
  }
].forEach(dfTest => {
  test(() => {
    const doc = new Document();
    const df = dfTest.creator(doc);
    const child = df.appendChild(new Text('hi'));
    assert_equals(df.ownerDocument, doc);

    document.body.appendChild(df);
    assert_equals(df.childNodes.length, 0);
    assert_equals(child.ownerDocument, document);
    assert_equals(df.ownerDocument, doc);
  }, `appendChild() and ${dfTest.name}`);

  test(() => {
    const doc = new Document();
    const df = dfTest.creator(doc);
    const child = df.appendChild(new Text('hi'));
    if (dfTest.name === "ShadowRoot") {
      assert_throws_dom("HierarchyRequestError", () => document.adoptNode(df));
    } else {
      document.adoptNode(df);
      assert_equals(df.childNodes.length, 1);
      assert_equals(child.ownerDocument, document);
      assert_equals(df.ownerDocument, document);
    }
  }, `adoptNode() and ${dfTest.name}`);
});

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

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

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