devtools-protocol 0.0.1263133 → 0.0.1266247
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.
@@ -1468,7 +1468,12 @@
|
|
1468
1468
|
"InvalidRegisterOsTriggerHeader",
|
1469
1469
|
"WebAndOsHeaders",
|
1470
1470
|
"NoWebOrOsSupport",
|
1471
|
-
"NavigationRegistrationWithoutTransientUserActivation"
|
1471
|
+
"NavigationRegistrationWithoutTransientUserActivation",
|
1472
|
+
"InvalidInfoHeader",
|
1473
|
+
"NoRegisterSourceHeader",
|
1474
|
+
"NoRegisterTriggerHeader",
|
1475
|
+
"NoRegisterOsSourceHeader",
|
1476
|
+
"NoRegisterOsTriggerHeader"
|
1472
1477
|
]
|
1473
1478
|
},
|
1474
1479
|
{
|
@@ -8895,6 +8900,7 @@
|
|
8895
8900
|
{
|
8896
8901
|
"name": "canEmulate",
|
8897
8902
|
"description": "Tells whether emulation is supported.",
|
8903
|
+
"deprecated": true,
|
8898
8904
|
"returns": [
|
8899
8905
|
{
|
8900
8906
|
"name": "result",
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -729,6 +729,11 @@ experimental domain Audits
|
|
729
729
|
WebAndOsHeaders
|
730
730
|
NoWebOrOsSupport
|
731
731
|
NavigationRegistrationWithoutTransientUserActivation
|
732
|
+
InvalidInfoHeader
|
733
|
+
NoRegisterSourceHeader
|
734
|
+
NoRegisterTriggerHeader
|
735
|
+
NoRegisterOsSourceHeader
|
736
|
+
NoRegisterOsTriggerHeader
|
732
737
|
|
733
738
|
# Details for issues around "Attribution Reporting API" usage.
|
734
739
|
# Explainer: https://github.com/WICG/attribution-reporting-api
|
@@ -4053,7 +4058,7 @@ domain Emulation
|
|
4053
4058
|
optional SensorReadingQuaternion quaternion
|
4054
4059
|
|
4055
4060
|
# Tells whether emulation is supported.
|
4056
|
-
command canEmulate
|
4061
|
+
deprecated command canEmulate
|
4057
4062
|
returns
|
4058
4063
|
# True if emulation is supported.
|
4059
4064
|
boolean result
|
@@ -4272,7 +4277,7 @@ domain Emulation
|
|
4272
4277
|
# Overrides default host system timezone with the specified one.
|
4273
4278
|
command setTimezoneOverride
|
4274
4279
|
parameters
|
4275
|
-
# The timezone identifier. List of supported timezones:
|
4280
|
+
# The timezone identifier. List of supported timezones:
|
4276
4281
|
# https://source.chromium.org/chromium/chromium/deps/icu.git/+/faee8bc70570192d82d2978a71e2a615788597d1:source/data/misc/metaZones.txt
|
4277
4282
|
# If empty, disables the override and restores default host system timezone.
|
4278
4283
|
string timezoneId
|
package/types/protocol.d.ts
CHANGED
@@ -3462,7 +3462,7 @@ export namespace Protocol {
|
|
3462
3462
|
clientSecurityState?: Network.ClientSecurityState;
|
3463
3463
|
}
|
3464
3464
|
|
3465
|
-
export type AttributionReportingIssueType = ('PermissionPolicyDisabled' | 'UntrustworthyReportingOrigin' | 'InsecureContext' | 'InvalidHeader' | 'InvalidRegisterTriggerHeader' | 'SourceAndTriggerHeaders' | 'SourceIgnored' | 'TriggerIgnored' | 'OsSourceIgnored' | 'OsTriggerIgnored' | 'InvalidRegisterOsSourceHeader' | 'InvalidRegisterOsTriggerHeader' | 'WebAndOsHeaders' | 'NoWebOrOsSupport' | 'NavigationRegistrationWithoutTransientUserActivation');
|
3465
|
+
export type AttributionReportingIssueType = ('PermissionPolicyDisabled' | 'UntrustworthyReportingOrigin' | 'InsecureContext' | 'InvalidHeader' | 'InvalidRegisterTriggerHeader' | 'SourceAndTriggerHeaders' | 'SourceIgnored' | 'TriggerIgnored' | 'OsSourceIgnored' | 'OsTriggerIgnored' | 'InvalidRegisterOsSourceHeader' | 'InvalidRegisterOsTriggerHeader' | 'WebAndOsHeaders' | 'NoWebOrOsSupport' | 'NavigationRegistrationWithoutTransientUserActivation' | 'InvalidInfoHeader' | 'NoRegisterSourceHeader' | 'NoRegisterTriggerHeader' | 'NoRegisterOsSourceHeader' | 'NoRegisterOsTriggerHeader');
|
3466
3466
|
|
3467
3467
|
/**
|
3468
3468
|
* Details for issues around "Attribution Reporting API" usage.
|