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

@ArkadiuszMichalski 
```js
var el = document.createElement("div");
el.classList = " a a b ";
console.log(el.className.length); // 3
console.log(el.classList.length); // 2
console.log(el.attributes[0].value); // "a b "
console.log(Array.prototype.slice.call(el.classList).join(" ")); // "a b"
```

---
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-208048613

Received on Sunday, 10 April 2016 19:32:27 UTC