blob: 9fb19470a9184aa83006e858ec9765e67cd062d5 (
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
26
27
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
/**
* Test that we get "Parse HTML" markers.
*/
"use strict";
const MARKER_NAME = "Parse HTML";
add_task(async function() {
const target = await addTabTarget(MAIN_DOMAIN + "doc_innerHTML.html");
const front = await target.getFront("performance");
const rec = await front.startRecording({ withMarkers: true });
const markers = await waitForMarkerType(front, MARKER_NAME);
await front.stopRecording(rec);
ok(
markers.some(m => m.name === MARKER_NAME),
`got some ${MARKER_NAME} markers`
);
await target.destroy();
gBrowser.removeCurrentTab();
});
|