Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/devtools/server/actors/resources/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 1 kB image not shown  

Quelle  reflow.js   Sprache: JAVA

 
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */


"use strict";

const Targets = require("resource://devtools/server/actors/targets/index.js");

const {
  getLayoutChangesObserver,
  releaseLayoutChangesObserver,
} = require("resource://devtools/server/actors/reflow.js");

class ReflowWatcher {
  /**
   * Start watching for reflows related to a given Target Actor.
   *
   * @param TargetActor targetActor
   *        The target actor from which we should observe reflows
   * @param Object options
   *        Dictionary object with following attributes:
   *        - onAvailable: mandatory function
   *          This will be called for each resource.
   */

  async watch(targetActor, { onAvailable }) {
    // Only track reflow for non-ParentProcess FRAME targets
    if (
      targetActor.targetType !== Targets.TYPES.FRAME ||
      targetActor.typeName === "parentProcessTarget"
    ) {
      return;
    }

    this._targetActor = targetActor;

    const onReflows = reflows => {
      onAvailable([
        {
          reflows,
        },
      ]);
    };

    this._observer = getLayoutChangesObserver(targetActor);
    this._offReflows = this._observer.on("reflows", onReflows);
    this._observer.start();
  }

  destroy() {
    releaseLayoutChangesObserver(this._targetActor);

    if (this._offReflows) {
      this._offReflows();
      this._offReflows = null;
    }
  }
}

module.exports = ReflowWatcher;

Messung V0.5
C=92 H=97 G=94

¤ Dauer der Verarbeitung: 0.2 Sekunden  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

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.