diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2018-02-14 21:11:03 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2018-02-14 21:12:06 +0900 |
commit | b694afb7ce0eed4c4ee3ee9c3fae5dd35cb72d14 (patch) | |
tree | dcc43cfbd8f95aac495b9a30dec724f78fda2566 /e2e/ambassador/src/client | |
parent | f63920e25e80ca0e472d3514fd56e27fbc505e6f (diff) |
add scroll test
Diffstat (limited to 'e2e/ambassador/src/client')
-rw-r--r-- | e2e/ambassador/src/client/scrolls.js | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/e2e/ambassador/src/client/scrolls.js b/e2e/ambassador/src/client/scrolls.js new file mode 100644 index 0000000..f8f82e9 --- /dev/null +++ b/e2e/ambassador/src/client/scrolls.js @@ -0,0 +1,20 @@ +import { SCROLL_GET, SCROLL_SET } from '../shared/messages'; +import * as ipc from './ipc'; + +const get = (tabId) => { + return ipc.send({ + type: SCROLL_GET, + tabId, + }); +}; + +const set = (tabId, x, y) => { + return ipc.send({ + type: SCROLL_SET, + tabId, + x, + y, + }); +}; + +export { get, set }; |