Chromium Code Reviews
DescriptionComplete removal of MouseEvent prefixed webkitMovementX/Y.
Specification is for .movementX/Y and the prefixed versions
have been deprecated for half a year now. Usage has dropped
notably. Remaining usage seems to be due to code that copies all properties:
e.g. https://github.com/taye/interact.js/blob/0b94aace680199b6261989363dfc102532c49a5d/interact.js#L547
function extend (dest, source) {
for (var prop in source) {
dest[prop] = source[prop];
}
return dest;
}
e.g. https://github.com/highcharts/highcharts/issues/4568
BUG=398457
Committed: https://crrev.com/c3fe452564b833f119af60957e966ab56318be2e
Cr-Commit-Position: refs/heads/master@{#369282}
Patch Set 1 : #Messages
Total messages: 23 (11 generated)
|