mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-11 05:39:41 +02:00
Depends on D10564 Differential Revision: https://phabricator.services.mozilla.com/D11293 --HG-- extra : moz-landing-system : lando
25 lines
681 B
JavaScript
25 lines
681 B
JavaScript
/* 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();
|
|
});
|