mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-01 11:39:07 +00:00
67 lines
1.6 KiB
JavaScript
67 lines
1.6 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, gPanel, gDebugger;
|
|
let gEditor;
|
|
|
|
function test() {
|
|
Task.async(function* () {
|
|
yield pushPrefs(["devtools.debugger.tracer", true]);
|
|
|
|
initDebugger(TAB_URL).then(([aTab,, aPanel]) => {
|
|
gTab = aTab;
|
|
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() {
|
|
sendMouseClickToTab(gTab, content.document.querySelector("button"));
|
|
}
|
|
|
|
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;
|
|
gPanel = null;
|
|
gDebugger = null;
|
|
gEditor = null;
|
|
});
|