| 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 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 Initial value: | 182 Initial value: |
| 183 PASS element.name is "" | 183 PASS element.name is "" |
| 184 PASS element.getAttribute("name") is null | 184 PASS element.getAttribute("name") is null |
| 185 Setting a value via the IDL attribute: | 185 Setting a value via the IDL attribute: |
| 186 PASS element.name = "foo"; element.name is "foo" | 186 PASS element.name = "foo"; element.name is "foo" |
| 187 PASS element.getAttribute("name") is "foo" | 187 PASS element.getAttribute("name") is "foo" |
| 188 Setting a value via the content attribute: | 188 Setting a value via the content attribute: |
| 189 PASS element.setAttribute("name", " bar\n"); element.name is " bar\n" | 189 PASS element.setAttribute("name", " bar\n"); element.name is " bar\n" |
| 190 PASS element.getAttribute("name") is " bar\n" | 190 PASS element.getAttribute("name") is " bar\n" |
| 191 Setting null via the IDL attribute: | 191 Setting null via the IDL attribute: |
| 192 PASS element.name = null; element.name is "" | 192 PASS element.name = null; element.name is "null" |
| 193 PASS element.getAttribute("name") is null | 193 PASS element.getAttribute("name") is "null" |
| 194 Setting null via the content attribute: | 194 Setting null via the content attribute: |
| 195 PASS element.setAttribute("name", null); element.name is "null" | 195 PASS element.setAttribute("name", null); element.name is "null" |
| 196 PASS element.getAttribute("name") is "null" | 196 PASS element.getAttribute("name") is "null" |
| 197 Setting undefined via the IDL attribute: | 197 Setting undefined via the IDL attribute: |
| 198 PASS element.name = undefined; element.name is "undefined" | 198 PASS element.name = undefined; element.name is "undefined" |
| 199 PASS element.getAttribute("name") is "undefined" | 199 PASS element.getAttribute("name") is "undefined" |
| 200 Setting undefined via the content attribute: | 200 Setting undefined via the content attribute: |
| 201 PASS element.setAttribute("name", undefined); element.name is "undefined" | 201 PASS element.setAttribute("name", undefined); element.name is "undefined" |
| 202 PASS element.getAttribute("name") is "undefined" | 202 PASS element.getAttribute("name") is "undefined" |
| 203 Setting non-string via the IDL attribute: | 203 Setting non-string via the IDL attribute: |
| (...skipping 91 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 |