Re: [w3c/DOM-Parsing] innerHTML needs special case for <template> (#1)

@rniwa:
```
t = document.createElement('template');
t.innerHTML = '<p>ABC</p>';
t.insertAdjacentHTML('beforeend', 'def');
console.log(t.innerHTML);
```
Expected output on console is `<p>ABC</p>def`.
Output according to current spec is the empty string.

---
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/DOM-Parsing/issues/1#issuecomment-223941035

Received on Monday, 6 June 2016 12:10:59 UTC