Re: [w3c/webcomponents] How should various document internal references work when SVG is being used in shadow DOM (#179)

> > @rniwa maybe there could be some specific syntax allowing shadow DOM items to reach out to search segments outside their shadow tree? Seems to me that reaching out shouldn't be that bad, at least as explicitly specified intention, it's not like reaching in to mess with isolated component.
> 
> Perhaps. The trick is to come up with a proposal that's backwards compatible, which might be tricky.

```javascript
element.attachShadow({
    mode: 'open',
    delegatesFocus: true,
    xlink: 'parent',
    cssPassThrough: true
})
```

;) I donno how to write specs ...

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/webcomponents/issues/179#issuecomment-513465093

Received on Saturday, 20 July 2019 12:53:13 UTC