summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/custom-elements/reactions/DOMTokenList.html
blob: 14a643c4a87455866e752873319cd43a4bc419cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
<!DOCTYPE html>
<html>
<head>
<title>Custom Elements: CEReactions on DOMTokenList interface</title>
<meta name="author" title="Ryosuke Niwa" href="mailto:rniwa@webkit.org">
<meta name="assert" content="add, remove, toggle, replace, and the stringifier of DOMTokenList interface must have CEReactions">
<meta name="help" content="https://dom.spec.whatwg.org/#node">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="../resources/custom-elements-helpers.js"></script>
<script src="./resources/reactions.js"></script>
</head>
<body>
<script>

test(function () {
    var element = define_new_custom_element(['class']);
    var instance = document.createElement(element.name);
    assert_array_equals(element.takeLog().types(), ['constructed']);
    instance.classList.add('foo');
    var logEntries = element.takeLog();
    assert_array_equals(logEntries.types(), ['attributeChanged']);
    assert_attribute_log_entry(logEntries.last(), {name: 'class', oldValue: null, newValue: 'foo', namespace: null});
}, 'add on DOMTokenList must enqueue an attributeChanged reaction when adding an attribute');

test(function () {
    var element = define_new_custom_element(['style']);
    var instance = document.createElement(element.name);
    assert_array_equals(element.takeLog().types(), ['constructed']);
    instance.classList.add('foo');
    assert_array_equals(element.takeLog().types(), []);
}, 'add on DOMTokenList must not enqueue an attributeChanged reaction when adding an unobserved attribute');

test(function () {
    var element = define_new_custom_element(['class']);
    var instance = document.createElement(element.name);
    instance.setAttribute('class', 'hello');
    assert_array_equals(element.takeLog().types(), ['constructed', 'attributeChanged']);
    instance.classList.add('world');
    var logEntries = element.takeLog();
    assert_array_equals(logEntries.types(), ['attributeChanged']);
    assert_attribute_log_entry(logEntries.last(), {name: 'class', oldValue: 'hello', newValue: 'hello world', namespace: null});
}, 'add on DOMTokenList must enqueue an attributeChanged reaction when adding a value to an existing attribute');

test(function () {
    var element = define_new_custom_element(['contenteditable']);
    var instance = document.createElement(element.name);
    instance.setAttribute('class', 'hello');
    assert_array_equals(element.takeLog().types(), ['constructed']);
    instance.classList.add('world');
    assert_array_equals(element.takeLog().types(), []);
}, 'add on DOMTokenList must not enqueue an attributeChanged reaction when adding a value to an unobserved attribute');

test(function () {
    var element = define_new_custom_element(['class']);
    var instance = document.createElement(element.name);
    assert_array_equals(element.takeLog().types(), ['constructed']);
    instance.classList.add('hello', 'world');
    var logEntries = element.takeLog();
    assert_array_equals(logEntries.types(), ['attributeChanged']);
    assert_attribute_log_entry(logEntries.last(), {name: 'class', oldValue: null, newValue: 'hello world', namespace: null});
}, 'add on DOMTokenList must enqueue exactly one attributeChanged reaction when adding multiple values to an attribute');

test(function () {
    var element = define_new_custom_element(['class']);
    var instance = document.createElement(element.name);
    instance.setAttribute('class', 'hello world');
    assert_array_equals(element.takeLog().types(), ['constructed', 'attributeChanged']);
    instance.classList.remove('world');
    var logEntries = element.takeLog();
    assert_array_equals(logEntries.types(), ['attributeChanged']);
    assert_attribute_log_entry(logEntries.last(), {name: 'class', oldValue: 'hello world', newValue: 'hello', namespace: null});
}, 'remove on DOMTokenList must enqueue an attributeChanged reaction when removing a value from an attribute');

test(function () {
    var element = define_new_custom_element(['class']);
    var instance = document.createElement(element.name);
    instance.setAttribute('class', 'hello foo world bar');
    assert_array_equals(element.takeLog().types(), ['constructed', 'attributeChanged']);
    instance.classList.remove('hello', 'world');
    var logEntries = element.takeLog();
    assert_array_equals(logEntries.types(), ['attributeChanged']);
    assert_attribute_log_entry(logEntries.last(), {name: 'class', oldValue: 'hello foo world bar', newValue: 'foo bar', namespace: null});
}, 'remove on DOMTokenList must enqueue exactly one attributeChanged reaction when removing multiple values to an attribute');

test(function () {
    var element = define_new_custom_element(['class']);
    var instance = document.createElement(element.name);
    instance.setAttribute('class', 'hello world');
    assert_array_equals(element.takeLog().types(), ['constructed', 'attributeChanged']);
    instance.classList.remove('foo');
    var logEntries = element.takeLog();
    assert_array_equals(logEntries.types(), ['attributeChanged']);
    assert_attribute_log_entry(logEntries.last(), {name: 'class', oldValue: 'hello world', newValue: 'hello world', namespace: null});
}, 'remove on DOMTokenList must enqueue an attributeChanged reaction even when removing a non-existent value from an attribute');

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');

