Fixing the split of the attribute name (into a URI and an ID).

This commit is contained in:
hyatt%netscape.com 1999-03-05 00:03:30 +00:00
Родитель 2cfd455c97
Коммит 56f553e4b1
1 изменённых файлов: 4 добавлений и 0 удалений

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

@ -562,6 +562,10 @@ rdf_PossiblyMakeRelative(const nsString& aContextURI, nsString& aURI)
// Otherwise, pare down the target URI, removing the context URI.
aURI.Cut(0, aContextURI.Length());
if (aURI.First() == '#' || aURI.First() == '/')
aURI.Cut(0, 1);
return NS_OK;
}