mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
70 lines
1.7 KiB
JavaScript
70 lines
1.7 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
/**
|
|
* When tracing is stopped all hit counters should be cleared.
|
|
*/
|
|
|
|
const TAB_URL = EXAMPLE_URL + "doc_same-line-functions.html";
|
|
const CODE_URL = "code_same-line-functions.js";
|
|
|
|
let gTab, gDebuggee, gPanel, gDebugger;
|
|
let gEditor;
|
|
|
|
function test() {
|
|
Task.async(function* () {
|
|
yield pushPrefs(["devtools.debugger.tracer", true]);
|
|
|
|
initDebugger(TAB_URL).then(([aTab, aDebuggee, aPanel]) => {
|
|
gTab = aTab;
|
|
gDebuggee = aDebuggee;
|
|
gPanel = aPanel;
|
|
gDebugger = gPanel.panelWin;
|
|
gEditor = gDebugger.DebuggerView.editor;
|
|
|
|
Task.async(function* () {
|
|
yield waitForSourceShown(gPanel, CODE_URL);
|
|
yield startTracing(gPanel);
|
|
|
|
clickButton();
|
|
|
|
yield waitForClientEvents(aPanel, "traces");
|
|
|
|
testHitCountsBeforeStopping();
|
|
|
|
yield stopTracing(gPanel);
|
|
|
|
testHitCountsAfterStopping();
|
|
|
|
yield popPrefs();
|
|
yield closeDebuggerAndFinish(gPanel);
|
|
})();
|
|
});
|
|
})().catch(e => {
|
|
ok(false, "Got an error: " + e.message + "\n" + e.stack);
|
|
});
|
|
}
|
|
|
|
function clickButton() {
|
|
EventUtils.sendMouseEvent({ type: "click" },
|
|
gDebuggee.document.querySelector("button"),
|
|
gDebuggee);
|
|
}
|
|
|
|
function testHitCountsBeforeStopping() {
|
|
let marker = gEditor.getMarker(0, 'hit-counts');
|
|
ok(marker, "A counter should exists.");
|
|
}
|
|
|
|
function testHitCountsAfterStopping() {
|
|
let marker = gEditor.getMarker(0, 'hit-counts');
|
|
is(marker, undefined, "A counter should be cleared.");
|
|
}
|
|
|
|
registerCleanupFunction(function() {
|
|
gTab = null;
|
|
gDebuggee = null;
|
|
gPanel = null;
|
|
gDebugger = null;
|
|
gEditor = null;
|
|
}); |