@mcp-b/chrome-devtools-mcp 2.2.0 → 2.3.0

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.
Files changed (234) hide show
  1. package/README.md +1 -4
  2. package/build/src/DevToolsConnectionAdapter.js +5 -4
  3. package/build/src/DevtoolsUtils.js +8 -12
  4. package/build/src/McpContext.js +34 -39
  5. package/build/src/McpResponse.js +19 -45
  6. package/build/src/PageCollector.js +10 -11
  7. package/build/src/WaitForHelper.js +7 -11
  8. package/build/src/bin/chrome-devtools-cli-options.js +616 -665
  9. package/build/src/bin/chrome-devtools-mcp-cli-options.js +5 -5
  10. package/build/src/bin/chrome-devtools.js +2 -24
  11. package/build/src/bin/cliDefinitions.js +615 -0
  12. package/build/src/browser.js +5 -10
  13. package/build/src/daemon/client.js +10 -34
  14. package/build/src/formatters/{consoleFormatter.js → ConsoleFormatter.js} +10 -17
  15. package/build/src/formatters/{networkFormatter.js → NetworkFormatter.js} +3 -6
  16. package/build/src/formatters/{snapshotFormatter.js → SnapshotFormatter.js} +3 -6
  17. package/build/src/index.js +6 -16
  18. package/build/src/tools/ToolDefinition.js +1 -1
  19. package/build/src/tools/emulation.js +1 -1
  20. package/build/src/tools/input.js +5 -11
  21. package/build/src/tools/pages.js +7 -19
  22. package/build/src/tools/performance.js +3 -3
  23. package/build/src/tools/script.js +4 -6
  24. package/build/src/tools/tools.js +0 -1
  25. package/build/src/version.js +1 -1
  26. package/package.json +9 -9
  27. package/build/src/third_party/issue-descriptions/CoepCoopSandboxedIframeCannotNavigateToCoopPage.md +0 -4
  28. package/build/src/third_party/issue-descriptions/CoepCorpNotSameOrigin.md +0 -8
  29. package/build/src/third_party/issue-descriptions/CoepCorpNotSameOriginAfterDefaultedToSameOriginByCoep.md +0 -18
  30. package/build/src/third_party/issue-descriptions/CoepCorpNotSameSite.md +0 -7
  31. package/build/src/third_party/issue-descriptions/CoepFrameResourceNeedsCoepHeader.md +0 -10
  32. package/build/src/third_party/issue-descriptions/CompatibilityModeQuirks.md +0 -5
  33. package/build/src/third_party/issue-descriptions/CookieAttributeValueExceedsMaxSize.md +0 -5
  34. package/build/src/third_party/issue-descriptions/LowTextContrast.md +0 -5
  35. package/build/src/third_party/issue-descriptions/SameSiteExcludeContextDowngradeRead.md +0 -8
  36. package/build/src/third_party/issue-descriptions/SameSiteExcludeContextDowngradeSet.md +0 -8
  37. package/build/src/third_party/issue-descriptions/SameSiteExcludeNavigationContextDowngrade.md +0 -8
  38. package/build/src/third_party/issue-descriptions/SameSiteNoneInsecureErrorRead.md +0 -8
  39. package/build/src/third_party/issue-descriptions/SameSiteNoneInsecureErrorSet.md +0 -8
  40. package/build/src/third_party/issue-descriptions/SameSiteNoneInsecureWarnRead.md +0 -8
  41. package/build/src/third_party/issue-descriptions/SameSiteNoneInsecureWarnSet.md +0 -8
  42. package/build/src/third_party/issue-descriptions/SameSiteUnspecifiedLaxAllowUnsafeRead.md +0 -9
  43. package/build/src/third_party/issue-descriptions/SameSiteUnspecifiedLaxAllowUnsafeSet.md +0 -9
  44. package/build/src/third_party/issue-descriptions/SameSiteWarnCrossDowngradeRead.md +0 -8
  45. package/build/src/third_party/issue-descriptions/SameSiteWarnCrossDowngradeSet.md +0 -8
  46. package/build/src/third_party/issue-descriptions/SameSiteWarnStrictLaxDowngradeStrict.md +0 -8
  47. package/build/src/third_party/issue-descriptions/arInsecureContext.md +0 -7
  48. package/build/src/third_party/issue-descriptions/arInvalidInfoHeader.md +0 -5
  49. package/build/src/third_party/issue-descriptions/arInvalidRegisterOsSourceHeader.md +0 -5
  50. package/build/src/third_party/issue-descriptions/arInvalidRegisterOsTriggerHeader.md +0 -5
  51. package/build/src/third_party/issue-descriptions/arInvalidRegisterSourceHeader.md +0 -5
  52. package/build/src/third_party/issue-descriptions/arInvalidRegisterTriggerHeader.md +0 -5
  53. package/build/src/third_party/issue-descriptions/arNavigationRegistrationUniqueScopeAlreadySet.md +0 -5
  54. package/build/src/third_party/issue-descriptions/arNavigationRegistrationWithoutTransientUserActivation.md +0 -6
  55. package/build/src/third_party/issue-descriptions/arNoRegisterOsSourceHeader.md +0 -5
  56. package/build/src/third_party/issue-descriptions/arNoRegisterOsTriggerHeader.md +0 -5
  57. package/build/src/third_party/issue-descriptions/arNoRegisterSourceHeader.md +0 -5
  58. package/build/src/third_party/issue-descriptions/arNoRegisterTriggerHeader.md +0 -5
  59. package/build/src/third_party/issue-descriptions/arNoWebOrOsSupport.md +0 -4
  60. package/build/src/third_party/issue-descriptions/arOsSourceIgnored.md +0 -18
  61. package/build/src/third_party/issue-descriptions/arOsTriggerIgnored.md +0 -19
  62. package/build/src/third_party/issue-descriptions/arPermissionPolicyDisabled.md +0 -8
  63. package/build/src/third_party/issue-descriptions/arSourceAndTriggerHeaders.md +0 -9
  64. package/build/src/third_party/issue-descriptions/arSourceIgnored.md +0 -13
  65. package/build/src/third_party/issue-descriptions/arTriggerIgnored.md +0 -12
  66. package/build/src/third_party/issue-descriptions/arUntrustworthyReportingOrigin.md +0 -10
  67. package/build/src/third_party/issue-descriptions/arWebAndOsHeaders.md +0 -11
  68. package/build/src/third_party/issue-descriptions/bounceTrackingMitigations.md +0 -3
  69. package/build/src/third_party/issue-descriptions/clientHintMetaTagAllowListInvalidOrigin.md +0 -4
  70. package/build/src/third_party/issue-descriptions/clientHintMetaTagModifiedHTML.md +0 -4
  71. package/build/src/third_party/issue-descriptions/connectionAllowlistInvalidAllowlistItemType.md +0 -12
  72. package/build/src/third_party/issue-descriptions/connectionAllowlistInvalidHeader.md +0 -12
  73. package/build/src/third_party/issue-descriptions/connectionAllowlistInvalidUrlPattern.md +0 -8
  74. package/build/src/third_party/issue-descriptions/connectionAllowlistItemNotInnerList.md +0 -12
  75. package/build/src/third_party/issue-descriptions/connectionAllowlistMoreThanOneList.md +0 -7
  76. package/build/src/third_party/issue-descriptions/connectionAllowlistReportingEndpointNotToken.md +0 -10
  77. package/build/src/third_party/issue-descriptions/cookieCrossSiteRedirectDowngrade.md +0 -12
  78. package/build/src/third_party/issue-descriptions/cookieExcludeBlockedWithinRelatedWebsiteSet.md +0 -4
  79. package/build/src/third_party/issue-descriptions/cookieExcludeDomainNonAscii.md +0 -11
  80. package/build/src/third_party/issue-descriptions/cookieExcludePortMismatch.md +0 -8
  81. package/build/src/third_party/issue-descriptions/cookieExcludeSchemeMismatch.md +0 -7
  82. package/build/src/third_party/issue-descriptions/cookieExcludeThirdPartyPhaseoutRead.md +0 -6
  83. package/build/src/third_party/issue-descriptions/cookieExcludeThirdPartyPhaseoutSet.md +0 -6
  84. package/build/src/third_party/issue-descriptions/cookieWarnDomainNonAscii.md +0 -11
  85. package/build/src/third_party/issue-descriptions/cookieWarnMetadataGrantRead.md +0 -4
  86. package/build/src/third_party/issue-descriptions/cookieWarnMetadataGrantSet.md +0 -4
  87. package/build/src/third_party/issue-descriptions/cookieWarnThirdPartyPhaseoutRead.md +0 -6
  88. package/build/src/third_party/issue-descriptions/cookieWarnThirdPartyPhaseoutSet.md +0 -6
  89. package/build/src/third_party/issue-descriptions/corsAllowCredentialsRequired.md +0 -6
  90. package/build/src/third_party/issue-descriptions/corsDisabledScheme.md +0 -7
  91. package/build/src/third_party/issue-descriptions/corsDisallowedByMode.md +0 -7
  92. package/build/src/third_party/issue-descriptions/corsHeaderDisallowedByPreflightResponse.md +0 -5
  93. package/build/src/third_party/issue-descriptions/corsInvalidHeaderValues.md +0 -7
  94. package/build/src/third_party/issue-descriptions/corsLocalNetworkAccessPermissionDenied.md +0 -19
  95. package/build/src/third_party/issue-descriptions/corsMethodDisallowedByPreflightResponse.md +0 -5
  96. package/build/src/third_party/issue-descriptions/corsNoCorsRedirectModeNotFollow.md +0 -5
  97. package/build/src/third_party/issue-descriptions/corsOriginMismatch.md +0 -6
  98. package/build/src/third_party/issue-descriptions/corsPreflightResponseInvalid.md +0 -5
  99. package/build/src/third_party/issue-descriptions/corsRedirectContainsCredentials.md +0 -5
  100. package/build/src/third_party/issue-descriptions/corsWildcardOriginNotAllowed.md +0 -8
  101. package/build/src/third_party/issue-descriptions/cspEvalViolation.md +0 -9
  102. package/build/src/third_party/issue-descriptions/cspInlineViolation.md +0 -10
  103. package/build/src/third_party/issue-descriptions/cspTrustedTypesPolicyViolation.md +0 -5
  104. package/build/src/third_party/issue-descriptions/cspTrustedTypesSinkViolation.md +0 -8
  105. package/build/src/third_party/issue-descriptions/cspURLViolation.md +0 -10
  106. package/build/src/third_party/issue-descriptions/deprecation.md +0 -3
  107. package/build/src/third_party/issue-descriptions/federatedAuthRequestAccountsHttpNotFound.md +0 -1
  108. package/build/src/third_party/issue-descriptions/federatedAuthRequestAccountsInvalidResponse.md +0 -1
  109. package/build/src/third_party/issue-descriptions/federatedAuthRequestAccountsNoResponse.md +0 -1
  110. package/build/src/third_party/issue-descriptions/federatedAuthRequestApprovalDeclined.md +0 -1
  111. package/build/src/third_party/issue-descriptions/federatedAuthRequestCanceled.md +0 -1
  112. package/build/src/third_party/issue-descriptions/federatedAuthRequestErrorFetchingSignin.md +0 -1
  113. package/build/src/third_party/issue-descriptions/federatedAuthRequestErrorIdToken.md +0 -1
  114. package/build/src/third_party/issue-descriptions/federatedAuthRequestIdTokenHttpNotFound.md +0 -1
  115. package/build/src/third_party/issue-descriptions/federatedAuthRequestIdTokenInvalidRequest.md +0 -1
  116. package/build/src/third_party/issue-descriptions/federatedAuthRequestIdTokenInvalidResponse.md +0 -1
  117. package/build/src/third_party/issue-descriptions/federatedAuthRequestIdTokenNoResponse.md +0 -1
  118. package/build/src/third_party/issue-descriptions/federatedAuthRequestInvalidSigninResponse.md +0 -1
  119. package/build/src/third_party/issue-descriptions/federatedAuthRequestManifestHttpNotFound.md +0 -1
  120. package/build/src/third_party/issue-descriptions/federatedAuthRequestManifestInvalidResponse.md +0 -1
  121. package/build/src/third_party/issue-descriptions/federatedAuthRequestManifestNoResponse.md +0 -1
  122. package/build/src/third_party/issue-descriptions/federatedAuthRequestTooManyRequests.md +0 -1
  123. package/build/src/third_party/issue-descriptions/federatedAuthUserInfoRequestInvalidAccountsResponse.md +0 -1
  124. package/build/src/third_party/issue-descriptions/federatedAuthUserInfoRequestInvalidConfigOrWellKnown.md +0 -1
  125. package/build/src/third_party/issue-descriptions/federatedAuthUserInfoRequestNoAccountSharingPermission.md +0 -1
  126. package/build/src/third_party/issue-descriptions/federatedAuthUserInfoRequestNoApiPermission.md +0 -1
  127. package/build/src/third_party/issue-descriptions/federatedAuthUserInfoRequestNoReturningUserFromFetchedAccounts.md +0 -1
  128. package/build/src/third_party/issue-descriptions/federatedAuthUserInfoRequestNotIframe.md +0 -1
  129. package/build/src/third_party/issue-descriptions/federatedAuthUserInfoRequestNotPotentiallyTrustworthy.md +0 -1
  130. package/build/src/third_party/issue-descriptions/federatedAuthUserInfoRequestNotSameOrigin.md +0 -1
  131. package/build/src/third_party/issue-descriptions/federatedAuthUserInfoRequestNotSignedInWithIdp.md +0 -1
  132. package/build/src/third_party/issue-descriptions/fetchingPartitionedBlobURL.md +0 -7
  133. package/build/src/third_party/issue-descriptions/genericFormAriaLabelledByToNonExistingIdError.md +0 -8
  134. package/build/src/third_party/issue-descriptions/genericFormAutocompleteAttributeEmptyError.md +0 -5
  135. package/build/src/third_party/issue-descriptions/genericFormDuplicateIdForInputError.md +0 -5
  136. package/build/src/third_party/issue-descriptions/genericFormEmptyIdAndNameAttributesForInputError.md +0 -5
  137. package/build/src/third_party/issue-descriptions/genericFormInputAssignedAutocompleteValueToIdOrNameAttributeError.md +0 -5
  138. package/build/src/third_party/issue-descriptions/genericFormInputHasWrongButWellIntendedAutocompleteValueError.md +0 -5
  139. package/build/src/third_party/issue-descriptions/genericFormInputWithNoLabelError.md +0 -5
  140. package/build/src/third_party/issue-descriptions/genericFormLabelForMatchesNonExistingIdError.md +0 -5
  141. package/build/src/third_party/issue-descriptions/genericFormLabelForNameError.md +0 -5
  142. package/build/src/third_party/issue-descriptions/genericFormLabelHasNeitherForNorNestedInputError.md +0 -5
  143. package/build/src/third_party/issue-descriptions/genericNavigationEntryMarkedSkippable.md +0 -7
  144. package/build/src/third_party/issue-descriptions/genericResponseWasBlockedByORB.md +0 -4
  145. package/build/src/third_party/issue-descriptions/heavyAd.md +0 -10
  146. package/build/src/third_party/issue-descriptions/mixedContent.md +0 -5
  147. package/build/src/third_party/issue-descriptions/navigatingPartitionedBlobURL.md +0 -5
  148. package/build/src/third_party/issue-descriptions/permissionElementActivationDisabled.md +0 -7
  149. package/build/src/third_party/issue-descriptions/permissionElementActivationDisabledWithOccluder.md +0 -9
  150. package/build/src/third_party/issue-descriptions/permissionElementActivationDisabledWithOccluderParent.md +0 -9
  151. package/build/src/third_party/issue-descriptions/permissionElementCspFrameAncestorsMissing.md +0 -5
  152. package/build/src/third_party/issue-descriptions/permissionElementFencedFrameDisallowed.md +0 -5
  153. package/build/src/third_party/issue-descriptions/permissionElementFontSizeTooLarge.md +0 -5
  154. package/build/src/third_party/issue-descriptions/permissionElementFontSizeTooSmall.md +0 -5
  155. package/build/src/third_party/issue-descriptions/permissionElementGeolocationDeprecated.md +0 -5
  156. package/build/src/third_party/issue-descriptions/permissionElementInsetBoxShadowUnsupported.md +0 -5
  157. package/build/src/third_party/issue-descriptions/permissionElementInvalidDisplayStyle.md +0 -5
  158. package/build/src/third_party/issue-descriptions/permissionElementInvalidSizeValue.md +0 -5
  159. package/build/src/third_party/issue-descriptions/permissionElementInvalidType.md +0 -5
  160. package/build/src/third_party/issue-descriptions/permissionElementInvalidTypeActivation.md +0 -5
  161. package/build/src/third_party/issue-descriptions/permissionElementLowContrast.md +0 -5
  162. package/build/src/third_party/issue-descriptions/permissionElementNonOpaqueColor.md +0 -5
  163. package/build/src/third_party/issue-descriptions/permissionElementPaddingBottomUnsupported.md +0 -6
  164. package/build/src/third_party/issue-descriptions/permissionElementPaddingRightUnsupported.md +0 -6
  165. package/build/src/third_party/issue-descriptions/permissionElementPermissionsPolicyBlocked.md +0 -5
  166. package/build/src/third_party/issue-descriptions/permissionElementRegistrationFailed.md +0 -5
  167. package/build/src/third_party/issue-descriptions/permissionElementRequestInProgress.md +0 -5
  168. package/build/src/third_party/issue-descriptions/permissionElementSecurityChecksFailed.md +0 -5
  169. package/build/src/third_party/issue-descriptions/permissionElementTypeNotSupported.md +0 -5
  170. package/build/src/third_party/issue-descriptions/permissionElementUntrustedEvent.md +0 -7
  171. package/build/src/third_party/issue-descriptions/placeholderDescriptionForInvisibleIssues.md +0 -3
  172. package/build/src/third_party/issue-descriptions/propertyRuleInvalidNameIssue.md +0 -3
  173. package/build/src/third_party/issue-descriptions/propertyRuleIssue.md +0 -7
  174. package/build/src/third_party/issue-descriptions/selectElementAccessibilityDisallowedOptGroupChild.md +0 -7
  175. package/build/src/third_party/issue-descriptions/selectElementAccessibilityDisallowedSelectChild.md +0 -7
  176. package/build/src/third_party/issue-descriptions/selectElementAccessibilityInteractiveContentAttributesSelectDescendant.md +0 -3
  177. package/build/src/third_party/issue-descriptions/selectElementAccessibilityInteractiveContentLegendChild.md +0 -3
  178. package/build/src/third_party/issue-descriptions/selectElementAccessibilityInteractiveContentOptionChild.md +0 -3
  179. package/build/src/third_party/issue-descriptions/selectElementAccessibilityNonPhrasingContentOptionChild.md +0 -3
  180. package/build/src/third_party/issue-descriptions/selectivePermissionsIntervention.md +0 -7
  181. package/build/src/third_party/issue-descriptions/sharedArrayBuffer.md +0 -7
  182. package/build/src/third_party/issue-descriptions/sharedDictionaryUseErrorCrossOriginNoCorsRequest.md +0 -1
  183. package/build/src/third_party/issue-descriptions/sharedDictionaryUseErrorDictionaryLoadFailure.md +0 -3
  184. package/build/src/third_party/issue-descriptions/sharedDictionaryUseErrorMatchingDictionaryNotUsed.md +0 -3
  185. package/build/src/third_party/issue-descriptions/sharedDictionaryUseErrorUnexpectedContentDictionaryHeader.md +0 -1
  186. package/build/src/third_party/issue-descriptions/sharedDictionaryWriteErrorCossOriginNoCorsRequest.md +0 -1
  187. package/build/src/third_party/issue-descriptions/sharedDictionaryWriteErrorDisallowedBySettings.md +0 -1
  188. package/build/src/third_party/issue-descriptions/sharedDictionaryWriteErrorExpiredResponse.md +0 -3
  189. package/build/src/third_party/issue-descriptions/sharedDictionaryWriteErrorFeatureDisabled.md +0 -3
  190. package/build/src/third_party/issue-descriptions/sharedDictionaryWriteErrorInsufficientResources.md +0 -1
  191. package/build/src/third_party/issue-descriptions/sharedDictionaryWriteErrorInvalidMatchField.md +0 -1
  192. package/build/src/third_party/issue-descriptions/sharedDictionaryWriteErrorInvalidStructuredHeader.md +0 -1
  193. package/build/src/third_party/issue-descriptions/sharedDictionaryWriteErrorInvalidTTLField.md +0 -1
  194. package/build/src/third_party/issue-descriptions/sharedDictionaryWriteErrorNavigationRequest.md +0 -3
  195. package/build/src/third_party/issue-descriptions/sharedDictionaryWriteErrorNoMatchField.md +0 -1
  196. package/build/src/third_party/issue-descriptions/sharedDictionaryWriteErrorNonIntegerTTLField.md +0 -1
  197. package/build/src/third_party/issue-descriptions/sharedDictionaryWriteErrorNonListMatchDestField.md +0 -1
  198. package/build/src/third_party/issue-descriptions/sharedDictionaryWriteErrorNonSecureContext.md +0 -3
  199. package/build/src/third_party/issue-descriptions/sharedDictionaryWriteErrorNonStringIdField.md +0 -1
  200. package/build/src/third_party/issue-descriptions/sharedDictionaryWriteErrorNonStringInMatchDestList.md +0 -1
  201. package/build/src/third_party/issue-descriptions/sharedDictionaryWriteErrorNonStringMatchField.md +0 -1
  202. package/build/src/third_party/issue-descriptions/sharedDictionaryWriteErrorNonTokenTypeField.md +0 -1
  203. package/build/src/third_party/issue-descriptions/sharedDictionaryWriteErrorRequestAborted.md +0 -1
  204. package/build/src/third_party/issue-descriptions/sharedDictionaryWriteErrorShuttingDown.md +0 -1
  205. package/build/src/third_party/issue-descriptions/sharedDictionaryWriteErrorTooLongIdField.md +0 -3
  206. package/build/src/third_party/issue-descriptions/sharedDictionaryWriteErrorUnsupportedType.md +0 -3
  207. package/build/src/third_party/issue-descriptions/sriInvalidSignatureHeader.md +0 -14
  208. package/build/src/third_party/issue-descriptions/sriInvalidSignatureInputHeader.md +0 -15
  209. package/build/src/third_party/issue-descriptions/sriMissingSignatureHeader.md +0 -8
  210. package/build/src/third_party/issue-descriptions/sriMissingSignatureInputHeader.md +0 -7
  211. package/build/src/third_party/issue-descriptions/sriSignatureHeaderValueIsIncorrectLength.md +0 -11
  212. package/build/src/third_party/issue-descriptions/sriSignatureHeaderValueIsNotByteSequence.md +0 -14
  213. package/build/src/third_party/issue-descriptions/sriSignatureHeaderValueIsParameterized.md +0 -15
  214. package/build/src/third_party/issue-descriptions/sriSignatureInputHeaderInvalidComponentName.md +0 -8
  215. package/build/src/third_party/issue-descriptions/sriSignatureInputHeaderInvalidComponentType.md +0 -13
  216. package/build/src/third_party/issue-descriptions/sriSignatureInputHeaderInvalidDerivedComponentParameter.md +0 -4
  217. package/build/src/third_party/issue-descriptions/sriSignatureInputHeaderInvalidHeaderComponentParameter.md +0 -5
  218. package/build/src/third_party/issue-descriptions/sriSignatureInputHeaderInvalidParameter.md +0 -11
  219. package/build/src/third_party/issue-descriptions/sriSignatureInputHeaderKeyIdLength.md +0 -12
  220. package/build/src/third_party/issue-descriptions/sriSignatureInputHeaderMissingLabel.md +0 -6
  221. package/build/src/third_party/issue-descriptions/sriSignatureInputHeaderMissingRequiredParameters.md +0 -8
  222. package/build/src/third_party/issue-descriptions/sriSignatureInputHeaderValueMissingComponents.md +0 -11
  223. package/build/src/third_party/issue-descriptions/sriSignatureInputHeaderValueNotInnerList.md +0 -11
  224. package/build/src/third_party/issue-descriptions/sriValidationFailedIntegrityMismatch.md +0 -10
  225. package/build/src/third_party/issue-descriptions/sriValidationFailedInvalidLength.md +0 -5
  226. package/build/src/third_party/issue-descriptions/sriValidationFailedSignatureExpired.md +0 -6
  227. package/build/src/third_party/issue-descriptions/sriValidationFailedSignatureMismatch.md +0 -11
  228. package/build/src/third_party/issue-descriptions/stylesheetLateImport.md +0 -4
  229. package/build/src/third_party/issue-descriptions/stylesheetRequestFailed.md +0 -3
  230. package/build/src/third_party/issue-descriptions/summaryElementAccessibilityInteractiveContentSummaryDescendant.md +0 -3
  231. package/build/src/third_party/issue-descriptions/unencodedDigestIncorrectDigestLength.md +0 -12
  232. package/build/src/third_party/issue-descriptions/unencodedDigestIncorrectDigestType.md +0 -17
  233. package/build/src/third_party/issue-descriptions/unencodedDigestMalformedDictionary.md +0 -14
  234. package/build/src/third_party/issue-descriptions/unencodedDigestUnknownAlgorithm.md +0 -15
