| 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 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 Initial value: | 272 Initial value: |
| 273 PASS element.name is "" | 273 PASS element.name is "" |
| 274 PASS element.getAttribute("name") is null | 274 PASS element.getAttribute("name") is null |
| 275 Setting a value via the IDL attribute: | 275 Setting a value via the IDL attribute: |
| 276 PASS element.name = "foo"; element.name is "foo" | 276 PASS element.name = "foo"; element.name is "foo" |
| 277 PASS element.getAttribute("name") is "foo" | 277 PASS element.getAttribute("name") is "foo" |
| 278 Setting a value via the content attribute: | 278 Setting a value via the content attribute: |
| 279 PASS element.setAttribute("name", " bar\n"); element.name is " bar\n" | 279 PASS element.setAttribute("name", " bar\n"); element.name is " bar\n" |
| 280 PASS element.getAttribute("name") is " bar\n" | 280 PASS element.getAttribute("name") is " bar\n" |
| 281 Setting null via the IDL attribute: | 281 Setting null via the IDL attribute: |
| 282 PASS element.name = null; element.name is "" | 282 PASS element.name = null; element.name is "null" |
| 283 PASS element.getAttribute("name") is null | 283 PASS element.getAttribute("name") is "null" |
| 284 Setting null via the content attribute: | 284 Setting null via the content attribute: |
| 285 PASS element.setAttribute("name", null); element.name is "null" | 285 PASS element.setAttribute("name", null); element.name is "null" |
| 286 PASS element.getAttribute("name") is "null" | 286 PASS element.getAttribute("name") is "null" |
| 287 Setting undefined via the IDL attribute: | 287 Setting undefined via the IDL attribute: |
| 288 PASS element.name = undefined; element.name is "undefined" | 288 PASS element.name = undefined; element.name is "undefined" |
| 289 PASS element.getAttribute("name") is "undefined" | 289 PASS element.getAttribute("name") is "undefined" |
| 290 Setting undefined via the content attribute: | 290 Setting undefined via the content attribute: |
| 291 PASS element.setAttribute("name", undefined); element.name is "undefined" | 291 PASS element.setAttribute("name", undefined); element.name is "undefined" |
| 292 PASS element.getAttribute("name") is "undefined" | 292 PASS element.getAttribute("name") is "undefined" |
| 293 Setting non-string via the IDL attribute: | 293 Setting non-string via the IDL attribute: |
| 294 PASS element.name = 123; element.name is "123" | 294 PASS element.name = 123; element.name is "123" |
| 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 |