Bug 1497469 - Dispatch the ValueChange event from UrlbarInput. r=mak

Differential Revision: https://phabricator.services.mozilla.com/D8819

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Dão Gottwald 2018-10-17 13:07:58 +00:00
Родитель dcbd1af336
Коммит d3bbb60fa0
1 изменённых файлов: 5 добавлений и 0 удалений

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

@ -255,6 +255,11 @@ class UrlbarInput {
this.inputField.value = val; this.inputField.value = val;
this.formatValue(); this.formatValue();
// Dispatch ValueChange event for accessibility.
let event = this.document.createEvent("Events");
event.initEvent("ValueChange", true, true);
this.inputField.dispatchEvent(event);
return val; return val;
} }