Bug 1561435 - Format devtools/client/, a=automatic-formatting

# ignore-this-changeset

Differential Revision: https://phabricator.services.mozilla.com/D35884
This commit is contained in:
Victor Porof
2019-07-05 11:24:38 +02:00
parent e1ef9c4c20
commit b7732ae890
2792 changed files with 96115 additions and 52865 deletions

View File

@@ -39,8 +39,8 @@ define(function(require, exports, module) {
iconClassList.push("open");
}
return (
dom.td({
return dom.td(
{
className: "treeLabelCell",
style: {
// Compute indentation dynamically. The deeper the item is
@@ -48,16 +48,19 @@ define(function(require, exports, module) {
"--tree-label-cell-indent": `${level * 16}px`,
},
key: "default",
role: "presentation"},
dom.span({
className: iconClassList.join(" "),
role: "presentation",
}),
dom.span({
role: "presentation",
},
dom.span({
className: iconClassList.join(" "),
role: "presentation",
}),
dom.span(
{
className: "treeLabel " + member.type + "Label",
"aria-labelledby": id,
"data-level": level,
}, member.name)
},
member.name
)
);
}