2022-06-17 19:03:29 +08:00
|
|
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
|
2022-11-18 17:16:11 +08:00
|
|
|
exports[`MVideoBody does not crash when given a portrait image 1`] = `
|
|
|
|
<DocumentFragment>
|
|
|
|
<span
|
|
|
|
class="mx_MVideoBody"
|
|
|
|
>
|
|
|
|
<div
|
|
|
|
class="mx_MVideoBody_container"
|
|
|
|
style="max-width: 182px; max-height: 324px;"
|
|
|
|
>
|
|
|
|
<video
|
|
|
|
class="mx_MVideoBody"
|
|
|
|
controls=""
|
|
|
|
controlslist="nodownload"
|
|
|
|
poster="data:image/png;base64,00"
|
|
|
|
preload="none"
|
|
|
|
/>
|
|
|
|
<div
|
|
|
|
style="width: 182px; height: 324px;"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</span>
|
|
|
|
</DocumentFragment>
|
|
|
|
`;
|
2023-07-17 20:07:58 +08:00
|
|
|
|
|
|
|
exports[`MVideoBody should show poster for encrypted media before downloading it 1`] = `
|
|
|
|
<DocumentFragment>
|
|
|
|
<span
|
|
|
|
class="mx_MVideoBody"
|
|
|
|
>
|
|
|
|
<div
|
|
|
|
class="mx_MVideoBody_container"
|
|
|
|
style="max-width: 40px; max-height: 50px;"
|
|
|
|
>
|
|
|
|
<video
|
|
|
|
class="mx_MVideoBody"
|
|
|
|
controls=""
|
|
|
|
controlslist="nodownload"
|
|
|
|
poster="https://server/_matrix/media/r0/download/server/encrypted-poster"
|
|
|
|
preload="none"
|
|
|
|
title="alt for a test video"
|
|
|
|
/>
|
|
|
|
<div
|
|
|
|
style="width: 40px; height: 50px;"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</span>
|
|
|
|
</DocumentFragment>
|
|
|
|
`;
|