Bug 1313420 - Implement Performance.timeOrigin - part 4 - tests, r=me

This commit is contained in:
Andrea Marchesini 2016-11-17 12:50:10 +01:00
parent 3aca311a38
commit a7ee323115

View File

@ -32,7 +32,7 @@ function testWorker() {
{ type: "text/javascript" });
var w = new Worker(URL.createObjectURL(blob));
w.onmessage = function(e) {
ok (e.now + e.timeOrigin > now + performance.timeOrigin, "Comparing worker.now and window.now");
ok (e.data.now + e.data.timeOrigin > now + performance.timeOrigin, "Comparing worker.now and window.now");
next();
}
}
@ -44,7 +44,7 @@ function testSharedWorker() {
{ type: "text/javascript" });
var w = new SharedWorker(URL.createObjectURL(blob));
w.port.onmessage = function(e) {
ok (e.now + e.timeOrigin > now + performance.timeOrigin, "Comparing worker.now and window.now");
ok (e.data.now + e.data.timeOrigin > now + performance.timeOrigin, "Comparing worker.now and window.now");
next();
}
}