Fix accesskey regression for text inputs and textareas. b=148249 r=aaronl sr=jst

git-svn-id: svn://10.0.0.236/trunk@123714 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
dbaron%fas.harvard.edu
2002-06-20 20:44:27 +00:00
parent eb193c5571
commit e76d62fd17
2 changed files with 8 additions and 6 deletions

View File

@@ -129,6 +129,8 @@ nsFormControlFrame::~nsFormControlFrame()
NS_IMETHODIMP
nsFormControlFrame::Destroy(nsIPresContext *aPresContext)
{
// XXXldb Do we really need to do this? Shouldn't only those frames
// that use it do it?
nsFormControlFrame::RegUnRegAccessKey(aPresContext, NS_STATIC_CAST(nsIFrame*, this), PR_FALSE);
return nsLeafFrame::Destroy(aPresContext);
}
@@ -581,10 +583,9 @@ nsFormControlFrame::RegUnRegAccessKey(nsIPresContext* aPresContext, nsIFrame * a
nsCOMPtr<nsIContent> content;
if (NS_SUCCEEDED(aFrame->GetContent(getter_AddRefs(content)))) {
#if 1
PRInt32 nameSpaceID;
content->GetNameSpaceID(nameSpaceID);
nsAutoString resultValue;
rv = content->GetAttr(nameSpaceID, nsHTMLAtoms::accesskey, accessKey);
rv = content->GetAttr(kNameSpaceID_None,
nsHTMLAtoms::accesskey, accessKey);
#else
nsCOMPtr<nsIDOMHTMLInputElement> inputElement(do_QueryInterface(content));
if (inputElement) {