I added this code to VS Code:
const decoration = this._terminal.registerDecoration({
marker
});
if (decoration) {
decoration.onRender(element => {
console.log('element', element);
element.style.backgroundColor = 'yellow';
});
timeout(2000).then(() => decoration.dispose());
}
And I see a yellow scroll bar:

And these logs:
