mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 13:14:58 +08:00
296ed2273e
* Use semantic list elements for pop up menu lists * Use semantic list elements for tab lists * Fix tests * Update snapshot
98 lines
2.7 KiB
Plaintext
98 lines
2.7 KiB
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`RoomGeneralContextMenu renders an empty context menu for archived rooms 1`] = `
|
|
<div>
|
|
<div
|
|
class="mx_ContextualMenu_wrapper"
|
|
style="top: 1px; left: 1px;"
|
|
>
|
|
<div
|
|
class="mx_ContextualMenu_background"
|
|
/>
|
|
<div
|
|
class="mx_ContextualMenu mx_ContextualMenu_withChevron_left"
|
|
role="menu"
|
|
>
|
|
<div
|
|
class="mx_ContextualMenu_chevron_left"
|
|
/>
|
|
<ul
|
|
class="mx_IconizedContextMenu mx_RoomGeneralContextMenu mx_IconizedContextMenu_compact"
|
|
role="none"
|
|
>
|
|
<div
|
|
class="mx_IconizedContextMenu_optionList mx_IconizedContextMenu_optionList_notFirst"
|
|
/>
|
|
<div
|
|
class="mx_IconizedContextMenu_optionList mx_IconizedContextMenu_optionList_notFirst mx_IconizedContextMenu_optionList_red"
|
|
>
|
|
<li
|
|
aria-label="Forget Room"
|
|
class="mx_AccessibleButton mx_IconizedContextMenu_option_red mx_IconizedContextMenu_item"
|
|
role="menuitem"
|
|
tabindex="-1"
|
|
>
|
|
<span
|
|
class="mx_IconizedContextMenu_icon mx_RoomGeneralContextMenu_iconSignOut"
|
|
/>
|
|
<span
|
|
class="mx_IconizedContextMenu_label"
|
|
>
|
|
Forget Room
|
|
</span>
|
|
</li>
|
|
</div>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
`;
|
|
|
|
exports[`RoomGeneralContextMenu renders the default context menu 1`] = `
|
|
<div>
|
|
<div
|
|
class="mx_ContextualMenu_wrapper"
|
|
style="top: 1px; left: 1px;"
|
|
>
|
|
<div
|
|
class="mx_ContextualMenu_background"
|
|
/>
|
|
<div
|
|
class="mx_ContextualMenu mx_ContextualMenu_withChevron_left"
|
|
role="menu"
|
|
>
|
|
<div
|
|
class="mx_ContextualMenu_chevron_left"
|
|
/>
|
|
<ul
|
|
class="mx_IconizedContextMenu mx_RoomGeneralContextMenu mx_IconizedContextMenu_compact"
|
|
role="none"
|
|
>
|
|
<div
|
|
class="mx_IconizedContextMenu_optionList mx_IconizedContextMenu_optionList_notFirst"
|
|
/>
|
|
<div
|
|
class="mx_IconizedContextMenu_optionList mx_IconizedContextMenu_optionList_notFirst mx_IconizedContextMenu_optionList_red"
|
|
>
|
|
<li
|
|
aria-label="Forget Room"
|
|
class="mx_AccessibleButton mx_IconizedContextMenu_option_red mx_IconizedContextMenu_item"
|
|
role="menuitem"
|
|
tabindex="-1"
|
|
>
|
|
<span
|
|
class="mx_IconizedContextMenu_icon mx_RoomGeneralContextMenu_iconSignOut"
|
|
/>
|
|
<span
|
|
class="mx_IconizedContextMenu_label"
|
|
>
|
|
Forget Room
|
|
</span>
|
|
</li>
|
|
</div>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
`;
|