mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
30 lines
877 B
JavaScript
30 lines
877 B
JavaScript
|
/* 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 gcli = require("gcli/index");
|
||
|
|
||
|
exports.items = [{
|
||
|
name: "inspect",
|
||
|
description: gcli.lookup("inspectDesc"),
|
||
|
manual: gcli.lookup("inspectManual"),
|
||
|
params: [
|
||
|
{
|
||
|
name: "selector",
|
||
|
type: "node",
|
||
|
description: gcli.lookup("inspectNodeDesc"),
|
||
|
manual: gcli.lookup("inspectNodeManual")
|
||
|
}
|
||
|
],
|
||
|
exec: function(args, context) {
|
||
|
let target = context.environment.target;
|
||
|
let gDevTools = require("resource:///modules/devtools/gDevTools.jsm").gDevTools;
|
||
|
|
||
|
return gDevTools.showToolbox(target, "inspector").then(toolbox => {
|
||
|
toolbox.getCurrentPanel().selection.setNode(args.selector, "gcli");
|
||
|
});
|
||
|
}
|
||
|
}];
|