mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-14 20:34:30 +01:00
3704d95c91
* Support frames / workers in browser CDP Co-authored-by: Copilot <copilot@github.com> * path fix Co-authored-by: Copilot <copilot@github.com> * feedback * Normalize blank URLs Co-authored-by: Copilot <copilot@github.com> --------- Co-authored-by: Copilot <copilot@github.com>
3 lines
108 B
JavaScript
3 lines
108 B
JavaScript
// Worker script for browser tests – echoes messages back
|
||
self.onmessage = e => self.postMessage(e.data);
|