Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 483 Bytes

mouse-events-have-key-events.md

File metadata and controls

19 lines (13 loc) · 483 Bytes

mouse-events-have-key-events

Enforce onmouseenter/onmouseover/onmouseout/onmouseleave/onhover are accompanied by onfocus/onblur. Coding for the keyboard is important for users with physical disabilities who cannot use a mouse, AT compatibility, and screenreader users.

Rule details

This rule takes no arguments.

Succeed

<div @mouseover="doSth" @focus="doSth"></div>
<div @mouseout="doSth" @blur="doSth"></div>

Fail

<div @mouseover="doSth"></div>