browser(firefox): support alertCheck and confirmCheck dialogs (#4553)

These are shown with "prevent this page from showing more dialogs" checkbox.
This commit is contained in:
Dmitry Gozman 2020-11-30 20:05:15 -08:00 коммит произвёл GitHub
Родитель e98aceb981
Коммит e8419f85b6
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 7 добавлений и 3 удалений

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

@ -1,2 +1,2 @@
1216
Changed: lushnikov@chromium.org Mon 30 Nov 2020 09:59:07 AM PST
1217
Changed: dgozman@gmail.com Mon Nov 30 18:45:31 PST 2020

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

@ -773,9 +773,13 @@ class Dialog {
const type = prompt.args.promptType;
switch (type) {
case 'alert':
case 'alertCheck':
return new Dialog(prompt, 'alert');
case 'prompt':
return new Dialog(prompt, 'prompt');
case 'confirm':
return new Dialog(prompt, type);
case 'confirmCheck':
return new Dialog(prompt, 'confirm');
case 'confirmEx':
return new Dialog(prompt, 'beforeunload');
default: