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
given a html container,
when it has a <template> child
then ensure that the template has a template-controller
and ensure contents are valid for the root html container.
example:
<select><templateif.bind="foo"><templaterepeat.for="item of items"><option...></option><!-- OK --><div...></div><!-- INVALID --></template></template></select>
should report that <div> is not a valid child of <select>
<select><template>
...
</template></select>
should warn that the template won't be activated in aurelia
The text was updated successfully, but these errors were encountered:
example:
should report that
<div>
is not a valid child of<select>
should warn that the template won't be activated in aurelia
The text was updated successfully, but these errors were encountered: