Bug 1333532 - Changed the permissions.js file to make the Page Info dialog work. r=johannh

MozReview-Commit-ID: 2zJeMhtYEds

--HG--
extra : rebase_source : 7db88f2451c740e1b5179d81f699ead14fbd585f
This commit is contained in:
Prathiksha 2017-04-09 16:50:02 +05:30
Родитель 0cfe55b71e
Коммит ad36dbc902
1 изменённых файлов: 5 добавлений и 0 удалений

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

@ -181,6 +181,11 @@ function setRadioState(aPartId, aValue) {
}
function initIndexedDBRow() {
// IndexedDB information is not shown for pages with a null principal
// such as sandboxed pages because these pages do not have access to indexedDB.
if (gPermPrincipal.isNullPrincipal)
return;
let row = document.getElementById("perm-indexedDB-row");
let extras = document.getElementById("perm-indexedDB-extras");