- From: Ryosuke Niwa <notifications@github.com>
- Date: Mon, 26 Oct 2020 11:03:28 -0700
- To: w3c/webcomponents <webcomponents@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Monday, 26 October 2020 18:03:41 UTC
@rniwa commented on this pull request. > +a *DOM part group* was represented by a [template element](https://html.spec.whatwg.org/multipage/scripting.html#the-template-element). +This proposal keeps that approach possible but does not keep it the sole approach possible. + +### Interfaces + +```webidl +interface Part { + attribute any value; + void commit(); +}; + +interface NodePart : Part { + readonly attribute Node node; +}; + +interface AttributePart : NodePart { Oh oops, that's a typo. It should inherit from `Part` -- 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/pull/899#discussion_r512164172
Received on Monday, 26 October 2020 18:03:41 UTC