Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

/* 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"
);
});