Bug 866632 - |cookie list| on about page shows 'no cookies found for host', should use 'No cookies found for this page'; r=harth

This commit is contained in:
Joe Walker 2013-05-09 15:15:23 +01:00
Родитель 41b9b716b1
Коммит 398bc8f36b
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -977,7 +977,7 @@ XPCOMUtils.defineLazyModuleGetter(this, "AppCacheUtils",
returnType: "cookies",
exec: function Command_cookieList(args, context) {
let host = context.environment.document.location.host;
if (host == null) {
if (host == null || host == "") {
throw new Error(gcli.lookup("cookieListOutNonePage"));
}