зеркало из https://github.com/mozilla/gecko-dev.git
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:
Родитель
dcbd1af336
Коммит
d3bbb60fa0
|
@ -255,6 +255,11 @@ class UrlbarInput {
|
|||
this.inputField.value = val;
|
||||
this.formatValue();
|
||||
|
||||
// Dispatch ValueChange event for accessibility.
|
||||
let event = this.document.createEvent("Events");
|
||||
event.initEvent("ValueChange", true, true);
|
||||
this.inputField.dispatchEvent(event);
|
||||
|
||||
return val;
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче