add zomm tests
This commit is contained in:
parent
ccb3c64425
commit
13eba7574c
3 changed files with 28 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
|||
import {
|
||||
WINDOWS_CREATE, WINDOWS_REMOVE, WINDOWS_GET,
|
||||
TABS_CREATE, TABS_SELECT_AT,
|
||||
TABS_CREATE, TABS_REMOVE, TABS_SELECT_AT, TABS_GET_ZOOM, TABS_SET_ZOOM,
|
||||
EVENT_KEYPRESS, EVENT_KEYDOWN, EVENT_KEYUP,
|
||||
SCROLL_GET, SCROLL_SET,
|
||||
} from '../shared/messages';
|
||||
|
@ -20,11 +20,17 @@ receiveContentMessage((message) => {
|
|||
url: message.url,
|
||||
windowId: message.windowId,
|
||||
});
|
||||
case TABS_REMOVE:
|
||||
return browser.tabs.remove(message.tabId);
|
||||
case TABS_SELECT_AT:
|
||||
return tabs.selectAt({
|
||||
windowId: message.windowId,
|
||||
index: message.index,
|
||||
});
|
||||
case TABS_GET_ZOOM:
|
||||
return browser.tabs.getZoom(message.tabId);
|
||||
case TABS_SET_ZOOM:
|
||||
return browser.tabs.setZoom(message.tabId, message.factor);
|
||||
case EVENT_KEYPRESS:
|
||||
case EVENT_KEYDOWN:
|
||||
case EVENT_KEYUP:
|
||||
|
|
Reference in a new issue