| 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 21 matching lines...) Expand all Loading... |
| 32 Initial value: | 32 Initial value: |
| 33 PASS element.name is "" | 33 PASS element.name is "" |
| 34 PASS element.getAttribute("name") is null | 34 PASS element.getAttribute("name") is null |
| 35 Setting a value via the IDL attribute: | 35 Setting a value via the IDL attribute: |
| 36 PASS element.name = "foo"; element.name is "foo" | 36 PASS element.name = "foo"; element.name is "foo" |
| 37 PASS element.getAttribute("name") is "foo" | 37 PASS element.getAttribute("name") is "foo" |
| 38 Setting a value via the content attribute: | 38 Setting a value via the content attribute: |
| 39 PASS element.setAttribute("name", " bar\n"); element.name is " bar\n" | 39 PASS element.setAttribute("name", " bar\n"); element.name is " bar\n" |
| 40 PASS element.getAttribute("name") is " bar\n" | 40 PASS element.getAttribute("name") is " bar\n" |
| 41 Setting null via the IDL attribute: | 41 Setting null via the IDL attribute: |
| 42 PASS element.name = null; element.name is "" | 42 PASS element.name = null; element.name is "null" |
| 43 PASS element.getAttribute("name") is null | 43 PASS element.getAttribute("name") is "null" |
| 44 Setting null via the content attribute: | 44 Setting null via the content attribute: |
| 45 PASS element.setAttribute("name", null); element.name is "null" | 45 PASS element.setAttribute("name", null); element.name is "null" |
| 46 PASS element.getAttribute("name") is "null" | 46 PASS element.getAttribute("name") is "null" |
| 47 Setting undefined via the IDL attribute: | 47 Setting undefined via the IDL attribute: |
| 48 PASS element.name = undefined; element.name is "undefined" | 48 PASS element.name = undefined; element.name is "undefined" |
| 49 PASS element.getAttribute("name") is "undefined" | 49 PASS element.getAttribute("name") is "undefined" |
| 50 Setting undefined via the content attribute: | 50 Setting undefined via the content attribute: |
| 51 PASS element.setAttribute("name", undefined); element.name is "undefined" | 51 PASS element.setAttribute("name", undefined); element.name is "undefined" |
| 52 PASS element.getAttribute("name") is "undefined" | 52 PASS element.getAttribute("name") is "undefined" |
| 53 Setting non-string via the IDL attribute: | 53 Setting non-string via the IDL attribute: |
| (...skipping 241 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 |