-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Webcomponents randomly not rendered #27
Comments
Recommendation is to use only Custom Element from the Web-Components and not HTML Imports, therefore this issue can be a nice to have |
I agree with avoiding HTML imports. |
It seems that lifecycle execution ( Example: <axa-parent>
<axa-child></axa-child>
</axa-parent> Expected: `axa-parent` constructor
`axa-child` constructor
`axa-child` connectedCallback
`axa-parent` connectedCallback Observed (parent after child): `axa-child` constructor
`axa-child` connectedCallback
`axa-parent` constructor
`axa-parent` connectedCallback |
Exactly, like proposed specs describe it. |
As HTML imports are not reccomended, we keep this issue as very low prio |
i think is fixed.. feel free to reopen in case is not |
I don't know if it's fixed 🤔 |
Somehow importing our custom Web Components into Chrome by
HTML Imports
randomly triggers a weird bug in Chrome, which results in rendering the component in one place but not in another.Switching to pure ESnext based
import
's seems to make Firefox some troubles #25 :This bug isn't reasonable and needs to be
1000%
fixed.Todo
1000%
sure to understand the cause of this bug - no guessing. Ideally easily observable by failing test.The text was updated successfully, but these errors were encountered: