You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This fixes several related issues:
* `<span>form-associated custom elements</span>` was not matching the
regex that was looking for `<code>` in the attribute index.
* Changing the regex to look for span or code causes many other lines to
be picked up. Thus, we introduce the new 'tr' state into the state
machine to better detect the first line of a <tr>.
* Even with that, we were now dying on global attributes, since they
don't have a domintro to get substituted in to. So we remove that
error state.
* Finally, we were now substituting in even in cases that just mention
the attribute, like "Global attributes, except the is attribute". So,
we need to add an escape hatch for that.
0 commit comments