Skip to content

Commit 084af2f

Browse files
authored
fix: Remove Firefox warnings about deprecated event props (#8736)
1 parent 42e167c commit 084af2f

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

src/js/utils/events.js

+8-4
Original file line numberDiff line numberDiff line change
@@ -112,15 +112,19 @@ export function fixEvent(event) {
112112
// IE8 Doesn't like when you mess with native event properties
113113
// Firefox returns false for event.hasOwnProperty('type') and other props
114114
// which makes copying more difficult.
115-
// TODO: Probably best to create a whitelist of event props
115+
116+
// TODO: Probably best to create an allowlist of event props
117+
const deprecatedProps = [
118+
'layerX', 'layerY', 'keyLocation', 'path',
119+
'webkitMovementX', 'webkitMovementY', 'mozPressure', 'mozInputSource'
120+
];
121+
116122
for (const key in old) {
117123
// Safari 6.0.3 warns you if you try to copy deprecated layerX/Y
118124
// Chrome warns you if you try to copy deprecated keyboardEvent.keyLocation
119125
// and webkitMovementX/Y
120126
// Lighthouse complains if Event.path is copied
121-
if (key !== 'layerX' && key !== 'layerY' && key !== 'keyLocation' &&
122-
key !== 'webkitMovementX' && key !== 'webkitMovementY' &&
123-
key !== 'path') {
127+
if (!deprecatedProps.includes(key)) {
124128
// Chrome 32+ warns if you try to copy deprecated returnValue, but
125129
// we still want to if preventDefault isn't supported (IE8).
126130
if (!(key === 'returnValue' && old.preventDefault)) {

0 commit comments

Comments
 (0)