Closed
Bug 782852
Opened 13 years ago
Closed 13 years ago
full-screen-api.approval-required pref should affect nsDocument::mIsApprovedForFullscreen
Categories
(Core :: DOM: Core & HTML, defect)
Tracking
()
RESOLVED
FIXED
mozilla17
People
(Reporter: cpearce, Assigned: cpearce)
Details
Attachments
(1 file)
|
1.26 KB,
patch
|
smaug
:
review+
|
Details | Diff | Splinter Review |
If the pref "full-screen-api.approval-required" is false, pointerlock doesn't work on desktop.
"full-screen-api.approval-required" determines whether chrome JS shows approval UI for fullscreen. When the user approves fullscreen via the approval UI, chrome sends the "fullscreen-approved" notification to gecko, and if we have a pending pointer lock request it is granted.
So if the pref "full-screen-api.approval-required" is true, we won't ever show the approval UI, so we won't ever send "fullscreen-approved", and so pending pointer lock requests are never granted.
We should initialize nsDocument::mIsApprovedForFullscreen to true if full-screen-api.approval-required is false, i.e. we should take the same path for pointer lock as we do when fullscreen has been already approved by the user.
| Assignee | ||
Comment 1•13 years ago
|
||
As described in comment #0, initialize nsDocument::mIsApprovedForFullscreen to true if the "full-screen-api.approval-required" pref is false, i.e. take the same path for pointer lock as we do when fullscreen has been already approved by the user.
Pointer lock works when the "full-screen-api.approval-required" pref is false with this patch.
Attachment #651952 -
Flags: review?(bugs)
Updated•13 years ago
|
Attachment #651952 -
Flags: review?(bugs) → review+
| Assignee | ||
Comment 2•13 years ago
|
||
Comment 3•13 years ago
|
||
Status: NEW → RESOLVED
Closed: 13 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla17
You need to log in
before you can comment on or make changes to this bug.
Description
•