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

Quelle  browser_layout_simple.js

  Sprache: JAVA
 

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


"use strict";

// Simple checks for the LayoutActor and GridActor

add_task(async function () {
  const { target, walker, layout } = await initLayoutFrontForUrl(
    "data:text/html;charset=utf-8,<title>test</title><div></div>"
  );

  ok(layout, "The LayoutFront was created");
  ok(layout.getGrids, "The getGrids method exists");

  let didThrow = false;
  try {
    await layout.getGrids(null);
  } catch (e) {
    didThrow = true;
  }
  ok(didThrow, "An exception was thrown for a missing NodeActor in getGrids");

  const invalidNode = await walker.querySelector(walker.rootNode, "title");
  const grids = await layout.getGrids(invalidNode);
  ok(Array.isArray(grids), "An array of grids was returned");
  is(grids.length, 0"0 grids have been returned for the invalid node");

  await target.destroy();
  gBrowser.removeCurrentTab();
});

Messung V0.5 in Prozent
C=93 H=93 G=92

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