Bug 1704338 - Fix lint failures r=fix CLOSED TREE

This commit is contained in:
Noemi Erli 2021-04-13 11:04:37 +03:00
Родитель e148330dcc
Коммит 0ba7033c5a
1 изменённых файлов: 4 добавлений и 2 удалений

Просмотреть файл

@ -785,9 +785,11 @@ function synthesizeNativeTap(aTarget, aX, aY, aObserver = null) {
// only currently implemented on macOS
function synthesizeNativeTouchpadDoubleTap(aTarget, aX, aY) {
ok(getPlatform() == "mac",
ok(
getPlatform() == "mac",
"only implemented on mac. implement sendNativeTouchpadDoubleTap for this platform," +
" see bug 1696802 for how it was done on macOS");
" see bug 1696802 for how it was done on macOS"
);
let pt = coordinatesRelativeToScreen({
offsetX: aX,
offsetY: aY,