0.4.4
0.4.4
Patch Changes
-
737dfae#234 Thanks @willamzv! - Consider<legend>for the name of its<fieldset>element.<fieldset> <legend><em>my</em> fieldset</legend> </fieldset>
Computing the name for this fieldset would've returned an empty string previously. It now correctly computes
my fieldsetfollowing the accessible name computation forfieldsetelements
-
969da7d#240 Thanks @eps1lon! - Reduce over-transpilationSwitched from
for-ofto.forEachor a basicforlooparray.push(...otherArray)topush.apply(array, otherArray)
This removed a bunch of babel junk that wasn't needed.
-
d578329#248 Thanks @eps1lon! - Consider<caption>for the name of its<table>element.<table> <caption> <em>my</em> table </caption> </table>
Computing the name for this table would've returned an empty string previously. It now correctly computes
my tablefollowing the accessible name computation fortableelements