JavaScript Tester
Here are the tests this page runs:
- WebSocket
- let and const (+ some more ES6 Testing)
- querySelector
- WeakSet
If the log below does not say some of those, then it is probably missing this feature or has failed.
Tests:
Dump window contents
function h()
{
var x = [1,2,3];
if (x.find)
{
var result = x.find(
function(i)
{
console.log(i);
if (i === 1)
{
return true
}
else
{
return false
}
}
);
if (result === 1) { return true }
else { return false }
}
else
{
return false
}
};
h();
Eval
(. . .)