mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-03 13:02:57 +00:00
handle new flag for no link adjustments, handle empty values (bug 122227); r=adamlock, sr=kin, a=asa
This commit is contained in:
parent
5b67c69e79
commit
f27ce47a8f
@ -2216,6 +2216,11 @@ nsWebBrowserPersist::FixupAnchor(nsIDOMNode *aNode)
|
|||||||
nsresult rv = aNode->GetAttributes(getter_AddRefs(attrMap));
|
nsresult rv = aNode->GetAttributes(getter_AddRefs(attrMap));
|
||||||
NS_ENSURE_SUCCESS(rv, NS_ERROR_FAILURE);
|
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
|
// Make all anchor links absolute so they point off onto the Internet
|
||||||
nsString attribute(NS_LITERAL_STRING("href"));
|
nsString attribute(NS_LITERAL_STRING("href"));
|
||||||
rv = attrMap->GetNamedItem(attribute, getter_AddRefs(attrNode));
|
rv = attrMap->GetNamedItem(attribute, getter_AddRefs(attrNode));
|
||||||
@ -2225,8 +2230,8 @@ nsWebBrowserPersist::FixupAnchor(nsIDOMNode *aNode)
|
|||||||
attrNode->GetNodeValue(oldValue);
|
attrNode->GetNodeValue(oldValue);
|
||||||
nsCString oldCValue; oldCValue.AssignWithConversion(oldValue);
|
nsCString oldCValue; oldCValue.AssignWithConversion(oldValue);
|
||||||
|
|
||||||
// Skip self-referencing bookmarks
|
// Skip empty values and self-referencing bookmarks
|
||||||
if (oldCValue.Length() > 0 && oldCValue.CharAt(0) == '#')
|
if (oldCValue.IsEmpty() || oldCValue.CharAt(0) == '#')
|
||||||
{
|
{
|
||||||
return NS_OK;
|
return NS_OK;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user