devtools-protocol 0.0.1389201 → 0.0.1391447
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.
@@ -1261,7 +1261,8 @@
|
|
1261
1261
|
"CorpNotSameOriginAfterDefaultedToSameOriginByCoep",
|
1262
1262
|
"CorpNotSameOriginAfterDefaultedToSameOriginByDip",
|
1263
1263
|
"CorpNotSameOriginAfterDefaultedToSameOriginByCoepAndDip",
|
1264
|
-
"CorpNotSameSite"
|
1264
|
+
"CorpNotSameSite",
|
1265
|
+
"SRIMessageSignatureMismatch"
|
1265
1266
|
]
|
1266
1267
|
},
|
1267
1268
|
{
|
@@ -5760,7 +5761,7 @@
|
|
5760
5761
|
"checkmark",
|
5761
5762
|
"before",
|
5762
5763
|
"after",
|
5763
|
-
"
|
5764
|
+
"picker-icon",
|
5764
5765
|
"marker",
|
5765
5766
|
"backdrop",
|
5766
5767
|
"column",
|
@@ -12961,7 +12962,8 @@
|
|
12961
12962
|
"corp-not-same-origin-after-defaulted-to-same-origin-by-coep",
|
12962
12963
|
"corp-not-same-origin-after-defaulted-to-same-origin-by-dip",
|
12963
12964
|
"corp-not-same-origin-after-defaulted-to-same-origin-by-coep-and-dip",
|
12964
|
-
"corp-not-same-site"
|
12965
|
+
"corp-not-same-site",
|
12966
|
+
"sri-message-signature-mismatch"
|
12965
12967
|
]
|
12966
12968
|
},
|
12967
12969
|
{
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -654,6 +654,7 @@ experimental domain Audits
|
|
654
654
|
CorpNotSameOriginAfterDefaultedToSameOriginByDip
|
655
655
|
CorpNotSameOriginAfterDefaultedToSameOriginByCoepAndDip
|
656
656
|
CorpNotSameSite
|
657
|
+
SRIMessageSignatureMismatch
|
657
658
|
|
658
659
|
# Details for a request that has been blocked with the BLOCKED_BY_RESPONSE
|
659
660
|
# code. Currently only used for COEP/COOP, but may be extended to include
|
@@ -2742,7 +2743,7 @@ domain DOM
|
|
2742
2743
|
checkmark
|
2743
2744
|
before
|
2744
2745
|
after
|
2745
|
-
|
2746
|
+
picker-icon
|
2746
2747
|
marker
|
2747
2748
|
backdrop
|
2748
2749
|
column
|
@@ -5991,6 +5992,7 @@ domain Network
|
|
5991
5992
|
corp-not-same-origin-after-defaulted-to-same-origin-by-dip
|
5992
5993
|
corp-not-same-origin-after-defaulted-to-same-origin-by-coep-and-dip
|
5993
5994
|
corp-not-same-site
|
5995
|
+
sri-message-signature-mismatch
|
5994
5996
|
|
5995
5997
|
# The reason why request was blocked.
|
5996
5998
|
type CorsError extends string
|
package/types/protocol.d.ts
CHANGED
@@ -3408,7 +3408,7 @@ export namespace Protocol {
|
|
3408
3408
|
* Enum indicating the reason a response has been blocked. These reasons are
|
3409
3409
|
* refinements of the net error BLOCKED_BY_RESPONSE.
|
3410
3410
|
*/
|
3411
|
-
export type BlockedByResponseReason = ('CoepFrameResourceNeedsCoepHeader' | 'CoopSandboxedIFrameCannotNavigateToCoopPage' | 'CorpNotSameOrigin' | 'CorpNotSameOriginAfterDefaultedToSameOriginByCoep' | 'CorpNotSameOriginAfterDefaultedToSameOriginByDip' | 'CorpNotSameOriginAfterDefaultedToSameOriginByCoepAndDip' | 'CorpNotSameSite');
|
3411
|
+
export type BlockedByResponseReason = ('CoepFrameResourceNeedsCoepHeader' | 'CoopSandboxedIFrameCannotNavigateToCoopPage' | 'CorpNotSameOrigin' | 'CorpNotSameOriginAfterDefaultedToSameOriginByCoep' | 'CorpNotSameOriginAfterDefaultedToSameOriginByDip' | 'CorpNotSameOriginAfterDefaultedToSameOriginByCoepAndDip' | 'CorpNotSameSite' | 'SRIMessageSignatureMismatch');
|
3412
3412
|
|
3413
3413
|
/**
|
3414
3414
|
* Details for a request that has been blocked with the BLOCKED_BY_RESPONSE
|
@@ -6082,7 +6082,7 @@ export namespace Protocol {
|
|
6082
6082
|
/**
|
6083
6083
|
* Pseudo element type.
|
6084
6084
|
*/
|
6085
|
-
export type PseudoType = ('first-line' | 'first-letter' | 'checkmark' | 'before' | 'after' | '
|
6085
|
+
export type PseudoType = ('first-line' | 'first-letter' | 'checkmark' | 'before' | 'after' | 'picker-icon' | 'marker' | 'backdrop' | 'column' | 'selection' | 'search-text' | 'target-text' | 'spelling-error' | 'grammar-error' | 'highlight' | 'first-line-inherited' | 'scroll-marker' | 'scroll-marker-group' | 'scroll-button' | 'scrollbar' | 'scrollbar-thumb' | 'scrollbar-button' | 'scrollbar-track' | 'scrollbar-track-piece' | 'scrollbar-corner' | 'resizer' | 'input-list-button' | 'view-transition' | 'view-transition-group' | 'view-transition-image-pair' | 'view-transition-old' | 'view-transition-new' | 'placeholder' | 'file-selector-button' | 'details-content' | 'picker');
|
6086
6086
|
|
6087
6087
|
/**
|
6088
6088
|
* Shadow root type.
|
@@ -10658,7 +10658,7 @@ export namespace Protocol {
|
|
10658
10658
|
/**
|
10659
10659
|
* The reason why request was blocked.
|
10660
10660
|
*/
|
10661
|
-
export type BlockedReason = ('other' | 'csp' | 'mixed-content' | 'origin' | 'inspector' | 'subresource-filter' | 'content-type' | 'coep-frame-resource-needs-coep-header' | 'coop-sandboxed-iframe-cannot-navigate-to-coop-page' | 'corp-not-same-origin' | 'corp-not-same-origin-after-defaulted-to-same-origin-by-coep' | 'corp-not-same-origin-after-defaulted-to-same-origin-by-dip' | 'corp-not-same-origin-after-defaulted-to-same-origin-by-coep-and-dip' | 'corp-not-same-site');
|
10661
|
+
export type BlockedReason = ('other' | 'csp' | 'mixed-content' | 'origin' | 'inspector' | 'subresource-filter' | 'content-type' | 'coep-frame-resource-needs-coep-header' | 'coop-sandboxed-iframe-cannot-navigate-to-coop-page' | 'corp-not-same-origin' | 'corp-not-same-origin-after-defaulted-to-same-origin-by-coep' | 'corp-not-same-origin-after-defaulted-to-same-origin-by-dip' | 'corp-not-same-origin-after-defaulted-to-same-origin-by-coep-and-dip' | 'corp-not-same-site' | 'sri-message-signature-mismatch');
|
10662
10662
|
|
10663
10663
|
/**
|
10664
10664
|
* The reason why request was blocked.
|