Skip to content

Commit 8b79530

Browse files
committed
bump protocol
1 parent ea4e5ae commit 8b79530

File tree

7 files changed

+150
-16
lines changed

7 files changed

+150
-16
lines changed

pages/_data/1-3.json

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5058,6 +5058,13 @@
50585058
"description": "JavaScript stack trace of when frame was attached, only set if frame initiated from script.",
50595059
"optional": true,
50605060
"$ref": "Runtime.StackTrace"
5061+
},
5062+
{
5063+
"name": "adScriptId",
5064+
"description": "Identifies the bottom-most script which caused the frame to be labelled\nas an ad. Only sent if frame is labelled as an ad and id is available.",
5065+
"experimental": true,
5066+
"optional": true,
5067+
"$ref": "AdScriptId"
50615068
}
50625069
]
50635070
},
@@ -6534,6 +6541,52 @@
65346541
}
65356542
]
65366543
},
6544+
{
6545+
"name": "restartFrame",
6546+
"description": "Restarts particular call frame from the beginning. The old, deprecated\nbehavior of `restartFrame` is to stay paused and allow further CDP commands\nafter a restart was scheduled. This can cause problems with restarting, so\nwe now continue execution immediatly after it has been scheduled until we\nreach the beginning of the restarted frame.\n\nTo stay back-wards compatible, `restartFrame` now expects a `mode`\nparameter to be present. If the `mode` parameter is missing, `restartFrame`\nerrors out.\n\nThe various return values are deprecated and `callFrames` is always empty.\nUse the call frames from the `Debugger#paused` events instead, that fires\nonce V8 pauses at the beginning of the restarted function.",
6547+
"parameters": [
6548+
{
6549+
"name": "callFrameId",
6550+
"description": "Call frame identifier to evaluate on.",
6551+
"$ref": "CallFrameId"
6552+
},
6553+
{
6554+
"name": "mode",
6555+
"description": "The `mode` parameter must be present and set to 'StepInto', otherwise\n`restartFrame` will error out.",
6556+
"experimental": true,
6557+
"optional": true,
6558+
"type": "string",
6559+
"enum": [
6560+
"StepInto"
6561+
]
6562+
}
6563+
],
6564+
"returns": [
6565+
{
6566+
"name": "callFrames",
6567+
"description": "New stack trace.",
6568+
"deprecated": true,
6569+
"type": "array",
6570+
"items": {
6571+
"$ref": "CallFrame"
6572+
}
6573+
},
6574+
{
6575+
"name": "asyncStackTrace",
6576+
"description": "Async stack trace, if any.",
6577+
"deprecated": true,
6578+
"optional": true,
6579+
"$ref": "Runtime.StackTrace"
6580+
},
6581+
{
6582+
"name": "asyncStackTraceId",
6583+
"description": "Async stack trace, if any.",
6584+
"deprecated": true,
6585+
"optional": true,
6586+
"$ref": "Runtime.StackTraceId"
6587+
}
6588+
]
6589+
},
65376590
{
65386591
"name": "resume",
65396592
"description": "Resumes JavaScript execution.",

pages/_data/tot.json

Lines changed: 60 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1443,7 +1443,7 @@
14431443
},
14441444
{
14451445
"id": "AttributionReportingIssueDetails",
1446-
"description": "Details for issues around \"Attribution Reporting API\" usage.\nExplainer: https://github.com/WICG/conversion-measurement-api",
1446+
"description": "Details for issues around \"Attribution Reporting API\" usage.\nExplainer: https://github.com/WICG/attribution-reporting-api",
14471447
"type": "object",
14481448
"properties": [
14491449
{
@@ -1569,7 +1569,6 @@
15691569
"NotificationInsecureOrigin",
15701570
"NotificationPermissionRequestedIframe",
15711571
"ObsoleteWebRtcCipherSuite",
1572-
"PaymentRequestBasicCard",
15731572
"PictureSourceSrc",
15741573
"PrefixedCancelAnimationFrame",
15751574
"PrefixedRequestAnimationFrame",
@@ -12063,9 +12062,10 @@
1206312062
"enum": [
1206412063
"SameOrigin",
1206512064
"SameOriginAllowPopups",
12065+
"RestrictProperties",
1206612066
"UnsafeNone",
1206712067
"SameOriginPlusCoep",
12068-
"SameOriginAllowPopupsPlusCoep"
12068+
"RestrictPropertiesPlusCoep"
1206912069
]
1207012070
},
1207112071
{
@@ -14957,6 +14957,24 @@
1495714957
}
1495814958
]
1495914959
},
14960+
{
14961+
"id": "AdScriptId",
14962+
"description": "Identifies the bottom-most script which caused the frame to be labelled\nas an ad.",
14963+
"experimental": true,
14964+
"type": "object",
14965+
"properties": [
14966+
{
14967+
"name": "scriptId",
14968+
"description": "Script Id of the bottom-most script which caused the frame to be labelled\nas an ad.",
14969+
"$ref": "Runtime.ScriptId"
14970+
},
14971+
{
14972+
"name": "debuggerId",
14973+
"description": "Id of adScriptId's debugger.",
14974+
"$ref": "Runtime.UniqueDebuggerId"
14975+
}
14976+
]
14977+
},
1496014978
{
1496114979
"id": "SecureContextType",
1496214980
"description": "Indicates whether the frame is a secure context and why it is the case.",
@@ -17329,6 +17347,13 @@
1732917347
"description": "JavaScript stack trace of when frame was attached, only set if frame initiated from script.",
1733017348
"optional": true,
1733117349
"$ref": "Runtime.StackTrace"
17350+
},
17351+
{
17352+
"name": "adScriptId",
17353+
"description": "Identifies the bottom-most script which caused the frame to be labelled\nas an ad. Only sent if frame is labelled as an ad and id is available.",
17354+
"experimental": true,
17355+
"optional": true,
17356+
"$ref": "AdScriptId"
1733217357
}
1733317358
]
1733417359
},
@@ -22462,19 +22487,29 @@
2246222487
},
2246322488
{
2246422489
"name": "restartFrame",
22465-
"description": "Restarts particular call frame from the beginning.",
22466-
"deprecated": true,
22490+
"description": "Restarts particular call frame from the beginning. The old, deprecated\nbehavior of `restartFrame` is to stay paused and allow further CDP commands\nafter a restart was scheduled. This can cause problems with restarting, so\nwe now continue execution immediatly after it has been scheduled until we\nreach the beginning of the restarted frame.\n\nTo stay back-wards compatible, `restartFrame` now expects a `mode`\nparameter to be present. If the `mode` parameter is missing, `restartFrame`\nerrors out.\n\nThe various return values are deprecated and `callFrames` is always empty.\nUse the call frames from the `Debugger#paused` events instead, that fires\nonce V8 pauses at the beginning of the restarted function.",
2246722491
"parameters": [
2246822492
{
2246922493
"name": "callFrameId",
2247022494
"description": "Call frame identifier to evaluate on.",
2247122495
"$ref": "CallFrameId"
22496+
},
22497+
{
22498+
"name": "mode",
22499+
"description": "The `mode` parameter must be present and set to 'StepInto', otherwise\n`restartFrame` will error out.",
22500+
"experimental": true,
22501+
"optional": true,
22502+
"type": "string",
22503+
"enum": [
22504+
"StepInto"
22505+
]
2247222506
}
2247322507
],
2247422508
"returns": [
2247522509
{
2247622510
"name": "callFrames",
2247722511
"description": "New stack trace.",
22512+
"deprecated": true,
2247822513
"type": "array",
2247922514
"items": {
2248022515
"$ref": "CallFrame"
@@ -22483,13 +22518,14 @@
2248322518
{
2248422519
"name": "asyncStackTrace",
2248522520
"description": "Async stack trace, if any.",
22521+
"deprecated": true,
2248622522
"optional": true,
2248722523
"$ref": "Runtime.StackTrace"
2248822524
},
2248922525
{
2249022526
"name": "asyncStackTraceId",
2249122527
"description": "Async stack trace, if any.",
22492-
"experimental": true,
22528+
"deprecated": true,
2249322529
"optional": true,
2249422530
"$ref": "Runtime.StackTraceId"
2249522531
}
@@ -23409,6 +23445,8 @@
2340923445
},
2341023446
{
2341123447
"name": "treatGlobalObjectsAsRoots",
23448+
"description": "Deprecated in favor of `exposeInternals`.",
23449+
"deprecated": true,
2341223450
"optional": true,
2341323451
"type": "boolean"
2341423452
},
@@ -23417,6 +23455,13 @@
2341723455
"description": "If true, numerical values are included in the snapshot",
2341823456
"optional": true,
2341923457
"type": "boolean"
23458+
},
23459+
{
23460+
"name": "exposeInternals",
23461+
"description": "If true, exposes internals of the snapshot.",
23462+
"experimental": true,
23463+
"optional": true,
23464+
"type": "boolean"
2342023465
}
2342123466
]
2342223467
},
@@ -23431,7 +23476,8 @@
2343123476
},
2343223477
{
2343323478
"name": "treatGlobalObjectsAsRoots",
23434-
"description": "If true, a raw snapshot without artificial roots will be generated",
23479+
"description": "If true, a raw snapshot without artificial roots will be generated.\nDeprecated in favor of `exposeInternals`.",
23480+
"deprecated": true,
2343523481
"optional": true,
2343623482
"type": "boolean"
2343723483
},
@@ -23440,6 +23486,13 @@
2344023486
"description": "If true, numerical values are included in the snapshot",
2344123487
"optional": true,
2344223488
"type": "boolean"
23489+
},
23490+
{
23491+
"name": "exposeInternals",
23492+
"description": "If true, exposes internals of the snapshot.",
23493+
"experimental": true,
23494+
"optional": true,
23495+
"type": "boolean"
2344323496
}
2344423497
]
2344523498
}

