summaryrefslogtreecommitdiff
path: root/Base/res/html/misc/attributes.html
blob: ee36a22b661fb01b634f8921bad5ec72beb4d496 (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
211
<head>
    <style>
        .pass, .fail {
            height: 30px;
            line-height: 30px;
            color: white;
            display: block;
            border: 1px solid black;
            margin: 3px;
            padding: 3px;
        }

        .pass { background-color: green; }
        .fail { background-color: red; }
    </style>
</head>
<body>
    <div></div>
    <div id=test1></div>

    <script>
        let test0 = document.getElementsByTagName('div')[0];
        let test1 = document.getElementById('test1');

        const bindMethodsForTest = (method) => {
            let failures = 0;

            const pass = (message) => {
                if (failures > 0)
                    return;

                const span = document.createElement('span');
                span.innerHTML = `Pass! ${method}`;
                span.setAttribute('class', 'pass');
                document.body.appendChild(span);
            };

            const fail = (message) => {
                const span = document.createElement('span');
                span.innerHTML = `Fail! ${method}: ${message}`;
                span.setAttribute('class', 'fail');
                document.body.appendChild(span);
                ++failures;
            };

            return [pass, fail];
        };

        (() => {
            const [pass, fail] = bindMethodsForTest('hasAttributes');

            if (test0.hasAttributes())
                fail('test0 should not have any attributes');
            if (!test1.hasAttributes())
                fail('test1 should have attributes');

            pass();
        })();

        (() => {
            const [pass, fail] = bindMethodsForTest('hasAttribute');

            if (test0.hasAttribute('id'))
                fail('test0 should not have an "id" attribute');
            if (test0.hasAttribute('foo'))
                fail('test0 should not have a "foo" attribute');

            if (!test1.hasAttribute('id'))
                fail('test1 should have an "id" attribute');
            if (test1.hasAttribute('foo'))
                fail('test1 should not have a "foo" attribute');

            pass();
        })();

        (() => {
            const [pass, fail] = bindMethodsForTest('getAttribute');

            if ((attr = test0.getAttribute('id')) !== null)
                fail(`test0 should not have an "id" attribute but has "${attr}"`);
            if ((attr = test0.getAttribute('foo')) !== null)
                fail(`test0 should not have a "foo" attribute but has "${attr}"`);

            if ((attr = test1.getAttribute('id')) !== 'test1')
                fail(`test1 should have an "id" attribute of "test1" but has "${attr}"`);
            if ((attr = test1.getAttribute('foo')) !== null)
                fail(`test1 should not have a "foo" attribute but has "${attr}"`);

            pass();
        })();

        (() => {
            const [pass, fail] = bindMethodsForTest('setAttribute');

            try {
                test0.setAttribute('', '');
                fail('Expected setting an empty attribute name to throw');
            } catch (error) {
                if (error.name !== 'InvalidCharacterError')
                    fail(`Expected exception to be a DOMException of type InvalidCharacterError but is "${error.name}"`);
            }

            test0.setAttribute('foo', '123');

            if (test0.attributes.length !== 1)
                fail('test0 should have 1 attribute');
            if ((attr = test0.getAttribute('foo')) !== '123')
                fail(`test0 should have a "foo" attribute of "123" but has "${attr}"`);

            test0.setAttribute('bar', '456');

            if (test0.attributes.length !== 2)
                fail(`test0 should have 2 attributes but has ${test0.attributes.length}`);
            if ((attr = test0.getAttribute('bar')) !== '456')
                fail(`test0 should have a "bar" attribute of "456" but has "${attr}"`);

            test0.setAttribute('foo', '789');

            if (test0.attributes.length !== 2)
                fail(`test0 should have 2 attributes but has ${test0.attributes.length}`);
            if ((attr = test0.getAttribute('foo')) !== '789')
                fail(`test0 should have a "foo" attribute of "789" but has "${attr}"`);

            try {
                const foo = test0.attributes.item(0);
                test0.attributes.setNamedItem(foo);
            } catch (error) {
                fail(`Re-assigning an attribute to the same element should not throw: ${error}`);
            }

            try {
                const foo = test0.attributes.item(0);
                test1.attributes.setNamedItem(foo);

                fail('Expected re-assigning an attribute to throw');
            } catch (error) {
                if (error.name !== 'InUseAttributeError')
                    fail(`Expected exception to be a DOMException of type InUseAttributeError but is "${error.name}"`);
            }

            pass();
        })();

        (() => {
            const [pass, fail] = bindMethodsForTest('removeAttribute');

            test0.setAttribute('foo', '123');

            if ((attr = test0.getAttribute('foo')) !== '123')
                fail(`test0 should have a "foo" attribute of "123" but has "${attr}"`);

            test0.removeAttribute('foo');

            if (test0.hasAttribute('foo'))
                fail('test0 should not have a "foo" attribute');

            try {
                test0.removeAttribute('foo');
            } catch (error) {
                fail(`Removing a non-existent attribute from an element should not throw: ${error}`);
            }

            try {
                test0.attributes.removeNamedItem('foo');
                fail('Expected removing a non-existent attribute from a named node map to throw');
            } catch (error) {
                if (error.name !== 'NotFoundError')
                    fail(`Expected exception to be a DOMException of type NotFoundError but is "${error.name}"`);
            }

            pass();
        })();

        (() => {
            const [pass, fail] = bindMethodsForTest('attributes.length');
            const attributes = test1.attributes;

            if (attributes.length !== 1)
                fail(`test1 should have 1 attribute but has ${attributes.length}`);

            test1.setAttribute('foo', '123');

            if (attributes.length !== 2)
                fail(`test1 should have 2 attributes but has ${attributes.length}`);

            test1.removeAttribute('foo');

            if (attributes.length !== 1)
                fail(`test1 should have 1 attribute but has ${attributes.length}`);

            pass();
        })();

        (() => {
            const [pass, fail] = bindMethodsForTest('attributes.items');

            const attribute0 = test1.attributes.item(0);

            if (attribute0.name !== 'id')
                fail(`test1's first attribute's name should be "id" but is "${attribute0.name}"`);
            if (attribute0.value !== 'test1')
                fail(`test1's first attribute's value should be "test1" but is "${attribute0.value}"`);

            const attribute1 = test1.attributes.item(1);
            if (attribute1 !== null)
                fail(`test1 should not have a second attribute but has ${attribute1}`);

            pass();
        })();
    </script>
</body>