[whatwg/dom] Can one get the "original" name of an element (#460)

given: 

```JS
const x = document.createElement("div");
x.innerHTML = "<TeSt>"
console.log(x.innerHTML); 
// "<test></test>"
```

For, `x.firstElementChild`, is it possible to get the, um, "original" name (i.e., "TeSt") that was used to create the element? 

Checking the spec, I'm guessing no - but wanted to double check in case I missed 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/460

Received on Monday, 22 May 2017 03:58:14 UTC