puppeteer/new-docs/puppeteer.protocol.debugger.pausedevent.md
Johan Bay e89e264a16
feat(chromium): roll Chromium to r782078 (#6250)
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.
2020-07-20 17:17:06 +02:00

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)