зеркало из https://github.com/mozilla/gecko-dev.git
Bug 902847 - ContentEditable insertText doesnt handle CR right. r=yxl
This commit is contained in:
Родитель
aa99f95ec9
Коммит
89dfb8ee9e
|
@ -1028,6 +1028,9 @@ function replaceSurroundingText(element, text, selectionStart, beforeLength,
|
|||
}
|
||||
|
||||
if (text) {
|
||||
// We don't use CR but LF
|
||||
// see https://bugzilla.mozilla.org/show_bug.cgi?id=902847
|
||||
text = text.replace(/\r/g, '\n');
|
||||
// Insert the text to be replaced with.
|
||||
editor.insertText(text);
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче