diff options
Diffstat (limited to 'testing/web-platform/tests/remote-playback/watch-availability-initial-callback.html')
-rw-r--r-- | testing/web-platform/tests/remote-playback/watch-availability-initial-callback.html | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/testing/web-platform/tests/remote-playback/watch-availability-initial-callback.html b/testing/web-platform/tests/remote-playback/watch-availability-initial-callback.html new file mode 100644 index 0000000000..b540d835b9 --- /dev/null +++ b/testing/web-platform/tests/remote-playback/watch-availability-initial-callback.html @@ -0,0 +1,26 @@ +<!DOCTYPE html> +<html> + <title> + Test that the callback is called after the Promise returned by watchAvailability() resolves + </title> + <script src="/resources/testharness.js"></script> + <script src="/resources/testharnessreport.js"></script> + <script src="/common/media.js"></script> + <script> + async_test(t => { + let v = document.createElement("video"); + v.src = getVideoURI("/media/movie_5"); + + let promiseResolved = false; + + v.remote + .watchAvailability(t.step_func_done(() => assert_true(promiseResolved))) + .then( + t.step_func(() => { + promiseResolved = true; + }), + t.unreached_func() + ); + }, "Test that the callback is called after the Promise returned by watchAvailability() resolves."); + </script> +</html> |