- From: C. Scott Ananian <notifications@github.com>
- Date: Mon, 06 Jun 2016 05:10:04 -0700
- To: w3c/DOM-Parsing <DOM-Parsing@noreply.github.com>
- Cc:
Received on Monday, 6 June 2016 12:10:59 UTC
@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