bug 347481: find link tags in XHTML documents (where the link tag is in the default namespace) in addition to HTML documents

namespace)
Patch by Justin Dolske.
r=myk
This commit is contained in:
myk%mozilla.org 2007-01-14 05:38:32 +00:00
parent 4ff5e834dc
commit 19b7fc6f47

View File

@ -1730,7 +1730,7 @@ MicrosummarySet.prototype = {
// XXX Handle XML documents, whose microsummaries are specified
// via processing instructions.
var links = resource.content.getElementsByTagName("LINK");
var links = resource.content.getElementsByTagName("link");
for ( var i = 0; i < links.length; i++ ) {
var link = links[i];