summaryrefslogtreecommitdiffstats
path: root/dom/html/test/forms/test_form_attribute-1.html
blob: 6735f514ae3870ea704c40c4849ed9859dd99e82 (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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=588683
-->
<head>
  <title>Test for form attributes 1</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=588683">Mozilla Bug 588683</a>
<p id="display"></p>
<div id="content" style="display: none">
</div>
<pre id="test">
<script type="application/javascript">

/** Test for form attributes 1 **/

/**
 * All functions take an array of forms in first argument and an array of
 * elements in second argument.
 * Then, it returns an array containing an array of form and an array of array
 * of elements. The array represent the form association with elements like this:
 * [ [ form1, form2 ], [ [ elmt1ofForm1, elmt2ofForm2 ], [ elmtofForm2 ] ] ]
 */

/**
 * test0a and test0b are testing the regular behavior of form ownership.
 */
function test0a(aForms, aElements)
{
  // <form><element></form>
  // <form><element></form>
  aForms[0].appendChild(aElements[0]);
  aForms[1].appendChild(aElements[1]);

  return [[aForms[0],aForms[1]],[[aElements[0]],[aElements[1]]]];
}

function test0b(aForms, aElements)
{
  // <form><element><form><element></form></form>
  aForms[0].appendChild(aElements[0]);
  aForms[0].appendChild(aForms[1]);
  aForms[1].appendChild(aElements[1]);

  return [[aForms[0],aForms[1]],[[aElements[0]],[aElements[1]]]];
}

/**
 * This function test that, when an element is not a descendant of a form
 * element and has @form set to a valid form id, it's form owner is the form
 * which has the id.
 */
function test1(aForms, aElements)
{
  // <form id='f'></form><element id='f'>
  aForms[0].id = 'f';
  aElements[0].setAttribute('form', 'f');

  return [[aForms[0]], [[aElements[0]]]];
}

/**
 * This function test that, when an element is a descendant of a form
 * element and has @form set to a valid form id (not it's descendant), it's form
 * owner is the form which has the id.
 */
function test2(aForms, aElements)
{
  // <form id='f'></form><form><element form='f'></form>
  aForms[0].id = 'f';
  aForms[1].appendChild(aElements[0]);
  aElements[0].setAttribute('form', 'f');

  return [[aForms[0], aForms[1]], [[aElements[0]],[]]];
}

/**
 * This function test that, when an element is a descendant of a form
 * element and has @form set to a valid form id (not it's descendant), then the
 * form attribute is removed, it does not have a form owner.
 */
function test3(aForms, aElements)
{
  // <form id='f'></form><form><element form='f'></form>
  aForms[0].id = 'f';
  aForms[1].appendChild(aElements[0]);
  aElements[0].setAttribute('form', 'f');
  aElements[0].removeAttribute('form');

  return [[aForms[0], aForms[1]], [[],[aElements[0]]]];
}

/**
 * This function test that, when an element is a descendant of a form
 * element and has @form set to a valid form id (not it's descendant), then the
 * form's id attribute is removed, it does not have a form owner.
 */
function test4(aForms, aElements)
{
  // <form id='f'></form><form><element form='f'></form>
  aForms[0].id = 'f';
  aForms[1].appendChild(aElements[0]);
  aElements[0].setAttribute('form', 'f');
  aForms[0].removeAttribute('id');

  return [[aForms[0], aForms[1]], [[],[]]];
}

/**
 * This function test that, when an element is a descendant of a form
 * element and has @form set to an invalid form id, then it does not have a form
 * owner.
 */
function test5(aForms, aElements)
{
  // <form id='f'></form><form><element form='foo'></form>
  aForms[0].id = 'f';
  aForms[1].appendChild(aElements[0]);
  aElements[0].setAttribute('form', 'foo');

  return [[aForms[0], aForms[1]], [[],[]]];
}

/**
 * This function test that, when an element is a descendant of a form
 * element and has @form set to a valid form id (not it's descendant), then the
 * form id attribute is changed to an invalid id, it does not have a form owner.
 */
function test6(aForms, aElements)
{
  // <form id='f'></form><form><element form='f'></form>
  aForms[0].id = 'f';
  aForms[1].appendChild(aElements[0]);
  aElements[0].setAttribute('form', 'f');
  aElements[0].setAttribute('form', 'foo');

  return [[aForms[0], aForms[1]], [[],[]]];
}

/**
 * This function test that, when an element is a descendant of a form
 * element and has @form set to an invalid form id, then the form id attribute
 * is changed to a valid form id, it's form owner is the form which has this id.
 */
function test7(aForms, aElements)
{
  // <form id='f'></form><form><element form='foo'></form>
  aForms[0].id = 'f';
  aForms[1].appendChild(aElements[0]);
  aElements[0].setAttribute('form', 'foo');
  aElements[0].setAttribute('form', 'f');

  return [[aForms[0], aForms[1]], [[aElements[0]],[]]];
}

/**
 * This function test that, when an element is a descendant of a form
 * element and has @form set to a list of ids containing one valid form, then
 * it does not have a form owner.
 */
function test8(aForms, aElements)
{
  // <form id='f'></form><form><element form='f foo'></form>
  aForms[0].id = 'f';
  aForms[1].appendChild(aElements[0]);
  aElements[0].setAttribute('form', 'f foo');

  return [[aForms[0], aForms[1]], [[],[]]];
}

/**
 * This function test that, when an element is a descendant of a form
 * element and has @form set to a form id which is valid in a case insensitive
 * way, then it does not have a form owner.
 */
function test9(aForms, aElements)
{
  // <form id='f'></form><form><element form='F'></form>
  aForms[0].id = 'f';
  aForms[1].appendChild(aElements[0]);
  aElements[0].setAttribute('form', 'F');

  return [[aForms[0], aForms[1]], [[],[]]];
}

/**
 * This function test that, when an element is a descendant of a form
 * element and has @form set to a form id which is not a valid id, then it's
 * form owner is it does not have a form owner.
 */
function test10(aForms, aElements)
{
  // <form id='F'></form><form><element form='f'></form>
  aForms[0].id = 'F';
  aForms[1].appendChild(aElements[0]);
  aElements[0].setAttribute('form', 'f');

  return [[aForms[0], aForms[1]], [[],[]]];
}

/**
 * This function test that, when an element is a descendant of a form
 * element and has @form set to a form id which is not a valid id, then it's
 * form owner is it does not have a form owner.
 */
function test11(aForms, aElements)
{
  // <form id='foo bar'></form><form><element form='foo bar'></form>
  aForms[0].id = 'foo bar';
  aForms[1].appendChild(aElements[0]);
  aElements[0].setAttribute('form', 'foo bar');

  return [[aForms[0], aForms[1]], [[aElements[0]],[]]];
}

/**
 * This function test that, when an element is a descendant of a form
 * element and has @form set to a valid form id and the form id change, then
 * it does not have a form owner.
 */
function test12(aForms, aElements)
{
  // <form id='f'></form><form><element form='f'></form>
  aForms[0].id = 'f';
  aForms[1].appendChild(aElements[0]);
  aElements[0].setAttribute('form', 'f');
  aForms[0].id = 'foo';

  return [[aForms[0], aForms[1]], [[],[]]];
}

/**
 * This function test that, when an element is a descendant of a form
 * element and has @form set to an invalid form id and the form id change to a
 * valid one, then it's form owner is the form which has the id.
 */
function test13(aForms, aElements)
{
  // <form id='foo'></form><form><element form='f'></form>
  aForms[0].id = 'foo';
  aForms[1].appendChild(aElements[0]);
  aElements[0].setAttribute('form', 'f');
  aForms[0].id = 'f';

  return [[aForms[0], aForms[1]], [[aElements[0]],[]]];
}

/**
 * This function test that, when an element is a descendant of a form
 * element and has @form set to a valid form id and a form with the same id is
 * inserted before in the tree, then it's form owner is the form which has the
 * id.
 */
function test14(aForms, aElements)
{
  // <form id='f'></form><form><element form='f'></form>
  aForms[0].id = 'f';
  aForms[1].appendChild(aElements[0]);
  aElements[0].setAttribute('form', 'f');
  aForms[2].id = 'f';

  document.getElementById('content').insertBefore(aForms[2], aForms[0]);

  return [[aForms[0], aForms[1], aForms[2]], [[],[],[aElements[0]]]];
}

/**
 * This function test that, when an element is a descendant of a form
 * element and has @form set to a valid form id and an element with the same id is
 * inserted before in the tree, then it does not have a form owner.
 */
function test15(aForms, aElements)
{
  // <form id='f'></form><form><element form='f'></form>
  aForms[0].id = 'f';
  aForms[1].appendChild(aElements[0]);
  aElements[0].setAttribute('form', 'f');
  aElements[1].id = 'f';

  document.getElementById('content').insertBefore(aElements[1], aForms[0]);

  return [[aForms[0], aForms[1]], [[],[]]];
}

/**
 * This function test that, when an element is a descendant of a form
 * element and has @form set to a valid form id and the form is removed from
 * the tree, then it does not have a form owner.
 */
function test16(aForms, aElements)
{
  // <form id='f'></form><form><element form='f'></form>
  aForms[0].id = 'f';
  aForms[1].appendChild(aElements[0]);
  aElements[0].setAttribute('form', 'f');
  aElements[1].id = 'f';

  document.getElementById('content').removeChild(aForms[0]);

  return [[aForms[0], aForms[1]], [[],[]]];
}

/**
 * This function test that, when an element is a descendant of a form element
 * and has @form set to the empty string, it does not have a form owner.
 */
function test17(aForms, aElements)
{
  // <form><element form=''></form>
  aForms[0].appendChild(aElements[0]);
  aElements[0].setAttribute('form', '');

  return [[aForms[0]], [[]]];
}

/**
 * This function test that, when an element is a descendant of a form element
 * and has @form set to the empty string, it does not have a form owner even if
 * it's parent has its id equals to the empty string.
 */
function test18(aForms, aElements)
{
  // <form id=''><element form=''></form>
  aForms[0].id = '';
  aForms[0].appendChild(aElements[0]);
  aElements[0].setAttribute('form', '');

  return [[aForms[0]], [[]]];
}

/**
 * This function test that, when an element is a descendant of a form element
 * and has @form set to a valid form id and the element is being moving inside
 * it's parent, it's form owner will remain the form with the id.
 */
function test19(aForms, aElements)
{
  // <form id='f'></form><form><element form='f'><element></form>
  aForms[0].id = 'f';
  aForms[1].appendChild(aElements[0]);
  aForms[1].appendChild(aElements[1]);
  aElements[0].setAttribute('form', 'f');
  aForms[1].appendChild(aElements[0]);

  return [[aForms[0],aForms[1]],[[aElements[0]],[aElements[1]]]];
}

/**
 * This function test that, when an element is a descendant of a form element
 * and has @form set to a valid form id and the element is being moving inside
 * another form, it's form owner will remain the form with the id.
 */
function test20(aForms, aElements)
{
  // <form id='f'></form><form><element form='f'><element></form>
  aForms[0].id = 'f';
  aForms[1].appendChild(aElements[0]);
  aForms[1].appendChild(aElements[1]);
  aElements[0].setAttribute('form', 'f');
  aForms[2].appendChild(aElements[0]);

  return [[aForms[0],aForms[1],aForms[2]],[[aElements[0]],[aElements[1]],[]]];
}

/**
 * This function test that when removing a form, the elements with a @form set
 * will be correctly removed from there form owner.
 */
function test21(aForms, aElements)
{
  // <form id='f'><form><form><element form='f'></form>
  aForms[0].id = 'f';
  aForms[1].appendChild(aElements[0]);
  aElements[0].setAttribute('form', 'f');
  document.getElementById('content').removeChild(aForms[1]);

  return [[aForms[0]],[[]]];
}

var functions = [
  test0a, test0b,
  test1, test2, test3, test4, test5, test6, test7, test8, test9,
  test10, test11, test12, test13, test14, test15, test16, test17, test18, test19,
  test20, test21,
];

// Global variable to have an easy access to <div id='content'>.
var content = document.getElementById('content');

// Initializing the needed elements.
var forms = [
  document.createElement('form'),
  document.createElement('form'),
  document.createElement('form'),
];

var elementNames = [
  'button', 'fieldset', 'input', 'label', 'object', 'output', 'select',
  'textarea'
];

var todoElements = [
  ['keygen', 'Keygen'],
];

for (var e of todoElements) {
  var node = document.createElement(e[0]);
  var nodeString = HTMLElement.prototype.toString.apply(node);
  nodeString = nodeString.replace(/Element[\] ].*/, "Element");
  todo_is(nodeString, "[object HTML" + e[1] + "Element",
          e[0] + " should not be implemented");
}

