Bug 1632319 - Remove soundplaying icon from tab when discarding browser. r=jaws

Differential Revision: https://phabricator.services.mozilla.com/D72656
This commit is contained in:
Dão Gottwald 2020-04-27 23:49:35 +00:00
Родитель 0b5c0afcd0
Коммит 885b51f04c
1 изменённых файлов: 7 добавлений и 2 удалений

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

@ -2441,8 +2441,13 @@
delete aTab._findBar;
}
// Remove stale loading attributes.
let attributesToRemove = ["busy", "progress", "pendingicon"];
// Remove potentially stale attributes.
let attributesToRemove = [
"busy",
"pendingicon",
"progress",
"soundplaying",
];
let removedAttributes = [];
for (let attr of attributesToRemove) {
if (aTab.hasAttribute(attr)) {