-
Notifications
You must be signed in to change notification settings - Fork 10.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Prevent interaction with form elements in PresentationMode (issue 12232) #15648
Conversation
…issue 12232) This uses the relatively new `HTMLElement.inert` property, see https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/inert for additional information. The only "problem" is that this isn't yet available in all Firefox channels, but until https://bugzilla.mozilla.org/show_bug.cgi?id=1764263 is fixed we're no worse off than before.
/botio-linux preview |
From: Bot.io (Linux m4)ReceivedCommand cmd_preview from @Snuffleupagus received. Current queue size: 0 Live output at: http://54.241.84.105:8877/f126e9dd57a86ba/output.txt |
From: Bot.io (Linux m4)SuccessFull output at http://54.241.84.105:8877/f126e9dd57a86ba/output.txt Total script time: 1.30 mins Published |
/botio test |
From: Bot.io (Windows)ReceivedCommand cmd_test from @Snuffleupagus received. Current queue size: 0 Live output at: http://54.193.163.58:8877/56d78285a26314e/output.txt |
From: Bot.io (Linux m4)ReceivedCommand cmd_test from @Snuffleupagus received. Current queue size: 0 Live output at: http://54.241.84.105:8877/ea60e4c0b8f5e02/output.txt |
From: Bot.io (Linux m4)FailedFull output at http://54.241.84.105:8877/ea60e4c0b8f5e02/output.txt Total script time: 25.15 mins
Image differences available at: http://54.241.84.105:8877/ea60e4c0b8f5e02/reftest-analyzer.html#web=eq.log |
From: Bot.io (Windows)FailedFull output at http://54.193.163.58:8877/56d78285a26314e/output.txt Total script time: 30.56 mins
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM.
Prevent mouse interaction with form elements in PresentationMode (issue 12232)
Prevent keyboard interaction with form elements in PresentationMode (issue 12232)
This uses the relatively new
HTMLElement.inert
property, see https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/inert for additional information. The only "problem" is that this isn't yet available in all Firefox channels, but until https://bugzilla.mozilla.org/show_bug.cgi?id=1764263 is fixed we're no worse off than before.