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