Closed
Bug 112674
Opened 23 years ago
Closed 14 years ago
Inspect Contained Document followed by view Stylesheets screw ups
Categories
(Other Applications :: DOM Inspector, defect)
Other Applications
DOM Inspector
Tracking
(Not tracked)
RESOLVED
FIXED
Future
People
(Reporter: hewitt, Assigned: crussell)
References
Details
Attachments
(1 file)
When I inspect mozilla, then go to the <browser> and inspect its contained
document, then switch the document pane viewer to the Stylesheets view, it
reverts to the old navigator document object instead of the new sub-document for
the browser.
Reporter | ||
Updated•23 years ago
|
Status: NEW → ASSIGNED
Target Milestone: --- → Future
Comment 1•21 years ago
|
||
Mass re-assigning bugs to dom.inspector@extensions.bugs
Assignee: hewitt → dom.inspector
Status: ASSIGNED → NEW
Updated•20 years ago
|
Product: Core → Other Applications
Updated•18 years ago
|
Assignee: dom-inspector → nobody
QA Contact: timeless → dom-inspector
Assignee | ||
Comment 2•15 years ago
|
||
> cmdInspectBrowser: function DVr_CmdInspectBrowser()
> {
> var node = this.selectedNode;
> var n = node && node.localName.toLowerCase();
> if (n == "iframe" || n == "frame" ||
> (node.namespaceURI == kXULNSURI && (n == "browser" ||
> n == "tabbrowser" ||
> n == "editor"))) {
> this.subject = node.contentDocument;
> }
> },
This should update the panel's subject, instead of directly setting this instance's subject.
This is a one line fix, but no patch because I don't want my patch for bug 310370 to rot.
Status: NEW → ASSIGNED
Comment 3•15 years ago
|
||
This is a mass change. Every comment has "assigned-to-new" in it.
I didn't look through the bugs, so I'm sorry if I change a bug which shouldn't be changed. But I guess these bugs are just bugs that were once assigned and people forgot to change the Status back when unassigning.
Status: ASSIGNED → NEW
Assignee | ||
Comment 4•14 years ago
|
||
Updated•14 years ago
|
Attachment #493518 -
Flags: review?(neil) → review+
Assignee | ||
Comment 5•14 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 14 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•