Fix for bug 12565. form.encoding returns the value of the ENCTYPE attribute, not ENCODING. r=joki

This commit is contained in:
vidur%netscape.com 2000-01-27 08:51:54 +00:00
Родитель 6d238e1056
Коммит 94e7ff67cd
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -504,7 +504,7 @@ nsHTMLFormElement::RemoveElement(nsIFormControl* aChild, PRBool aChildIsRef)
NS_IMETHODIMP
nsHTMLFormElement::GetEncoding(nsString& aEncoding)
{
return mInner.GetAttribute(kNameSpaceID_HTML, nsHTMLAtoms::encoding, aEncoding);
return mInner.GetAttribute(kNameSpaceID_HTML, nsHTMLAtoms::enctype, aEncoding);
}
NS_IMETHODIMP

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

@ -504,7 +504,7 @@ nsHTMLFormElement::RemoveElement(nsIFormControl* aChild, PRBool aChildIsRef)
NS_IMETHODIMP
nsHTMLFormElement::GetEncoding(nsString& aEncoding)
{
return mInner.GetAttribute(kNameSpaceID_HTML, nsHTMLAtoms::encoding, aEncoding);
return mInner.GetAttribute(kNameSpaceID_HTML, nsHTMLAtoms::enctype, aEncoding);
}
NS_IMETHODIMP