()
| 23 | // Waits for performance.now to advance. Since precision reduction might |
| 24 | // cause it to return the same value across multiple calls. |
| 25 | function wait() { |
| 26 | var now = performance.now(); |
| 27 | while (now === performance.now()) |
| 28 | continue; |
| 29 | } |
| 30 | |
| 31 | // Ensure the entries list is sorted by startTime. |
| 32 | function checkSorted(entries) { |
no test coverage detected