- From: Jake Archibald <notifications@github.com>
- Date: Fri, 08 Mar 2019 08:39:50 +0000 (UTC)
- To: whatwg/dom <dom@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Friday, 8 March 2019 08:40:13 UTC
```js const div1 = document.createElement('div'); const div2 = document.createElement('div'); div1.innerHTML = '<template>Hello</template>'; div2.innerHTML = '<template>World</template>'; console.log(div1.isEqualNode(div2)); ``` The above logs `true` because `isEqualNode` doesn't check the contents of template. Should it? -- 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/737
Received on Friday, 8 March 2019 08:40:13 UTC