diff -r 000000000000 -r 6474c204b198 browser/devtools/profiler/test/browser_profiler_console_api_mixed.js --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/browser/devtools/profiler/test/browser_profiler_console_api_mixed.js Wed Dec 31 06:09:35 2014 +0100 @@ -0,0 +1,37 @@ +/* Any copyright is dedicated to the Public Domain. + * http://creativecommons.org/publicdomain/zero/1.0/ */ + +const URL = "data:text/html;charset=utf8,
JavaScript Profiler test
"; + +let gTab, gPanel; + +function test() { + waitForExplicitFinish(); + + setUp(URL, (tab, browser, panel) => { + gTab = tab; + gPanel = panel; + + openProfiler(tab, runTests); + }); +} + +function runTests(toolbox) { + let panel = toolbox.getPanel("jsprofiler"); + let record = gPanel.controls.record; + + panel.once("started", () => { + is(getSidebarItem(1, panel).attachment.state, PROFILE_RUNNING); + + openConsole(gTab, (hud) => { + panel.once("stopped", () => { + is(getSidebarItem(1, panel).attachment.state, PROFILE_COMPLETED); + tearDown(gTab, () => gTab = gPanel = null); + }); + + hud.jsterm.execute("console.profileEnd()"); + }); + }); + + record.click(); +} \ No newline at end of file