зеркало из https://github.com/mozilla/pjs.git
Bug 524763 - Regexp/string confusion in generateTextForTextNode in about:support. r=johnath,dao
This commit is contained in:
Родитель
f8c6f8f914
Коммит
3599df1b4e
|
@ -376,7 +376,7 @@ function generateTextForTextNode(node, indent, textFragmentAccumulator) {
|
|||
|
||||
// Trim the text node's text content and add proper indentation after
|
||||
// any internal line breaks.
|
||||
let text = node.textContent.trim().replace("\n[ \t]*", "\n" + indent);
|
||||
let text = node.textContent.trim().replace("\n", "\n" + indent, "g");
|
||||
textFragmentAccumulator.push(text);
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче