Initial implementation of DOM Level 3 Core methods Node.compareTreePosition() and Node.isSameNode(), Bug 139344, r=jkeiser, sr=jst

git-svn-id: svn://10.0.0.236/trunk@121437 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
caillon%returnzero.com
2002-05-14 01:28:17 +00:00
parent 62142585ed
commit 00ebc565e0
10 changed files with 447 additions and 2 deletions

View File

@@ -1859,6 +1859,20 @@ nsHTMLDocument::GetBaseURI(nsAString &aURI)
return NS_OK;
}
NS_IMETHODIMP
nsHTMLDocument::CompareTreePosition(nsIDOMNode* aOther,
PRUint16* aReturn)
{
return nsDocument::CompareTreePosition(aOther, aReturn);
}
NS_IMETHODIMP
nsHTMLDocument::IsSameNode(nsIDOMNode* aOther,
PRBool* aReturn)
{
return nsDocument::IsSameNode(aOther, aReturn);
}
NS_IMETHODIMP
nsHTMLDocument::LookupNamespacePrefix(const nsAString& aNamespaceURI,