- From: iteriani <notifications@github.com>
- Date: Fri, 15 Sep 2023 03:05:48 -0700
- To: WICG/webcomponents <webcomponents@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Friday, 15 September 2023 10:05:53 UTC
Consider the following test case. ``` const el = template`<div>{{#}}{{/#}}</div>`; const child = template`<span>{{#}}Something here{{/#}}</span>`; const part = el.content.getPartRoot().getParts()[0]; expect(part.getParts().length).toBe(0); part.replaceChildren(child); expect(part.getParts().length).toBe(1); ``` -- Reply to this email directly or view it on GitHub: https://github.com/WICG/webcomponents/issues/1030#issuecomment-1721015261 You are receiving this because you are subscribed to this thread. Message ID: <WICG/webcomponents/issues/1030/1721015261@github.com>
Received on Friday, 15 September 2023 10:05:53 UTC