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

@ArkadiuszMichalski : Why is the behavior wrong?

el.classList = " a a b ";
should be equivalent to calling:
el.classList.value = "a a b ";

shouldn't it?

in which case, el.attributes[0].value should probably return "a b".

If there is a bug, I don't mind fixing it but this looks like expected behavior to me.

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

Received on Sunday, 10 April 2016 20:27:47 UTC