mirror of
https://github.com/servo/servo
synced 2026-04-25 17:15:48 +02:00
We are adding initial support for stepping in the debugger. Step over mostly works, but Step in and Step out have some quirks that we are working on.  Testing: DevTools tests and manual checks. Part of: #36027 Signed-off-by: eri <eri@igalia.com> Co-authored-by: atbrakhi <atbrakhi@igalia.com>
12 lines
474 B
Plaintext
12 lines
474 B
Plaintext
/* 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 https://mozilla.org/MPL/2.0/. */
|
|
|
|
// This interface is entirely internal to Servo, and should not be accessible to
|
|
// web pages.
|
|
[Exposed=DebuggerGlobalScope]
|
|
interface DebuggerResumeEvent : Event {
|
|
readonly attribute DOMString? resumeLimitType;
|
|
readonly attribute DOMString? frameActorID;
|
|
};
|