Closed
Bug 691252
Opened 13 years ago
Closed 11 years ago
JavaScript strict warning: chrome://browser/content/browser.js, line 6597: reference to undefined property rels.feed
Categories
(Firefox Graveyard :: RSS Discovery and Preview, defect)
Firefox Graveyard
RSS Discovery and Preview
Tracking
(Not tracked)
RESOLVED
FIXED
Firefox 27
People
(Reporter: rnewman, Assigned: billm)
Details
Attachments
(1 file)
983 bytes,
patch
|
Felipe
:
review+
|
Details | Diff | Splinter Review |
for (let relVal in rels) {
switch (relVal) {
case "feed":
case "alternate":
if (!feedAdded) {
if (!rels.feed && rels.alternate && rels.stylesheet)
break;
if (isValidFeed(link, link.ownerDocument.nodePrincipal, rels.feed)) { <<<<<<< HERE
FeedHandler.addFeed(link, link.ownerDocument);
feedAdded = true;
}
}
break;
On current trunk.
Assignee | ||
Comment 1•11 years ago
|
||
This has been annoying me for a while.
Updated•11 years ago
|
Attachment #811450 -
Flags: review?(felipc) → review+
Comment 2•11 years ago
|
||
Looks like browser/base/content/pageinfo/feeds.js needs fixing too?
Assignee | ||
Comment 3•11 years ago
|
||
https://hg.mozilla.org/integration/mozilla-inbound/rev/1207ad888b05
Fixed the one Gavin found too.
Comment 4•11 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 11 years ago
Resolution: --- → FIXED
Target Milestone: --- → Firefox 27
Updated•6 years ago
|
Product: Firefox → Firefox Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•