зеркало из https://github.com/mozilla/gecko-dev.git
Bug 15204: Allow getting text value in uninitialized textarea - GetText works with text inputs AND textareas. r=harishd
This commit is contained in:
Родитель
caf7e19ede
Коммит
b64383029b
|
@ -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);
|
||||
|
|
Загрузка…
Ссылка в новой задаче