Re: [whatwg/dom] Change .createElement() namespace to match UAs (#213)

Any infos what Edge or WebKit set for `contentType` when using createDocument()? IE11 not support this IDL attribute.
```js
console.log(document.implementation.createDocument("http://www.w3.org/1999/xhtml", "html", null).contentType);
console.log(document.implementation.createDocument("http://www.w3.org/2000/svg", "svg", null).contentType);
console.log(document.implementation.createDocument("http://www.w3.org/1998/Math/MathML", "math", null).contentType);
```
Firefox and Opera(Presto): `application/xml application/xml application/xml`
Chrome: `application/xhtml+xml image/svg+xml application/xml`
WebKit?
Edge?

---
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/pull/213#issuecomment-209409485

Received on Wednesday, 13 April 2016 12:38:32 UTC