Re: [whatwg/dom] Validating a qualified name does not match browsers in a corner case (#319)

Correction: the following test with combining char

```html
<!DOCTYPE html>
<script>
try { document.createElementNS("a", "a:ெ") }
catch(e) { document.documentElement.textContent = e.name }
</script>
```

gives InvalidCharacterError per Chrome, NamespaceError per Firefox and spec, and no exception in Edge.  So if we change the spec, it may have to be only for ASCII characters, which seems even less reasonable.

-- 
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/319#issuecomment-243421943

Received on Tuesday, 30 August 2016 12:25:56 UTC