1
0
mirror of https://github.com/roytam1/UXP.git synced 2026-06-12 11:28:57 +00:00
Files
UXP/toolkit/components/passwordmgr/test/chrome_timeout.js
T

12 lines
307 B
JavaScript

const Cc = Components.classes;
const Ci = Components.interfaces;
addMessageListener('setTimeout', msg => {
let timer = Cc['@mozilla.org/timer;1'].createInstance(Ci.nsITimer);
timer.init(_ => {
sendAsyncMessage('timeout');
}, msg.delay, Ci.nsITimer.TYPE_ONE_SHOT);
});
sendAsyncMessage('ready');