Eine aufbereitete Darstellung der Quelle

 
     
 
 
Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 

Benutzer

Quelle  LayoutDebugChild.sys.mjs   Sprache: unbekannt

 
Spracherkennung für: .mjs vermutete Sprache: Unknown {[0] [0] [0]} [Methode: Schwerpunktbildung, einfache Gewichte, sechs Dimensionen]

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

const NS_LAYOUT_DEBUGGINGTOOLS_CONTRACTID =
  "@mozilla.org/layout-debug/layout-debuggingtools;1";

export class LayoutDebugChild extends JSWindowActorChild {
  receiveMessage(msg) {
    if (!this._debuggingTools) {
      this._debuggingTools = Cc[
        NS_LAYOUT_DEBUGGINGTOOLS_CONTRACTID
      ].createInstance(Ci.nsILayoutDebuggingTools);
      this._debuggingTools.init(this.contentWindow);
    }
    switch (msg.name) {
      case "LayoutDebug:Call": {
        let pid = Services.appinfo.processID;
        dump(`[${pid} ${this.contentWindow.location}]\n`);
        this._debuggingTools[msg.data.name](msg.data.arg);
        dump("\n");
        break;
      }
      default:
        throw `unknown message ${msg.name} sent to LayoutDebugChild`;
    }
    return Promise.resolve(true);
  }
}

[Dauer der Verarbeitung: 0.19 Sekunden, vorverarbeitet 2026-08-24]

                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Open Source Software

     Quellcodebibliothek
     Eigene Quellcodes
     Fremde Quellcodes
     Suchen

Jenseits des Üblichen ....
    

Besucherstatistik

Besucherstatistik

Statistik
#Sources=141584
#Domains=752002