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
{{ message }}
This repository has been archived by the owner on Feb 4, 2018. It is now read-only.
Currently there's only mount(). There might be use cases for:
light() - Only traverses light DOM
shadow() - Current impl of mount(). Uses shadowRoot, but does not descend into descendant components contained in the shadow root (only sees their light DOM).
shadow({ deep: true }) traverses child shadow roots all the way down
The text was updated successfully, but these errors were encountered:
Currently there's only
mount()
. There might be use cases for:light()
- Only traverses light DOMshadow()
- Current impl ofmount()
. UsesshadowRoot
, but does not descend into descendant components contained in the shadow root (only sees their light DOM).shadow({ deep: true })
traverses child shadow roots all the way downThe text was updated successfully, but these errors were encountered: