void HTMLButtonElement::DoneCreatingElement() { if (!mInhibitStateRestoration) { // Restore state as needed. RestoreFormControlState(this, this); } }
void HTMLButtonElement::DoneCreatingElement() { if (!mInhibitStateRestoration) { nsresult rv = GenerateStateKey(); if (NS_SUCCEEDED(rv)) { RestoreFormControlState(); } } }
void HTMLTextAreaElement::DoneAddingChildren(bool aHaveNotified) { if (!mValueChanged) { if (!mDoneAddingChildren) { // Reset now that we're done adding children if the content sink tried to // sneak some text in without calling AppendChildTo. Reset(); } if (!mInhibitStateRestoration) { RestoreFormControlState(this, this); } } mDoneAddingChildren = true; }
nsresult nsHTMLTextAreaElement::DoneAddingChildren(PRBool aHaveNotified) { if (!mValueChanged) { if (!mDoneAddingChildren) { // Reset now that we're done adding children if the content sink tried to // sneak some text in without calling AppendChildTo. Reset(); } RestoreFormControlState(this, this); } mDoneAddingChildren = PR_TRUE; return NS_OK; }