Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/devtools/client/inspector/grids/test/   (Firefox Browser Version 153.0.1©)  Datei vom 27.6.2026 mit Größe 2 kB image not shown  

Quelle  head.js

  Sprache: JAVA
 

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

/* eslint no-unused-vars: [2, {"vars": "local"}] */

"use strict";

// Import the inspector's head.js first (which itself imports shared-head.js).
Services.scriptloader.loadSubScript(
  "chrome://mochitests/content/browser/devtools/client/inspector/test/head.js",
  this
);

const asyncStorage = require("resource://devtools/shared/async-storage.js");

registerCleanupFunction(async function () {
  await asyncStorage.removeItem("gridInspectorHostColors");
});

/**
 * Simulate a mouseover event on a grid cell currently rendered in the grid
 * inspector.
 *
 * @param {Document} doc
 *        The owner document for the grid inspector.
 * @param {number} gridCellIndex
 *        The index (0-based) of the grid cell that should be hovered.
 */

function synthesizeMouseOverOnGridCell(doc, gridCellIndex = 0) {
  // Make sure to retrieve the current live grid item before attempting to
  // interact with it using mouse APIs.
  const gridCell = doc.querySelectorAll("#grid-cell-group rect")[gridCellIndex];

  EventUtils.synthesizeMouseAtCenter(
    gridCell,
    { type: "mouseover" },
    doc.defaultView
  );
}

/**
 * Returns the number of visible grid highlighters
 *
 * @param {object} options
 * @param {boolean} options.isParent: Pass false/true if only the parent/child grid highlighter
 *                                    should be counted.
 * @returns {number}
 */

function getNumberOfVisibleGridHighlighters({ isParent } = {}) {
  return SpecialPowers.spawn(
    gBrowser.selectedBrowser,
    [isParent],
    _isParent => {
      const roots = content.document.getConnectedShadowRoots();
      return roots.filter(root => {
        // We want to check that the highlighter canvas is actually visible
        const gridHighlighterEl = root.querySelector(
          `#css-grid-root:has(canvas:not([hidden]))`
        );

        if (!gridHighlighterEl) {
          return false;
        }

        if (typeof _isParent === "boolean") {
          return (
            gridHighlighterEl.getAttribute("data-is-parent-grid") ===
            _isParent.toString()
          );
        }

        // If isParent wasn't passed, we return all grid highlighters, parent and child.
        return true;
      }).length;
    }
  );
}

Messung V0.5 in Prozent
C=90 H=95 G=92

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