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.2 KiB
1.2 KiB
Home > puppeteer > Protocol > Network > Initiator
Protocol.Network.Initiator interface
Information about the request initiator.
Signature:
export interface Initiator
Properties
Property | Type | Description |
---|---|---|
lineNumber | number | Initiator line number, set for Parser type or for Script type (when script is importing module) (0-based). |
stack | Runtime.StackTrace | Initiator JavaScript stack trace, set for Script only. |
type | ('parser' | 'script' | 'preload' | 'SignedExchange' | 'other') | Type of this initiator. (InitiatorType enum) |
url | string | Initiator URL, set for Parser type or for Script type (when script is importing module) or for SignedExchange type. |