devtools-protocol 0.0.1010282 → 0.0.1010518
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/pdl/browser_protocol.pdl +13 -0
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -6955,6 +6955,16 @@ domain Page
|
|
6955
6955
|
AdFrameType adFrameType
|
6956
6956
|
optional array of AdFrameExplanation explanations
|
6957
6957
|
|
6958
|
+
# Identifies the bottom-most script which caused the frame to be labelled
|
6959
|
+
# as an ad.
|
6960
|
+
experimental type AdScriptId extends object
|
6961
|
+
properties
|
6962
|
+
# Script Id of the bottom-most script which caused the frame to be labelled
|
6963
|
+
# as an ad.
|
6964
|
+
Runtime.ScriptId scriptId
|
6965
|
+
# Id of adScriptId's debugger.
|
6966
|
+
Runtime.UniqueDebuggerId debuggerId
|
6967
|
+
|
6958
6968
|
# Indicates whether the frame is a secure context and why it is the case.
|
6959
6969
|
experimental type SecureContextType extends string
|
6960
6970
|
enum
|
@@ -7988,6 +7998,9 @@ domain Page
|
|
7988
7998
|
FrameId parentFrameId
|
7989
7999
|
# JavaScript stack trace of when frame was attached, only set if frame initiated from script.
|
7990
8000
|
optional Runtime.StackTrace stack
|
8001
|
+
# Identifies the bottom-most script which caused the frame to be labelled
|
8002
|
+
# as an ad. Only sent if frame is labelled as an ad and id is available.
|
8003
|
+
experimental optional AdScriptId adScriptId
|
7991
8004
|
|
7992
8005
|
# Fired when frame no longer has a scheduled navigation.
|
7993
8006
|
deprecated event frameClearedScheduledNavigation
|