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
The crawler skips "imported definitions", meaning those that some specs give a <dfn> to, but that are just a proxy to a definition in some other spec. That logic expects the markup of these imported definitions to be <dfn><a>foo</a></dfn>. The Ecmarkup tool seems to generate the opposite pattern: <a><dfn>foo</dfn></a>, which the crawler does not yet handle.
The text was updated successfully, but these errors were encountered:
The crawler expected "imported definitions" to use `<dfn>` as the wrapping
element with an inner `<a>` element. The Source map format spec now uses the
opposite pattern. This update expands the logic accordingly.
Close#1788.
Via tc39/ecma426#174
The crawler skips "imported definitions", meaning those that some specs give a
<dfn>
to, but that are just a proxy to a definition in some other spec. That logic expects the markup of these imported definitions to be<dfn><a>foo</a></dfn>
. The Ecmarkup tool seems to generate the opposite pattern:<a><dfn>foo</dfn></a>
, which the crawler does not yet handle.The text was updated successfully, but these errors were encountered: