Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

/* Any copyright is dedicated to the Public Domain.
// Ensure non-toplevel security errors are displayed
"use strict";
const TEST_URI =
"data:text/html;charset=utf-8,<!DOCTYPE html>Web Console subresource STS warning test";
const TEST_DOC =
"test/browser/test-subresource-security-error.html";
const SAMPLE_MSG = "specified a header that could not be parsed successfully.";
add_task(async function () {
const hud = await openNewTabAndConsole(TEST_URI);
await clearOutput(hud);
await navigateTo(TEST_DOC);
await waitFor(() => findWarningMessage(hud, SAMPLE_MSG));
ok(true, "non-toplevel security warning message was displayed");
});