Bug 1562242 - Replace XUL textboxes with HTML input in browser/base/content/popup-notifications.inc. r=bgrins

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

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Tim Nguyen 2019-09-26 00:45:17 +00:00
Родитель 7ec2097ae8
Коммит 91a6478d2e
2 изменённых файлов: 3 добавлений и 3 удалений

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

@ -54,8 +54,8 @@
<popupnotification id="password-notification" hidden="true">
<popupnotificationcontent orient="vertical">
<textbox id="password-notification-username"/>
<textbox id="password-notification-password" type="password" show-content=""/>
<html:input id="password-notification-username"/>
<html:input id="password-notification-password" type="password"/>
<checkbox id="password-notification-visibilityToggle" hidden="true"/>
</popupnotificationcontent>
</popupnotification>

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

@ -43,7 +43,7 @@ add_task(async function test_toggle_password() {
Assert.ok(toggleCheckbox.checked);
Assert.equal(
passwordTextbox.type,
"",
"text",
"Password textbox changed to plain text"
);