Skip to content

Commit

Permalink
test(custom-media-element): Comment out browser-prefix prop tests. (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
cjpillsbury authored Aug 13, 2024
1 parent 35ba77e commit e5f23d5
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions packages/custom-media-element/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -208,14 +208,16 @@ test('has HTMLVideoElement like properties', async function (t) {
'videoHeight',
'videoWidth',
'volume',
'webkitAudioDecodedByteCount',
'webkitDecodedFrameCount',
'webkitDroppedFrameCount',
'webkitEnterFullScreen',
'webkitEnterFullscreen',
'webkitExitFullScreen',
'webkitExitFullscreen',
'webkitVideoDecodedByteCount',
// Commenting browser-prefixed properties out as we should not
// *assume* they will exist, even for the browser in question (CJP)
// 'webkitAudioDecodedByteCount',
// 'webkitDecodedFrameCount',
// 'webkitDroppedFrameCount',
// 'webkitEnterFullScreen',
// 'webkitEnterFullscreen',
// 'webkitExitFullScreen',
// 'webkitExitFullscreen',
// 'webkitVideoDecodedByteCount',
'width',
];

Expand Down

0 comments on commit e5f23d5

Please sign in to comment.