handle new flag for no link adjustments, handle empty values (bug 122227); r=adamlock, sr=kin, a=asa

This commit is contained in:
brade%netscape.com 2002-03-21 14:47:06 +00:00
Родитель 5b67c69e79
Коммит f27ce47a8f
1 изменённых файлов: 7 добавлений и 2 удалений

Просмотреть файл

@ -2216,6 +2216,11 @@ nsWebBrowserPersist::FixupAnchor(nsIDOMNode *aNode)
nsresult rv = aNode->GetAttributes(getter_AddRefs(attrMap));
NS_ENSURE_SUCCESS(rv, NS_ERROR_FAILURE);
if (mPersistFlags & PERSIST_FLAGS_DONT_FIXUP_LINKS)
{
return NS_OK;
}
// Make all anchor links absolute so they point off onto the Internet
nsString attribute(NS_LITERAL_STRING("href"));
rv = attrMap->GetNamedItem(attribute, getter_AddRefs(attrNode));
@ -2225,8 +2230,8 @@ nsWebBrowserPersist::FixupAnchor(nsIDOMNode *aNode)
attrNode->GetNodeValue(oldValue);
nsCString oldCValue; oldCValue.AssignWithConversion(oldValue);
// Skip self-referencing bookmarks
if (oldCValue.Length() > 0 && oldCValue.CharAt(0) == '#')
// Skip empty values and self-referencing bookmarks
if (oldCValue.IsEmpty() || oldCValue.CharAt(0) == '#')
{
return NS_OK;
}