summaryrefslogtreecommitdiffstats
path: root/devtools/client/webconsole/test/browser/browser_webconsole_error_with_unicode.js
blob: 60d7f3cc99a72973feb6b7d4f4748d978d3fbdda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/ */

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