devtools-protocol 0.0.1119769 → 0.0.1120367
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.
@@ -1547,7 +1547,8 @@
|
|
1547
1547
|
"FormAriaLabelledByToNonExistingId",
|
1548
1548
|
"FormInputAssignedAutocompleteValueToIdOrNameAttributeError",
|
1549
1549
|
"FormLabelHasNeitherForNorNestedInput",
|
1550
|
-
"FormLabelForMatchesNonExistingIdError"
|
1550
|
+
"FormLabelForMatchesNonExistingIdError",
|
1551
|
+
"FormInputHasWrongButWellIntendedAutocompleteValueError"
|
1551
1552
|
]
|
1552
1553
|
},
|
1553
1554
|
{
|
@@ -23043,8 +23044,12 @@
|
|
23043
23044
|
},
|
23044
23045
|
{
|
23045
23046
|
"name": "preloadingAttemptSourcesUpdated",
|
23046
|
-
"description": "Send a list of sources for all preloading attempts.",
|
23047
|
+
"description": "Send a list of sources for all preloading attempts in a document.",
|
23047
23048
|
"parameters": [
|
23049
|
+
{
|
23050
|
+
"name": "loaderId",
|
23051
|
+
"$ref": "Network.LoaderId"
|
23052
|
+
},
|
23048
23053
|
{
|
23049
23054
|
"name": "preloadingAttemptSources",
|
23050
23055
|
"type": "array",
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -756,6 +756,7 @@ experimental domain Audits
|
|
756
756
|
FormInputAssignedAutocompleteValueToIdOrNameAttributeError
|
757
757
|
FormLabelHasNeitherForNorNestedInput
|
758
758
|
FormLabelForMatchesNonExistingIdError
|
759
|
+
FormInputHasWrongButWellIntendedAutocompleteValueError
|
759
760
|
|
760
761
|
# Depending on the concrete errorType, different properties are set.
|
761
762
|
type GenericIssueDetails extends object
|
@@ -10903,9 +10904,10 @@ experimental domain Preload
|
|
10903
10904
|
string prerenderingUrl
|
10904
10905
|
PreloadingStatus status
|
10905
10906
|
|
10906
|
-
# Send a list of sources for all preloading attempts.
|
10907
|
+
# Send a list of sources for all preloading attempts in a document.
|
10907
10908
|
event preloadingAttemptSourcesUpdated
|
10908
10909
|
parameters
|
10910
|
+
Network.LoaderId loaderId
|
10909
10911
|
array of PreloadingAttemptSource preloadingAttemptSources
|
10910
10912
|
|
10911
10913
|
# This domain allows interacting with the FedCM dialog.
|
@@ -723,7 +723,7 @@ export namespace ProtocolMapping {
|
|
723
723
|
*/
|
724
724
|
'Preload.prerenderStatusUpdated': [Protocol.Preload.PrerenderStatusUpdatedEvent];
|
725
725
|
/**
|
726
|
-
* Send a list of sources for all preloading attempts.
|
726
|
+
* Send a list of sources for all preloading attempts in a document.
|
727
727
|
*/
|
728
728
|
'Preload.preloadingAttemptSourcesUpdated': [Protocol.Preload.PreloadingAttemptSourcesUpdatedEvent];
|
729
729
|
'FedCm.dialogShown': [Protocol.FedCm.DialogShownEvent];
|
@@ -3963,7 +3963,7 @@ export namespace ProtocolProxyApi {
|
|
3963
3963
|
on(event: 'prerenderStatusUpdated', listener: (params: Protocol.Preload.PrerenderStatusUpdatedEvent) => void): void;
|
3964
3964
|
|
3965
3965
|
/**
|
3966
|
-
* Send a list of sources for all preloading attempts.
|
3966
|
+
* Send a list of sources for all preloading attempts in a document.
|
3967
3967
|
*/
|
3968
3968
|
on(event: 'preloadingAttemptSourcesUpdated', listener: (params: Protocol.Preload.PreloadingAttemptSourcesUpdatedEvent) => void): void;
|
3969
3969
|
|
package/types/protocol.d.ts
CHANGED
@@ -3443,7 +3443,7 @@ export namespace Protocol {
|
|
3443
3443
|
location?: SourceCodeLocation;
|
3444
3444
|
}
|
3445
3445
|
|
3446
|
-
export type GenericIssueErrorType = ('CrossOriginPortalPostMessageError' | 'FormLabelForNameError' | 'FormDuplicateIdForInputError' | 'FormInputWithNoLabelError' | 'FormAutocompleteAttributeEmptyError' | 'FormEmptyIdAndNameAttributesForInputError' | 'FormAriaLabelledByToNonExistingId' | 'FormInputAssignedAutocompleteValueToIdOrNameAttributeError' | 'FormLabelHasNeitherForNorNestedInput' | 'FormLabelForMatchesNonExistingIdError');
|
3446
|
+
export type GenericIssueErrorType = ('CrossOriginPortalPostMessageError' | 'FormLabelForNameError' | 'FormDuplicateIdForInputError' | 'FormInputWithNoLabelError' | 'FormAutocompleteAttributeEmptyError' | 'FormEmptyIdAndNameAttributesForInputError' | 'FormAriaLabelledByToNonExistingId' | 'FormInputAssignedAutocompleteValueToIdOrNameAttributeError' | 'FormLabelHasNeitherForNorNestedInput' | 'FormLabelForMatchesNonExistingIdError' | 'FormInputHasWrongButWellIntendedAutocompleteValueError');
|
3447
3447
|
|
3448
3448
|
/**
|
3449
3449
|
* Depending on the concrete errorType, different properties are set.
|
@@ -16993,9 +16993,10 @@ export namespace Protocol {
|
|
16993
16993
|
}
|
16994
16994
|
|
16995
16995
|
/**
|
16996
|
-
* Send a list of sources for all preloading attempts.
|
16996
|
+
* Send a list of sources for all preloading attempts in a document.
|
16997
16997
|
*/
|
16998
16998
|
export interface PreloadingAttemptSourcesUpdatedEvent {
|
16999
|
+
loaderId: Network.LoaderId;
|
16999
17000
|
preloadingAttemptSources: PreloadingAttemptSource[];
|
17000
17001
|
}
|
17001
17002
|
}
|