var tests = [ 'hello world',
123,
null,
true,
new Date(),
[ 1, 'test', true, new Date() ],
{ a: true, b: null, c: new Date(), d: [ true, false, {} ] },
new Blob([123], { type: 'plain/text' })
];
var currentTest = null;
function getType(a) {
if (a === null || a === undefined)
return 'null';
if (Array.isArray(a))
return 'array';
if (typeof a == 'object')
return 'object';
return 'primitive';
}
function compare(a, b) {
is (getType(a), getType(b), 'Type matches');
var type = getType(a);
if (type == 'array') {
is (a.length, b.length, 'Array.length matches');
for (var i = 0; i < a.length; ++i) {
compare(a[i], b[i]);
}
return;
}
if (type == 'object') {
ok (a !== b, 'They should not match');
var aProps = [];
for (let p in a) aProps.push(p);
var bProps = [];
for (let p in b) bProps.push(p);
is (aProps.length, bProps.length, 'Props match');
is (aProps.sort().toString(), bProps.sort().toString(), 'Prop names match');
for (let p in a) {
compare(a[p], b[p]);
}
return;
}
if (type != 'null') {
is (a, b, 'Same value');
}
}
function runTest() { var mc = new MessageChannel('foobar');
ok(mc, "MessageChannel can be created");
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.