Re: [w3c/webcomponents] Add an updated proposal for DOM Parts. (#899)

@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