Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

  • This test gets skipped with pattern: os == 'linux' && os_version == '18.04' && processor == 'x86_64' && debug && http3 OR os == 'linux' && os_version == '24.04' && processor == 'x86_64' && display == 'x11' && debug && http3
  • Manifest: devtools/client/webconsole/test/browser/_webconsole.toml
/* Any copyright is dedicated to the Public Domain.
// Tests that commands run by the user are executed in content space.
"use strict";
const TEST_URI =
"test/browser/test-console.html";
add_task(async function () {
const hud = await openNewTabAndConsole(TEST_URI);
await clearOutput(hud);
const onInputMessage = waitForMessageByType(
hud,
"window.location.href;",
".command"
);
const onEvaluationResultMessage = waitForMessageByType(
hud,
TEST_URI,
".result"
);
execute(hud, "window.location.href;");
let message = await onInputMessage;
ok(message, "Input message is displayed with the expected class");
message = await onEvaluationResultMessage;
ok(message, "EvaluationResult message is displayed with the expected class");
});