mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-02 01:48:05 +00:00
7 lines
137 B
JavaScript
7 lines
137 B
JavaScript
"use strict";
|
|
|
|
var dbg = new Debugger(global);
|
|
dbg.onDebuggerStatement = function (frame) {
|
|
frame.eval("postMessage('debugger');");
|
|
};
|