Commit 05b1b296 authored by pollmann%netscape.com's avatar pollmann%netscape.com
Browse files

Bug 22526: Only submit on enter press for inputs, not textareas (Sorry, forgot...

Bug 22526: Only submit on enter press for inputs, not textareas (Sorry, forgot to check this yesterday!) r=dbaron,sr=sfraser
parent a51d898a
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -3104,7 +3104,9 @@ void
nsGfxTextControlFrame2::SubmitAttempt()
{
  // Submit the form
  if (mFormFrame && mTextSelImpl) {
  PRInt32 type;
  GetType(&type);
  if (mFormFrame && mTextSelImpl && NS_FORM_TEXTAREA != type) {
    nsIContent *formContent = nsnull;

    nsEventStatus status = nsEventStatus_eIgnore;