// 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
);
Services.prefs.setIntPref("devtools.toolbox.footer.height", 350);
registerCleanupFunction(async function () {
Services.prefs.clearUserPref("devtools.toolbox.footer.height");
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];
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.