diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 11:44:51 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 11:44:51 +0000 |
commit | 9e3c08db40b8916968b9f30096c7be3f00ce9647 (patch) | |
tree | a68f146d7fa01f0134297619fbe7e33db084e0aa /devtools/client/debugger/test/mochitest/browser_dbg-pause-ux.js | |
parent | Initial commit. (diff) | |
download | thunderbird-9e3c08db40b8916968b9f30096c7be3f00ce9647.tar.xz thunderbird-9e3c08db40b8916968b9f30096c7be3f00ce9647.zip |
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'devtools/client/debugger/test/mochitest/browser_dbg-pause-ux.js')
-rw-r--r-- | devtools/client/debugger/test/mochitest/browser_dbg-pause-ux.js | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/devtools/client/debugger/test/mochitest/browser_dbg-pause-ux.js b/devtools/client/debugger/test/mochitest/browser_dbg-pause-ux.js new file mode 100644 index 0000000000..a8ca4b74bf --- /dev/null +++ b/devtools/client/debugger/test/mochitest/browser_dbg-pause-ux.js @@ -0,0 +1,52 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at <http://mozilla.org/MPL/2.0/>. */ + +"use strict"; + +add_task(async function () { + const dbg = await initDebugger("doc-scripts.html"); + + // Make sure that we can set a breakpoint on a line out of the + // viewport, and that pausing there scrolls the editor to it. + const longSrc = findSource(dbg, "long.js"); + await selectSource(dbg, "long.js"); + await addBreakpoint(dbg, longSrc, 66); + invokeInTab("testModel"); + await waitForPaused(dbg, "long.js"); + + const pauseScrollTop = getScrollTop(dbg); + + info("1. adding a breakpoint should not scroll the editor"); + getCM(dbg).scrollTo(0, 0); + await addBreakpoint(dbg, longSrc, 11); + is(getScrollTop(dbg), 0, "scroll position"); + + info("2. searching should jump to the match"); + pressKey(dbg, "fileSearch"); + type(dbg, "check"); + + const cm = getCM(dbg); + await waitFor( + () => cm.getSelection() == "check", + "Wait for actual selection in CodeMirror" + ); + is( + cm.getCursor().line, + 26, + "The line of first check occurence in long.js is selected (this is zero-based)" + ); + // The column is the end of "check", so after 'k' + is( + cm.getCursor().ch, + 51, + "The column of first check occurence in long.js is selected (this is zero-based)" + ); + + const matchScrollTop = getScrollTop(dbg); + ok(pauseScrollTop != matchScrollTop, "did not jump to debug line"); +}); + +function getScrollTop(dbg) { + return getCM(dbg).doc.scrollTop; +} |