Bug 1842027 - Remove always-true aIgnoreWrap parameter from TextControlElement::GetTextEditorValue. r=masayuki
Depends on D183281 Differential Revision: https://phabricator.services.mozilla.com/D183282
This commit is contained in:
@@ -1116,10 +1116,9 @@ void HTMLTextAreaElement::GetDefaultValueFromContent(nsAString& aValue) {
|
||||
|
||||
bool HTMLTextAreaElement::ValueChanged() const { return mValueChanged; }
|
||||
|
||||
void HTMLTextAreaElement::GetTextEditorValue(nsAString& aValue,
|
||||
bool aIgnoreWrap) const {
|
||||
void HTMLTextAreaElement::GetTextEditorValue(nsAString& aValue) const {
|
||||
MOZ_ASSERT(mState);
|
||||
mState->GetValue(aValue, aIgnoreWrap);
|
||||
mState->GetValue(aValue, /* aIgnoreWrap = */ true);
|
||||
}
|
||||
|
||||
void HTMLTextAreaElement::InitializeKeyboardEventListeners() {
|
||||
|
||||
Reference in New Issue
Block a user