mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-09 21:00:42 +02:00
6 lines
137 B
JavaScript
6 lines
137 B
JavaScript
"use strict";
|
|
|
|
var dbg = new Debugger(global);
|
|
dbg.onDebuggerStatement = function (frame) {
|
|
frame.eval("postMessage('debugger');");
|
|
};
|