diff --git a/src/scripts/browserDeviceProfile.js b/src/scripts/browserDeviceProfile.js index afa8c8df76..589db5be33 100644 --- a/src/scripts/browserDeviceProfile.js +++ b/src/scripts/browserDeviceProfile.js @@ -848,10 +848,9 @@ export default function (options) { maxH264Level = 52; } - if ((browser.tizen - || videoTestElement.canPlayType('video/mp4; codecs="avc1.6e0033"').replace(/no/, '')) + if (videoTestElement.canPlayType('video/mp4; codecs="avc1.6e0033"').replace(/no/, '') // These tests are passing in safari, but playback is failing - && !browser.safari && !browser.iOS && !browser.web0s && !browser.edge && !browser.mobile + && !browser.safari && !browser.iOS && !browser.web0s && !browser.edge && !browser.mobile && !browser.tizen ) { h264Profiles += '|high 10'; }