Re: [whatwg/dom] Future for unique tokens in DOMTokenList (#201)

@mgol Can you report what Safari Tech Preview product for this:

```
<script>
 var el = document.createElement("div");
 el.classList = " a a b ";
 console.log(el.className.length); // 7
 console.log(el.classList.length); // 3
 console.log(el.attributes[0].value); // " a a b "
 console.log(Array.prototype.slice.call(el.classList).join(" ")); // "a a b"
</script>
```

---
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/201#issuecomment-208048248

Received on Sunday, 10 April 2016 19:26:34 UTC