Skip to content

Commit

Permalink
test: Improve transmuxer tests
Browse files Browse the repository at this point in the history
  • Loading branch information
avelad committed Aug 30, 2023
1 parent eec25b2 commit 7c07020
Show file tree
Hide file tree
Showing 2 changed files with 204 additions and 210 deletions.
4 changes: 3 additions & 1 deletion test/test/util/ui_utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,9 @@ shaka.test.UiUtils = class {
const video = /** @type {!HTMLVideoElement} */(document.createElement(
'video'));

video.muted = true;
if (!shaka.util.Platform.isTizen()) {
video.muted = true;
}
video.width = 600;
video.height = 400;

Expand Down
Loading

0 comments on commit 7c07020

Please sign in to comment.