29c4cf0e3c
R=bmeurer@chromium.org Bug: chromium:1303521 Change-Id: Iff7247fda94037ff4f9d37f334d386eb4e63ce62 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3595819 Commit-Queue: Simon Zünd <szuend@chromium.org> Auto-Submit: Simon Zünd <szuend@chromium.org> Reviewed-by: Benedikt Meurer <bmeurer@chromium.org> Commit-Queue: Benedikt Meurer <bmeurer@chromium.org> Cr-Commit-Position: refs/heads/main@{#80038}
36 lines
963 B
JavaScript
36 lines
963 B
JavaScript
// Copyright 2022 the V8 project authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
const {session, Protocol} =
|
|
InspectorTest.start('Checks that restarting the top frame works with breakpoints');
|
|
|
|
session.setupScriptMap();
|
|
|
|
const source = `
|
|
function foo() {
|
|
const x = 1;
|
|
const y = 2;
|
|
}
|
|
//# sourceURL=testRestartFrame.js`;
|
|
|
|
(async () => {
|
|
await Protocol.Debugger.enable();
|
|
|
|
await Protocol.Runtime.evaluate({ expression: source });
|
|
|
|
await Protocol.Debugger.setBreakpointByUrl({
|
|
lineNumber: 3,
|
|
url: 'testRestartFrame.js',
|
|
});
|
|
|
|
const { callFrames } = await InspectorTest.evaluateAndWaitForPause('foo()');
|
|
await InspectorTest.restartFrameAndWaitForPause(callFrames, 0);
|
|
|
|
Protocol.Debugger.resume(); // Resuming hits the breakpoint again.
|
|
await Protocol.Debugger.oncePaused();
|
|
await Protocol.Debugger.resume();
|
|
|
|
InspectorTest.completeTest();
|
|
})();
|