From de90ecb46e0d53daa3aae872292b91487297f370 Mon Sep 17 00:00:00 2001 From: Elliott Marquez <5981958+e111077@users.noreply.github.com> Date: Mon, 1 Apr 2024 20:37:08 -0700 Subject: [PATCH] remove unnecessary describedby --- .../src/components/litdev-ripple-icon-button.ts | 7 ------- 1 file changed, 7 deletions(-) diff --git a/packages/lit-dev-content/src/components/litdev-ripple-icon-button.ts b/packages/lit-dev-content/src/components/litdev-ripple-icon-button.ts index 97933bd5c..5fa7b0a27 100644 --- a/packages/lit-dev-content/src/components/litdev-ripple-icon-button.ts +++ b/packages/lit-dev-content/src/components/litdev-ripple-icon-button.ts @@ -33,12 +33,6 @@ export class LitDevRippleIconButton extends LitElement { @property() haspopup = ''; - /** - * Whether or not the contents describe the button with aria-describedby. - */ - @property({type: Boolean}) - describedby = false; - /** * Aria expanded for the button. */ @@ -174,7 +168,6 @@ export class LitDevRippleIconButton extends LitElement { aria-live=${this.live ? this.live : nothing} aria-label=${this.label ? this.label : nothing} aria-haspopup=${this.haspopup ? this.haspopup : nothing} - aria-describedby=${this.describedby ? 'ripple' : nothing} aria-expanded=${this.expanded ? this.expanded : nothing} aria-controls=${this.controls ? this.controls : nothing} ?disabled=${this.disabled}