summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/event-timing/medium-duration-threshold.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/event-timing/medium-duration-threshold.html')
-rw-r--r--testing/web-platform/tests/event-timing/medium-duration-threshold.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/testing/web-platform/tests/event-timing/medium-duration-threshold.html b/testing/web-platform/tests/event-timing/medium-duration-threshold.html
new file mode 100644
index 0000000000..a2f79cf6fe
--- /dev/null
+++ b/testing/web-platform/tests/event-timing/medium-duration-threshold.html
@@ -0,0 +1,16 @@
+<!DOCTYPE html>
+<html>
+<meta charset=utf-8 />
+<title>Event Timing: PerformanceObserver with a durationThreshold of 50</title>
+<script src=/resources/testharness.js></script>
+<script src=/resources/testharnessreport.js></script>
+<script src=/resources/testdriver.js></script>
+<script src=/resources/testdriver-vendor.js></script>
+<script src=resources/event-timing-test-utils.js></script>
+<div id='myDiv'>Click me</div>
+<script>
+promise_test(async t => {
+ return testDuration(t, 'myDiv', numEntries=3, dur=50, slowDur=70);
+}, "PerformanceObserver observes events according to its durationThreshold");
+</script>
+</html>