Followup 1551320 - Port all of the createXULElement changes with extra comment

This commit is contained in:
Ed Lee 2019-05-21 16:34:54 -07:00
Родитель 27de0a4346
Коммит f93143d6c3
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 40B7250312F03605
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -402,7 +402,8 @@ class PageAction {
}
footerText.parentNode.appendChild(stepsContainer);
for (let step of content.descriptionDetails.steps) {
const li = this.window.document.createElement("li");
// This li is a generic xul element with custom styling
const li = this.window.document.createXULElement("li");
this._l10n.setAttributes(li, step.string_id);
stepsContainer.appendChild(li);
}