opera-devtools-mcp 0.2.3 → 0.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.
- package/README.md +104 -7
- package/build/src/McpContext.js +365 -365
- package/build/src/McpPage.js +475 -48
- package/build/src/McpResponse.js +462 -288
- package/build/src/SlimMcpResponse.js +1 -1
- package/build/src/TextSnapshot.js +101 -22
- package/build/src/ToolHandler.js +142 -20
- package/build/src/bin/check-latest-version.js +27 -1
- package/build/src/bin/chrome-devtools-cli-options.js +573 -10
- package/build/src/bin/chrome-devtools-mcp-cli-options.js +119 -32
- package/build/src/bin/chrome-devtools-mcp-main.js +50 -7
- package/build/src/bin/chrome-devtools-mcp.js +7 -4
- package/build/src/bin/chrome-devtools.js +57 -14
- package/build/src/bin/opera-devtools-cli-options.js +3 -829
- package/build/src/bin/opera-devtools-mcp-cli-options.js +3 -348
- package/build/src/bin/opera-devtools-mcp-main.js +3 -37
- package/build/src/bin/opera-devtools-mcp.js +4 -19
- package/build/src/bin/opera-devtools.js +4 -185
- package/build/src/browser.js +45 -5
- package/build/src/{PageCollector.js → collectors/PageCollector.js} +64 -133
- package/build/src/collectors/ServiceWorkerCollector.js +171 -0
- package/build/src/daemon/client.js +75 -17
- package/build/src/daemon/daemon.js +92 -30
- package/build/src/daemon/utils.js +24 -8
- package/build/src/{DevtoolsUtils.js → devtools/DevtoolsUtils.js} +94 -88
- package/build/src/devtools/McpHostBindingAdapter.js +165 -0
- package/build/src/{issue-descriptions.js → devtools/issueDescriptions.js} +8 -6
- package/build/src/formatters/ConsoleFormatter.js +44 -11
- package/build/src/formatters/HeapSnapshotFormatter.js +140 -9
- package/build/src/formatters/IssueFormatter.js +7 -7
- package/build/src/formatters/NetworkFormatter.js +10 -8
- package/build/src/index.js +101 -232
- package/build/src/opera/branding.js +34 -0
- package/build/src/opera/browserFlags.js +85 -0
- package/build/src/opera/browserLaunch.js +52 -0
- package/build/src/opera/policy.js +50 -0
- package/build/src/opera/serviceWorkerRetry.js +37 -0
- package/build/src/opera/toolHandlerHooks.js +39 -0
- package/build/src/{tools → opera/tools}/opera.js +9 -21
- package/build/src/processors/HeapSnapshotManager.js +258 -0
- package/build/src/{trace-processing/parse.js → processors/PerformanceTrace.js} +9 -9
- package/build/src/telemetry/ClearcutLogger.js +12 -119
- package/build/src/telemetry/WatchdogClient.js +5 -5
- package/build/src/telemetry/errors.js +1 -1
- package/build/src/telemetry/flagUtils.js +6 -6
- package/build/src/telemetry/{toolMetricsUtils.js → metricsRegistry.js} +4 -11
- package/build/src/telemetry/persistence.js +3 -3
- package/build/src/telemetry/transformation.js +184 -0
- package/build/src/telemetry/watchdog/ClearcutSender.js +11 -11
- package/build/src/telemetry/watchdog/main.js +6 -6
- package/build/src/third_party/THIRD_PARTY_NOTICES +3493 -0
- package/build/src/third_party/bundled-packages.json +9 -0
- package/build/src/third_party/devtools-formatter-worker.js +15340 -7
- package/build/src/third_party/devtools-heap-snapshot-worker.js +10337 -7
- package/build/src/third_party/index.js +179960 -26
- package/build/src/third_party/issue-descriptions/CoepCorpNotSameOrigin.md +2 -2
- package/build/src/third_party/issue-descriptions/CoepCorpNotSameOriginAfterDefaultedToSameOriginByCoep.md +3 -3
- package/build/src/third_party/issue-descriptions/CoepCorpNotSameSite.md +2 -2
- package/build/src/third_party/issue-descriptions/CoepFrameResourceNeedsCoepHeader.md +1 -1
- package/build/src/third_party/issue-descriptions/CompatibilityModeQuirks.md +1 -1
- package/build/src/third_party/issue-descriptions/CookieAttributeValueExceedsMaxSize.md +2 -2
- package/build/src/third_party/issue-descriptions/LowTextContrast.md +1 -1
- package/build/src/third_party/issue-descriptions/SameSiteNoneInsecureErrorRead.md +1 -1
- package/build/src/third_party/issue-descriptions/SameSiteNoneInsecureErrorSet.md +1 -1
- package/build/src/third_party/issue-descriptions/SameSiteNoneInsecureWarnRead.md +1 -1
- package/build/src/third_party/issue-descriptions/SameSiteNoneInsecureWarnSet.md +1 -1
- package/build/src/third_party/issue-descriptions/SameSiteUnspecifiedLaxAllowUnsafeRead.md +3 -3
- package/build/src/third_party/issue-descriptions/SameSiteUnspecifiedLaxAllowUnsafeSet.md +3 -3
- package/build/src/third_party/issue-descriptions/bounceTrackingMitigations.md +1 -1
- package/build/src/third_party/issue-descriptions/connectionAllowlistEmbeddingRequirementNotSatisfied.md +26 -0
- package/build/src/third_party/issue-descriptions/connectionAllowlistIFrameAttributeLoosensEmbeddingRequirement.md +19 -0
- package/build/src/third_party/issue-descriptions/connectionAllowlistInvalidAllowConnectionAllowlistFrom.md +21 -0
- package/build/src/third_party/issue-descriptions/connectionAllowlistInvalidAllowlistItemType.md +2 -2
- package/build/src/third_party/issue-descriptions/connectionAllowlistInvalidHeader.md +2 -2
- package/build/src/third_party/issue-descriptions/connectionAllowlistInvalidUrlPattern.md +3 -3
- package/build/src/third_party/issue-descriptions/connectionAllowlistItemNotInnerList.md +2 -2
- package/build/src/third_party/issue-descriptions/connectionAllowlistMoreThanOneList.md +2 -2
- package/build/src/third_party/issue-descriptions/connectionAllowlistReportingEndpointNotToken.md +1 -1
- package/build/src/third_party/issue-descriptions/cookieCrossSiteRedirectDowngrade.md +3 -3
- package/build/src/third_party/issue-descriptions/cookieExcludeBlockedWithinRelatedWebsiteSet.md +1 -1
- package/build/src/third_party/issue-descriptions/cookieExcludePortMismatch.md +1 -1
- package/build/src/third_party/issue-descriptions/cookieExcludeSchemeMismatch.md +1 -1
- package/build/src/third_party/issue-descriptions/cookieExcludeThirdPartyPhaseoutSet.md +1 -1
- package/build/src/third_party/issue-descriptions/cookieWarnThirdPartyPhaseoutRead.md +1 -1
- package/build/src/third_party/issue-descriptions/corsAllowCredentialsRequired.md +1 -1
- package/build/src/third_party/issue-descriptions/corsDisabledScheme.md +2 -2
- package/build/src/third_party/issue-descriptions/corsDisallowedByMode.md +2 -2
- package/build/src/third_party/issue-descriptions/corsHeaderDisallowedByPreflightResponse.md +1 -1
- package/build/src/third_party/issue-descriptions/corsInvalidHeaderValues.md +3 -3
- package/build/src/third_party/issue-descriptions/corsLocalNetworkAccessPermissionDenied.md +1 -1
- package/build/src/third_party/issue-descriptions/corsMethodDisallowedByPreflightResponse.md +1 -1
- package/build/src/third_party/issue-descriptions/corsNoCorsRedirectModeNotFollow.md +1 -1
- package/build/src/third_party/issue-descriptions/corsOriginMismatch.md +3 -3
- package/build/src/third_party/issue-descriptions/corsPreflightResponseInvalid.md +2 -2
- package/build/src/third_party/issue-descriptions/corsRedirectContainsCredentials.md +3 -3
- package/build/src/third_party/issue-descriptions/corsWildcardOriginNotAllowed.md +4 -3
- package/build/src/third_party/issue-descriptions/cspEvalViolation.md +4 -4
- package/build/src/third_party/issue-descriptions/cspInlineViolation.md +2 -2
- package/build/src/third_party/issue-descriptions/cspTrustedTypesPolicyViolation.md +2 -2
- package/build/src/third_party/issue-descriptions/cspTrustedTypesSinkViolation.md +4 -4
- package/build/src/third_party/issue-descriptions/cspURLViolation.md +4 -4
- package/build/src/third_party/issue-descriptions/emailVerificationRequestAccountsEmptyList.md +1 -0
- package/build/src/third_party/issue-descriptions/emailVerificationRequestAccountsHttpNotFound.md +1 -0
- package/build/src/third_party/issue-descriptions/emailVerificationRequestAccountsInvalidContentType.md +1 -0
- package/build/src/third_party/issue-descriptions/emailVerificationRequestAccountsInvalidResponse.md +1 -0
- package/build/src/third_party/issue-descriptions/emailVerificationRequestAccountsNoResponse.md +1 -0
- package/build/src/third_party/issue-descriptions/emailVerificationRequestDnsFetchFailed.md +1 -0
- package/build/src/third_party/issue-descriptions/emailVerificationRequestDnsInvalidRecord.md +1 -0
- package/build/src/third_party/issue-descriptions/emailVerificationRequestEmailVerificationWellKnownHttpNotFound.md +1 -0
- package/build/src/third_party/issue-descriptions/emailVerificationRequestEmailVerificationWellKnownInvalidContentType.md +1 -0
- package/build/src/third_party/issue-descriptions/emailVerificationRequestEmailVerificationWellKnownInvalidResponse.md +1 -0
- package/build/src/third_party/issue-descriptions/emailVerificationRequestEmailVerificationWellKnownNoResponse.md +1 -0
- package/build/src/third_party/issue-descriptions/emailVerificationRequestInvalidEmail.md +1 -0
- package/build/src/third_party/issue-descriptions/emailVerificationRequestJwksHttpNotFound.md +1 -0
- package/build/src/third_party/issue-descriptions/emailVerificationRequestJwksInvalidResponse.md +1 -0
- package/build/src/third_party/issue-descriptions/emailVerificationRequestKeyBindingSigningFailed.md +1 -0
- package/build/src/third_party/issue-descriptions/emailVerificationRequestRpOriginIsOpaque.md +1 -0
- package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenHttpNotFound.md +1 -0
- package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenInvalidContentType.md +1 -0
- package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenInvalidResponse.md +1 -0
- package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenInvalidSdJwt.md +1 -0
- package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenMalformedSdJwt.md +1 -0
- package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenNoResponse.md +1 -0
- package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenVerificationKbInvalidAudience.md +1 -0
- package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenVerificationKbInvalidIssuedAt.md +1 -0
- package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenVerificationKbInvalidNonce.md +1 -0
- package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenVerificationKbInvalidSdHash.md +1 -0
- package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenVerificationKbInvalidTyp.md +1 -0
- package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenVerificationKbMissingAud.md +1 -0
- package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenVerificationKbMissingCnf.md +1 -0
- package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenVerificationKbMissingIat.md +1 -0
- package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenVerificationKbMissingNonce.md +1 -0
- package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenVerificationKbMissingSdHash.md +1 -0
- package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenVerificationKbSignatureFailed.md +1 -0
- package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenVerificationSdJwtInvalidEmail.md +1 -0
- package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenVerificationSdJwtInvalidEmailVerified.md +1 -0
- package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenVerificationSdJwtInvalidHolderKey.md +1 -0
- package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenVerificationSdJwtInvalidIssuedAt.md +1 -0
- package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenVerificationSdJwtInvalidIssuer.md +1 -0
- package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenVerificationSdJwtJwksMissingKeys.md +1 -0
- package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenVerificationSdJwtMissingCnf.md +1 -0
- package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenVerificationSdJwtMissingEmail.md +1 -0
- package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenVerificationSdJwtMissingIat.md +1 -0
- package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenVerificationSdJwtMissingIss.md +1 -0
- package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenVerificationSdJwtSignatureFailed.md +1 -0
- package/build/src/third_party/issue-descriptions/emailVerificationRequestTokenVerificationSdJwtUnsupportedHeaderAlg.md +1 -0
- package/build/src/third_party/issue-descriptions/emailVerificationRequestUserLoggedOut.md +1 -0
- package/build/src/third_party/issue-descriptions/emailVerificationRequestWellKnownAccountsEndpointCrossOrigin.md +1 -0
- package/build/src/third_party/issue-descriptions/emailVerificationRequestWellKnownHttpNotFound.md +1 -0
- package/build/src/third_party/issue-descriptions/emailVerificationRequestWellKnownInvalidContentType.md +1 -0
- package/build/src/third_party/issue-descriptions/emailVerificationRequestWellKnownInvalidResponse.md +1 -0
- package/build/src/third_party/issue-descriptions/emailVerificationRequestWellKnownIssuanceEndpointCrossOrigin.md +1 -0
- package/build/src/third_party/issue-descriptions/emailVerificationRequestWellKnownListEmpty.md +1 -0
- package/build/src/third_party/issue-descriptions/emailVerificationRequestWellKnownMissingAccountsEndpoint.md +1 -0
- package/build/src/third_party/issue-descriptions/emailVerificationRequestWellKnownMissingIssuanceEndpoint.md +1 -0
- package/build/src/third_party/issue-descriptions/emailVerificationRequestWellKnownNoResponse.md +1 -0
- package/build/src/third_party/issue-descriptions/emailVerificationRequestWellKnownUnsupportedSigningAlgorithm.md +1 -0
- package/build/src/third_party/issue-descriptions/federatedAuthRequestAccountsHttpNotFound.md +1 -1
- package/build/src/third_party/issue-descriptions/federatedAuthRequestAccountsInvalidResponse.md +1 -1
- package/build/src/third_party/issue-descriptions/federatedAuthRequestAccountsNoResponse.md +1 -1
- package/build/src/third_party/issue-descriptions/federatedAuthRequestApprovalDeclined.md +1 -1
- package/build/src/third_party/issue-descriptions/federatedAuthRequestCanceled.md +1 -1
- package/build/src/third_party/issue-descriptions/federatedAuthRequestErrorFetchingSignin.md +1 -1
- package/build/src/third_party/issue-descriptions/federatedAuthRequestErrorIdToken.md +1 -1
- package/build/src/third_party/issue-descriptions/federatedAuthRequestIdTokenHttpNotFound.md +1 -1
- package/build/src/third_party/issue-descriptions/federatedAuthRequestIdTokenInvalidRequest.md +1 -1
- package/build/src/third_party/issue-descriptions/federatedAuthRequestIdTokenInvalidResponse.md +1 -1
- package/build/src/third_party/issue-descriptions/federatedAuthRequestIdTokenNoResponse.md +1 -1
- package/build/src/third_party/issue-descriptions/federatedAuthRequestInvalidSigninResponse.md +1 -1
- package/build/src/third_party/issue-descriptions/federatedAuthRequestManifestHttpNotFound.md +1 -1
- package/build/src/third_party/issue-descriptions/federatedAuthRequestManifestInvalidResponse.md +1 -1
- package/build/src/third_party/issue-descriptions/federatedAuthRequestManifestNoResponse.md +1 -1
- package/build/src/third_party/issue-descriptions/federatedAuthRequestTooManyRequests.md +1 -1
- package/build/src/third_party/issue-descriptions/federatedAuthUserInfoRequestInvalidAccountsResponse.md +1 -1
- package/build/src/third_party/issue-descriptions/federatedAuthUserInfoRequestInvalidConfigOrWellKnown.md +1 -1
- package/build/src/third_party/issue-descriptions/federatedAuthUserInfoRequestNoAccountSharingPermission.md +1 -1
- package/build/src/third_party/issue-descriptions/federatedAuthUserInfoRequestNoApiPermission.md +1 -1
- package/build/src/third_party/issue-descriptions/federatedAuthUserInfoRequestNoReturningUserFromFetchedAccounts.md +1 -1
- package/build/src/third_party/issue-descriptions/federatedAuthUserInfoRequestNotIframe.md +1 -1
- package/build/src/third_party/issue-descriptions/federatedAuthUserInfoRequestNotPotentiallyTrustworthy.md +1 -1
- package/build/src/third_party/issue-descriptions/federatedAuthUserInfoRequestNotSameOrigin.md +1 -1
- package/build/src/third_party/issue-descriptions/federatedAuthUserInfoRequestNotSignedInWithIdp.md +1 -1
- package/build/src/third_party/issue-descriptions/fetchingPartitionedBlobURL.md +2 -2
- package/build/src/third_party/issue-descriptions/genericBackUINavigationWouldSkipAd.md +4 -0
- package/build/src/third_party/issue-descriptions/genericFormAriaLabelledByToNonExistingIdError.md +2 -2
- package/build/src/third_party/issue-descriptions/genericFormAutocompleteAttributeEmptyError.md +1 -1
- package/build/src/third_party/issue-descriptions/genericFormDuplicateIdForInputError.md +1 -1
- package/build/src/third_party/issue-descriptions/genericFormEmptyIdAndNameAttributesForInputError.md +2 -2
- package/build/src/third_party/issue-descriptions/genericFormInputAssignedAutocompleteValueToIdOrNameAttributeError.md +2 -2
- package/build/src/third_party/issue-descriptions/genericFormInputHasWrongButWellIntendedAutocompleteValueError.md +1 -1
- package/build/src/third_party/issue-descriptions/genericFormInputWithNoLabelError.md +1 -1
- package/build/src/third_party/issue-descriptions/genericFormLabelForMatchesNonExistingIdError.md +2 -2
- package/build/src/third_party/issue-descriptions/genericFormLabelForNameError.md +1 -1
- package/build/src/third_party/issue-descriptions/genericFormLabelHasNeitherForNorNestedInputError.md +1 -1
- package/build/src/third_party/issue-descriptions/genericFormModelContextMissingToolName.md +1 -1
- package/build/src/third_party/issue-descriptions/genericFormModelContextParameterMissingName.md +1 -1
- package/build/src/third_party/issue-descriptions/genericFormModelContextRequiredParameterMissingName.md +1 -1
- package/build/src/third_party/issue-descriptions/genericNavigationEntryMarkedSkippable.md +2 -2
- package/build/src/third_party/issue-descriptions/heavyAd.md +1 -1
- package/build/src/third_party/issue-descriptions/lazyLoadImageZeroSize.md +7 -0
- package/build/src/third_party/issue-descriptions/navigatingPartitionedBlobURL.md +3 -3
- package/build/src/third_party/issue-descriptions/permissionElementActivationDisabled.md +1 -1
- package/build/src/third_party/issue-descriptions/permissionElementActivationDisabledWithOccluder.md +1 -1
- package/build/src/third_party/issue-descriptions/permissionElementActivationDisabledWithOccluderParent.md +1 -1
- package/build/src/third_party/issue-descriptions/permissionElementFencedFrameDisallowed.md +2 -2
- package/build/src/third_party/issue-descriptions/permissionElementFontSizeTooLarge.md +2 -2
- package/build/src/third_party/issue-descriptions/permissionElementFontSizeTooSmall.md +2 -2
- package/build/src/third_party/issue-descriptions/permissionElementInsetBoxShadowUnsupported.md +1 -1
- package/build/src/third_party/issue-descriptions/permissionElementInvalidDisplayStyle.md +2 -2
- package/build/src/third_party/issue-descriptions/permissionElementInvalidSizeValue.md +2 -2
- package/build/src/third_party/issue-descriptions/permissionElementInvalidType.md +2 -2
- package/build/src/third_party/issue-descriptions/permissionElementInvalidTypeActivation.md +2 -2
- package/build/src/third_party/issue-descriptions/permissionElementNonOpaqueColor.md +1 -1
- package/build/src/third_party/issue-descriptions/permissionElementPaddingBottomUnsupported.md +2 -2
- package/build/src/third_party/issue-descriptions/permissionElementPaddingRightUnsupported.md +2 -2
- package/build/src/third_party/issue-descriptions/permissionElementRequestInProgress.md +2 -2
- package/build/src/third_party/issue-descriptions/permissionElementSecurityChecksFailed.md +1 -1
- package/build/src/third_party/issue-descriptions/permissionElementTypeNotSupported.md +2 -2
- package/build/src/third_party/issue-descriptions/permissionElementUntrustedEvent.md +1 -1
- package/build/src/third_party/issue-descriptions/placeholderDescriptionForInvisibleIssues.md +1 -1
- package/build/src/third_party/issue-descriptions/selectElementAccessibilityDisallowedOptGroupChild.md +1 -1
- package/build/src/third_party/issue-descriptions/selectElementAccessibilityDisallowedSelectChild.md +1 -1
- package/build/src/third_party/issue-descriptions/selectElementAccessibilityInteractiveContentAttributesSelectDescendant.md +1 -1
- package/build/src/third_party/issue-descriptions/selectElementAccessibilityInteractiveContentLegendChild.md +1 -1
- package/build/src/third_party/issue-descriptions/selectElementAccessibilityInteractiveContentOptionChild.md +1 -1
- package/build/src/third_party/issue-descriptions/selectElementAccessibilityNonPhrasingContentOptionChild.md +1 -1
- package/build/src/third_party/issue-descriptions/selectivePermissionsIntervention.md +3 -3
- package/build/src/third_party/issue-descriptions/sharedArrayBuffer.md +1 -1
- package/build/src/third_party/issue-descriptions/sharedDictionaryUseErrorCrossOriginNoCorsRequest.md +1 -1
- package/build/src/third_party/issue-descriptions/sharedDictionaryUseErrorMatchingDictionaryNotUsed.md +1 -1
- package/build/src/third_party/issue-descriptions/sharedDictionaryUseErrorUnexpectedContentDictionaryHeader.md +1 -1
- package/build/src/third_party/issue-descriptions/sharedDictionaryWriteErrorCossOriginNoCorsRequest.md +1 -1
- package/build/src/third_party/issue-descriptions/sharedDictionaryWriteErrorDisallowedBySettings.md +1 -1
- package/build/src/third_party/issue-descriptions/sharedDictionaryWriteErrorExpiredResponse.md +1 -1
- package/build/src/third_party/issue-descriptions/sharedDictionaryWriteErrorFeatureDisabled.md +2 -2
- package/build/src/third_party/issue-descriptions/sharedDictionaryWriteErrorInvalidStructuredHeader.md +1 -1
- package/build/src/third_party/issue-descriptions/sharedDictionaryWriteErrorNavigationRequest.md +2 -2
- package/build/src/third_party/issue-descriptions/sriInvalidSignatureHeader.md +4 -4
- package/build/src/third_party/issue-descriptions/sriInvalidSignatureInputHeader.md +4 -4
- package/build/src/third_party/issue-descriptions/sriMissingSignatureHeader.md +1 -1
- package/build/src/third_party/issue-descriptions/sriMissingSignatureInputHeader.md +2 -2
- package/build/src/third_party/issue-descriptions/sriSignatureHeaderValueIsIncorrectLength.md +2 -2
- package/build/src/third_party/issue-descriptions/sriSignatureHeaderValueIsNotByteSequence.md +4 -4
- package/build/src/third_party/issue-descriptions/sriSignatureHeaderValueIsParameterized.md +4 -4
- package/build/src/third_party/issue-descriptions/sriSignatureInputHeaderInvalidComponentName.md +1 -1
- package/build/src/third_party/issue-descriptions/sriSignatureInputHeaderInvalidComponentType.md +2 -2
- package/build/src/third_party/issue-descriptions/sriSignatureInputHeaderInvalidDerivedComponentParameter.md +1 -1
- package/build/src/third_party/issue-descriptions/sriSignatureInputHeaderInvalidHeaderComponentParameter.md +1 -1
- package/build/src/third_party/issue-descriptions/sriSignatureInputHeaderInvalidParameter.md +2 -2
- package/build/src/third_party/issue-descriptions/sriSignatureInputHeaderKeyIdLength.md +5 -5
- package/build/src/third_party/issue-descriptions/sriSignatureInputHeaderMissingLabel.md +3 -3
- package/build/src/third_party/issue-descriptions/sriSignatureInputHeaderMissingRequiredParameters.md +2 -2
- package/build/src/third_party/issue-descriptions/sriSignatureInputHeaderValueMissingComponents.md +2 -2
- package/build/src/third_party/issue-descriptions/sriSignatureInputHeaderValueNotInnerList.md +2 -2
- package/build/src/third_party/issue-descriptions/sriValidationFailedIntegrityMismatch.md +4 -4
- package/build/src/third_party/issue-descriptions/sriValidationFailedInvalidLength.md +3 -3
- package/build/src/third_party/issue-descriptions/sriValidationFailedSignatureExpired.md +2 -2
- package/build/src/third_party/issue-descriptions/sriValidationFailedSignatureMismatch.md +2 -2
- package/build/src/third_party/issue-descriptions/stylesheetLateImport.md +1 -1
- package/build/src/third_party/issue-descriptions/summaryElementAccessibilityInteractiveContentSummaryDescendant.md +1 -1
- package/build/src/third_party/issue-descriptions/unencodedDigestIncorrectDigestLength.md +2 -2
- package/build/src/third_party/issue-descriptions/unencodedDigestIncorrectDigestType.md +3 -3
- package/build/src/third_party/issue-descriptions/unencodedDigestMalformedDictionary.md +2 -2
- package/build/src/third_party/issue-descriptions/unencodedDigestUnknownAlgorithm.md +1 -1
- package/build/src/third_party/lighthouse-devtools-mcp-bundle.js +3177 -6340
- package/build/src/tools/ToolDefinition.js +2 -2
- package/build/src/tools/categories.js +3 -0
- package/build/src/tools/console.js +13 -0
- package/build/src/tools/emulation.js +30 -3
- package/build/src/tools/extensions.js +8 -1
- package/build/src/tools/input.js +246 -128
- package/build/src/tools/lighthouse.js +14 -7
- package/build/src/tools/memory.js +289 -25
- package/build/src/tools/network.js +10 -7
- package/build/src/tools/pages.js +33 -92
- package/build/src/tools/performance.js +67 -52
- package/build/src/tools/pwa.js +128 -0
- package/build/src/tools/screencast.js +35 -12
- package/build/src/tools/screenshot.js +234 -75
- package/build/src/tools/script.js +130 -45
- package/build/src/tools/slim/tools.js +3 -0
- package/build/src/tools/snapshot.js +7 -4
- package/build/src/tools/thirdPartyDeveloper.js +19 -9
- package/build/src/tools/tools.js +3 -1
- package/build/src/tools/webmcp.js +3 -1
- package/build/src/utils/WaitForHelper.js +299 -0
- package/build/src/utils/check-for-updates.js +8 -2
- package/build/src/utils/files.js +42 -3
- package/build/src/utils/logger.js +51 -0
- package/build/src/utils/polyfill.js +11 -0
- package/build/src/utils/url.js +43 -0
- package/build/src/version.js +1 -1
- package/package.json +42 -33
- package/build/src/DevToolsConnectionAdapter.js +0 -70
- package/build/src/HeapSnapshotManager.js +0 -110
- package/build/src/Mutex.js +0 -38
- package/build/src/WaitForHelper.js +0 -195
- package/build/src/bin/cliDefinitions.js +0 -616
- package/build/src/logger.js +0 -37
- package/build/src/polyfill.js +0 -8
- package/build/src/telemetry/metricUtils.js +0 -15
- package/build/src/third_party/issue-descriptions/SameSiteExcludeContextDowngradeRead.md +0 -8
- package/build/src/third_party/issue-descriptions/SameSiteExcludeContextDowngradeSet.md +0 -8
- package/build/src/third_party/issue-descriptions/SameSiteExcludeNavigationContextDowngrade.md +0 -8
- package/build/src/third_party/issue-descriptions/SameSiteWarnCrossDowngradeRead.md +0 -8
- package/build/src/third_party/issue-descriptions/SameSiteWarnCrossDowngradeSet.md +0 -8
- package/build/src/third_party/issue-descriptions/SameSiteWarnStrictLaxDowngradeStrict.md +0 -8
- package/build/src/third_party/issue-descriptions/arInsecureContext.md +0 -7
- package/build/src/third_party/issue-descriptions/arInvalidInfoHeader.md +0 -5
- package/build/src/third_party/issue-descriptions/arInvalidRegisterOsSourceHeader.md +0 -5
- package/build/src/third_party/issue-descriptions/arInvalidRegisterOsTriggerHeader.md +0 -5
- package/build/src/third_party/issue-descriptions/arInvalidRegisterSourceHeader.md +0 -5
- package/build/src/third_party/issue-descriptions/arInvalidRegisterTriggerHeader.md +0 -5
- package/build/src/third_party/issue-descriptions/arNavigationRegistrationUniqueScopeAlreadySet.md +0 -5
- package/build/src/third_party/issue-descriptions/arNavigationRegistrationWithoutTransientUserActivation.md +0 -6
- package/build/src/third_party/issue-descriptions/arNoRegisterOsSourceHeader.md +0 -5
- package/build/src/third_party/issue-descriptions/arNoRegisterOsTriggerHeader.md +0 -5
- package/build/src/third_party/issue-descriptions/arNoRegisterSourceHeader.md +0 -5
- package/build/src/third_party/issue-descriptions/arNoRegisterTriggerHeader.md +0 -5
- package/build/src/third_party/issue-descriptions/arNoWebOrOsSupport.md +0 -4
- package/build/src/third_party/issue-descriptions/arOsSourceIgnored.md +0 -18
- package/build/src/third_party/issue-descriptions/arOsTriggerIgnored.md +0 -19
- package/build/src/third_party/issue-descriptions/arPermissionPolicyDisabled.md +0 -8
- package/build/src/third_party/issue-descriptions/arSourceAndTriggerHeaders.md +0 -9
- package/build/src/third_party/issue-descriptions/arSourceIgnored.md +0 -13
- package/build/src/third_party/issue-descriptions/arTriggerIgnored.md +0 -12
- package/build/src/third_party/issue-descriptions/arUntrustworthyReportingOrigin.md +0 -10
- package/build/src/third_party/issue-descriptions/arWebAndOsHeaders.md +0 -11
- package/build/src/utils/string.js +0 -37
- package/build/src/utils/types.js +0 -7
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
The "{PLACEHOLDER_Type}" element can only be activated by actual user clicks, not simulated ones.
|
|
4
4
|
|
|
5
|
-
To resolve this issue,
|
|
5
|
+
To resolve this issue, don’t use frameworks which simulate click events, (e.g. via `click()`) and don’t stop the `DOMActivate` event.
|
|
6
6
|
|
|
7
7
|
You can use the command line flag `--runtime-enabled-features=BypassPepcSecurityForTesting` to bypass this behavior for testing purposes.
|
package/build/src/third_party/issue-descriptions/placeholderDescriptionForInvisibleIssues.md
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
# This is a placeholder issue description
|
|
2
2
|
|
|
3
|
-
This description is used for issues that
|
|
3
|
+
This description is used for issues that aren’t intended to be shown to the user. This means there is no need for a useful description.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Invalid element or text node within <optgroup>
|
|
2
2
|
|
|
3
|
-
An element which
|
|
3
|
+
An element which isn’t allowed in the content model of the `<optgroup>` element was found within an `<optgroup>` element. These elements won’t consistently be accessible to people navigating by keyboard or using assistive technology.
|
|
4
4
|
|
|
5
5
|
If using disallowed elements for layout structure and styling, consider using the allowed `<div>` element instead.
|
|
6
6
|
|
package/build/src/third_party/issue-descriptions/selectElementAccessibilityDisallowedSelectChild.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Invalid element or text node within <select>
|
|
2
2
|
|
|
3
|
-
An element which
|
|
3
|
+
An element which isn’t allowed in the content model of the `<select>` element was found within a `<select>` element. These elements won’t consistently be accessible to people navigating by keyboard or using assistive technology.
|
|
4
4
|
|
|
5
5
|
If using disallowed elements for layout structure and styling, consider using the allowed `<div>` element instead.
|
|
6
6
|
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
# Element with invalid attributes within a <select> element
|
|
2
2
|
|
|
3
|
-
An element with `contenteditable` or `tabindex` attributes
|
|
3
|
+
An element with `contenteditable` or `tabindex` attributes isn’t an allowed child of a `<select>` element. It won’t consistently be accessible to people navigating by keyboard or using assistive technology.
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
# Interactive element inside of a <legend> element
|
|
2
2
|
|
|
3
|
-
An interactive element which
|
|
3
|
+
An interactive element which isn’t allowed in the content model of the `<legend>` element was found within a `<legend>` element. Interactive elements aren’t allowed children of a `<legend>` element when used within an `<optgroup>` element. These elements won’t consistently be accessible to people navigating by keyboard or using assistive technology.
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
# Interactive element inside of an <option> element
|
|
2
2
|
|
|
3
|
-
An interactive element which
|
|
3
|
+
An interactive element which isn’t allowed in the content model of the `<option>` element was found within an `<option>` element. These elements won’t consistently be accessible to people navigating by keyboard or using assistive technology.
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
# Non-phrasing content used within an <option> element
|
|
2
2
|
|
|
3
|
-
The `<option>` element allows only non-interactive phrasing content, text, and `<div>` elements as its children. The semantics of non-phrasing content elements
|
|
3
|
+
The `<option>` element allows only non-interactive phrasing content, text, and `<div>` elements as its children. The semantics of non-phrasing content elements don’t make sense as children of an `<option>`, and such semantics will largely be ignored by assistive technology since they are inappropriate in this context. Consider removing or changing such elements to one of the allowed phrasing content elements.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
# Selective
|
|
1
|
+
# Selective permissions intervention
|
|
2
2
|
|
|
3
|
-
The Selective Permissions Intervention blocks calls to privacy-sensitive APIs when they are called from ad scripts
|
|
3
|
+
The Selective Permissions Intervention blocks calls to privacy-sensitive APIs when they are called from ad scripts to align the permission grant with the user’s intent. The particular API that was blocked, the call-stack that triggered the intervention, and why the script that called the API is considered ad-related is shown below.
|
|
4
4
|
|
|
5
5
|
Note that Chrome considers any script with a URL that matches a rule in the [filterlist](ChromeFilterlistRepository) as ad script, and the matching rule is shown in the Ad Ancestry section. In addition, any script loaded while an ad script is in the JavaScript stack will also be considered an ad script by Chrome and is also shown in Ad Ancestry.
|
|
6
6
|
|
|
7
|
-
If you believe this intervention
|
|
7
|
+
If you believe this intervention was in error (e.g., this call would occur even when loading the page with an ad blocker enabled), then [file a bug](SelectivePermissionsInterventionIssue).
|
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
SharedArrayBuffers (SABs) can be used to construct high-resolution timers. High-resolution timers simplify Spectre attacks on cross-origin resources.
|
|
4
4
|
|
|
5
|
-
To mitigate security risks across browsers, SharedArrayBuffers are gated behind cross-origin isolated contexts starting with Chrome 92 (July 2021). To continue using SharedArrayBuffers,
|
|
5
|
+
To mitigate security risks across browsers, SharedArrayBuffers are gated behind cross-origin isolated contexts starting with Chrome 92 (July 2021). To continue using SharedArrayBuffers, ensure that this page opts-into cross-origin isolation by setting Cross-Origin-Opener-Policy and Cross-Origin-Embedder-Policy appropriately.
|
|
6
6
|
|
|
7
7
|
Note that for each iframe, only the first issue is reported for performance reasons.
|
package/build/src/third_party/issue-descriptions/sharedDictionaryUseErrorCrossOriginNoCorsRequest.md
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
# Found a matching dictionary, but the dictionary can
|
|
1
|
+
# Found a matching dictionary, but the dictionary can’t be used for the cross origin no-cors request
|
|
@@ -1 +1 @@
|
|
|
1
|
-
# Can
|
|
1
|
+
# Can’t decode the response because the header of dictionary compressed stream wasn’t set correctly
|
|
@@ -1 +1 @@
|
|
|
1
|
-
# Can
|
|
1
|
+
# Can’t register the cross origin response fetched by a no-cors request as as a dictionary
|
package/build/src/third_party/issue-descriptions/sharedDictionaryWriteErrorDisallowedBySettings.md
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
#
|
|
1
|
+
# compression dictionary is disabled by settings
|
package/build/src/third_party/issue-descriptions/sharedDictionaryWriteErrorFeatureDisabled.md
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
#
|
|
1
|
+
# compression dictionary transport feature is disabled
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
enable chrome://flags/#enable-compression-dictionary-transport
|
|
@@ -1 +1 @@
|
|
|
1
|
-
# `Use-As-Dictionary` HTTP response header
|
|
1
|
+
# `Use-As-Dictionary` HTTP response header isn’t a valid Structured Field Value
|
package/build/src/third_party/issue-descriptions/sharedDictionaryWriteErrorNavigationRequest.md
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
# Can
|
|
1
|
+
# Can’t register the response of the navigation request as a dictionary
|
|
2
2
|
|
|
3
|
-
Navigation responses
|
|
3
|
+
Navigation responses aren’t usable as compression dictionaries.
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
# A `signature` header
|
|
1
|
+
# A `signature` header isn’t formatted as a Structured Field Dictionary
|
|
2
2
|
|
|
3
|
-
Responses
|
|
4
|
-
[Dictionary](sfDictionary) containing one or more signatures. Each member
|
|
3
|
+
Responses’ [`signature`](signatureHeader) header should be formatted as a
|
|
4
|
+
[Dictionary](sfDictionary) containing one or more signatures. Each member’s key
|
|
5
5
|
is a label for the signature which maps it to the relevant metadata defined in
|
|
6
|
-
a [`signature-input`](signatureInputHeader) header. Each member
|
|
6
|
+
a [`signature-input`](signatureInputHeader) header. Each member’s value is a
|
|
7
7
|
[Byte Sequence](sfByteSequence) containing the signature itself.
|
|
8
8
|
|
|
9
9
|
For example, the following header contains a single Ed25519 signature labeled
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
# A `signature-input` header
|
|
1
|
+
# A `signature-input` header isn’t formatted as a Structured Field Dictionary
|
|
2
2
|
|
|
3
|
-
Responses
|
|
3
|
+
Responses’ [`signature-input`](signatureInputHeader) header should be formatted
|
|
4
4
|
as a [Dictionary](sfDictionary) containing metadata regarding one or more
|
|
5
|
-
signatures. Each member
|
|
5
|
+
signatures. Each member’s key is a label for the metadata which maps it to the
|
|
6
6
|
relevant signature defined in a [`signature`](signatureHeader) header. Each
|
|
7
|
-
member
|
|
7
|
+
member’s value is an [Inner List](sfInnerList) containing a set of components
|
|
8
8
|
over which a signature is generated. The list may have one or more parameters.
|
|
9
9
|
|
|
10
10
|
For example, the following header contains metadata for a signature labeled
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# A `signature-input` header was specified without an accompanying `signature` header
|
|
1
|
+
# A `signature-input` header was specified without an accompanying `signature` header
|
|
2
2
|
|
|
3
3
|
[`signature-input`](signatureInputHeader) headers specify metadata that allows
|
|
4
4
|
verification of signatures delivered with a response. If no
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
# A `signature` header was specified without an accompanying `signature-input` header
|
|
1
|
+
# A `signature` header was specified without an accompanying `signature-input` header
|
|
2
2
|
|
|
3
3
|
[`signature`](signatureHeader) headers specify signatures which can be verified
|
|
4
|
-
against a given response. Verification
|
|
4
|
+
against a given response. Verification can’t proceed, however, in the absence of a
|
|
5
5
|
[`signature-input`](signatureInputHeader) header which defines relevant metadata
|
|
6
6
|
which allows servers and clients to agree on the exact message which is being
|
|
7
7
|
signed. Both headers must be present for verification to proceed.
|
package/build/src/third_party/issue-descriptions/sriSignatureHeaderValueIsIncorrectLength.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
# A `signature` header contains a signature which
|
|
1
|
+
# A `signature` header contains a signature which can’t be verified
|
|
2
2
|
|
|
3
3
|
This browser can only verify Ed25519 signatures, which are 512 bits long. The
|
|
4
|
-
signature delivered with this response
|
|
4
|
+
signature delivered with this response doesn’t match that length.
|
|
5
5
|
|
|
6
6
|
For example, the following header contains a valid Ed25519 signature labeled
|
|
7
7
|
"label":
|
package/build/src/third_party/issue-descriptions/sriSignatureHeaderValueIsNotByteSequence.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
# A `signature` header member
|
|
1
|
+
# A `signature` header member’s value isn’t a Byte Sequence
|
|
2
2
|
|
|
3
|
-
Responses
|
|
4
|
-
[Dictionary](sfDictionary) containing one or more signatures. Each member
|
|
3
|
+
Responses’ [`signature`](signatureHeader) header should be formatted as a
|
|
4
|
+
[Dictionary](sfDictionary) containing one or more signatures. Each member’s key
|
|
5
5
|
is a label for the signature which maps it to the relevant metadata defined in
|
|
6
|
-
a [`signature-input`](signatureInputHeader) header. Each member
|
|
6
|
+
a [`signature-input`](signatureInputHeader) header. Each member’s value is a
|
|
7
7
|
[Byte Sequence](sfByteSequence) containing the signature itself.
|
|
8
8
|
|
|
9
9
|
For example, the following header contains a single Ed25519 signature labeled
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
# A `signature` header member
|
|
1
|
+
# A `signature` header member’s value is parameterized
|
|
2
2
|
|
|
3
|
-
Responses
|
|
4
|
-
[Dictionary](sfDictionary) containing one or more signatures. Each member
|
|
3
|
+
Responses’ [`signature`](signatureHeader) header should be formatted as a
|
|
4
|
+
[Dictionary](sfDictionary) containing one or more signatures. Each member’s key
|
|
5
5
|
is a label for the signature which maps it to the relevant metadata defined in a
|
|
6
|
-
[`signature-input`](signatureInputHeader) header. Each member
|
|
6
|
+
[`signature-input`](signatureInputHeader) header. Each member’s value is a
|
|
7
7
|
[Byte Sequence](sfByteSequence) containing the signature itself, with no
|
|
8
8
|
additional parameters specified.
|
|
9
9
|
|
package/build/src/third_party/issue-descriptions/sriSignatureInputHeaderInvalidComponentName.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# A `signature-input` header member
|
|
1
|
+
# A `signature-input` header member’s value contains an unknown component
|
|
2
2
|
|
|
3
3
|
The metadata delivered via [`signature-input`](signatureInputHeader) can only
|
|
4
4
|
contain a limited set of components in the list it specifies. The known
|
package/build/src/third_party/issue-descriptions/sriSignatureInputHeaderInvalidComponentType.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# A `signature-input` header
|
|
1
|
+
# A `signature-input` header’s component isn’t a string
|
|
2
2
|
|
|
3
|
-
Responses
|
|
3
|
+
Responses’ [`signature-input`](signatureInputHeader) header’s members’ values
|
|
4
4
|
are [Inner Lists](sfInnerList) whose contents are each strings. Perhaps you
|
|
5
5
|
forgot double-quotes around a component?
|
|
6
6
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Invalid parameter on a derived component in a `signature-input` header
|
|
1
|
+
# Invalid parameter on a derived component in a `signature-input` header
|
|
2
2
|
|
|
3
3
|
Derived components must be specified as deriving from the request, using the
|
|
4
4
|
[`req` parameter](componentParameterReq). No other parameter may be specified.
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Invalid parameter on a header component in a `signature-input` header
|
|
1
|
+
# Invalid parameter on a header component in a `signature-input` header
|
|
2
2
|
|
|
3
3
|
The header [`unencoded-digest`](unencodedDigestHeader) must be specified as
|
|
4
4
|
being strictly serialized in the signature base, using the
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# Invalid parameter on the list of components in a `signature-input` header
|
|
1
|
+
# Invalid parameter on the list of components in a `signature-input` header
|
|
2
2
|
|
|
3
|
-
The `signature-input` header
|
|
3
|
+
The `signature-input` header’s [Inner Lists](sfInnerList) must be specified with the
|
|
4
4
|
[`keyid` and `type` parameters](signatureParameters). The following parameters may
|
|
5
5
|
also be specified:
|
|
6
6
|
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
# Invalid `keyid` value in a `signature-input` header
|
|
1
|
+
# Invalid `keyid` value in a `signature-input` header
|
|
2
2
|
|
|
3
|
-
The key specified in a [`signature-input`](signatureInputHeader) header
|
|
4
|
-
[`keyid` parameter](signatureParameters)
|
|
5
|
-
256 bit sequence, and therefore
|
|
3
|
+
The key specified in a [`signature-input`](signatureInputHeader) header’s
|
|
4
|
+
[`keyid` parameter](signatureParameters) isn’t a base64-encoded
|
|
5
|
+
256 bit sequence, and therefore can’t be decoded as an Ed25519 public key.
|
|
6
6
|
|
|
7
|
-
Note that the `keyid` parameter
|
|
7
|
+
Note that the `keyid` parameter’s value is a string, not a
|
|
8
8
|
[Byte Sequence](sfByteSequence). For example:
|
|
9
9
|
|
|
10
10
|
```
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# Label mismatch between `signature` and `signature-input` headers
|
|
1
|
+
# Label mismatch between `signature` and `signature-input` headers
|
|
2
2
|
|
|
3
3
|
A [`signature`](signatureHeader) header specifies a signature whose label does
|
|
4
4
|
not appear in a corresponding [`signature-input`](signatureInputHeader) header.
|
|
5
|
-
Without a `signature-input` header
|
|
6
|
-
the signature
|
|
5
|
+
Without a `signature-input` header’s definition of the signature’s metadata,
|
|
6
|
+
the signature can’t be verified.
|
package/build/src/third_party/issue-descriptions/sriSignatureInputHeaderMissingRequiredParameters.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# Missing a required parameter on the list of components in a `signature-input` header
|
|
1
|
+
# Missing a required parameter on the list of components in a `signature-input` header
|
|
2
2
|
|
|
3
|
-
The [`signature-input`][signatureInputHeader] header
|
|
3
|
+
The [`signature-input`][signatureInputHeader] header’s [Inner Lists](sfInnerList)
|
|
4
4
|
must be specified with both the [`keyid` and `type` parameters](signatureParameters).
|
|
5
5
|
|
|
6
6
|
```
|
package/build/src/third_party/issue-descriptions/sriSignatureInputHeaderValueMissingComponents.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# Missing a required component in a `signature-input` header
|
|
1
|
+
# Missing a required component in a `signature-input` header
|
|
2
2
|
|
|
3
|
-
The [`signature-input`](signatureInputHeader) header
|
|
3
|
+
The [`signature-input`](signatureInputHeader) header’s
|
|
4
4
|
[Inner Lists](sfInnerList) must contain the string "`unencoded-digest`" with an
|
|
5
5
|
`sf` parameter:
|
|
6
6
|
|
package/build/src/third_party/issue-descriptions/sriSignatureInputHeaderValueNotInnerList.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# A `signature-input` header has a member whose value
|
|
1
|
+
# A `signature-input` header has a member whose value isn’t an Inner List
|
|
2
2
|
|
|
3
|
-
The value of each member of a [`signature-input`](signatureInputHeader) header
|
|
3
|
+
The value of each member of a [`signature-input`](signatureInputHeader) header’s
|
|
4
4
|
[Dictionary][sfDictionary] must be an [Inner List](sfInnerList) containing the
|
|
5
5
|
set of components over which a signature is generated.
|
|
6
6
|
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
# Integrity verification failed
|
|
1
|
+
# Integrity verification failed
|
|
2
2
|
|
|
3
3
|
The signature associated with a response could be successfully verified, but the
|
|
4
4
|
public keys asserted in the [`signature-input`](signatureInputHeader)
|
|
5
|
-
header
|
|
6
|
-
assertions made by the request
|
|
5
|
+
header’s [`keyid` parameter](signatureParameters) don’t match the integrity
|
|
6
|
+
assertions made by the request’s initiator. Verification failed.
|
|
7
7
|
|
|
8
|
-
The following are the keys specified by the request
|
|
8
|
+
The following are the keys specified by the request’s initiator:
|
|
9
9
|
|
|
10
10
|
{PLACEHOLDER_integrityAssertions}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
# Signature verification failed: the signature provided
|
|
1
|
+
# Signature verification failed: the signature provided isn’t an Ed25519 signature
|
|
2
2
|
|
|
3
|
-
The signature specified in a [`signature`](signatureHeader) header
|
|
4
|
-
base64-encoded 512 bit
|
|
3
|
+
The signature specified in a [`signature`](signatureHeader) header isn’t a
|
|
4
|
+
base64-encoded 512 bit Byte Sequence, and can therefore not be verified as an
|
|
5
5
|
Ed25519 signature.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# Signature verification failed: the signature is expired
|
|
1
|
+
# Signature verification failed: the signature is expired
|
|
2
2
|
|
|
3
3
|
The [`expires` parameter](signatureParameters) specified in a
|
|
4
4
|
[`signature-input`](signatureInputHeader) header is a UNIX timestamp
|
|
5
5
|
representing a time in the past. The signature has therefore expired, and
|
|
6
|
-
verification
|
|
6
|
+
verification isn’t possible.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
# Signature verification failed
|
|
1
|
+
# Signature verification failed
|
|
2
2
|
|
|
3
3
|
The public key specified in the [`signature-input`](signatureInputHeader)
|
|
4
|
-
header
|
|
4
|
+
header’s [`keyid` parameter](signatureParameters) doesn’t match the signature
|
|
5
5
|
specified in the [`signature`](signatureHeader) header. Verification failed.
|
|
6
6
|
|
|
7
7
|
The following is the signature base over which the verification attempt was made:
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
# Define @import rules at the top of the stylesheet
|
|
2
2
|
|
|
3
|
-
An @import rule was ignored because it wasn
|
|
3
|
+
An @import rule was ignored because it wasn’t defined at the top of the stylesheet. Such rules must appear at the top,
|
|
4
4
|
before any style declaration and any other at-rule with the exception of @charset and @layer.
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
# Interactive element inside of a <summary> element
|
|
2
2
|
|
|
3
|
-
An interactive element was found within a `<summary>` element. These elements
|
|
3
|
+
An interactive element was found within a `<summary>` element. These elements won’t consistently be accessible to people navigating by keyboard or using assistive technology.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
# An `unencoded-digest` header contains a digest with an incorrect length
|
|
1
|
+
# An `unencoded-digest` header contains a digest with an incorrect length
|
|
2
2
|
|
|
3
3
|
[`unencoded-digest`](unencodedDigestHeader) headers contain SHA2 digests of a
|
|
4
|
-
response
|
|
4
|
+
response’s body. The digest delivered with this response isn’t the correct
|
|
5
5
|
length for the algorithm specified. SHA-256 digests should be 256 bits long,
|
|
6
6
|
SHA-512 digests 512 bits long. For example, if the body was "Hello, world.", the
|
|
7
7
|
following might be an appropriate header:
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
# An `unencoded-digest` header contains a digest with an invalid type
|
|
1
|
+
# An `unencoded-digest` header contains a digest with an invalid type
|
|
2
2
|
|
|
3
3
|
[`unencoded-digest`](unencodedDigestHeader) headers must be formatted as a
|
|
4
|
-
[Dictionary](sfDictionary), wherein each member
|
|
4
|
+
[Dictionary](sfDictionary), wherein each member’s label specifies the hashing
|
|
5
5
|
algorithm, and the value is a [Byte Sequence](sfByteSequence) containing the
|
|
6
6
|
digest. The digest delivered with this response did not deliver the digest as a
|
|
7
|
-
|
|
7
|
+
Byte Sequence.
|
|
8
8
|
|
|
9
9
|
For example, if the body was "Hello, world.":
|
|
10
10
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
# An `unencoded-digest` header
|
|
1
|
+
# An `unencoded-digest` header can’t be parsed
|
|
2
2
|
|
|
3
3
|
[`unencoded-digest`](unencodedDigestHeader) headers must be formatted as a
|
|
4
|
-
[Dictionary](sfDictionary), wherein each member
|
|
4
|
+
[Dictionary](sfDictionary), wherein each member’s label specifies the hashing
|
|
5
5
|
algorithm, and the value is a [Byte Sequence](sfByteSequence) containing the
|
|
6
6
|
digest. The digest delivered with this response did not format the response
|
|
7
7
|
correctly.
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# An `unencoded-digest` header contains a digest with an invalid algorithm
|
|
1
|
+
# An `unencoded-digest` header contains a digest with an invalid algorithm
|
|
2
2
|
|
|
3
3
|
[`unencoded-digest`](unencodedDigestHeader) headers support only two hashing
|
|
4
4
|
algorithms, SHA-256, and SHA-512. The digests delivered with this response
|