Closed
Bug 1180817
Opened 8 years ago
Closed 7 years ago
[e10s] Support PageDown and PageUp key event handling (XUL)
Categories
(Core :: XUL, defect, P4)
Tracking
()
RESOLVED
INVALID
Tracking | Status | |
---|---|---|
e10s | + | --- |
People
(Reporter: geoffreydebelie, Unassigned)
References
Details
User Agent: Mozilla/5.0 (X11; Linux x86_64; rv:39.0) Gecko/20100101 Firefox/39.0 Build ID: 20150702232110 Steps to reproduce: This doesn't work (the function does not get called) when e10s is enabled in Firefox Developer 42: <keyset id="mainKeyset"> <key id='scrollkey-scrollup-pageup' keycode='VK_PAGE_UP' oncommand='scrollkey.scrollupif();' /> </keyset> It does work when e10s is disabled. This code is part of Scrollkey: https://addons.mozilla.org/nl/firefox/addon/scrollkey/ VK_PAGE_DOWN doesn't work either. Something like this works: <key id='scrollkey-scrolldown-j' modifiers='' key='j' oncommand='scrollkey.scrolldown(0);' />
Updated•8 years ago
|
Blocks: e10s-addons
tracking-e10s:
--- → +
Updated•8 years ago
|
Status: UNCONFIRMED → NEW
Component: Untriaged → XUL
Ever confirmed: true
Product: Firefox → Core
Updated•7 years ago
|
Priority: -- → P4
Comment 1•7 years ago
|
||
This is something that needs to be changed in the add-on code. You'll need a frame script that runs the code that actually does the scrolling, since with e10s enabled you can't invoke functions directly in the content. If you need help doing this, please use one of these: https://developer.mozilla.org/en-US/Add-ons#Contact_us
Status: NEW → RESOLVED
Closed: 7 years ago
Resolution: --- → INVALID
You need to log in
before you can comment on or make changes to this bug.
Description
•