- From: jugglinmike <web-platform-tests-notifications@w3.org>
- Date: Wed, 08 Feb 2017 23:11:26 GMT
- To: public-web-platform-tests-notifications@w3.org
It looks like I referenced the wrong test entirely--that test also has a
distinct title! Sorry for the confusion; I meant to reference the following
test (double-checked this time):
```js
test(function () {
var element = define_new_custom_element(['title']);
var instance = document.createElement(element.name);
instance.setAttribute('class', 'hello world');
assert_array_equals(element.takeLog().types(), ['constructed']);
instance.classList.remove('world');
assert_array_equals(element.takeLog().types(), []);
}, 'remove on DOMTokenList must not enqueue an attributeChanged reaction when removing a value from an unobserved attribute');
```
*This* test has the same name as the one removed by this patch. The difference
between the two is the observed attribute: "lang" in one case and "title" in
the other. That's what I was getting at in my earlier comment.
View on GitHub: https://github.com/w3c/web-platform-tests/pull/4767#issuecomment-278493268
Received on Wednesday, 8 February 2017 23:11:38 UTC