OLD | NEW |
1 Test reflecting boolean attributes. | 1 Test reflecting boolean attributes. |
2 | 2 |
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". | 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". |
4 | 4 |
5 | 5 |
6 PASS e = make('area'); e.removeAttribute('nohref'); e.noHref is false | 6 PASS e = make('area'); e.removeAttribute('nohref'); e.noHref is false |
7 PASS e = make('area'); e.setAttribute('nohref', ''); e.noHref is true | 7 PASS e = make('area'); e.setAttribute('nohref', ''); e.noHref is true |
8 PASS e = make('area'); e.setAttribute('nohref', 'x'); e.noHref = false; e.getAtt
ribute('nohref') is null | 8 PASS e = make('area'); e.setAttribute('nohref', 'x'); e.noHref = false; e.getAtt
ribute('nohref') is null |
9 PASS e = make('area'); e.setAttribute('nohref', 'x'); e.noHref = true; e.getAttr
ibute('nohref') is '' | 9 PASS e = make('area'); e.setAttribute('nohref', 'x'); e.noHref = true; e.getAttr
ibute('nohref') is '' |
10 PASS e = make('dir'); e.removeAttribute('compact'); e.compact is false | 10 PASS e = make('dir'); e.removeAttribute('compact'); e.compact is false |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 PASS e = make('object'); e.setAttribute('declare', 'x'); e.declare = false; e.ge
tAttribute('declare') is null | 76 PASS e = make('object'); e.setAttribute('declare', 'x'); e.declare = false; e.ge
tAttribute('declare') is null |
77 PASS e = make('object'); e.setAttribute('declare', 'x'); e.declare = true; e.get
Attribute('declare') is '' | 77 PASS e = make('object'); e.setAttribute('declare', 'x'); e.declare = true; e.get
Attribute('declare') is '' |
78 PASS e = make('ol'); e.removeAttribute('compact'); e.compact is false | 78 PASS e = make('ol'); e.removeAttribute('compact'); e.compact is false |
79 PASS e = make('ol'); e.setAttribute('compact', ''); e.compact is true | 79 PASS e = make('ol'); e.setAttribute('compact', ''); e.compact is true |
80 PASS e = make('ol'); e.setAttribute('compact', 'x'); e.compact = false; e.getAtt
ribute('compact') is null | 80 PASS e = make('ol'); e.setAttribute('compact', 'x'); e.compact = false; e.getAtt
ribute('compact') is null |
81 PASS e = make('ol'); e.setAttribute('compact', 'x'); e.compact = true; e.getAttr
ibute('compact') is '' | 81 PASS e = make('ol'); e.setAttribute('compact', 'x'); e.compact = true; e.getAttr
ibute('compact') is '' |
82 PASS e = make('option'); e.removeAttribute('selected'); e.defaultSelected is fal
se | 82 PASS e = make('option'); e.removeAttribute('selected'); e.defaultSelected is fal
se |
83 PASS e = make('option'); e.setAttribute('selected', ''); e.defaultSelected is tr
ue | 83 PASS e = make('option'); e.setAttribute('selected', ''); e.defaultSelected is tr
ue |
84 PASS e = make('option'); e.setAttribute('selected', 'x'); e.defaultSelected = fa
lse; e.getAttribute('selected') is null | 84 PASS e = make('option'); e.setAttribute('selected', 'x'); e.defaultSelected = fa
lse; e.getAttribute('selected') is null |
85 PASS e = make('option'); e.setAttribute('selected', 'x'); e.defaultSelected = tr
ue; e.getAttribute('selected') is '' | 85 PASS e = make('option'); e.setAttribute('selected', 'x'); e.defaultSelected = tr
ue; e.getAttribute('selected') is '' |
86 PASS e = make('pre'); e.removeAttribute('wrap'); e.wrap is false | |
87 PASS e = make('pre'); e.setAttribute('wrap', ''); e.wrap is true | |
88 PASS e = make('pre'); e.setAttribute('wrap', 'x'); e.wrap = false; e.getAttribut
e('wrap') is null | |
89 PASS e = make('pre'); e.setAttribute('wrap', 'x'); e.wrap = true; e.getAttribute
('wrap') is '' | |
90 PASS e = make('script'); e.removeAttribute('defer'); e.defer is false | 86 PASS e = make('script'); e.removeAttribute('defer'); e.defer is false |
91 PASS e = make('script'); e.setAttribute('defer', ''); e.defer is true | 87 PASS e = make('script'); e.setAttribute('defer', ''); e.defer is true |
92 PASS e = make('script'); e.setAttribute('defer', 'x'); e.defer = false; e.getAtt
ribute('defer') is null | 88 PASS e = make('script'); e.setAttribute('defer', 'x'); e.defer = false; e.getAtt
ribute('defer') is null |
93 PASS e = make('script'); e.setAttribute('defer', 'x'); e.defer = true; e.getAttr
ibute('defer') is '' | 89 PASS e = make('script'); e.setAttribute('defer', 'x'); e.defer = true; e.getAttr
ibute('defer') is '' |
94 PASS e = make('select'); e.removeAttribute('multiple'); e.multiple is false | 90 PASS e = make('select'); e.removeAttribute('multiple'); e.multiple is false |
95 PASS e = make('select'); e.setAttribute('multiple', ''); e.multiple is true | 91 PASS e = make('select'); e.setAttribute('multiple', ''); e.multiple is true |
96 PASS e = make('select'); e.setAttribute('multiple', 'x'); e.multiple = false; e.
getAttribute('multiple') is null | 92 PASS e = make('select'); e.setAttribute('multiple', 'x'); e.multiple = false; e.
getAttribute('multiple') is null |
97 PASS e = make('select'); e.setAttribute('multiple', 'x'); e.multiple = true; e.g
etAttribute('multiple') is '' | 93 PASS e = make('select'); e.setAttribute('multiple', 'x'); e.multiple = true; e.g
etAttribute('multiple') is '' |
98 PASS e = make('td'); e.removeAttribute('nowrap'); e.noWrap is false | 94 PASS e = make('td'); e.removeAttribute('nowrap'); e.noWrap is false |
99 PASS e = make('td'); e.setAttribute('nowrap', ''); e.noWrap is true | 95 PASS e = make('td'); e.setAttribute('nowrap', ''); e.noWrap is true |
(...skipping 12 matching lines...) Expand all Loading... |
112 PASS e = make('video'); e.setAttribute('controls', 'x'); e.controls = false; e.g
etAttribute('controls') is null | 108 PASS e = make('video'); e.setAttribute('controls', 'x'); e.controls = false; e.g
etAttribute('controls') is null |
113 PASS e = make('video'); e.setAttribute('controls', 'x'); e.controls = true; e.ge
tAttribute('controls') is '' | 109 PASS e = make('video'); e.setAttribute('controls', 'x'); e.controls = true; e.ge
tAttribute('controls') is '' |
114 PASS e = make('video'); e.removeAttribute('loop'); e.loop is false | 110 PASS e = make('video'); e.removeAttribute('loop'); e.loop is false |
115 PASS e = make('video'); e.setAttribute('loop', ''); e.loop is true | 111 PASS e = make('video'); e.setAttribute('loop', ''); e.loop is true |
116 PASS e = make('video'); e.setAttribute('loop', 'x'); e.loop = false; e.getAttrib
ute('loop') is null | 112 PASS e = make('video'); e.setAttribute('loop', 'x'); e.loop = false; e.getAttrib
ute('loop') is null |
117 PASS e = make('video'); e.setAttribute('loop', 'x'); e.loop = true; e.getAttribu
te('loop') is '' | 113 PASS e = make('video'); e.setAttribute('loop', 'x'); e.loop = true; e.getAttribu
te('loop') is '' |
118 PASS successfullyParsed is true | 114 PASS successfullyParsed is true |
119 | 115 |
120 TEST COMPLETE | 116 TEST COMPLETE |
121 | 117 |
OLD | NEW |