Home
last modified time | relevance | path

Searched refs:shellCanvas (Results 1 – 1 of 1) sorted by relevance

/developtools/smartperf_host/ide/src/trace/component/setting/
DSpWebHdcShell.ts27 private shellCanvas: HTMLCanvasElement | null | undefined; property in SpWebHdcShell
59 this.shellCanvas = this.shadowRoot!.querySelector<HTMLCanvasElement>('#shell_cmd');
60 this.shellCanvasCtx = this.shellCanvas!.getContext('2d');
63 this.shellCanvasCtx!.fillRect(0, 0, this.shellCanvas!.width, this.shellCanvas!.height);
66 this.shellCanvas!.addEventListener('contextmenu', (event) => {
71 this.shellCanvas!.addEventListener('keydown', async (keyboardEvent) => {
92 this.shellCanvas!.addEventListener('blur', function () {
105 if (this.shellCanvas !== null && this.shellCanvas !== undefined) {
106 this.shellCanvas.width = this.shellCanvas.clientWidth;
107 this.shellCanvas.height = this.shellCanvas.clientHeight;
[all …]