for (var name of elementNames) {
  var elements = [
    document.createElement(name),
    document.createElement(name),
  ];

  for (var func of functions) {
    // Clean-up.
    while (content.firstChild) {
      content.firstChild.remove();
    }
    for (form of forms) {
      content.appendChild(form);
      form.removeAttribute('id');
    }
    for (e of elements) {
      content.appendChild(e);
      e.removeAttribute('form');
      is(e.form, null, "The element should not have a form owner");
    }

    // Calling the test.
    var results = func(forms, elements);

    // Checking the results.
    var formsList = results[0];
    for (var i=0; i<formsList.length; ++i) {
      var elementsList = results[1][i];
      if (name != 'label' && name != 'meter' && name != 'progress') {
        is(formsList[i].elements.length, elementsList.length,
           "The form should contain " + elementsList.length + " elements");
      }
      for (var j=0; j<elementsList.length; ++j) {
        if (name != 'label' && name != 'meter' && name != 'progress') {
          is(formsList[i].elements[j], elementsList[j],
             "The form should contain " + elementsList[j]);
        }
        if (name != 'label') {
          is(elementsList[j].form, formsList[i],
             "The form owner should be the form associated to the list");
        }
      }
    }
  }

  // Cleaning-up.
  for (e of elements) {
    e.remove();
    e = null;
  }
}

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