chrome-devtools-frontend 1.0.1562051 → 1.0.1562614
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.
|
@@ -684,6 +684,7 @@ function renderSingleCSP(cspInfo: Protocol.Network.ContentSecurityPolicyStatus,
|
|
|
684
684
|
<devtools-button
|
|
685
685
|
.iconName=${'help'}
|
|
686
686
|
class='help-button'
|
|
687
|
+
.accessibleLabel=${i18nString(UIStrings.learnMore)}
|
|
687
688
|
.variant=${Buttons.Button.Variant.ICON}
|
|
688
689
|
.size=${Buttons.Button.Size.SMALL}
|
|
689
690
|
@click=${()=> {window.location.href = 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy-Report-Only';}}
|
|
@@ -231,6 +231,7 @@ export class HeaderSectionRow extends HTMLElement {
|
|
|
231
231
|
${showEditHeaderButton ? html`
|
|
232
232
|
<devtools-button
|
|
233
233
|
title=${i18nString(UIStrings.editHeader)}
|
|
234
|
+
.accessibleLabel=${i18nString(UIStrings.editHeader)}
|
|
234
235
|
.size=${Buttons.Button.Size.SMALL}
|
|
235
236
|
.iconName=${'edit'}
|
|
236
237
|
.variant=${Buttons.Button.Variant.ICON}
|
|
@@ -362,6 +362,7 @@ function renderSettings({
|
|
|
362
362
|
class=${Lit.Directives.classMap(replaySettingsButtonClassMap)}
|
|
363
363
|
@keydown=${isEditable && onReplaySettingsKeydown}
|
|
364
364
|
@click=${isEditable && onToggleReplaySettings}
|
|
365
|
+
aria-expanded=${replaySettingsButtonClassMap.expanded ?? false}
|
|
365
366
|
tabindex="0"
|
|
366
367
|
role="button"
|
|
367
368
|
jslog=${VisualLogging.action('replay-settings').track({click: true})}
|
package/package.json
CHANGED