[whatwg/dom] isEqualNode and <template> (#737)

```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