chrome-devtools-frontend 1.0.1665921 → 1.0.1667564
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/.agents/skills/devtools-testing-guidance/SKILL.md +4 -0
- package/.agents/skills/migrate-chromium-test/SKILL.md +63 -48
- package/.agents/skills/ui-eng-vision-local-lit-renderer/SKILL.md +14 -5
- package/.agents/skills/ui-eng-vision-logic-consolidator/SKILL.md +11 -2
- package/.agents/skills/ui-eng-vision-orchestrator/SKILL.md +46 -9
- package/.agents/skills/ui-eng-vision-test-scaffolder/SKILL.md +20 -1
- package/.agents/skills/ui-eng-vision-widget-promoter/SKILL.md +9 -0
- package/front_end/core/host/AidaClient.ts +115 -64
- package/front_end/core/host/GcaClient.ts +3 -3
- package/front_end/core/host/InspectorFrontendHostAPI.ts +1 -0
- package/front_end/core/host/InspectorFrontendHostStub.ts +3 -3
- package/front_end/core/host/UserMetrics.ts +50 -13
- package/front_end/core/sdk/CSSMatchedStyles.ts +2 -5
- package/front_end/core/sdk/CSSPropertyParserMatchers.ts +12 -0
- package/front_end/core/sdk/Connections.ts +1 -1
- package/front_end/core/sdk/DOMModel.test.api.ts +104 -0
- package/front_end/core/sdk/DOMModel.ts +23 -11
- package/front_end/core/sdk/DebuggerModel.ts +9 -9
- package/front_end/core/sdk/IsolateManager.ts +1 -1
- package/front_end/core/sdk/NetworkManager.ts +105 -4
- package/front_end/core/sdk/NetworkRequest.ts +10 -55
- package/front_end/core/sdk/OverlayModel.ts +15 -14
- package/front_end/core/sdk/RemoteObject.ts +1 -1
- package/front_end/devtools_compatibility.js +1 -0
- package/front_end/entrypoints/main/MainImpl.ts +5 -12
- package/front_end/entrypoints/main/SimpleApp.ts +9 -3
- package/front_end/foundation/Universe.ts +22 -0
- package/front_end/generated/InspectorBackendCommands.ts +2 -2
- package/front_end/generated/protocol.ts +2 -1
- package/front_end/models/ai_assistance/agents/AiAgent.ts +22 -13
- package/front_end/models/ai_assistance/contexts/PerformanceTraceContext.ts +23 -10
- package/front_end/models/ai_assistance/data_formatters/PerformanceTraceFormatter.ts +21 -5
- package/front_end/models/computed_style/ComputedStyleModel.ts +4 -7
- package/front_end/models/crux-manager/CrUXManager.ts +4 -0
- package/front_end/models/extensions/ExtensionAPI.ts +3 -3
- package/front_end/models/heap_snapshot/HeapSnapshotProxy.ts +2 -2
- package/front_end/models/issues_manager/CookieIssue.ts +6 -127
- package/front_end/models/issues_manager/descriptions/CoepCorpNotSameOrigin.md +2 -2
- package/front_end/models/issues_manager/descriptions/CoepCorpNotSameOriginAfterDefaultedToSameOriginByCoep.md +3 -3
- package/front_end/models/issues_manager/descriptions/CoepCorpNotSameSite.md +2 -2
- package/front_end/models/issues_manager/descriptions/CoepFrameResourceNeedsCoepHeader.md +1 -1
- package/front_end/models/issues_manager/descriptions/CompatibilityModeQuirks.md +1 -1
- package/front_end/models/issues_manager/descriptions/CookieAttributeValueExceedsMaxSize.md +2 -2
- package/front_end/models/issues_manager/descriptions/LowTextContrast.md +1 -1
- package/front_end/models/issues_manager/descriptions/SameSiteNoneInsecureErrorRead.md +1 -1
- package/front_end/models/issues_manager/descriptions/SameSiteNoneInsecureErrorSet.md +1 -1
- package/front_end/models/issues_manager/descriptions/SameSiteNoneInsecureWarnRead.md +1 -1
- package/front_end/models/issues_manager/descriptions/SameSiteNoneInsecureWarnSet.md +1 -1
- package/front_end/models/issues_manager/descriptions/SameSiteUnspecifiedLaxAllowUnsafeRead.md +3 -3
- package/front_end/models/issues_manager/descriptions/SameSiteUnspecifiedLaxAllowUnsafeSet.md +3 -3
- package/front_end/models/issues_manager/descriptions/bounceTrackingMitigations.md +1 -1
- package/front_end/models/issues_manager/descriptions/connectionAllowlistInvalidAllowlistItemType.md +2 -2
- package/front_end/models/issues_manager/descriptions/connectionAllowlistInvalidHeader.md +2 -2
- package/front_end/models/issues_manager/descriptions/connectionAllowlistInvalidUrlPattern.md +3 -3
- package/front_end/models/issues_manager/descriptions/connectionAllowlistItemNotInnerList.md +2 -2
- package/front_end/models/issues_manager/descriptions/connectionAllowlistMoreThanOneList.md +2 -2
- package/front_end/models/issues_manager/descriptions/connectionAllowlistReportingEndpointNotToken.md +1 -1
- package/front_end/models/issues_manager/descriptions/cookieCrossSiteRedirectDowngrade.md +3 -3
- package/front_end/models/issues_manager/descriptions/cookieExcludeBlockedWithinRelatedWebsiteSet.md +1 -1
- package/front_end/models/issues_manager/descriptions/cookieExcludePortMismatch.md +1 -1
- package/front_end/models/issues_manager/descriptions/cookieExcludeSchemeMismatch.md +1 -1
- package/front_end/models/issues_manager/descriptions/cookieExcludeThirdPartyPhaseoutSet.md +1 -1
- package/front_end/models/issues_manager/descriptions/cookieWarnThirdPartyPhaseoutRead.md +1 -1
- package/front_end/models/issues_manager/descriptions/corsAllowCredentialsRequired.md +1 -1
- package/front_end/models/issues_manager/descriptions/corsDisabledScheme.md +2 -2
- package/front_end/models/issues_manager/descriptions/corsDisallowedByMode.md +2 -2
- package/front_end/models/issues_manager/descriptions/corsHeaderDisallowedByPreflightResponse.md +1 -1
- package/front_end/models/issues_manager/descriptions/corsInvalidHeaderValues.md +3 -3
- package/front_end/models/issues_manager/descriptions/corsLocalNetworkAccessPermissionDenied.md +1 -1
- package/front_end/models/issues_manager/descriptions/corsMethodDisallowedByPreflightResponse.md +1 -1
- package/front_end/models/issues_manager/descriptions/corsNoCorsRedirectModeNotFollow.md +1 -1
- package/front_end/models/issues_manager/descriptions/corsOriginMismatch.md +3 -3
- package/front_end/models/issues_manager/descriptions/corsPreflightResponseInvalid.md +2 -2
- package/front_end/models/issues_manager/descriptions/corsRedirectContainsCredentials.md +3 -3
- package/front_end/models/issues_manager/descriptions/corsWildcardOriginNotAllowed.md +4 -3
- package/front_end/models/issues_manager/descriptions/cspEvalViolation.md +4 -4
- package/front_end/models/issues_manager/descriptions/cspInlineViolation.md +2 -2
- package/front_end/models/issues_manager/descriptions/cspTrustedTypesPolicyViolation.md +2 -2
- package/front_end/models/issues_manager/descriptions/cspTrustedTypesSinkViolation.md +4 -4
- package/front_end/models/issues_manager/descriptions/cspURLViolation.md +4 -4
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestAccountsEmptyList.md +1 -1
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestAccountsHttpNotFound.md +1 -1
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestAccountsInvalidContentType.md +1 -1
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestAccountsInvalidResponse.md +1 -1
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestAccountsNoResponse.md +1 -1
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestDnsFetchFailed.md +1 -1
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestDnsInvalidRecord.md +1 -1
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestEmailVerificationWellKnownHttpNotFound.md +1 -1
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestEmailVerificationWellKnownInvalidContentType.md +1 -1
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestEmailVerificationWellKnownInvalidResponse.md +1 -1
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestEmailVerificationWellKnownNoResponse.md +1 -1
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestInvalidEmail.md +1 -1
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestJwksHttpNotFound.md +1 -1
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestJwksInvalidResponse.md +1 -1
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestKeyBindingSigningFailed.md +1 -1
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestRpOriginIsOpaque.md +1 -1
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestTokenHttpNotFound.md +1 -1
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestTokenInvalidContentType.md +1 -1
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestTokenInvalidResponse.md +1 -1
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestTokenInvalidSdJwt.md +1 -1
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestTokenMalformedSdJwt.md +1 -1
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestTokenNoResponse.md +1 -1
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestTokenVerificationKbInvalidAudience.md +1 -1
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestTokenVerificationKbInvalidIssuedAt.md +1 -1
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestTokenVerificationKbInvalidNonce.md +1 -1
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestTokenVerificationKbInvalidSdHash.md +1 -1
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestTokenVerificationKbInvalidTyp.md +1 -1
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestTokenVerificationKbMissingAud.md +1 -1
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestTokenVerificationKbMissingCnf.md +1 -1
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestTokenVerificationKbMissingIat.md +1 -1
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestTokenVerificationKbMissingNonce.md +1 -1
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestTokenVerificationKbMissingSdHash.md +1 -1
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestTokenVerificationKbSignatureFailed.md +1 -1
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestTokenVerificationSdJwtInvalidEmail.md +1 -1
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestTokenVerificationSdJwtInvalidEmailVerified.md +1 -1
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestTokenVerificationSdJwtInvalidHolderKey.md +1 -1
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestTokenVerificationSdJwtInvalidIssuedAt.md +1 -1
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestTokenVerificationSdJwtInvalidIssuer.md +1 -1
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestTokenVerificationSdJwtJwksMissingKeys.md +1 -1
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestTokenVerificationSdJwtMissingCnf.md +1 -1
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestTokenVerificationSdJwtMissingEmail.md +1 -1
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestTokenVerificationSdJwtMissingIat.md +1 -1
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestTokenVerificationSdJwtMissingIss.md +1 -1
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestTokenVerificationSdJwtSignatureFailed.md +1 -1
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestTokenVerificationSdJwtUnsupportedHeaderAlg.md +1 -1
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestUserLoggedOut.md +1 -1
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestWellKnownAccountsEndpointCrossOrigin.md +1 -1
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestWellKnownHttpNotFound.md +1 -1
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestWellKnownInvalidContentType.md +1 -1
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestWellKnownInvalidResponse.md +1 -1
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestWellKnownIssuanceEndpointCrossOrigin.md +1 -1
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestWellKnownListEmpty.md +1 -1
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestWellKnownMissingAccountsEndpoint.md +1 -1
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestWellKnownMissingIssuanceEndpoint.md +1 -1
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestWellKnownNoResponse.md +1 -1
- package/front_end/models/issues_manager/descriptions/emailVerificationRequestWellKnownUnsupportedSigningAlgorithm.md +1 -1
- package/front_end/models/issues_manager/descriptions/federatedAuthRequestAccountsHttpNotFound.md +1 -1
- package/front_end/models/issues_manager/descriptions/federatedAuthRequestAccountsInvalidResponse.md +1 -1
- package/front_end/models/issues_manager/descriptions/federatedAuthRequestAccountsNoResponse.md +1 -1
- package/front_end/models/issues_manager/descriptions/federatedAuthRequestApprovalDeclined.md +1 -1
- package/front_end/models/issues_manager/descriptions/federatedAuthRequestCanceled.md +1 -1
- package/front_end/models/issues_manager/descriptions/federatedAuthRequestErrorFetchingSignin.md +1 -1
- package/front_end/models/issues_manager/descriptions/federatedAuthRequestErrorIdToken.md +1 -1
- package/front_end/models/issues_manager/descriptions/federatedAuthRequestIdTokenHttpNotFound.md +1 -1
- package/front_end/models/issues_manager/descriptions/federatedAuthRequestIdTokenInvalidRequest.md +1 -1
- package/front_end/models/issues_manager/descriptions/federatedAuthRequestIdTokenInvalidResponse.md +1 -1
- package/front_end/models/issues_manager/descriptions/federatedAuthRequestIdTokenNoResponse.md +1 -1
- package/front_end/models/issues_manager/descriptions/federatedAuthRequestInvalidSigninResponse.md +1 -1
- package/front_end/models/issues_manager/descriptions/federatedAuthRequestManifestHttpNotFound.md +1 -1
- package/front_end/models/issues_manager/descriptions/federatedAuthRequestManifestInvalidResponse.md +1 -1
- package/front_end/models/issues_manager/descriptions/federatedAuthRequestManifestNoResponse.md +1 -1
- package/front_end/models/issues_manager/descriptions/federatedAuthRequestTooManyRequests.md +1 -1
- package/front_end/models/issues_manager/descriptions/federatedAuthUserInfoRequestInvalidAccountsResponse.md +1 -1
- package/front_end/models/issues_manager/descriptions/federatedAuthUserInfoRequestInvalidConfigOrWellKnown.md +1 -1
- package/front_end/models/issues_manager/descriptions/federatedAuthUserInfoRequestNoAccountSharingPermission.md +1 -1
- package/front_end/models/issues_manager/descriptions/federatedAuthUserInfoRequestNoApiPermission.md +1 -1
- package/front_end/models/issues_manager/descriptions/federatedAuthUserInfoRequestNoReturningUserFromFetchedAccounts.md +1 -1
- package/front_end/models/issues_manager/descriptions/federatedAuthUserInfoRequestNotIframe.md +1 -1
- package/front_end/models/issues_manager/descriptions/federatedAuthUserInfoRequestNotPotentiallyTrustworthy.md +1 -1
- package/front_end/models/issues_manager/descriptions/federatedAuthUserInfoRequestNotSameOrigin.md +1 -1
- package/front_end/models/issues_manager/descriptions/federatedAuthUserInfoRequestNotSignedInWithIdp.md +1 -1
- package/front_end/models/issues_manager/descriptions/fetchingPartitionedBlobURL.md +2 -2
- package/front_end/models/issues_manager/descriptions/genericFormAriaLabelledByToNonExistingIdError.md +2 -2
- package/front_end/models/issues_manager/descriptions/genericFormAutocompleteAttributeEmptyError.md +1 -1
- package/front_end/models/issues_manager/descriptions/genericFormDuplicateIdForInputError.md +1 -1
- package/front_end/models/issues_manager/descriptions/genericFormEmptyIdAndNameAttributesForInputError.md +2 -2
- package/front_end/models/issues_manager/descriptions/genericFormInputAssignedAutocompleteValueToIdOrNameAttributeError.md +2 -2
- package/front_end/models/issues_manager/descriptions/genericFormInputHasWrongButWellIntendedAutocompleteValueError.md +1 -1
- package/front_end/models/issues_manager/descriptions/genericFormInputWithNoLabelError.md +1 -1
- package/front_end/models/issues_manager/descriptions/genericFormLabelForMatchesNonExistingIdError.md +2 -2
- package/front_end/models/issues_manager/descriptions/genericFormLabelForNameError.md +1 -1
- package/front_end/models/issues_manager/descriptions/genericFormLabelHasNeitherForNorNestedInputError.md +1 -1
- package/front_end/models/issues_manager/descriptions/genericFormModelContextMissingToolName.md +1 -1
- package/front_end/models/issues_manager/descriptions/genericFormModelContextParameterMissingName.md +1 -1
- package/front_end/models/issues_manager/descriptions/genericFormModelContextRequiredParameterMissingName.md +1 -1
- package/front_end/models/issues_manager/descriptions/genericNavigationEntryMarkedSkippable.md +2 -2
- package/front_end/models/issues_manager/descriptions/heavyAd.md +1 -1
- package/front_end/models/issues_manager/descriptions/lazyLoadImageZeroSize.md +1 -1
- package/front_end/models/issues_manager/descriptions/navigatingPartitionedBlobURL.md +3 -3
- package/front_end/models/issues_manager/descriptions/permissionElementActivationDisabled.md +1 -1
- package/front_end/models/issues_manager/descriptions/permissionElementActivationDisabledWithOccluder.md +1 -1
- package/front_end/models/issues_manager/descriptions/permissionElementActivationDisabledWithOccluderParent.md +1 -1
- package/front_end/models/issues_manager/descriptions/permissionElementFencedFrameDisallowed.md +2 -2
- package/front_end/models/issues_manager/descriptions/permissionElementFontSizeTooLarge.md +2 -2
- package/front_end/models/issues_manager/descriptions/permissionElementFontSizeTooSmall.md +2 -2
- package/front_end/models/issues_manager/descriptions/permissionElementInsetBoxShadowUnsupported.md +1 -1
- package/front_end/models/issues_manager/descriptions/permissionElementInvalidDisplayStyle.md +2 -2
- package/front_end/models/issues_manager/descriptions/permissionElementInvalidSizeValue.md +2 -2
- package/front_end/models/issues_manager/descriptions/permissionElementInvalidType.md +2 -2
- package/front_end/models/issues_manager/descriptions/permissionElementInvalidTypeActivation.md +2 -2
- package/front_end/models/issues_manager/descriptions/permissionElementNonOpaqueColor.md +1 -1
- package/front_end/models/issues_manager/descriptions/permissionElementPaddingBottomUnsupported.md +2 -2
- package/front_end/models/issues_manager/descriptions/permissionElementPaddingRightUnsupported.md +2 -2
- package/front_end/models/issues_manager/descriptions/permissionElementRequestInProgress.md +2 -2
- package/front_end/models/issues_manager/descriptions/permissionElementSecurityChecksFailed.md +1 -1
- package/front_end/models/issues_manager/descriptions/permissionElementTypeNotSupported.md +2 -2
- package/front_end/models/issues_manager/descriptions/permissionElementUntrustedEvent.md +1 -1
- package/front_end/models/issues_manager/descriptions/placeholderDescriptionForInvisibleIssues.md +1 -1
- package/front_end/models/issues_manager/descriptions/selectElementAccessibilityDisallowedOptGroupChild.md +1 -1
- package/front_end/models/issues_manager/descriptions/selectElementAccessibilityDisallowedSelectChild.md +1 -1
- package/front_end/models/issues_manager/descriptions/selectElementAccessibilityInteractiveContentAttributesSelectDescendant.md +1 -1
- package/front_end/models/issues_manager/descriptions/selectElementAccessibilityInteractiveContentLegendChild.md +1 -1
- package/front_end/models/issues_manager/descriptions/selectElementAccessibilityInteractiveContentOptionChild.md +1 -1
- package/front_end/models/issues_manager/descriptions/selectElementAccessibilityNonPhrasingContentOptionChild.md +1 -1
- package/front_end/models/issues_manager/descriptions/selectivePermissionsIntervention.md +3 -3
- package/front_end/models/issues_manager/descriptions/sharedArrayBuffer.md +1 -1
- package/front_end/models/issues_manager/descriptions/sharedDictionaryUseErrorCrossOriginNoCorsRequest.md +1 -1
- package/front_end/models/issues_manager/descriptions/sharedDictionaryUseErrorMatchingDictionaryNotUsed.md +1 -1
- package/front_end/models/issues_manager/descriptions/sharedDictionaryUseErrorUnexpectedContentDictionaryHeader.md +1 -1
- package/front_end/models/issues_manager/descriptions/sharedDictionaryWriteErrorCossOriginNoCorsRequest.md +1 -1
- package/front_end/models/issues_manager/descriptions/sharedDictionaryWriteErrorDisallowedBySettings.md +1 -1
- package/front_end/models/issues_manager/descriptions/sharedDictionaryWriteErrorExpiredResponse.md +1 -1
- package/front_end/models/issues_manager/descriptions/sharedDictionaryWriteErrorFeatureDisabled.md +2 -2
- package/front_end/models/issues_manager/descriptions/sharedDictionaryWriteErrorInvalidStructuredHeader.md +1 -1
- package/front_end/models/issues_manager/descriptions/sharedDictionaryWriteErrorNavigationRequest.md +2 -2
- package/front_end/models/issues_manager/descriptions/sriInvalidSignatureHeader.md +4 -4
- package/front_end/models/issues_manager/descriptions/sriInvalidSignatureInputHeader.md +4 -4
- package/front_end/models/issues_manager/descriptions/sriMissingSignatureHeader.md +1 -1
- package/front_end/models/issues_manager/descriptions/sriMissingSignatureInputHeader.md +2 -2
- package/front_end/models/issues_manager/descriptions/sriSignatureHeaderValueIsIncorrectLength.md +2 -2
- package/front_end/models/issues_manager/descriptions/sriSignatureHeaderValueIsNotByteSequence.md +4 -4
- package/front_end/models/issues_manager/descriptions/sriSignatureHeaderValueIsParameterized.md +4 -4
- package/front_end/models/issues_manager/descriptions/sriSignatureInputHeaderInvalidComponentName.md +1 -1
- package/front_end/models/issues_manager/descriptions/sriSignatureInputHeaderInvalidComponentType.md +2 -2
- package/front_end/models/issues_manager/descriptions/sriSignatureInputHeaderInvalidDerivedComponentParameter.md +1 -1
- package/front_end/models/issues_manager/descriptions/sriSignatureInputHeaderInvalidHeaderComponentParameter.md +1 -1
- package/front_end/models/issues_manager/descriptions/sriSignatureInputHeaderInvalidParameter.md +2 -2
- package/front_end/models/issues_manager/descriptions/sriSignatureInputHeaderKeyIdLength.md +5 -5
- package/front_end/models/issues_manager/descriptions/sriSignatureInputHeaderMissingLabel.md +3 -3
- package/front_end/models/issues_manager/descriptions/sriSignatureInputHeaderMissingRequiredParameters.md +2 -2
- package/front_end/models/issues_manager/descriptions/sriSignatureInputHeaderValueMissingComponents.md +2 -2
- package/front_end/models/issues_manager/descriptions/sriSignatureInputHeaderValueNotInnerList.md +2 -2
- package/front_end/models/issues_manager/descriptions/sriValidationFailedIntegrityMismatch.md +4 -4
- package/front_end/models/issues_manager/descriptions/sriValidationFailedInvalidLength.md +3 -3
- package/front_end/models/issues_manager/descriptions/sriValidationFailedSignatureExpired.md +2 -2
- package/front_end/models/issues_manager/descriptions/sriValidationFailedSignatureMismatch.md +2 -2
- package/front_end/models/issues_manager/descriptions/stylesheetLateImport.md +1 -1
- package/front_end/models/issues_manager/descriptions/summaryElementAccessibilityInteractiveContentSummaryDescendant.md +1 -1
- package/front_end/models/issues_manager/descriptions/unencodedDigestIncorrectDigestLength.md +2 -2
- package/front_end/models/issues_manager/descriptions/unencodedDigestIncorrectDigestType.md +3 -3
- package/front_end/models/issues_manager/descriptions/unencodedDigestMalformedDictionary.md +2 -2
- package/front_end/models/issues_manager/descriptions/unencodedDigestUnknownAlgorithm.md +1 -1
- package/front_end/models/live-metrics/LiveMetrics.ts +59 -19
- package/front_end/models/live-metrics/web-vitals-injected/README.md +1 -1
- package/front_end/models/live-metrics/web-vitals-injected/spec/spec.ts +6 -1
- package/front_end/models/live-metrics/web-vitals-injected/web-vitals-injected.ts +11 -3
- package/front_end/models/logs/LogManager.ts +1 -1
- package/front_end/models/persistence/FileSystemWorkspaceBinding.ts +1 -1
- package/front_end/models/source_map_scopes/FunctionCodeResolver.ts +6 -7
- package/front_end/models/workspace_diff/WorkspaceDiff.ts +13 -14
- package/front_end/panels/ai_assistance/AiAssistancePanel.ts +15 -7
- package/front_end/panels/application/BackgroundServiceView.ts +18 -20
- package/front_end/panels/application/DOMStorageItemsView.ts +1 -2
- package/front_end/panels/application/KeyValueStorageItemsView.ts +12 -0
- package/front_end/panels/autofill/AutofillView.ts +17 -17
- package/front_end/panels/autofill/autofillView.css +7 -8
- package/front_end/panels/browser_debugger/CategorizedBreakpointsSidebarPane.ts +31 -31
- package/front_end/panels/browser_debugger/DOMBreakpointsSidebarPane.ts +15 -15
- package/front_end/panels/browser_debugger/XHRBreakpointsSidebarPane.ts +12 -12
- package/front_end/panels/browser_debugger/browser_debugger-meta.ts +27 -27
- package/front_end/panels/common/AiCodeCompletionDisclaimer.ts +14 -6
- package/front_end/panels/common/AiCodeCompletionSummaryToolbar.ts +14 -6
- package/front_end/panels/common/AiCodeCompletionTeaser.ts +13 -6
- package/front_end/panels/common/GeminiRebrandPromoDialog.ts +1 -1
- package/front_end/panels/console/ConsoleInsightTeaser.ts +13 -6
- package/front_end/panels/console/ConsoleView.ts +6 -6
- package/front_end/panels/console_counters/WarningErrorCounter.ts +4 -4
- package/front_end/panels/coverage/CoverageModel.ts +11 -1
- package/front_end/panels/elements/StylePropertiesSection.ts +59 -10
- package/front_end/panels/elements/StylesAiCodeCompletionProvider.ts +18 -7
- package/front_end/panels/elements/StylesSidebarPane.ts +48 -0
- package/front_end/panels/emulation/AdvancedApp.ts +18 -8
- package/front_end/panels/emulation/DeviceModeToolbar.ts +0 -1
- package/front_end/panels/emulation/DeviceModeView.ts +289 -164
- package/front_end/panels/emulation/MediaQueryInspector.ts +10 -6
- package/front_end/panels/emulation/deviceModeView.css +1 -0
- package/front_end/panels/event_listeners/EventListenersView.ts +8 -8
- package/front_end/panels/explain/components/ConsoleInsight.ts +15 -7
- package/front_end/panels/lighthouse/LighthouseController.ts +1 -6
- package/front_end/panels/network/NetworkLogView.ts +13 -14
- package/front_end/panels/screencast/ScreencastApp.ts +12 -6
- package/front_end/panels/screencast/ScreencastView.ts +37 -11
- package/front_end/panels/sensors/locationsSettingsTab.css +4 -0
- package/front_end/panels/settings/AISettingsTab.ts +13 -6
- package/front_end/panels/sources/DebuggerPlugin.ts +13 -2
- package/front_end/panels/sources/breakpointEditDialog.css +2 -2
- package/front_end/panels/timeline/components/LiveMetricsView.ts +14 -1
- package/front_end/panels/timeline/components/cpuThrottlingSelector.css +4 -0
- package/front_end/panels/timeline/components/liveMetricsView.css +28 -0
- package/front_end/panels/timeline/timeline-meta.ts +13 -0
- package/front_end/third_party/chromium/README.chromium +1 -1
- package/front_end/ui/components/menus/menu.css +4 -0
- package/front_end/ui/components/menus/menuItem.css +4 -0
- package/front_end/ui/components/menus/selectMenu.css +4 -0
- package/front_end/ui/components/menus/selectMenuButton.css +4 -0
- package/front_end/ui/components/text_editor/AiCodeCompletionProvider.ts +21 -10
- package/front_end/ui/components/text_editor/AiCodeGenerationProvider.ts +23 -12
- package/front_end/ui/components/text_editor/config.ts +7 -0
- package/front_end/ui/legacy/AppProvider.ts +2 -1
- package/front_end/ui/legacy/RootView.ts +8 -1
- package/front_end/ui/legacy/UniverseRequestEvent.ts +19 -0
- package/front_end/ui/legacy/Widget.ts +49 -6
- package/front_end/ui/legacy/inspectorCommon.css +1 -1
- package/front_end/ui/legacy/legacy.ts +2 -0
- package/front_end/ui/visual_logging/KnownContextValues.ts +2 -0
- package/package.json +1 -2
- package/front_end/models/issues_manager/descriptions/SameSiteExcludeContextDowngradeRead.md +0 -8
- package/front_end/models/issues_manager/descriptions/SameSiteExcludeContextDowngradeSet.md +0 -8
- package/front_end/models/issues_manager/descriptions/SameSiteExcludeNavigationContextDowngrade.md +0 -8
- package/front_end/models/issues_manager/descriptions/SameSiteWarnCrossDowngradeRead.md +0 -8
- package/front_end/models/issues_manager/descriptions/SameSiteWarnCrossDowngradeSet.md +0 -8
- package/front_end/models/issues_manager/descriptions/SameSiteWarnStrictLaxDowngradeStrict.md +0 -8
|
@@ -1 +1 @@
|
|
|
1
|
-
# getUserInfo() failed because the config and well-known files were invalid
|
|
1
|
+
# getUserInfo() failed because the config and well-known files were invalid
|
|
@@ -1 +1 @@
|
|
|
1
|
-
# getUserInfo() failed because the user
|
|
1
|
+
# getUserInfo() failed because the user hasn’t yet used FedCM on this site with the provided IDP
|
package/front_end/models/issues_manager/descriptions/federatedAuthUserInfoRequestNoApiPermission.md
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
# getUserInfo() is disabled because FedCM is disabled
|
|
1
|
+
# getUserInfo() is disabled because FedCM is disabled
|
|
@@ -1 +1 @@
|
|
|
1
|
-
# getUserInfo() failed because no account
|
|
1
|
+
# getUserInfo() failed because no account got was a returning account
|
package/front_end/models/issues_manager/descriptions/federatedAuthUserInfoRequestNotIframe.md
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
# getUserInfo() caller
|
|
1
|
+
# getUserInfo() caller isn’t an iframe
|
|
@@ -1 +1 @@
|
|
|
1
|
-
# getUserInfo() failed because the config URL
|
|
1
|
+
# getUserInfo() failed because the config URL isn’t potentially trustworthy
|
package/front_end/models/issues_manager/descriptions/federatedAuthUserInfoRequestNotSameOrigin.md
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
# getUserInfo() caller
|
|
1
|
+
# getUserInfo() caller isn’t same origin as the config URL
|
|
@@ -1 +1 @@
|
|
|
1
|
-
# getUserInfo() is disabled because the IDP Sign-In Status is signed-out
|
|
1
|
+
# getUserInfo() is disabled because the IDP Sign-In Status is signed-out
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
# Fetching
|
|
1
|
+
# Fetching partitioned blob URL issue
|
|
2
2
|
|
|
3
3
|
This issue occurs when a Blob URL access attempt was blocked because it was made from a cross-partition, same-origin context.
|
|
4
4
|
|
|
5
|
-
Make sure the Blob URL was created in the same [storage partition](storagePartitioningExplainer) as the context it
|
|
5
|
+
Make sure the Blob URL was created in the same [storage partition](storagePartitioningExplainer) as the context it’s being fetched from.
|
|
6
6
|
|
|
7
7
|
If access to unpartitioned Blob URLs is needed, the Storage Access API [can be used](storageAccessAPI).
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# An aria-labelledby attribute doesn
|
|
1
|
+
# An aria-labelledby attribute doesn’t match any element id
|
|
2
2
|
|
|
3
|
-
An `aria-labelledby` attribute doesn
|
|
3
|
+
An `aria-labelledby` attribute doesn’t match any element `id`. This might stop
|
|
4
4
|
the browser from correctly autofilling the form and accessibility tools from
|
|
5
5
|
working correctly.
|
|
6
6
|
|
package/front_end/models/issues_manager/descriptions/genericFormAutocompleteAttributeEmptyError.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Incorrect use of autocomplete attribute
|
|
2
2
|
|
|
3
|
-
A form field
|
|
3
|
+
A form field’s `autocomplete` attribute is empty. This might stop the browser from correctly autofilling the form.
|
|
4
4
|
|
|
5
5
|
To fix this issue, provide a valid `autocomplete` value.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Duplicate form field id in the same form
|
|
2
2
|
|
|
3
|
-
Multiple form field elements in the same form have the same `id` attribute value. This might
|
|
3
|
+
Multiple form field elements in the same form have the same `id` attribute value. This might stop the browser from correctly autofilling the form.
|
|
4
4
|
|
|
5
5
|
To fix this issue, use unique `id` attribute values for each form field.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# A form field element should have an id or name attribute
|
|
2
2
|
|
|
3
|
-
A form field element has neither an `id` nor a `name` attribute. This might
|
|
3
|
+
A form field element has neither an `id` nor a `name` attribute. This might stop the browser from correctly autofilling the form.
|
|
4
4
|
|
|
5
|
-
To fix this issue, add a unique `id` or `name` attribute to a form field. This
|
|
5
|
+
To fix this issue, add a unique `id` or `name` attribute to a form field. This isn’t strictly needed, but still recommended even if you have an autocomplete attribute on the same element.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
# An element doesn
|
|
1
|
+
# An element doesn’t have an autocomplete attribute
|
|
2
2
|
|
|
3
|
-
A form field has an `id` or `name` attribute that the browser
|
|
3
|
+
A form field has an `id` or `name` attribute that the browser’s autofill recognizes. However, it doesn’t have an `autocomplete` attribute assigned. This might stop the browser from correctly autofilling the form.
|
|
4
4
|
|
|
5
5
|
To fix this issue, provide an `autocomplete` attribute.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Non-standard `autocomplete` attribute value
|
|
2
2
|
|
|
3
|
-
An `autocomplete` attribute of a form field uses a non-standard HTML value. This might
|
|
3
|
+
An `autocomplete` attribute of a form field uses a non-standard HTML value. This might stop the browser from correctly autofilling the form.
|
|
4
4
|
|
|
5
5
|
To fix this issue, use a valid `autocomplete` value.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Form field without valid aria-labelledby attribute or associated label
|
|
2
2
|
|
|
3
|
-
A form field has neither a valid `aria-labelledby` attribute nor an associated `<label>`. This might
|
|
3
|
+
A form field has neither a valid `aria-labelledby` attribute nor an associated `<label>`. This might stop the browser from correctly autofilling the form and accessibility tools from working correctly.
|
|
4
4
|
|
|
5
5
|
To fix this issue, provide a `<label>` describing the purpose of the form field.
|
package/front_end/models/issues_manager/descriptions/genericFormLabelForMatchesNonExistingIdError.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Incorrect use of <label for=FORM_ELEMENT>
|
|
2
2
|
|
|
3
|
-
The label
|
|
3
|
+
The label’s `for` attribute doesn’t match any element `id`. This might stop the browser from correctly autofilling the form and accessibility tools from working correctly.
|
|
4
4
|
|
|
5
|
-
To fix this issue, make sure the label
|
|
5
|
+
To fix this issue, make sure the label’s `for` attribute references the correct `id` of a form field.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Incorrect use of <label for=FORM_ELEMENT>
|
|
2
2
|
|
|
3
|
-
The label
|
|
3
|
+
The label’s `for` attribute refers to a form field by its `name`, not its `id`. This might stop the browser from correctly autofilling the form and accessibility tools from working correctly.
|
|
4
4
|
|
|
5
5
|
To fix this issue, refer to form fields by their `id` attribute.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# No label associated with a form field
|
|
2
2
|
|
|
3
|
-
A `<label>` isn
|
|
3
|
+
A `<label>` isn’t associated with a form field.
|
|
4
4
|
|
|
5
5
|
To fix this issue, nest the `<input>` in the `<label>` or provide a `for` attribute on the `<label>` that matches a form field `id`.
|
package/front_end/models/issues_manager/descriptions/genericFormModelContextMissingToolName.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Missing tool name for a WebMCP declarative tool definition
|
|
2
2
|
|
|
3
|
-
This form is intended to be used as a WebMCP declarative tool definition, but it
|
|
3
|
+
This form is intended to be used as a WebMCP declarative tool definition, but it doesn’t specify a name. A tool name is required for an AI model to correctly identify and invoke the tool.
|
|
4
4
|
|
|
5
5
|
To fix this issue, provide a tool name via the `toolname` attribute.
|
package/front_end/models/issues_manager/descriptions/genericFormModelContextParameterMissingName.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Parameter missing name for a WebMCP declarative tool definition
|
|
2
2
|
|
|
3
|
-
An input element within this form lacks a `name` attribute. Without a name, the AI model
|
|
3
|
+
An input element within this form lacks a `name` attribute. Without a name, the AI model can’t format the parameter payload correctly when invoking the tool.
|
|
4
4
|
|
|
5
5
|
To fix this issue, ensure form parameters have a `name` attribute.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Required parameter missing name for a WebMCP declarative tool definition
|
|
2
2
|
|
|
3
|
-
A required input element within this form lacks a `name` attribute. Without a name, the AI model
|
|
3
|
+
A required input element within this form lacks a `name` attribute. Without a name, the AI model can’t format the parameter payload correctly when invoking the tool.
|
|
4
4
|
|
|
5
5
|
To fix this issue, ensure all required form parameters have a `name` attribute.
|
package/front_end/models/issues_manager/descriptions/genericNavigationEntryMarkedSkippable.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Session History Item Has Been Marked Skippable
|
|
2
2
|
|
|
3
3
|
A session history item was added by this document without any interaction from the
|
|
4
|
-
user. As a result, this document
|
|
5
|
-
back or forward via the browser
|
|
4
|
+
user. As a result, this document’s history items will be skipped if the user goes
|
|
5
|
+
back or forward via the browser’s UI (e.g., back/forward buttons), to stop pages
|
|
6
6
|
from trapping a user. If the user interacts with the page, the history items
|
|
7
7
|
will no longer be skipped.
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Chrome identifies heavy ads on your site that use too many resources without a user gesture. Heavy ads have an impact on performance and harm the user’s browsing experience. They increase battery drain, consume mobile data, and make your site slow. To improve the user experience, Chrome warns about or removes heavy ads.
|
|
4
4
|
|
|
5
|
-
An ad is considered heavy if the user
|
|
5
|
+
An ad is considered heavy if the user hasn’t interacted with it (for example, hasn’t tapped or clicked it) and it meets any of the following criteria:
|
|
6
6
|
* Uses the main thread for more than 60 seconds in total (CPU total limit)
|
|
7
7
|
* Uses the main thread for more than 15 seconds in any 30 second window (CPU peak limit)
|
|
8
8
|
* Uses more than 4 megabytes of network bandwidth (Network limit)
|
|
@@ -4,4 +4,4 @@ An image on this page specifies `loading="lazy"` without explicit width and heig
|
|
|
4
4
|
|
|
5
5
|
When lazy-loaded images lack dimensions, the browser allocates an initial 0x0 bounding box before network loading completes. As the user scrolls and the image loads, its sudden expansion triggers unexpected layout shifts (CLS) and can displace or clip surrounding content.
|
|
6
6
|
|
|
7
|
-
To
|
|
7
|
+
To stop layout shifts, always include explicit `width` and `height` attributes on lazy-loaded images, or define their aspect ratio using CSS.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
# Navigating
|
|
1
|
+
# Navigating partitioned blob URL issue
|
|
2
2
|
|
|
3
|
-
This issue occurs when
|
|
3
|
+
This issue occurs when `noopener` was enforced during navigation to a cross-partition, same-origin Blob URL. The navigation won’t be blocked due to it being cross-partition, but APIs like window.open won’t return a WindowProxy for the new window in this case.
|
|
4
4
|
|
|
5
|
-
If your application requires a WindowProxy object to be returned by navigating to the Blob URL, make sure the Blob URL has the same top-level site as the context it
|
|
5
|
+
If your application requires a WindowProxy object to be returned by navigating to the Blob URL, make sure the Blob URL has the same top-level site as the context it’s navigated fetched from.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Activation disabled
|
|
2
2
|
|
|
3
|
-
The "{PLACEHOLDER_Type}" element
|
|
3
|
+
The "{PLACEHOLDER_Type}" element couldn’t be activated for the following reason: {PLACEHOLDER_DisableReason}.
|
|
4
4
|
|
|
5
5
|
To resolve this issue, ensure that the element follows all styling restrictions and is fully visible to the user.
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Activation disabled
|
|
2
2
|
|
|
3
|
-
The "{PLACEHOLDER_Type}" element
|
|
3
|
+
The "{PLACEHOLDER_Type}" element couldn’t be activated for the following reason: {PLACEHOLDER_DisableReason}.
|
|
4
4
|
|
|
5
5
|
The element is occluded by: "{PLACEHOLDER_OccluderInfo}"
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Activation disabled
|
|
2
2
|
|
|
3
|
-
The "{PLACEHOLDER_Type}" element
|
|
3
|
+
The "{PLACEHOLDER_Type}" element couldn’t be activated for the following reason: {PLACEHOLDER_DisableReason}.
|
|
4
4
|
|
|
5
5
|
The element is occluded by: "{PLACEHOLDER_OccluderInfo}" (parent element: "{PLACEHOLDER_OccluderParentInfo}")
|
|
6
6
|
|
package/front_end/models/issues_manager/descriptions/permissionElementFencedFrameDisallowed.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Fenced frame disallowed
|
|
2
2
|
|
|
3
|
-
The "{PLACEHOLDER_Type}" element
|
|
3
|
+
The "{PLACEHOLDER_Type}" element isn’t allowed in a fenced frame.
|
|
4
4
|
|
|
5
|
-
To resolve this issue, ensure the element
|
|
5
|
+
To resolve this issue, ensure the element isn’t used in a fenced frame.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Font size too large
|
|
2
2
|
|
|
3
|
-
The "{PLACEHOLDER_Type}" element
|
|
3
|
+
The "{PLACEHOLDER_Type}" element’s font size is too large.
|
|
4
4
|
|
|
5
|
-
To resolve this issue, ensure that the element
|
|
5
|
+
To resolve this issue, ensure that the element’s font is at most `xx-large`.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Font size too small
|
|
2
2
|
|
|
3
|
-
The "{PLACEHOLDER_Type}" element
|
|
3
|
+
The "{PLACEHOLDER_Type}" element’s font size is too small.
|
|
4
4
|
|
|
5
|
-
To resolve this issue, ensure that the element
|
|
5
|
+
To resolve this issue, ensure that the element’s font is at least `small`.
|
package/front_end/models/issues_manager/descriptions/permissionElementInvalidDisplayStyle.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Invalid display style
|
|
2
2
|
|
|
3
|
-
The "{PLACEHOLDER_Type}" element has an invalid display style. Values that result in an unsupported layout
|
|
3
|
+
The "{PLACEHOLDER_Type}" element has an invalid display style. Values that result in an unsupported layout aren’t allowed.
|
|
4
4
|
|
|
5
|
-
To resolve this issue, consider using
|
|
5
|
+
To resolve this issue, consider using `inline-block`, `block`, or `flex` instead.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Invalid size value
|
|
2
2
|
|
|
3
|
-
Content, intrinsic, or stretch sizes
|
|
3
|
+
Content, intrinsic, or stretch sizes aren’t supported as values for the min/max width and height of the "{PLACEHOLDER_Type}" element.
|
|
4
4
|
|
|
5
|
-
To resolve this issue, use absolute or relative lengths for the element
|
|
5
|
+
To resolve this issue, use absolute or relative lengths for the element’s width and height.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Invalid type attribute
|
|
2
2
|
|
|
3
|
-
The "{PLACEHOLDER_Type}" type
|
|
3
|
+
The "{PLACEHOLDER_Type}" type isn’t supported.
|
|
4
4
|
|
|
5
|
-
To resolve this issue, ensure the element
|
|
5
|
+
To resolve this issue, ensure the element’s type is one of the supported values: "camera", "microphone", "geolocation", "camera microphone".
|
package/front_end/models/issues_manager/descriptions/permissionElementInvalidTypeActivation.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Invalid type activation
|
|
2
2
|
|
|
3
|
-
An element with the "{PLACEHOLDER_Type}" type was attempted to be activated. However this type
|
|
3
|
+
An element with the "{PLACEHOLDER_Type}" type was attempted to be activated. However this type isn’t supported.
|
|
4
4
|
|
|
5
|
-
To resolve this issue, ensure the element
|
|
5
|
+
To resolve this issue, ensure the element’s type is one of the supported values: "camera", "microphone", "geolocation", "camera microphone".
|
|
@@ -2,4 +2,4 @@
|
|
|
2
2
|
|
|
3
3
|
The text color or background color of the "{PLACEHOLDER_Type}" element is non-opaque.
|
|
4
4
|
|
|
5
|
-
To resolve this issue, ensure the element
|
|
5
|
+
To resolve this issue, ensure the element’s text and background colors have their alpha channel value at 100%.
|
package/front_end/models/issues_manager/descriptions/permissionElementPaddingBottomUnsupported.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Unsupported bottom padding
|
|
2
2
|
|
|
3
|
-
The "{PLACEHOLDER_Type}" element
|
|
3
|
+
The "{PLACEHOLDER_Type}" element doesn’t support `padding-bottom`.
|
|
4
4
|
`padding-bottom` is always set to be identical to `padding-top`.
|
|
5
5
|
|
|
6
|
-
To resolve this issue, ensure the element
|
|
6
|
+
To resolve this issue, ensure the element’s `padding-bottom` is unset or identical to `padding-top`.
|
package/front_end/models/issues_manager/descriptions/permissionElementPaddingRightUnsupported.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Unsupported right padding
|
|
2
2
|
|
|
3
|
-
The "{PLACEHOLDER_Type}" element
|
|
3
|
+
The "{PLACEHOLDER_Type}" element doesn’t support `padding-right`.
|
|
4
4
|
`padding-right` is always set to be identical to `padding-left`.
|
|
5
5
|
|
|
6
|
-
To resolve this issue, ensure the element
|
|
6
|
+
To resolve this issue, ensure the element’s `padding-right` is unset or identical to `padding-left`.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Request in progress
|
|
2
2
|
|
|
3
|
-
A permission request on the "{PLACEHOLDER_Type}" element was
|
|
3
|
+
A permission request on the "{PLACEHOLDER_Type}" element was stopped because a previous request is still in progress.
|
|
4
4
|
|
|
5
|
-
To resolve this issue, ensure that the site
|
|
5
|
+
To resolve this issue, ensure that the site doesn’t allow users to interact with the element behind the current content scrim (for example by moving the element to a document in a new window, which isn’t covered by the scrim).
|
package/front_end/models/issues_manager/descriptions/permissionElementSecurityChecksFailed.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Activation disabled (quota)
|
|
2
2
|
|
|
3
|
-
The "{PLACEHOLDER_Type}" element
|
|
3
|
+
The "{PLACEHOLDER_Type}" element couldn’t be activated because the page’s quota has been exceeded.
|
|
4
4
|
|
|
5
5
|
To resolve this issue, ensure that you have no more than 3 elements of the same type per page.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Permission not supported
|
|
2
2
|
|
|
3
|
-
The permission type "{PLACEHOLDER_Type}"
|
|
3
|
+
The permission type "{PLACEHOLDER_Type}" isn’t supported by this browser and therefore the element won’t be functional.
|
|
4
4
|
|
|
5
|
-
To resolve this issue, ensure the element
|
|
5
|
+
To resolve this issue, ensure the element’s type is one of the supported values: "camera", "microphone", "geolocation", "camera microphone".
|
|
@@ -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/front_end/models/issues_manager/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
|
|
|
@@ -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.
|
|
@@ -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
|
|
@@ -1 +1 @@
|
|
|
1
|
-
#
|
|
1
|
+
# compression dictionary is disabled by settings
|
package/front_end/models/issues_manager/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/front_end/models/issues_manager/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/front_end/models/issues_manager/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/front_end/models/issues_manager/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
|