Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1492)

Unified Diff: third_party/WebKit/Source/devtools/front_end/accessibility/AXTreePane.js

Issue 2623053002: [Devtools] Fix left margin for selection element (Closed)
Patch Set: more comments Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/devtools/front_end/accessibility/AXTreePane.js
diff --git a/third_party/WebKit/Source/devtools/front_end/accessibility/AXTreePane.js b/third_party/WebKit/Source/devtools/front_end/accessibility/AXTreePane.js
index ab855811c5322fa5a6ea540d5a7ee2f5dfa6fb59..8dd9d4cc523b2b7085fecf0490c3cf42d9ba4ea9 100644
--- a/third_party/WebKit/Source/devtools/front_end/accessibility/AXTreePane.js
+++ b/third_party/WebKit/Source/devtools/front_end/accessibility/AXTreePane.js
@@ -13,6 +13,7 @@ Accessibility.AXTreePane = class extends Accessibility.AccessibilitySubPane {
this._axSidebarView = axSidebarView;
this._treeOutline = this.createTreeOutline();
+ this._treeOutline.setPaddingSize(12);
this.element.classList.add('accessibility-computed');
@@ -179,6 +180,7 @@ Accessibility.AXNodeTreeElement = class extends UI.TreeElement {
this._treePane = treePane;
this.selectable = true;
+ this.paddingSize = 12;
dgozman 2017/01/19 23:12:45 Remove.
aboxhall 2017/01/20 04:25:00 Done.
this._inspectNodeButton = new Accessibility.InspectNodeButton(axNode, treePane);
}

Powered by Google App Engine
This is Rietveld 408576698