[w3c/webcomponents] Constructing a custom element synchronously drops prefix from its name (#607)

Namely, 
```js
let x = document.createElementNS('http://www.w3.org/1999/xhtml', 'h:div')
```
then `x.prefix` is `"h"` but

```js
class Custom extends HTMLElement {}
let y = document.createElementNS('http://www.w3.org/1999/xhtml', 'my-custom')
```
then then `y.prefix` is `null`.

-- 
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/webcomponents/issues/607

Received on Sunday, 13 November 2016 01:45:40 UTC