1
0
Fork 0
firefox/parser/htmlparser/tests/mochitest/browser_ysod_telemetry.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

48 lines
1.1 KiB
JavaScript

"use strict";
const { TelemetryTestUtils } = ChromeUtils.importESModule(
"resource://testing-common/TelemetryTestUtils.sys.mjs"
);
add_task(async function test_popup_opened() {
Services.telemetry.clearEvents();
const PAGE_URL = getRootDirectory(gTestPath) + "broken_xml.xhtml";
let viewSourceTab = await BrowserTestUtils.openNewForegroundTab(
gBrowser,
PAGE_URL
);
let content = await SpecialPowers.spawn(
viewSourceTab.linkedBrowser,
[],
async function () {
return content.document.documentElement.innerHTML;
}
);
ok(content.includes("XML"), "Document shows XML error");
TelemetryTestUtils.assertEvents(
[
{
method: "shown",
object: "ysod",
value: PAGE_URL.substr(0, 80),
extra: {
error_code: "11",
location: "3:12",
last_line: " <title>&nonExistingEntity;</title>",
last_line_len: "38",
hidden: "false",
destroyed: "false",
},
},
],
{
category: "ysod",
},
{ process: "parent" }
);
BrowserTestUtils.removeTab(viewSourceTab);
});