forked from web-platform-tests/wpt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Test video resizing during playback (web-platform-tests#19030)
Fixes web-platform-tests#17821. New media files are from @guest271314 in the review.
- Loading branch information
Showing
3 changed files
with
39 additions
and
0 deletions.
There are no files selected for viewing
39 changes: 39 additions & 0 deletions
39
html/semantics/embedded-content/the-video-element/resize-during-playback.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<title>video element resizing during playback</title> | ||
<link rel="help" href="https://html.spec.whatwg.org/multipage/media.html#concept-video-intrinsic-width"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
</head> | ||
<body> | ||
<div id="log"></div> | ||
<script> | ||
for (const format of ['mp4', 'webm']) { | ||
promise_test(async (t) => { | ||
const video = document.createElement('video'); | ||
assert_precondition(video.canPlayType(`video/${format}`), `${format} supported`); | ||
|
||
// Load the video and wait for initial resize event. | ||
video.src = `/media/400x300-red-resize-200x150-green.${format}`; | ||
video.muted = true; | ||
video.preload = 'auto'; | ||
document.body.appendChild(video); | ||
const eventWatcher = new EventWatcher(t, video, ['resize', 'playing', 'error', 'ended']); | ||
await eventWatcher.wait_for(['resize']); | ||
assert_equals(video.videoWidth, 400, 'width after first resize event'); | ||
assert_equals(video.videoHeight, 300, 'height after first resize event'); | ||
|
||
// Now play and wait for a second resize event. | ||
const playPromise = video.play(); | ||
if (playPromise) { | ||
playPromise.catch(t.unreached_func("play rejected")); | ||
} | ||
await eventWatcher.wait_for(['playing', 'resize']); | ||
assert_equals(video.videoWidth, 200, 'width after second resize event'); | ||
assert_equals(video.videoHeight, 150, 'height after second resize event'); | ||
}, `${format} video`); | ||
} | ||
</script> | ||
</body> | ||
</html> |
Binary file not shown.
Binary file not shown.