mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-28 11:28:12 +08:00
d5db131eef
* Spike AXE A11Y testing in Cypress * Fix NewRoomIntro breaking html/aria list rules * Fix HeaderButtons breaking aria role semantics rules * missing type * Switch left panel from aside to nav and include space panel * Give the page a main heading of the room name when viewing a room * Use header landmark on RoomHeader * Improve aria attributes on composer when autocomplete is closed * Fix aria-owns on RoomHeader * Give Spinner an aria role * Give server picker help button an aria label * Improve auth aria attributes and semantics * Improve heading semantics in use case selection screen * Fix autocomplete attribute to be valid * Fix heading semantics on login page * Improve Cypress axe testing * Add axe tests * Stop synapse after the timeline tests * Await spinners to fade before percy snapshotting timeline tests * Improve naming of plugin * Update snapshots * Fix accidental heading change * Fix double synapse stoppage * Fix Cypress timeline avatar assertions to be DPI agnostic * Fix aria attributes on date separators * delint * Update snapshots * Revert style change * Skip redundant call
109 lines
2.6 KiB
Plaintext
109 lines
2.6 KiB
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`DateSeparator renders the date separator correctly 1`] = `
|
|
<DateSeparator
|
|
now="2021-12-17T08:09:00.000Z"
|
|
roomId="!unused:example.org"
|
|
ts={1639728540000}
|
|
>
|
|
<div
|
|
aria-label="Today"
|
|
className="mx_DateSeparator"
|
|
role="separator"
|
|
tabIndex={-1}
|
|
>
|
|
<hr
|
|
role="none"
|
|
/>
|
|
<h2
|
|
aria-hidden="true"
|
|
>
|
|
Today
|
|
</h2>
|
|
<hr
|
|
role="none"
|
|
/>
|
|
</div>
|
|
</DateSeparator>
|
|
`;
|
|
|
|
exports[`DateSeparator when feature_jump_to_date is enabled renders the date separator correctly 1`] = `
|
|
<DateSeparator
|
|
now="2021-12-17T08:09:00.000Z"
|
|
roomId="!unused:example.org"
|
|
ts={1639728540000}
|
|
>
|
|
<div
|
|
aria-label="Fri, Dec 17 2021"
|
|
className="mx_DateSeparator"
|
|
role="separator"
|
|
tabIndex={-1}
|
|
>
|
|
<hr
|
|
role="none"
|
|
/>
|
|
<ContextMenuTooltipButton
|
|
className="mx_DateSeparator_jumpToDateMenu"
|
|
isExpanded={false}
|
|
onClick={[Function]}
|
|
title="Jump to date"
|
|
>
|
|
<AccessibleTooltipButton
|
|
aria-expanded={false}
|
|
aria-haspopup={true}
|
|
className="mx_DateSeparator_jumpToDateMenu"
|
|
forceHide={false}
|
|
onClick={[Function]}
|
|
onContextMenu={[Function]}
|
|
title="Jump to date"
|
|
>
|
|
<AccessibleButton
|
|
aria-expanded={false}
|
|
aria-haspopup={true}
|
|
aria-label="Jump to date"
|
|
className="mx_DateSeparator_jumpToDateMenu"
|
|
element="div"
|
|
onBlur={[Function]}
|
|
onClick={[Function]}
|
|
onContextMenu={[Function]}
|
|
onFocus={[Function]}
|
|
onMouseLeave={[Function]}
|
|
onMouseOver={[Function]}
|
|
role="button"
|
|
tabIndex={0}
|
|
>
|
|
<div
|
|
aria-expanded={false}
|
|
aria-haspopup={true}
|
|
aria-label="Jump to date"
|
|
className="mx_AccessibleButton mx_DateSeparator_jumpToDateMenu"
|
|
onBlur={[Function]}
|
|
onClick={[Function]}
|
|
onContextMenu={[Function]}
|
|
onFocus={[Function]}
|
|
onKeyDown={[Function]}
|
|
onKeyUp={[Function]}
|
|
onMouseLeave={[Function]}
|
|
onMouseOver={[Function]}
|
|
role="button"
|
|
tabIndex={0}
|
|
>
|
|
<h2
|
|
aria-hidden="true"
|
|
>
|
|
Fri, Dec 17 2021
|
|
</h2>
|
|
<div
|
|
className="mx_DateSeparator_chevron"
|
|
/>
|
|
</div>
|
|
</AccessibleButton>
|
|
</AccessibleTooltipButton>
|
|
</ContextMenuTooltipButton>
|
|
<hr
|
|
role="none"
|
|
/>
|
|
</div>
|
|
</DateSeparator>
|
|
`;
|