Remove unneeded nsIDOMNSHTMLAnchorElement interface by merging it into nsIDOMHTMLAnchorElement. (Bug 582303) r=jst

This commit is contained in:
David Zbarsky
2010-08-04 22:40:17 -04:00
parent dd2e00ab6b
commit f274b78727
9 changed files with 34 additions and 132 deletions

View File

@@ -364,7 +364,7 @@ typedef void (* ForEachPingCallback)(void *closure, nsIContent *content,
static void
ForEachPing(nsIContent *content, ForEachPingCallback callback, void *closure)
{
// NOTE: Using nsIDOMNSHTMLAnchorElement2::GetPing isn't really worth it here
// NOTE: Using nsIDOMHTMLAnchorElement::GetPing isn't really worth it here
// since we'd still need to parse the resulting string. Instead, we
// just parse the raw attribute. It might be nice if the content node
// implemented an interface that exposed an enumeration of nsIURIs.