Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
SeleniumHQ
GitHub Repository: SeleniumHQ/Selenium
Path: blob/trunk/third_party/closure/goog/events/mouseevents.js
4136 views
1
/**
2
* @license
3
* Copyright The Closure Library Authors.
4
* SPDX-License-Identifier: Apache-2.0
5
*/
6
7
goog.provide('goog.events.MouseEvents');
8
9
10
/**
11
* Mapping of mouse event names to underlying browser event names.
12
* @typedef {{
13
* MOUSEDOWN: string,
14
* MOUSEUP: string,
15
* MOUSECANCEL: string,
16
* MOUSEMOVE: string,
17
* MOUSEOVER: string,
18
* MOUSEOUT: string,
19
* MOUSEENTER: string,
20
* MOUSELEAVE: string,
21
* }}
22
*/
23
goog.events.MouseEvents;
24
25