blob: 79bf77c547bca3eac8216a450e00e1579eb7f33e (
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
28
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
/**
* Test that we get "Styles" markers with correct meta.
*/
"use strict";
const MARKER_NAME = "Styles";
add_task(async function() {
const target = await addTabTarget(MAIN_DOMAIN + "doc_perf.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();
});
|