Bug 15204: Allow getting text value in uninitialized textarea - GetText works with text inputs AND textareas. r=harishd

This commit is contained in:
pollmann%netscape.com 1999-11-16 01:17:54 +00:00
Родитель caf7e19ede
Коммит b64383029b
3 изменённых файлов: 3 добавлений и 5 удалений

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

@ -48,8 +48,7 @@ class nsListControlFrame : public nsScrollFrame,
public nsIDOMMouseListener,
public nsIDOMMouseMotionListener,
public nsIDOMKeyListener,
public nsISelectControlFrame,
public nsIStatefulFrame
public nsISelectControlFrame
{
public:
friend nsresult NS_NewListControlFrame(nsIFrame** aNewFrame);

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

@ -867,7 +867,7 @@ void nsGfxTextControlFrame::GetTextControlFrameState(nsString& aValue)
if (mCachedState) {
aValue = *mCachedState;
} else {
nsFormControlHelper::GetInputElementValue(mContent, &aValue, PR_TRUE);
GetText(&aValue, PR_TRUE);
}
}
}

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

@ -48,8 +48,7 @@ class nsListControlFrame : public nsScrollFrame,
public nsIDOMMouseListener,
public nsIDOMMouseMotionListener,
public nsIDOMKeyListener,
public nsISelectControlFrame,
public nsIStatefulFrame
public nsISelectControlFrame
{
public:
friend nsresult NS_NewListControlFrame(nsIFrame** aNewFrame);