Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.189.184.208
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp /
node_modules /
min-document /
test /
Delete
Unzip
Name
Size
Permission
Date
Action
static
[ DIR ]
drwxr-xr-x
2021-05-07 15:09
cleanup.js
278
B
-rw-r--r--
2015-08-03 18:33
index.js
422
B
-rw-r--r--
2015-08-03 18:33
test-document.js
18.18
KB
-rw-r--r--
2016-09-21 22:55
test-dom-comment.js
636
B
-rw-r--r--
2015-08-03 18:33
test-dom-element.js
7.01
KB
-rw-r--r--
2016-09-21 22:55
Save
Rename
var test = require("tape") module.exports = testDomComment function testDomComment(document) { var cleanup = require('./cleanup')(document) test("can createComment", function(assert) { var comment = document.createComment("test") assert.equal(comment.data, "test") assert.equal(comment.length, 4) assert.equal(comment.nodeName, "#comment") assert.equal(comment.nodeType, 8) assert.equal(comment.nodeValue, "test") assert.equal(comment.ownerDocument, document) assert.equal(comment.toString(), "[object Comment]") cleanup() assert.end() }) }