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.
27 lines
1.8 KiB
Markdown
27 lines
1.8 KiB
Markdown
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
|
|
[Home](./index.md) > [puppeteer](./puppeteer.md) > [Protocol](./puppeteer.protocol.md) > [Debugger](./puppeteer.protocol.debugger.md) > [PausedEvent](./puppeteer.protocol.debugger.pausedevent.md)
|
|
|
|
## Protocol.Debugger.PausedEvent interface
|
|
|
|
Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria.
|
|
|
|
<b>Signature:</b>
|
|
|
|
```typescript
|
|
export interface PausedEvent
|
|
```
|
|
|
|
## Properties
|
|
|
|
| Property | Type | Description |
|
|
| --- | --- | --- |
|
|
| [asyncCallStackTraceId](./puppeteer.protocol.debugger.pausedevent.asynccallstacktraceid.md) | [Runtime.StackTraceId](./puppeteer.protocol.runtime.stacktraceid.md) | Never present, will be removed. |
|
|
| [asyncStackTrace](./puppeteer.protocol.debugger.pausedevent.asyncstacktrace.md) | [Runtime.StackTrace](./puppeteer.protocol.runtime.stacktrace.md) | Async stack trace, if any. |
|
|
| [asyncStackTraceId](./puppeteer.protocol.debugger.pausedevent.asyncstacktraceid.md) | [Runtime.StackTraceId](./puppeteer.protocol.runtime.stacktraceid.md) | Async stack trace, if any. |
|
|
| [callFrames](./puppeteer.protocol.debugger.pausedevent.callframes.md) | [CallFrame](./puppeteer.protocol.debugger.callframe.md)<!-- -->\[\] | Call stack the virtual machine stopped on. |
|
|
| [data](./puppeteer.protocol.debugger.pausedevent.data.md) | any | Object containing break-specific auxiliary properties. |
|
|
| [hitBreakpoints](./puppeteer.protocol.debugger.pausedevent.hitbreakpoints.md) | string\[\] | Hit breakpoints IDs |
|
|
| [reason](./puppeteer.protocol.debugger.pausedevent.reason.md) | ('ambiguous' \| 'assert' \| 'debugCommand' \| 'DOM' \| 'EventListener' \| 'exception' \| 'instrumentation' \| 'OOM' \| 'other' \| 'promiseRejection' \| 'XHR') | Pause reason. (PausedEventReason enum) |
|
|
|