Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
/* Any copyright is dedicated to the Public Domain.
// Tests that, when the user types an extraneous closing bracket, no error
"use strict";
const TEST_URI =
add_task(async function () {
const hud = await openNewTabAndConsole(TEST_URI);
try {
await setInputValueForAutocompletion(hud, "document.getElementById)");
ok(true, "no error was thrown when an extraneous bracket was inserted");
} catch (ex) {
ok(false, "an error was thrown when an extraneous bracket was inserted");
}
});