mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-20 10:33:36 +00:00
7 lines
122 B
JavaScript
7 lines
122 B
JavaScript
"use strict";
|
|
|
|
var dbg = new Debugger(global);
|
|
dbg.onDebuggerStatement = function (frame) {
|
|
postMessage("debugger");
|
|
};
|