-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Description
Copied from ADO ID: 917236
Repro Steps:
- Launch affected app referenced in VSO ID
- Navigate to various actionable UI in the toolbar.
- Check if the tooltip displayed is satisfying the below conditions:
Hoverable
Persistent
-affected app has accessibility updates enabled in config file.
-affected app just uses ToolTip property on button or RibbonButton to add tooltip. Changing app to use tooltip object via <Button.Tooltip></Button.Tooltip> does not affect behavior.
Expected Result:
Hoverable: Should be able to hover on the additional content(tooltip)
Persistent: The additional content(tooltip) should be visible until the hover or focus trigger is removed, the user dismisses it, or its information is no longer valid
Actual Result:
The tooltip is not Hoverable. Tooltip is dismissed on hovering to it.
The tooltip is not persistent. Tooltip is dismissed after some time without removing the focus or hover.
Initial Discussion from team research:
I don't believe we have any logic in place to detect hover on the tooltip and keep it alive, when the mouse moves out of the tooltip's parent element the tooltip is automatically dismissed.