Bug 902847 - ContentEditable insertText doesnt handle CR right. r=yxl

This commit is contained in:
Jan Jongboom 2013-08-22 09:53:47 -04:00
Родитель aa99f95ec9
Коммит 89dfb8ee9e
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -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);
}