pages/_data/v8.json

Lines changed: 32 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -606,19 +606,29 @@
606606
},
607607
{
608608
"name": "restartFrame",
609-
"description": "Restarts particular call frame from the beginning.",
610-
"deprecated": true,
609+
"description": "Restarts particular call frame from the beginning. The old, deprecated\nbehavior of `restartFrame` is to stay paused and allow further CDP commands\nafter a restart was scheduled. This can cause problems with restarting, so\nwe now continue execution immediatly after it has been scheduled until we\nreach the beginning of the restarted frame.\n\nTo stay back-wards compatible, `restartFrame` now expects a `mode`\nparameter to be present. If the `mode` parameter is missing, `restartFrame`\nerrors out.\n\nThe various return values are deprecated and `callFrames` is always empty.\nUse the call frames from the `Debugger#paused` events instead, that fires\nonce V8 pauses at the beginning of the restarted function.",
611610
"parameters": [
612611
{
613612
"name": "callFrameId",
614613
"description": "Call frame identifier to evaluate on.",
615614
"$ref": "CallFrameId"
615+
},
616+
{
617+
"name": "mode",
618+
"description": "The `mode` parameter must be present and set to 'StepInto', otherwise\n`restartFrame` will error out.",
619+
"experimental": true,
620+
"optional": true,
621+
"type": "string",
622+
"enum": [
623+
"StepInto"
624+
]
616625
}
617626
],
618627
"returns": [
619628
{
620629
"name": "callFrames",
621630
"description": "New stack trace.",
631+
"deprecated": true,
622632
"type": "array",
623633
"items": {
624634
"$ref": "CallFrame"
@@ -627,13 +637,14 @@
627637
{
628638
"name": "asyncStackTrace",
629639
"description": "Async stack trace, if any.",
640+
"deprecated": true,
630641
"optional": true,
631642
"$ref": "Runtime.StackTrace"
632643
},
633644
{
634645
"name": "asyncStackTraceId",
635646
"description": "Async stack trace, if any.",
636-
"experimental": true,
647+
"deprecated": true,
637648
"optional": true,
638649
"$ref": "Runtime.StackTraceId"
639650
}
@@ -1553,6 +1564,8 @@
15531564
},
15541565
{
15551566
"name": "treatGlobalObjectsAsRoots",
1567+
"description": "Deprecated in favor of `exposeInternals`.",
1568+
"deprecated": true,
15561569
"optional": true,
15571570
"type": "boolean"
15581571
},
@@ -1561,6 +1574,13 @@
15611574
"description": "If true, numerical values are included in the snapshot",
15621575
"optional": true,
15631576
"type": "boolean"
1577+
},
1578+
{
1579+
"name": "exposeInternals",
1580+
"description": "If true, exposes internals of the snapshot.",
1581+
"experimental": true,
1582+
"optional": true,
1583+
"type": "boolean"
15641584
}
15651585
]
15661586
},
@@ -1575,7 +1595,8 @@
15751595
},
15761596
{
15771597
"name": "treatGlobalObjectsAsRoots",
1578-
"description": "If true, a raw snapshot without artificial roots will be generated",
1598+
"description": "If true, a raw snapshot without artificial roots will be generated.\nDeprecated in favor of `exposeInternals`.",
1599+
"deprecated": true,
15791600
"optional": true,
15801601
"type": "boolean"
15811602
},
@@ -1584,6 +1605,13 @@
15841605
"description": "If true, numerical values are included in the snapshot",
15851606
"optional": true,
15861607
"type": "boolean"
1608+
},
1609+
{
1610+
"name": "exposeInternals",
1611+
"description": "If true, exposes internals of the snapshot.",
1612+
"experimental": true,
1613+
"optional": true,
1614+
"type": "boolean"
15871615
}
15881616
]
15891617
}

pages/tot.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ There is no backwards compatibility support guaranteed for the capabilities it i
1010

1111
<h5 browser>Latest <a
1212
href="https://github.com/ChromeDevTools/devtools-protocol/blob/master/json/browser_protocol.json">browser_protocol.json</a> version updated:</h5>
13-
<code browser>Date: 2022-05-30 00:15:13 -0700
13+
<code browser>Date: 2022-06-07 15:28:08 -0700
1414
</code>
1515

1616
<h5 js>Latest <a
1717
href="https://github.com/ChromeDevTools/devtools-protocol/blob/master/json/js_protocol.json">js_protocol.json</a> version updated:</h5>
18-
<code js>Date: 2022-05-04 09:45:22 -0700
18+
<code js>Date: 2022-06-07 15:28:08 -0700
1919
</code>

search_index/1-3.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

search_index/tot.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

search_index/v8.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)