Bug 1453054 - Remove needless QI to nsIDOMNode in editor's EdReplace.js. r=bz

This commit is contained in:
Jorg K 2018-04-12 17:19:40 +02:00
Родитель a51078c759
Коммит 1024afbacb
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -252,7 +252,7 @@ function onReplaceAll()
// We'll need a range for the whole document:
var wholeDocRange = gEditor.document.createRange();
var rootNode = gEditor.rootElement.QueryInterface(Ci.nsIDOMNode);
var rootNode = gEditor.rootElement;
wholeDocRange.selectNodeContents(rootNode);
// And start and end points: