Files
servo/components/script_bindings/webidls/DebuggerFrameEvent.webidl
atbrakhi 1b7ec96fb6 devtools: implement listing all frames (#43015)
This change implements listing all frames from youngest to oldest. This
is in order to send correct frame message from thread actor

This is needed for our upcoming work!

Testing: Current tests are passing + manual test
Fixes: #36027

Signed-off-by: atbrakhi <atbrakhi@igalia.com>
Co-authored-by: eri <eri@igalia.com>
2026-03-05 14:58:30 +00:00

21 lines
634 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 DebuggerFrameEvent : Event {
readonly attribute PipelineId pipelineId;
readonly attribute unsigned long start;
readonly attribute unsigned long count;
};
partial interface DebuggerGlobalScope {
undefined listFramesResult(
sequence<DOMString> frameActorId
);
};