Mypal/devtools/client/webconsole/test/browser_webconsole_bug_592442_closing_brackets.js
2021-02-04 16:48:36 +02:00

29 lines
729 B
JavaScript

/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
// Tests that, when the user types an extraneous closing bracket, no error
// appears.
"use strict";
const TEST_URI = "data:text/html;charset=utf-8,test for bug 592442";
add_task(function* () {
yield loadTab(TEST_URI);
let hud = yield openConsole();
hud.jsterm.clearOutput();
let jsterm = hud.jsterm;
jsterm.setInputValue("document.getElementById)");
let error = false;
try {
jsterm.complete(jsterm.COMPLETE_HINT_ONLY);
} catch (ex) {
error = true;
}
ok(!error, "no error was thrown when an extraneous bracket was inserted");
});