duration-with-target-low.html (728B)
1 <!DOCTYPE html> 2 <html> 3 <meta charset=utf-8 /> 4 <title>Event Timing: PerformanceObserver with a durationThreshold way smaller than processingDelay</title> 5 <script src=/resources/testharness.js></script> 6 <script src=/resources/testharnessreport.js></script> 7 <script src=/resources/testdriver.js></script> 8 <script src=/resources/testdriver-vendor.js></script> 9 <script src=resources/event-timing-test-utils.js></script> 10 <div id='myDiv'>Click me</div> 11 <script> 12 promise_test(async t => { 13 return testDurationWithDurationThreshold(t, 'myDiv', numEntries=5, durThreshold=300, processingDelay=0); 14 }, "PerformanceObserver with durationThreshold of 300 and processingDelay of 0 doesn't see any entries in the observer"); 15 </script> 16 </html>