Bug 1275939 - replace domUtils.getCSSValuesForProperty in inplace-editor.js r=tromey

MozReview-Commit-ID: KtuAWnNsnaq
This commit is contained in:
Greg Tatum
2016-08-01 09:34:00 +02:00
parent f9a2f513c9
commit 5ecf2bffa5
14 changed files with 279 additions and 49 deletions

View File

@@ -3,14 +3,17 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
"use strict";
const { RetVal, generateActorSpec } = require("devtools/shared/protocol");
const { Arg, RetVal, generateActorSpec } = require("devtools/shared/protocol");
const cssPropertiesSpec = generateActorSpec({
typeName: "cssProperties",
methods: {
getCSSDatabase: {
request: {},
request: {
clientBrowserVersion: Arg(0, "string"),
},
response: RetVal("json"),
}
}