Open
Description
<div aria-label={dynamic}></div>
<x-child aria-label={dynamic}></x-child>
As demonstrated in #4787, if dynamic
is undefined
, then this renders (in engine-server
):
<div></div>
<x-child aria-activedescendant="undefined"></x-child>
And for null
:
<div></div>
<x-child aria-activedescendant="null"></x-child>
This is inconsistent at best and wrong at worst. We should probably omit the attribute in both cases.
Activity