Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

/* Any copyright is dedicated to the Public Domain.
// Check if an error with Unicode characters is reported correctly.
"use strict";
const TEST_URI =
"data:text/html;charset=utf8,<!DOCTYPE html><script>\u6e2c</script>";
const EXPECTED_REPORT = "ReferenceError: \u6e2c is not defined";
add_task(async function () {
const hud = await openNewTabAndConsole(TEST_URI);
// On e10s, the exception is triggered in child process
// and is ignored by test harness
if (!Services.appinfo.browserTabsRemoteAutostart) {
expectUncaughtException();
}
info("generate exception and wait for the message");
const msg = await waitFor(() => findErrorMessage(hud, EXPECTED_REPORT));
ok(msg, `Message found: "${EXPECTED_REPORT}"`);
});