mirror of
https://github.com/servo/servo
synced 2026-05-09 08:32:31 +02:00
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>
21 lines
634 B
Plaintext
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
|
|
);
|
|
};
|
|
|
|
|