Bug 1167789 - Do not remove 'inline' from copied text in the style editor; r=bgrins

MozReview-Commit-ID: Jr53MoECfne

--HG--
extra : rebase_source : a71562f2210fc38ba6cb54ed3c527ec33cebec70
This commit is contained in:
moby 2016-06-06 18:50:31 -07:00
Родитель 208ab94666
Коммит 53f40ae755
1 изменённых файлов: 0 добавлений и 5 удалений

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

@ -477,11 +477,6 @@ CssRuleView.prototype = {
// Remove any double newlines.
text = text.replace(/(\r?\n)\r?\n/g, "$1");
// Remove "inline"
let inline = _strings.GetStringFromName("rule.sourceInline");
let rx = new RegExp("^" + inline + "\\r?\\n?", "g");
text = text.replace(rx, "");
}
clipboardHelper.copyString(text);