| 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 Initial value: | 62 Initial value: |
| 63 PASS element.name is "" | 63 PASS element.name is "" |
| 64 PASS element.getAttribute("name") is null | 64 PASS element.getAttribute("name") is null |
| 65 Setting a value via the IDL attribute: | 65 Setting a value via the IDL attribute: |
| 66 PASS element.name = "foo"; element.name is "foo" | 66 PASS element.name = "foo"; element.name is "foo" |
| 67 PASS element.getAttribute("name") is "foo" | 67 PASS element.getAttribute("name") is "foo" |
| 68 Setting a value via the content attribute: | 68 Setting a value via the content attribute: |
| 69 PASS element.setAttribute("name", " bar\n"); element.name is " bar\n" | 69 PASS element.setAttribute("name", " bar\n"); element.name is " bar\n" |
| 70 PASS element.getAttribute("name") is " bar\n" | 70 PASS element.getAttribute("name") is " bar\n" |
| 71 Setting null via the IDL attribute: | 71 Setting null via the IDL attribute: |
| 72 PASS element.name = null; element.name is "" | 72 PASS element.name = null; element.name is "null" |
| 73 PASS element.getAttribute("name") is null | 73 PASS element.getAttribute("name") is "null" |
| 74 Setting null via the content attribute: | 74 Setting null via the content attribute: |
| 75 PASS element.setAttribute("name", null); element.name is "null" | 75 PASS element.setAttribute("name", null); element.name is "null" |
| 76 PASS element.getAttribute("name") is "null" | 76 PASS element.getAttribute("name") is "null" |
| 77 Setting undefined via the IDL attribute: | 77 Setting undefined via the IDL attribute: |
| 78 PASS element.name = undefined; element.name is "undefined" | 78 PASS element.name = undefined; element.name is "undefined" |
| 79 PASS element.getAttribute("name") is "undefined" | 79 PASS element.getAttribute("name") is "undefined" |
| 80 Setting undefined via the content attribute: | 80 Setting undefined via the content attribute: |
| 81 PASS element.setAttribute("name", undefined); element.name is "undefined" | 81 PASS element.setAttribute("name", undefined); element.name is "undefined" |
| 82 PASS element.getAttribute("name") is "undefined" | 82 PASS element.getAttribute("name") is "undefined" |
| 83 Setting non-string via the IDL attribute: | 83 Setting non-string via the IDL attribute: |
| (...skipping 211 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 |