- From: Andrea Giammarchi <notifications@github.com>
- Date: Wed, 21 Feb 2018 17:23:52 +0000 (UTC)
- To: whatwg/dom <dom@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Wednesday, 21 February 2018 17:24:48 UTC
@rniwa what you described looks more like a `blur` related bug (either browser or specs) but I'm happy you found a concrete use case.
Another one I have these days is a declarative way for an element inside a template to perform setup operations without needing its container to know about these
```html
<tempalte>
<div>
One <span>or more</span> elements and then
<p
class="timer"
onconnected="this.textContent = (new Date).toLocaleString()"
> time </p>
</div>
</template>
```
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/dom/issues/533#issuecomment-367403285
Received on Wednesday, 21 February 2018 17:24:48 UTC