blob: 0fbc96b5171b944aebb82388ae3fbcb7ece65df0 [file] [log] [blame]
joepeck@webkit.org0b5ea872017-02-02 22:07:28 +00001<!DOCTYPE HTML>
2<html>
3<head>
4<script src="../resources/js-test-pre.js"></script>
5</head>
6<body>
7<script>
8description("Ensure time origin in Worker starts from the moment of Worker Creation");
9self.jsTestIsAsync = true;
10
11while (performance.now() < 200)
12 continue;
13
14let worker = startWorker("resources/time-origin-in-worker.js");
15</script>
16<script src="../resources/js-test-post.js"></script>
17</body>
18</html>