test(function () {
    var element = define_new_custom_element(['class']);
    var instance = document.createElement(element.name);
    instance.setAttribute('class', 'hello');
    assert_array_equals(element.takeLog().types(), ['constructed', 'attributeChanged']);
    instance.classList.toggle('world');
    var logEntries = element.takeLog();
    assert_array_equals(logEntries.types(), ['attributeChanged']);
    assert_attribute_log_entry(logEntries.last(), {name: 'class', oldValue: 'hello', newValue: 'hello world', namespace: null});
}, 'toggle on DOMTokenList must enqueue an attributeChanged reaction when adding a value to an attribute');

test(function () {
    var element = define_new_custom_element(['class']);
    var instance = document.createElement(element.name);
    instance.setAttribute('class', 'hello world');
    assert_array_equals(element.takeLog().types(), ['constructed', 'attributeChanged']);
    instance.classList.toggle('world');
    var logEntries = element.takeLog();
    assert_array_equals(logEntries.types(), ['attributeChanged']);
    assert_attribute_log_entry(logEntries.last(), {name: 'class', oldValue: 'hello world', newValue: 'hello', namespace: null});
}, 'toggle on DOMTokenList must enqueue an attributeChanged reaction when removing a value from an attribute');

test(function () {
    var element = define_new_custom_element(['class']);
    var instance = document.createElement(element.name);
    instance.setAttribute('class', 'hello');
    assert_array_equals(element.takeLog().types(), ['constructed', 'attributeChanged']);
    instance.classList.replace('hello', 'world');
    var logEntries = element.takeLog();
    assert_array_equals(logEntries.types(), ['attributeChanged']);
    assert_attribute_log_entry(logEntries.last(), {name: 'class', oldValue: 'hello', newValue: 'world', namespace: null});
}, 'replace on DOMTokenList must enqueue an attributeChanged reaction when replacing a value in an attribute');

test(function () {
    var element = define_new_custom_element(['class']);
    var instance = document.createElement(element.name);
    instance.setAttribute('class', 'hello world');
    assert_array_equals(element.takeLog().types(), ['constructed', 'attributeChanged']);
    instance.classList.replace('foo', 'bar');
    assert_array_equals(element.takeLog().types(), []);
}, 'replace on DOMTokenList must not enqueue an attributeChanged reaction when the token to replace does not exist in the attribute');

test(function () {
    var element = define_new_custom_element(['title']);
    var instance = document.createElement(element.name);
    instance.setAttribute('class', 'hello');
    assert_array_equals(element.takeLog().types(), ['constructed']);
    instance.classList.replace('hello', 'world');
    assert_array_equals(element.takeLog().types(), []);
}, 'replace on DOMTokenList must not enqueue an attributeChanged reaction when replacing a value in an unobserved attribute');

test(function () {
    var element = define_new_custom_element(['class']);
    var instance = document.createElement(element.name);
    assert_array_equals(element.takeLog().types(), ['constructed']);
    instance.classList = 'hello';
    var logEntries = element.takeLog();
    assert_array_equals(logEntries.types(), ['attributeChanged']);
    assert_attribute_log_entry(logEntries.last(), {name: 'class', oldValue: null, newValue: 'hello', namespace: null});
}, 'the stringifier of DOMTokenList must enqueue an attributeChanged reaction when adding an observed attribute');

test(function () {
    var element = define_new_custom_element(['id']);
    var instance = document.createElement(element.name);
    instance.setAttribute('class', 'hello');
    assert_array_equals(element.takeLog().types(), ['constructed']);
    instance.classList = 'hello';
    var logEntries = element.takeLog();
    assert_array_equals(element.takeLog().types(), []);
}, 'the stringifier of DOMTokenList must not enqueue an attributeChanged reaction when adding an unobserved attribute');

test(function () {
    var element = define_new_custom_element(['class']);
    var instance = document.createElement(element.name);
    instance.setAttribute('class', 'hello');
    assert_array_equals(element.takeLog().types(), ['constructed', 'attributeChanged']);
    instance.classList = 'world';
    var logEntries = element.takeLog();
    assert_array_equals(logEntries.types(), ['attributeChanged']);
    assert_attribute_log_entry(logEntries.last(), {name: 'class', oldValue: 'hello', newValue: 'world', namespace: null});
}, 'the stringifier of DOMTokenList must enqueue an attributeChanged reaction when mutating the value of an observed attribute');

test(function () {
    var element = define_new_custom_element([]);
    var instance = document.createElement(element.name);
    instance.setAttribute('class', 'hello');
    assert_array_equals(element.takeLog().types(), ['constructed']);
    instance.classList = 'world';
    assert_array_equals(element.takeLog().types(), []);
}, 'the stringifier of DOMTokenList must not enqueue an attributeChanged reaction when mutating the value of an unobserved attribute');

test(function () {
    var element = define_new_custom_element(['class']);
    var instance = document.createElement(element.name);
    instance.setAttribute('class', 'hello');
    assert_array_equals(element.takeLog().types(), ['constructed', 'attributeChanged']);
    instance.classList = 'hello';
    var logEntries = element.takeLog();
    assert_array_equals(logEntries.types(), ['attributeChanged']);
    assert_attribute_log_entry(logEntries.last(), {name: 'class', oldValue: 'hello', newValue: 'hello', namespace: null});
}, 'the stringifier of DOMTokenList must enqueue an attributeChanged reaction when the setter is called with the original value of the attribute');

</script>
</body>
</html>