Open
Bug 1447243
Opened 7 years ago
Updated 3 years ago
View Page Info -> Media does not show all media items if the page contains frames that contain media items
Categories
(Firefox :: Page Info Window, defect)
Tracking
()
NEW
Tracking | Status | |
---|---|---|
firefox-esr52 | --- | wontfix |
firefox59 | --- | wontfix |
firefox60 | --- | fix-optional |
firefox61 | --- | fix-optional |
People
(Reporter: plashcor, Unassigned)
References
()
Details
(Keywords: regression)
User Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0
Build ID: 20161031133903
Steps to reproduce:
1 - Open a web page containing frames with images in the frames
2 - Open View Page Info and select the Media tab
Actual results:
Images from only the main document are displayed
Expected results:
All media in all frames should be displayed
The problem lies in the function goThroughFrames in content.js file.
The statement
frameList.concat(this.goThroughFrames(window.frames[i].document, window.frames[i]));
returns a new array but it is not assigned to a variable. It should be
frameList = frameList.concat(this.goThroughFrames(window.frames[i].document, window.frames[i]));
for the function to work correctly.
![]() |
||
Updated•7 years ago
|
Component: Untriaged → Page Info Window
![]() |
||
Updated•7 years ago
|
Blocks: 1175794
Status: UNCONFIRMED → NEW
status-firefox59:
--- → wontfix
status-firefox60:
--- → fix-optional
status-firefox61:
--- → affected
status-firefox-esr52:
--- → wontfix
Ever confirmed: true
Keywords: regression
![]() |
||
Updated•7 years ago
|
Version: 47 Branch → 42 Branch
Updated•7 years ago
|
Updated•3 years ago
|
Severity: normal → S3
You need to log in
before you can comment on or make changes to this bug.
Description
•