@@ -1,8 +0,0 @@
1
- # Migrate entirely to HTTPS to have cookies sent to same-site subresources
2
-
3
- A cookie was not sent to {PLACEHOLDER_destination} origin from {PLACEHOLDER_origin} context.
4
- Because this cookie would have been sent across schemes on the same site, it was not sent.
5
- This behavior enhances the `SameSite` attribute’s protection of user data from request forgery by network attackers.
6
-
7
- Resolve this issue by migrating your site (as defined by the eTLD+1) entirely to HTTPS.
8
- It is also recommended to mark the cookie with the `Secure` attribute if that is not already the case.
@@ -1,8 +0,0 @@
1
- # Migrate entirely to HTTPS to allow cookies to be set by same-site subresources
2
-
3
- A cookie was not set by {PLACEHOLDER_origin} origin in {PLACEHOLDER_destination} context.
4
- Because this cookie would have been set across schemes on the same site, it was blocked.
5
- This behavior enhances the `SameSite` attribute’s protection of user data from request forgery by network attackers.
6
-
7
- Resolve this issue by migrating your site (as defined by the eTLD+1) entirely to HTTPS.
8
- It is also recommended to mark the cookie with the `Secure` attribute if that is not already the case.
@@ -1,8 +0,0 @@
1
- # Migrate entirely to HTTPS to have cookies sent on same-site requests
2
-
3
- A cookie was not sent to {PLACEHOLDER_destination} origin from {PLACEHOLDER_origin} context on a navigation.
4
- Because this cookie would have been sent across schemes on the same site, it was not sent.
5
- This behavior enhances the `SameSite` attribute’s protection of user data from request forgery by network attackers.
6
-
7
- Resolve this issue by migrating your site (as defined by the eTLD+1) entirely to HTTPS.
8
- It is also recommended to mark the cookie with the `Secure` attribute if that is not already the case.
@@ -1,8 +0,0 @@
1
- # Mark cross-site cookies as Secure to allow them to be sent in cross-site requests
2
-
3
- Cookies marked with `SameSite=None` must also be marked with `Secure` to get sent in cross-site requests.
4
- This behavior protects user data from being sent over an insecure connection.
5
-
6
- Resolve this issue by updating the attributes of the cookie:
7
- * Specify `SameSite=None` and `Secure` if the cookie should be sent in cross-site requests. This enables third-party use.
8
- * Specify `SameSite=Strict` or `SameSite=Lax` if the cookie should not be sent in cross-site requests.
@@ -1,8 +0,0 @@
1
- # Mark cross-site cookies as Secure to allow setting them in cross-site contexts
2
-
3
- Cookies marked with `SameSite=None` must also be marked with `Secure` to allow setting them in a cross-site context.
4
- This behavior protects user data from being sent over an insecure connection.
5
-
6
- Resolve this issue by updating the attributes of the cookie:
7
- * Specify `SameSite=None` and `Secure` if the cookie is intended to be set in cross-site contexts. Note that only cookies sent over HTTPS may use the `Secure` attribute.
8
- * Specify `SameSite=Strict` or `SameSite=Lax` if the cookie should not be set by cross-site requests.
@@ -1,8 +0,0 @@
1
- # Mark cross-site cookies as Secure to allow them to be sent in cross-site requests
2
-
3
- In a future version of the browser, cookies marked with `SameSite=None` must also be marked with `Secure` to get sent in cross-site requests.
4
- This behavior protects user data from being sent over an insecure connection.
5
-
6
- Resolve this issue by updating the attributes of the cookie:
7
- * Specify `SameSite=None` and `Secure` if the cookie should be sent in cross-site requests. This enables third-party use.
8
- * Specify `SameSite=Strict` or `SameSite=Lax` if the cookie should not be sent in cross-site requests.
@@ -1,8 +0,0 @@
1
- # Mark cross-site cookies as Secure to allow setting them in cross-site contexts
2
-
3
- In a future version of the browser, cookies marked with `SameSite=None` must also be marked with `Secure` to allow setting them in a cross-site context.
4
- This behavior protects user data from being sent over an insecure connection.
5
-
6
- Resolve this issue by updating the attributes of the cookie:
7
- * Specify `SameSite=None` and `Secure` if the cookie is intended to be set in cross-site contexts. Note that only cookies sent over HTTPS may use the `Secure` attribute.
8
- * Specify `SameSite=Strict` or `SameSite=Lax` if the cookie should not be set by cross-site requests.
@@ -1,9 +0,0 @@
1
- # Indicate whether to send a cookie in a cross-site request by specifying its SameSite attribute
2
-
3
- Because a cookie’s `SameSite` attribute was not set or is invalid, it defaults to `SameSite=Lax`,
4
- which will prevent the cookie from being sent in a cross-site request in a future version of the browser.
5
- This behavior protects user data from accidentally leaking to third parties and cross-site request forgery.
6
-
7
- Resolve this issue by updating the attributes of the cookie:
8
- * Specify `SameSite=None` and `Secure` if the cookie should be sent in cross-site requests. This enables third-party use.
9
- * Specify `SameSite=Strict` or `SameSite=Lax` if the cookie should not be sent in cross-site requests.
@@ -1,9 +0,0 @@
1
- # Indicate whether a cookie is intended to be set in cross-site context by specifying its SameSite attribute
2
-
3
- Because a cookie’s `SameSite` attribute was not set or is invalid, it defaults to `SameSite=Lax`,
4
- which will prevents the cookie from being set in a cross-site context in a future version of the browser.
5
- This behavior protects user data from accidentally leaking to third parties and cross-site request forgery.
6
-
7
- Resolve this issue by updating the attributes of the cookie:
8
- * Specify `SameSite=None` and `Secure` if the cookie is intended to be set in cross-site contexts. Note that only cookies sent over HTTPS may use the `Secure` attribute.
9
- * Specify `SameSite=Strict` or `SameSite=Lax` if the cookie should not be set by cross-site requests.
@@ -1,8 +0,0 @@
1
- # Migrate entirely to HTTPS to continue having cookies sent to same-site subresources
2
-
3
- A cookie is being sent to {PLACEHOLDER_destination} origin from {PLACEHOLDER_origin} context.
4
- Because this cookie is being sent across schemes on the same site, it will not be sent in a future version of Chrome.
5
- This behavior enhances the `SameSite` attribute’s protection of user data from request forgery by network attackers.
6
-
7
- Resolve this issue by migrating your site (as defined by the eTLD+1) entirely to HTTPS.
8
- It is also recommended to mark the cookie with the `Secure` attribute if that is not already the case.
@@ -1,8 +0,0 @@
1
- # Migrate entirely to HTTPS to continue allowing cookies to be set by same-site subresources
2
-
3
- A cookie is being set by {PLACEHOLDER_origin} origin in {PLACEHOLDER_destination} context.
4
- Because this cookie is being set across schemes on the same site, it will be blocked in a future version of Chrome.
5
- This behavior enhances the `SameSite` attribute’s protection of user data from request forgery by network attackers.
6
-
7
- Resolve this issue by migrating your site (as defined by the eTLD+1) entirely to HTTPS.
8
- It is also recommended to mark the cookie with the `Secure` attribute if that is not already the case.
@@ -1,8 +0,0 @@
1
- # Migrate entirely to HTTPS to continue having cookies sent on same-site requests
2
-
3
- A cookie is being sent to {PLACEHOLDER_destination} origin from {PLACEHOLDER_origin} context on a navigation.
4
- Because this cookie is being sent across schemes on the same site, it will not be sent in a future version of Chrome.
5
- This behavior enhances the `SameSite` attribute’s protection of user data from request forgery by network attackers.
6
-
7
- Resolve this issue by migrating your site (as defined by the eTLD+1) entirely to HTTPS.
8
- It is also recommended to mark the cookie with the `Secure` attribute if that is not already the case.
@@ -1,7 +0,0 @@
1
- # Ensure that the attribution registration context is secure
2
-
3
- This page tried to register a source or trigger using the Attribution Reporting
4
- API but failed because the page that initiated the registration was not secure.
5
-
6
- The registration context must use HTTPS unless it is `localhost` or
7
- `127.0.0.1`.
@@ -1,5 +0,0 @@
1
- # Ensure that the `Attribution-Reporting-Info` header is valid
2
-
3
- This page tried to register a source or trigger using the Attribution Reporting
4
- API but failed because an `Attribution-Reporting-Info` response header was
5
- invalid.
@@ -1,5 +0,0 @@
1
- # Ensure that the `Attribution-Reporting-Register-OS-Source` header is valid
2
-
3
- This page tried to register an OS source using the Attribution Reporting API
4
- but failed because an `Attribution-Reporting-Register-OS-Source` response
5
- header was invalid.
@@ -1,5 +0,0 @@
1
- # Ensure that the `Attribution-Reporting-Register-OS-Trigger` header is valid
2
-
3
- This page tried to register an OS trigger using the Attribution Reporting API
4
- but failed because an `Attribution-Reporting-Register-OS-Trigger` response
5
- header was invalid.
@@ -1,5 +0,0 @@
1
- # Ensure that the `Attribution-Reporting-Register-Source` header is valid
2
-
3
- This page tried to register a source using the Attribution Reporting API but
4
- failed because an `Attribution-Reporting-Register-Source` response header was
5
- invalid.
@@ -1,5 +0,0 @@
1
- # Ensure that the `Attribution-Reporting-Register-Trigger` header is valid
2
-
3
- This page tried to register a trigger using the Attribution Reporting API but
4
- failed because an `Attribution-Reporting-Register-Trigger` response header was
5
- invalid.
@@ -1,5 +0,0 @@
1
- # Ensure that multiple sources associated with the same navigation have the same attribution scopes
2
-
3
- The page tried to register a source using Attribution Reporting API, but the
4
- source was rejected because a previous source associated with the same
5
- navigation and reporting origin used a different set of attribution scopes.
@@ -1,6 +0,0 @@
1
- # Ensure that navigation-source registrations are initiated by a user gesture
2
-
3
- This page tried to register a navigation source using the Attribution Reporting
4
- API but failed because the navigation was not initiated by a user gesture.
5
- Compared to event sources, navigation sources can release more cross-site
6
- information, and are therefore subject to this additional privacy control.
@@ -1,5 +0,0 @@
1
- # OS attribution source expected but corresponding header not found
2
-
3
- The page indicated, via the `Attribution-Reporting-Info` header, that it
4
- intended to register an OS source using the Attribution Reporting API, but the
5
- corresponding `Attribution-Reporting-Register-OS-Source` header was missing.
@@ -1,5 +0,0 @@
1
- # OS attribution trigger expected but corresponding header not found
2
-
3
- The page indicated, via the `Attribution-Reporting-Info` header, that it
4
- intended to register an OS trigger using the Attribution Reporting API, but the
5
- corresponding `Attribution-Reporting-Register-OS-Trigger` header was missing.
@@ -1,5 +0,0 @@
1
- # Web attribution source expected but corresponding header not found
2
-
3
- The page indicated, via the `Attribution-Reporting-Info` header, that it
4
- intended to register a web source using the Attribution Reporting API, but the
5
- corresponding `Attribution-Reporting-Register-Source` header was missing.
@@ -1,5 +0,0 @@
1
- # Web attribution trigger expected but corresponding header not found
2
-
3
- The page indicated, via the `Attribution-Reporting-Info` header, that it
4
- intended to register a web trigger using the Attribution Reporting API, but the
5
- corresponding `Attribution-Reporting-Register-Trigger` header was missing.
@@ -1,4 +0,0 @@
1
- # No web or OS support for Attribution Reporting
2
-
3
- The page tried to send an attributionsrc request, but there was neither web nor
4
- OS support for the Attribution Reporting API, so the request was skipped.
@@ -1,18 +0,0 @@
1
- # An attribution OS source registration was ignored because the request was ineligible
2
-
3
- This page tried to register an OS source using the Attribution Reporting API,
4
- but the request was ineligible to do so, so the OS source registration was
5
- ignored.
6
-
7
- A request is eligible for OS source registration if it has all of the following:
8
-
9
- - An `Attribution-Reporting-Eligible` header whose value is a structured
10
- dictionary that contains the key `navigation-source` or `event-source`
11
- - An `Attribution-Reporting-Support` header whose value is a structured
12
- dictionary that contains the key `os`
13
-
14
- Otherwise, any `Attribution-Reporting-Register-OS-Source` response header will
15
- be ignored.
16
-
17
- Additionally, a single HTTP redirect chain may register only all sources or all
18
- triggers, not a combination of both.
@@ -1,19 +0,0 @@
1
- # An attribution OS trigger registration was ignored because the request was ineligible
2
-
3
- This page tried to register an OS trigger using the Attribution Reporting API,
4
- but the request was ineligible to do so, so the OS trigger registration was
5
- ignored.
6
-
7
- A request is eligible for OS trigger registration if it has all of the following:
8
-
9
- - No `Attribution-Reporting-Eligible` header or an
10
- `Attribution-Reporting-Eligible` header whose value is a structured
11
- dictionary that contains the key `trigger`
12
- - An `Attribution-Reporting-Support` header whose value is a structured
13
- dictionary that contains the key `os`
14
-
15
- Otherwise, any `Attribution-Reporting-Register-OS-Trigger` response header will
16
- be ignored.
17
-
18
- Additionally, a single HTTP redirect chain may register only all sources or all
19
- triggers, not a combination of both.
@@ -1,8 +0,0 @@
1
- # The Attribution Reporting API can’t be used because Permissions Policy has been disabled
2
-
3
- This page tried to use the Attribution Reporting API but failed because the
4
- `attribution-reporting` Permission Policy was explicitly disabled.
5
-
6
- This API is currently enabled by default for top-level and cross-origin frames,
7
- but it is still possible for frames to have the permission disabled by their
8
- parent, e.g. with `<iframe src="…" allow="attribution-reporting 'none'">`.
@@ -1,9 +0,0 @@
1
- # Ensure that attribution responses contain either source or trigger, not both
2
-
3
- This page tried to register a source and a trigger in the same HTTP response
4
- using the Attribution Reporting API, which is prohibited.
5
-
6
- The corresponding request was eligible to register either a source or a
7
- trigger, but the response may only set either the
8
- `Attribution-Reporting-Register-Source` header or the
9
- `Attribution-Reporting-Register-Trigger` header, not both.
@@ -1,13 +0,0 @@
1
- # An attribution source registration was ignored because the request was ineligible
2
-
3
- This page tried to register a source using the Attribution Reporting API, but
4
- the request was ineligible to do so, so the source registration was ignored.
5
-
6
- A request is eligible for source registration if it has an
7
- `Attribution-Reporting-Eligible` header whose value is a structured dictionary
8
- that contains the key `navigation-source` or `event-source`. If the header is
9
- absent or does not contain one of those keys, any
10
- `Attribution-Reporting-Register-Source` response header will be ignored.
11
-
12
- Additionally, a single HTTP redirect chain may register only all sources or all
13
- triggers, not a combination of both.
@@ -1,12 +0,0 @@
1
- # An attribution trigger registration was ignored because the request was ineligible
2
-
3
- This page tried to register a trigger using the Attribution Reporting API, but
4
- the request was ineligible to do so, so the trigger registration was ignored.
5
-
6
- A request is eligible for trigger registration if it has an
7
- `Attribution-Reporting-Eligible` header whose value is a structured dictionary
8
- that contains the key `trigger`, or if the header is absent. Otherwise, any
9
- `Attribution-Reporting-Register-Trigger` response header will be ignored.
10
-
11
- Additionally, a single HTTP redirect chain may register only all sources or all
12
- triggers, not a combination of both.
@@ -1,10 +0,0 @@
1
- # Ensure that attribution reporting origins are trustworthy
2
-
3
- This page tried to register a source or trigger using the Attribution Reporting
4
- API but failed because the reporting origin was not potentially trustworthy.
5
-
6
- The reporting origin is typically the server that sets the
7
- `Attribution-Reporting-Register-Source` or
8
- `Attribution-Reporting-Register-Trigger` header.
9
-
10
- The reporting origin must use HTTPS unless it is `localhost` or `127.0.0.1`.
@@ -1,11 +0,0 @@
1
- # Ensure that attribution responses contain either web or OS headers, not both
2
-
3
- This page included web and OS Attribution Reporting API headers in the same
4
- HTTP response, which is prohibited.
5
-
6
- The response may set at most one of the following headers:
7
-
8
- - `Attribution-Reporting-Register-OS-Source`
9
- - `Attribution-Reporting-Register-OS-Trigger`
10
- - `Attribution-Reporting-Register-Source`
11
- - `Attribution-Reporting-Register-Trigger`
@@ -1,3 +0,0 @@
1
- # Chrome may soon delete state for intermediate websites in a recent navigation chain
2
-
3
- In a recent navigation chain, one or more websites without prior user interaction were visited. If these websites don't get such an interaction soon, Chrome will delete their state.
@@ -1,4 +0,0 @@
1
- # Client Hint meta tag contained invalid origin
2
-
3
- Items in the delegate-ch meta tag allow list must be valid origins.
4
- No special values (e.g. self, none, and *) are permitted.
@@ -1,4 +0,0 @@
1
- # Client Hint meta tag modified by javascript
2
-
3
- Only delegate-ch meta tags in the original HTML sent from the server
4
- are respected. Any injected via javascript (or other means) are ignored.
@@ -1,12 +0,0 @@
1
- # An item in the `Connection-Allowlist` header is invalid.
2
-
3
- Each item in the `Connection-Allowlist`'s header's [Inner List](sfInnerList)
4
- must be a [String](sfString) representing a [URL Pattern](urlPatternSpec), or
5
- the [Token](sfToken) `response-origin`.
6
-
7
- For example, the following header allows connections to (only)
8
- `https://example.com/` and the origin from which the response was delivered:
9
-
10
- ```
11
- Connection-Allowlist: ("https://example.com" response-origin)
12
- ```
@@ -1,12 +0,0 @@
1
- # The `Connection-Allowlist` header is not formatted as a Structured Field List.
2
-
3
- Responses' `Connection-Allowlist` header should be formatted as a [List](sfList)
4
- containing a single [Inner List](sfInnerList) that declares the allowed set of
5
- [URL Patterns](urlPatternSpec) for a given context.
6
-
7
- For example, the following header allows connections to (only)
8
- `https://example.com/`:
9
-
10
- ```
11
- Connection-Allowlist: ("https://example.com")
12
- ```
@@ -1,8 +0,0 @@
1
- # An item in the `Connection-Allowlist` header is not a valid URL pattern.
2
-
3
- Each item in the `Connection-Allowlist` header must be a valid
4
- [URL Pattern](urlPatternSpec) that can be used to match against the request's
5
- origin.
6
-
7
- Note that our current implementation does not allow regular expressions to be
8
- used as part of the pattern.
@@ -1,12 +0,0 @@
1
- # An item in the `Connection-Allowlist` header is not an Inner List.
2
-
3
- Responses' `Connection-Allowlist` header should be formatted as a [List](sfList)
4
- containing a single [Inner List](sfInnerList) that declares the allowed set of
5
- [URL Patterns](urlPatternSpec) for a given context.
6
-
7
- For example, the following header allows connections to (only)
8
- `https://example.com/`:
9
-
10
- ```
11
- Connection-Allowlist: ("https://example.com")
12
- ```
@@ -1,7 +0,0 @@
1
- # `Connection-Allowlist` has multiple items.
2
-
3
- Responses' `Connection-Allowlist` header should be formatted as a [List](sfList)
4
- containing a single [Inner List](sfInnerList) that declares the allowed set of
5
- [URL Patterns](urlPatternSpec) for a given context. This response was a
6
- [List](sfList) containing more than one item: all but the first have been
7
- ignored.
@@ -1,10 +0,0 @@
1
- # The `report-to` parameter in the `Connection-Allowlist` header is not a token.
2
-
3
- If provided, the `report-to` parameter must be a [Token](sfToken)
4
- naming a reporting endpoint.
5
-
6
- For example:
7
-
8
- ```
9
- Connection-Allowlist: ("https://example.com");report-to=endpoint
10
- ```
@@ -1,12 +0,0 @@
1
- # Cookie is blocked due to a cross-site redirect chain
2
-
3
- The cookie was blocked because the URL redirect chain was not fully same-site,
4
- meaning the final request was treated as a cross-site request.
5
- Like other cross-site requests, this blocks cookies with `SameSite=Lax` or
6
- `SameSite=Strict`.
7
-
8
- For example: If site A redirects to site B which then redirects back to site A,
9
- the final request to site A will be a cross-site request.
10
-
11
- If this behavior is causing breakage, please file a bug report with the link
12
- below.
@@ -1,4 +0,0 @@
1
- # Third-party cookie blocked within the same Related Website Set
2
-
3
- A cookie embedded by a site in the top-level page's Related Website Set was blocked
4
- by third-party cookie blocking.
@@ -1,11 +0,0 @@
1
- # Ensure cookie `Domain` attribute values only contain ASCII characters
2
-
3
- `Domain` attributes in cookies are restricted to the ASCII character set. Any
4
- cookies that contain characters outside of the ASCII range in their `Domain`
5
- attribute will be ignored.
6
-
7
- To resolve this issue, you need to remove all non-ASCII characters from the
8
- `Domain` attribute of the affected cookies.
9
-
10
- If your site has an internationalized domain name (IDN), you should use
11
- [punycode](punycodeReference) representation for the `Domain` attribute instead.
@@ -1,8 +0,0 @@
1
- # Cookie was not sent due to port mismatch
2
-
3
- Cookies can only be accessed by origins that share the same port as the origin
4
- that initially set the cookie.
5
-
6
- If this cookie is required for the request, the cookie will need to be set by an
7
- origin with the same port as the request. Alternatively, you can utilize the
8
- Domain attribute, which allows access to a cookie with a mismatched port.
@@ -1,7 +0,0 @@
1
- # Cookie was not sent due to scheme mismatch
2
-
3
- The cookie can only be accessed by origins that share the same scheme as
4
- the origin that initially set it.
5
-
6
- If this cookie is required for the request, the cookie will need to be set
7
- by an origin with the same scheme as the request.
@@ -1,6 +0,0 @@
1
- # Reading third-party cookie is blocked
2
-
3
- Cookies with the `SameSite=None; Secure` and not `Partitioned` attributes that operate in cross-site contexts are third-party cookies.
4
- Third-party cookies are restricted for this browser either because of Chrome flags or browser configuration.
5
-
6
- Learn more from the linked article about preparing your site to avoid potential breakage due to this.
@@ -1,6 +0,0 @@
1
- # Setting third-party cookie is blocked
2
-
3
- Cookies with the `SameSite=None; Secure` and not `Partitioned` attributes that operate in cross-site contexts are third-party cookies.
4
- Third-party cookies are restricted for this browser either because of Chrome flags or browser configuration.
5
-
6
- Learn more from the linked article about preparing your site to avoid potential breakage due to this.
@@ -1,11 +0,0 @@
1
- # Ensure cookie `Domain` attribute values only contain ASCII characters
2
-
3
- `Domain` attributes in cookies are restricted to the ASCII character set. Any
4
- cookies that contain characters outside of the ASCII range in their `Domain`
5
- attribute will be ignored in the future.
6
-
7
- To resolve this issue, you need to remove all non-ASCII characters from the
8
- `Domain` attribute of the affected cookies.
9
-
10
- If your site has an internationalized domain name (IDN), you should use
11
- [punycode](punycodeReference) representation for the `Domain` attribute instead.
@@ -1,4 +0,0 @@
1
- # Third-party websites are allowed to read cookies on this page
2
-
3
- One or more websites are allowed to bypass user settings to read third-party cookies on this page. Web developers should take steps to remove these reads without disrupting user experience. To forcefully block these third-party cookies, update [user settings](manageCookiesHelpPage).
4
- {PLACEHOLDER_topleveloptout}
@@ -1,4 +0,0 @@
1
- # Third-party websites are allowed to set cookies on this page
2
-
3
- One or more websites are allowed to bypass user settings to set third-party cookies on this page. Web developers should take steps to remove these sets without disrupting user experience. To forcefully block these third-party cookies, update [user settings](manageCookiesHelpPage).
4
- {PLACEHOLDER_topleveloptout}
@@ -1,6 +0,0 @@
1
- # Reading cookie in cross-site context may be impacted on Chrome
2
-
3
- Cookies with the `SameSite=None; Secure` and not `Partitioned` attributes that operate in cross-site contexts are third-party cookies.
4
- Chrome is moving towards a new experience that allows users to choose to browse without third-party cookies.
5
-
6
- Learn more from the linked article about preparing your site to avoid potential breakage.
@@ -1,6 +0,0 @@
1
- # Setting cookie in cross-site context may be impacted on Chrome
2
-
3
- Cookies with the `SameSite=None; Secure` and not `Partitioned` attributes that operate in cross-site contexts are third-party cookies.
4
- Chrome is moving towards a new experience that allows users to choose to browse without third-party cookies
5
-
6
- Learn more from the linked article about preparing your site to avoid potential breakage.
@@ -1,6 +0,0 @@
1
- # Ensure CORS requests include credentials only when allowed
2
-
3
- A cross-origin resource sharing (CORS) request was blocked because it was configured to include credentials but the `Access-Control-Allow-Credentials` response header of the request or the associated preflight request was not set to `true`.
4
-
5
- To fix this issue, ensure that resources that expect credentialed CORS requests set the `Access-Control-Allow-Credentials` header to `true`.
6
- Note that this requires the `Access-Control-Allow-Origin` header to not be a wildcard `*`.
@@ -1,7 +0,0 @@
1
- # Ensure CORS requests are made on supported schemes
2
-
3
- A cross-origin resource sharing (CORS) request was blocked because the scheme of the request's URL doesn't support CORS.
4
-
5
- To fix this issue, ensure all CORS request URLs specify a supported scheme, e.g. most commonly https://.
6
-
7
- Note that if an opaque response is sufficient, then for some schemes the request's mode can be set to `no-cors` to fetch the resource with CORS disabled; that way the scheme doesn't need to support CORS, but the response content is inaccessible (opaque).
@@ -1,7 +0,0 @@
1
- # Ensure only same-origin resources are fetched with same-origin request mode
2
-
3
- A cross-origin resource sharing (CORS) request to a cross-origin resource was blocked because the request mode was set to `same-origin`.
4
-
5
- To fix this issue, ensure that only same-origin resources are fetched with the `same-origin` request mode. If you need to fetch a cross-origin resource, use a request mode such as `cors`.
6
-
7
- Note that if an opaque response is sufficient, the request's mode can be set to `no-cors` to fetch the resource with CORS disabled; that way CORS headers are not required but the response content is inaccessible (opaque).
@@ -1,5 +0,0 @@
1
- # Ensure CORS request includes only allowed headers
2
-
3
- A cross-origin resource sharing (CORS) request was blocked because it contained request headers that were neither CORS-safelisted (`Accept`, `Accept-Language`, `Content-Language`, `Content-Type`) nor allowed by the `Access-Control-Allow-Headers` response header of the associated preflight request.
4
-
5
- To fix this issue, include the additional request headers you want to use in the `Access-Control-Allow-Headers` response header of the associated preflight request.
@@ -1,7 +0,0 @@
1
- # Ensure CORS response header values are valid
2
-
3
- A cross-origin resource sharing (CORS) request was blocked because of invalid or missing response headers of the request or the associated [preflight request](issueCorsPreflightRequest).
4
-
5
- To fix this issue, ensure the response to the CORS request and/or the associated [preflight request](issueCorsPreflightRequest) are not missing headers and use valid header values.
6
-
7
- Note that if an opaque response is sufficient, the request's mode can be set to `no-cors` to fetch the resource with CORS disabled; that way CORS headers are not required but the response content is inaccessible (opaque).
@@ -1,19 +0,0 @@
1
- # Ensure that local network requests are compatible with restrictions
2
-
3
- A site requested a resource from a network that it could only access because of
4
- its users' privileged network position.
5
-
6
- These requests expose devices and servers to the internet, increasing the risk
7
- of a cross-site request forgery (CSRF) attack and/or information leakage.
8
-
9
- To mitigate these risks, Chrome is requiring the user grant explicit
10
- permission before a site can make local network requests. Local network requests
11
- are those that go to either private IP addresses, .local domains, or loopback
12
- addresses. Additionally, Chrome will block local network requests (both
13
- subframes and subresources) when initiated from non-secure contexts.
14
-
15
- If the user explicitly grants the permission, the site can make local network
16
- requests over HTTP for hostnames that are private IP addresses, .local
17
- hostnames, or to localhost. Sites can also set the `targetAddressSpace` fetch
18
- option to `private` or `local` to mark requests as being local network requests,
19
- which will allow them to be made over HTTP.
@@ -1,5 +0,0 @@
1
- # Ensure CORS request uses allowed method
2
-
3
- A cross-origin resource sharing (CORS) request was blocked because it neither uses one of the CORS-safelisted methods (`GET`, `HEAD`, `POST`) nor was the request method explicitly allowed by the `Access-Control-Allow-Methods` response header of the associated [preflight request](issueCorsPreflightRequest).
4
-
5
- To fix this issue, include the request method in the `Access-Control-Allow-Methods` header of the associated preflight request.
@@ -1,5 +0,0 @@
1
- # Ensure no-cors requests configure redirect mode follow
2
-
3
- A cross-origin resource sharing (CORS) request was blocked because it was configured to use request mode `no-cors` but did not use the redirect mode `follow`.
4
-
5
- To fix this issue, ensure that whenever the request mode `no-cors` is set then the redirect mode is set to `follow`.