diff --git a/src/vs/workbench/parts/debug/browser/debugHover.ts b/src/vs/workbench/parts/debug/browser/debugHover.ts index 62482d0c6217c0bd9cd965d4f87ab6c24af68683..ca38ab10f44cf151227d5f3ed486f5adbd2149ee 100644 --- a/src/vs/workbench/parts/debug/browser/debugHover.ts +++ b/src/vs/workbench/parts/debug/browser/debugHover.ts @@ -42,6 +42,7 @@ export class DebugHoverWidget implements editorbrowser.IContentWidget { constructor(private editor: editorbrowser.ICodeEditor, private debugService: debug.IDebugService, private instantiationService: IInstantiationService) { this.domNode = $('.debug-hover-widget monaco-editor-background'); this.treeContainer = dom.append(this.domNode, $('.debug-hover-tree')); + this.treeContainer.setAttribute('role', 'tree'); this.tree = new Tree(this.treeContainer, { dataSource: new viewer.VariablesDataSource(this.debugService), renderer: this.instantiationService.createInstance(VariablesHoverRenderer), @@ -55,6 +56,7 @@ export class DebugHoverWidget implements editorbrowser.IContentWidget { }); this.valueContainer = dom.append(this.domNode, $('.value')); + this.valueContainer.setAttribute('role', 'tooltip'); this.isVisible = false; this.showAtPosition = null;