%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
function testTimeResolution(highResTimeFunc, funcString) { test(() => { const t0 = highResTimeFunc(); let t1 = highResTimeFunc(); while (t0 == t1) { t1 = highResTimeFunc(); } const epsilon = 1e-5; assert_greater_than_equal(t1 - t0, 0.005 - epsilon, 'The second ' + funcString + ' should be much greater than the first'); }, 'Verifies the resolution of ' + funcString + ' is at least 5 microseconds.'); } function timeByPerformanceNow() { return performance.now(); } function timeByUserTiming() { performance.mark('timer'); const time = performance.getEntriesByName('timer')[0].startTime; performance.clearMarks('timer'); return time; } testTimeResolution(timeByPerformanceNow, 'performance.now()'); testTimeResolution(timeByUserTiming, 'entry.startTime');