mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
9ef82e190b
--HG-- rename : browser/devtools/performance/test/browser_perf-overview-selection.js => browser/devtools/performance/test/browser_perf-overview-selection-01.js
48 lines
1.5 KiB
JavaScript
48 lines
1.5 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
/**
|
|
* Tests that events are fired from OverviewView from selection manipulation.
|
|
*/
|
|
function spawnTest () {
|
|
let { panel } = yield initPerformance(SIMPLE_URL);
|
|
let { EVENTS, OverviewView } = panel.panelWin;
|
|
let beginAt, endAt, params, _;
|
|
|
|
yield startRecording(panel);
|
|
|
|
// Wait for the overview graph to be rendered while recording.
|
|
yield once(OverviewView, EVENTS.OVERVIEW_RENDERED);
|
|
|
|
yield stopRecording(panel);
|
|
|
|
// Wait for the overview graph to be rerendered *after* recording.
|
|
yield once(OverviewView, EVENTS.OVERVIEW_RENDERED);
|
|
|
|
let graph = OverviewView.framerateGraph;
|
|
let MAX = graph.width;
|
|
|
|
// Select the first half of the graph
|
|
let results = onceSpread(OverviewView, EVENTS.OVERVIEW_RANGE_SELECTED);
|
|
dragStart(graph, 0);
|
|
dragStop(graph, MAX / 2);
|
|
|
|
[_, { beginAt, endAt }] = yield results;
|
|
|
|
let actual = graph.getMappedSelection();
|
|
ise(beginAt, actual.min, "OVERVIEW_RANGE_SELECTED fired with beginAt value on click.");
|
|
ise(endAt, actual.max, "OVERVIEW_RANGE_SELECTED fired with endAt value on click.");
|
|
|
|
// Listen to deselection
|
|
results = onceSpread(OverviewView, EVENTS.OVERVIEW_RANGE_CLEARED);
|
|
dropSelection(graph);
|
|
[_, params] = yield results;
|
|
|
|
is(graph.hasSelection(), false, "selection no longer on graph.");
|
|
is(params, undefined, "OVERVIEW_RANGE_CLEARED fired with no additional arguments.");
|
|
|
|
panel.panelWin.clearNamedTimeout("graph-scroll");
|
|
yield teardown(panel);
|
|
finish();
|
|
}
|