mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
e89e264a16
This corresponds to Chromium 85.0.4182.0. This roll includes: - Enable SameSiteByDefaultCookies and CookiesWithoutSameSiteMustBeSecure https://crrev.com/c/2231445 - [FlexNG] Enable FlexNG by default https://crrev.com/c/2216595 Closes #6151.
1.8 KiB
1.8 KiB
Home > puppeteer > Protocol > Debugger > PausedEvent
Protocol.Debugger.PausedEvent interface
Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria.
Signature:
export interface PausedEvent
Properties
Property | Type | Description |
---|---|---|
asyncCallStackTraceId | Runtime.StackTraceId | Never present, will be removed. |
asyncStackTrace | Runtime.StackTrace | Async stack trace, if any. |
asyncStackTraceId | Runtime.StackTraceId | Async stack trace, if any. |
callFrames | CallFrame[] | Call stack the virtual machine stopped on. |
data | any | Object containing break-specific auxiliary properties. |
hitBreakpoints | string[] | Hit breakpoints IDs |
reason | ('ambiguous' | 'assert' | 'debugCommand' | 'DOM' | 'EventListener' | 'exception' | 'instrumentation' | 'OOM' | 'other' | 'promiseRejection' | 'XHR') | Pause reason. (PausedEventReason enum) |