Bug 1839355 - Add deprecation warning to Services.jsm. r=Standard8

Differential Revision: https://phabricator.services.mozilla.com/D181463
This commit is contained in:
Tooru Fujisawa 2023-06-21 05:45:23 +00:00
Родитель cb5dd67397
Коммит a996d76d0c
1 изменённых файлов: 4 добавлений и 0 удалений

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

@ -5,3 +5,7 @@
const Services = globalThis.Services;
var EXPORTED_SYMBOLS = ["Services"];
console.warn(
"Services.jsm will be removed by Firefox 117 or 118. Use the Services global variable instead"
);