diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /devtools/client/debugger/test/mochitest/browser_dbg_searchbox-help-popup-01.js | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | uxp-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz |
Add m-esr52 at 52.6.0
Diffstat (limited to 'devtools/client/debugger/test/mochitest/browser_dbg_searchbox-help-popup-01.js')
-rw-r--r-- | devtools/client/debugger/test/mochitest/browser_dbg_searchbox-help-popup-01.js | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/devtools/client/debugger/test/mochitest/browser_dbg_searchbox-help-popup-01.js b/devtools/client/debugger/test/mochitest/browser_dbg_searchbox-help-popup-01.js new file mode 100644 index 0000000000..6276567c29 --- /dev/null +++ b/devtools/client/debugger/test/mochitest/browser_dbg_searchbox-help-popup-01.js @@ -0,0 +1,64 @@ +/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */ +/* vim: set ft=javascript ts=2 et sw=2 tw=80: */ +/* Any copyright is dedicated to the Public Domain. + * http://creativecommons.org/publicdomain/zero/1.0/ */ + +/** + * Make sure that the searchbox popup is displayed when focusing the searchbox, + * and hidden when the user starts typing. + */ + +const TAB_URL = EXAMPLE_URL + "doc_script-switching-01.html"; + +var gTab, gPanel, gDebugger; +var gSearchBox, gSearchBoxPanel; + +function test() { + let options = { + source: EXAMPLE_URL + "code_script-switching-01.js", + line: 1 + }; + initDebugger(TAB_URL, options).then(([aTab,, aPanel]) => { + gTab = aTab; + gPanel = aPanel; + gDebugger = gPanel.panelWin; + gSearchBox = gDebugger.DebuggerView.Filtering._searchbox; + gSearchBoxPanel = gDebugger.DebuggerView.Filtering._searchboxHelpPanel; + + waitForSourceAndCaretAndScopes(gPanel, "-02.js", 1) + .then(showPopup) + .then(hidePopup) + .then(() => resumeDebuggerThenCloseAndFinish(gPanel)) + .then(null, aError => { + ok(false, "Got an error: " + aError.message + "\n" + aError.stack); + }); + + callInTab(gTab, "firstCall"); + }); +} + +function showPopup() { + is(gSearchBoxPanel.state, "closed", + "The search box panel shouldn't be visible yet."); + + let finished = once(gSearchBoxPanel, "popupshown"); + EventUtils.sendMouseEvent({ type: "click" }, gSearchBox, gDebugger); + return finished; +} + +function hidePopup() { + is(gSearchBoxPanel.state, "open", + "The search box panel should be visible after searching started."); + + let finished = once(gSearchBoxPanel, "popuphidden"); + setText(gSearchBox, "#"); + return finished; +} + +registerCleanupFunction(function () { + gTab = null; + gPanel = null; + gDebugger = null; + gSearchBox = null; + gSearchBoxPanel = null; +}); |