diff options
Diffstat (limited to 'testing/web-platform/tests/html/webappapis/animation-frames/callback-timestamp.html')
-rw-r--r-- | testing/web-platform/tests/html/webappapis/animation-frames/callback-timestamp.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/testing/web-platform/tests/html/webappapis/animation-frames/callback-timestamp.html b/testing/web-platform/tests/html/webappapis/animation-frames/callback-timestamp.html new file mode 100644 index 0000000000..8e61db61b8 --- /dev/null +++ b/testing/web-platform/tests/html/webappapis/animation-frames/callback-timestamp.html @@ -0,0 +1,17 @@ +<!DOCTYPE html> +<meta charset="utf-8"> +<title>AnimationTiming Test: FrameRequestCallback - timestamp argument</title> +<link rel="author" title="Intel" href="http://www.intel.com"> +<link rel="help" href="https://html.spec.whatwg.org/multipage/#animation-frames"> +<script src="/resources/testharness.js"></script> +<script src="/resources/testharnessreport.js"></script> +<div id="log"></div> +<script> + + async_test(t => { + requestAnimationFrame(t.step_func_done(time => { + assert_equals(typeof time, "number", "callback contains a number argument"); + })) + }, "Check FrameRequestCallback has a DOMHighResTimeStamp argument"); + +</script> |