robglidden

Results 16 comments of robglidden

Good to see in the updated explainer consideration of import attributes like SVG. I note that this already works from inside a shadow DOM: ```html ``` What you can't do...

Fetching seems to have the benefit that: ```html ``` Would behave like: ```html ``` In that /foo.css would only be network-loaded once, even if referenced in multiple shadow roots (assuming...

What if we assumed that `adoptedstylesheets="/foo.css"` was instead a reference to a genuine, regular (CSS) module, and that modules in general were extended to also support inline modules, which I...

`` ([see](https://github.com/htmlcomponents/declarative-shadow-imports/issues/2)) seems to have the advantage that depending on the attribute it could be either: 1) available to be adopted into a shadow DOM, without also applying to the...

When I try: ```html body { border: 2px dashed green; } body { border: 2px dotted red; } body { border: 2px solid yellow; } ``` Only `` has a...

A related [TAG review](https://github.com/w3ctag/design-reviews/issues/1000#issuecomment-2433471327) also said as to "why `` or `@import` cannot be used for sharing styles across shadow roots", "perhaps the issue can be addressed at the root,...