| 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 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 Initial value: | 212 Initial value: |
| 213 PASS element.name is "" | 213 PASS element.name is "" |
| 214 PASS element.getAttribute("name") is null | 214 PASS element.getAttribute("name") is null |
| 215 Setting a value via the IDL attribute: | 215 Setting a value via the IDL attribute: |
| 216 PASS element.name = "foo"; element.name is "foo" | 216 PASS element.name = "foo"; element.name is "foo" |
| 217 PASS element.getAttribute("name") is "foo" | 217 PASS element.getAttribute("name") is "foo" |
| 218 Setting a value via the content attribute: | 218 Setting a value via the content attribute: |
| 219 PASS element.setAttribute("name", " bar\n"); element.name is " bar\n" | 219 PASS element.setAttribute("name", " bar\n"); element.name is " bar\n" |
| 220 PASS element.getAttribute("name") is " bar\n" | 220 PASS element.getAttribute("name") is " bar\n" |
| 221 Setting null via the IDL attribute: | 221 Setting null via the IDL attribute: |
| 222 PASS element.name = null; element.name is "" | 222 PASS element.name = null; element.name is "null" |
| 223 PASS element.getAttribute("name") is null | 223 PASS element.getAttribute("name") is "null" |
| 224 Setting null via the content attribute: | 224 Setting null via the content attribute: |
| 225 PASS element.setAttribute("name", null); element.name is "null" | 225 PASS element.setAttribute("name", null); element.name is "null" |
| 226 PASS element.getAttribute("name") is "null" | 226 PASS element.getAttribute("name") is "null" |
| 227 Setting undefined via the IDL attribute: | 227 Setting undefined via the IDL attribute: |
| 228 PASS element.name = undefined; element.name is "undefined" | 228 PASS element.name = undefined; element.name is "undefined" |
| 229 PASS element.getAttribute("name") is "undefined" | 229 PASS element.getAttribute("name") is "undefined" |
| 230 Setting undefined via the content attribute: | 230 Setting undefined via the content attribute: |
| 231 PASS element.setAttribute("name", undefined); element.name is "undefined" | 231 PASS element.setAttribute("name", undefined); element.name is "undefined" |
| 232 PASS element.getAttribute("name") is "undefined" | 232 PASS element.getAttribute("name") is "undefined" |
| 233 Setting non-string via the IDL attribute: | 233 Setting non-string via the IDL attribute: |
| (...skipping 61 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 |