| OLD | NEW |
| 1 Reflected DOMString attribute test for button/@name | 1 Reflected DOMString attribute test for button/@name |
| 2 Initial value: | 2 Initial value: |
| 3 PASS element.name is "" | 3 PASS element.name is "" |
| 4 PASS element.getAttribute("name") is null | 4 PASS element.getAttribute("name") is null |
| 5 Setting a value via the IDL attribute: | 5 Setting a value via the IDL attribute: |
| 6 PASS element.name = "foo"; element.name is "foo" | 6 PASS element.name = "foo"; element.name is "foo" |
| 7 PASS element.getAttribute("name") is "foo" | 7 PASS element.getAttribute("name") is "foo" |
| 8 Setting a value via the content attribute: | 8 Setting a value via the content attribute: |
| 9 PASS element.setAttribute("name", " bar\n"); element.name is " bar\n" | 9 PASS element.setAttribute("name", " bar\n"); element.name is " bar\n" |
| 10 PASS element.getAttribute("name") is " bar\n" | 10 PASS element.getAttribute("name") is " bar\n" |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 Initial value: | 152 Initial value: |
| 153 PASS element.name is "" | 153 PASS element.name is "" |
| 154 PASS element.getAttribute("name") is null | 154 PASS element.getAttribute("name") is null |
| 155 Setting a value via the IDL attribute: | 155 Setting a value via the IDL attribute: |
| 156 PASS element.name = "foo"; element.name is "foo" | 156 PASS element.name = "foo"; element.name is "foo" |
| 157 PASS element.getAttribute("name") is "foo" | 157 PASS element.getAttribute("name") is "foo" |
| 158 Setting a value via the content attribute: | 158 Setting a value via the content attribute: |
| 159 PASS element.setAttribute("name", " bar\n"); element.name is " bar\n" | 159 PASS element.setAttribute("name", " bar\n"); element.name is " bar\n" |
| 160 PASS element.getAttribute("name") is " bar\n" | 160 PASS element.getAttribute("name") is " bar\n" |
| 161 Setting null via the IDL attribute: | 161 Setting null via the IDL attribute: |
| 162 PASS element.name = null; element.name is "" | 162 PASS element.name = null; element.name is "null" |
| 163 PASS element.getAttribute("name") is null | 163 PASS element.getAttribute("name") is "null" |
| 164 Setting null via the content attribute: | 164 Setting null via the content attribute: |
| 165 PASS element.setAttribute("name", null); element.name is "null" | 165 PASS element.setAttribute("name", null); element.name is "null" |
| 166 PASS element.getAttribute("name") is "null" | 166 PASS element.getAttribute("name") is "null" |
| 167 Setting undefined via the IDL attribute: | 167 Setting undefined via the IDL attribute: |
| 168 PASS element.name = undefined; element.name is "undefined" | 168 PASS element.name = undefined; element.name is "undefined" |
| 169 PASS element.getAttribute("name") is "undefined" | 169 PASS element.getAttribute("name") is "undefined" |
| 170 Setting undefined via the content attribute: | 170 Setting undefined via the content attribute: |
| 171 PASS element.setAttribute("name", undefined); element.name is "undefined" | 171 PASS element.setAttribute("name", undefined); element.name is "undefined" |
| 172 PASS element.getAttribute("name") is "undefined" | 172 PASS element.getAttribute("name") is "undefined" |
| 173 Setting non-string via the IDL attribute: | 173 Setting non-string via the IDL attribute: |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 295 PASS element.getAttribute("name") is "123" | 295 PASS element.getAttribute("name") is "123" |
| 296 Setting non-string via the content attribute: | 296 Setting non-string via the content attribute: |
| 297 PASS element.setAttribute("name", 456); element.name is "456" | 297 PASS element.setAttribute("name", 456); element.name is "456" |
| 298 PASS element.getAttribute("name") is "456" | 298 PASS element.getAttribute("name") is "456" |
| 299 | 299 |
| 300 | 300 |
| 301 PASS successfullyParsed is true | 301 PASS successfullyParsed is true |
| 302 | 302 |
| 303 TEST COMPLETE | 303 TEST COMPLETE |
| 304 | 304 |
| OLD | NEW |