Closed
Bug 877033
Opened 13 years ago
Closed 13 years ago
[System] mozfullscreenchange event should be listened to handle fullscreen on/off by a video content within browser app.
Categories
(Firefox OS Graveyard :: Gaia::System, defect)
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: leo.bugzilla.gaia, Unassigned)
References
Details
Attachments
(1 file)
1. Title: [System] mozfullscreenchange event should be listened to handle fullscreen on/off by a video content within browser app.
2. Precondition :
3. Tester's Action :
1) Go to a web page that has a link to a video file.
2) Click on the link, which normally is used to download it
3) Watch the streamed video, switch to full screen, rotate to horizontal mode, turn off full screen, next turn on full screen again and rotate to vertical, next torn off full screen
4. Detailed Symptom (ENG.) : When leaving full screen in horizontal and vertical mode there is UI error in bottom Web Browser bar
5. Expected : No UI problems
6.Reproducibility: Y
1)Frequency Rate : 100%
7.Personal email id: hanj.kim25@gmail.com
Currently, 'fullscreenchange' was added by Bug 871407 for this purpose. However it needs to be replaced by 'mozfullscreenchange'.
https://github.com/mozilla-b2g/gaia/commit/2bfe0807ffa800ee46b77456b530e4a2c747ad70
var appResizeEvents = ['resize', 'status-active', 'status-inactive',
'keyboardchange', 'keyboardhide',
'attentionscreenhide', 'fullscreenchange'];
appResizeEvents.forEach(function eventIterator(event) {
window.addEventListener(event, function on(evt) {
...
});
});
Attachment #755155 -
Flags: review?(alive)
Comment 2•13 years ago
|
||
Comment on attachment 755155 [details]
Pull request url
r=me, thanks.
Comment 3•13 years ago
|
||
Status: NEW → RESOLVED
Closed: 13 years ago
Resolution: --- → FIXED
Comment 4•13 years ago
|
||
Comment on attachment 755155 [details]
Pull request url
I miss the r+
Attachment #755155 -
Flags: review?(alive) → review+
You need to log in
before you can comment on or make changes to this bug.
Description
•