Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: browser/components/urlbar/tests/browser-UrlbarInput/browser-nova.toml includes browser/components/urlbar/tests/browser-UrlbarInput/browser.toml
- Manifest: browser/components/urlbar/tests/browser-UrlbarInput/browser-proton.toml includes browser/components/urlbar/tests/browser-UrlbarInput/browser.toml
/* Any copyright is dedicated to the Public Domain.
// The input mode the bar hands the widget, which is what picks the on-screen
// keyboard.
"use strict";
add_task(async function inputmode() {
gURLBar.focus();
Assert.equal(
window.windowUtils.focusedInputMode,
"mozAwesomebar",
"the address bar asks for the URL keyboard"
);
});