summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/forms/historical.html
blob: 277e12416104b0d2171ed7c4eb735e0ca2067988 (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
<!doctype html>
<title>Historical forms features should not be supported</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id=log></div>
<form id=form hidden>
 <label id=label></label>
 <input id=input>
 <button id=button></button>
 <select id=select>
  <optgroup id=optgroup>
  <option id=option>
 </select>
 <datalist id=datalist></datalist>
 <textarea id=textarea></textarea>
 <progress id=progress></progress>
 <meter id=meter></meter>
 <fieldset id=fieldset>
  <legend id=legend></legend>
 </fieldset>
</form>

<form hidden action="isindex-support.txt" target=isindex_iframe id=isindex_form>
 <input name=isindex value=x>
 <iframe name=isindex_iframe id=isindex_iframe></iframe>
</form>
<script>
var tags = ['form', 'label', 'input', 'button', 'select', 'datalist',
'optgroup', 'option', 'textarea', 'progress', 'meter', 'fieldset', 'legend'];

function t(property, tagName) {
  var tagNames = tagName ? [tagName] : tags;
  tagNames.forEach(function(tagName) {
    test(function() {
      assert_false(property in document.getElementById(tagName));
    }, tagName + '.' + property + ' should not be supported');
  });
}

function inputType(type) {
  test(function() {
    var input = document.createElement('input');
    input.type = type;
    assert_equals(input.type, 'text');
  }, '<input type=' + type + '> should not be supported');
}

// <input type=range multiple>
// added in https://github.com/whatwg/html/commit/1efac390abb3f95df61f2d2ac6c0feb47349d97b
// removed in https://github.com/whatwg/html/commit/b598d4f873fb8c27d4b23b033837108edfbc3d75
t('valueLow', 'input');
t('valueHigh', 'input');

// requestAutoComplete()
// added in https://github.com/whatwg/html/commit/321659e4db11228857632487ab72b6959db1ba86
// removed in https://github.com/whatwg/html/commit/6a257aae619f85390eee20b47767f34887450fcd
t('requestAutocomplete', 'form');
t('onautocomplete', 'form');
t('onautocompleteerror', 'form');

// <input type=datetime>
// added in WF2
// removed in https://github.com/whatwg/html/commit/80ba4fa24e5d3d81a10aa1bbd8a2f72f4bcc3f7c
inputType('datetime');

// <progress form>, <meter form>
// removed in https://github.com/whatwg/html/commit/3814376a311837ddfac229d9a631cd10adf53157
t('form', 'progress');
t('form', 'meter');

// form.item(), form.namedItem()
// removed in https://github.com/whatwg/html/commit/da87ab9009d5aeca95a602e718439e35b00d0731
t('item', 'form');
t('namedItem', 'form');

// Never specified but implemented in WebKit/Chromium
test(() => {
  assert_false("onsearch" in window);
}, "window.onsearch should not be supported");

test(() => {
  assert_false("onsearch" in document);
}, "document.onsearch should not be supported");

t('onsearch', 'input');
t('incremental', 'input');

// <input name=isindex>
// removed in https://github.com/whatwg/html/commit/5c44abc734eb483f9a7ec79da5844d2fe63d9c3b
async_test(function() {
  var iframe = document.getElementById('isindex_iframe');
  iframe.onload = this.step_func_done(function() {
    assert_regexp_match(iframe.contentWindow.location.href, /\?isindex=x$/);
  });
  document.getElementById('isindex_form').submit();
}, '<input name=isindex> should not be supported');
</script>