OLD | NEW |
| 1 CONSOLE WARNING: The <keygen> element is deprecated and will be removed in M54,
around October 2016. See https://www.chromestatus.com/features/5716060992962560
for more details. |
1 Reflected DOMString attribute test for button/@name | 2 Reflected DOMString attribute test for button/@name |
2 Initial value: | 3 Initial value: |
3 PASS element.name is "" | 4 PASS element.name is "" |
4 PASS element.getAttribute("name") is null | 5 PASS element.getAttribute("name") is null |
5 Setting a value via the IDL attribute: | 6 Setting a value via the IDL attribute: |
6 PASS element.name = "foo"; element.name is "foo" | 7 PASS element.name = "foo"; element.name is "foo" |
7 PASS element.getAttribute("name") is "foo" | 8 PASS element.getAttribute("name") is "foo" |
8 Setting a value via the content attribute: | 9 Setting a value via the content attribute: |
9 PASS element.setAttribute("name", " bar\n"); element.name is " bar\n" | 10 PASS element.setAttribute("name", " bar\n"); element.name is " bar\n" |
10 PASS element.getAttribute("name") is " bar\n" | 11 PASS element.getAttribute("name") is " bar\n" |
(...skipping 944 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
955 PASS element.getAttribute("bgcolor") is "123" | 956 PASS element.getAttribute("bgcolor") is "123" |
956 Setting non-string via the content attribute: | 957 Setting non-string via the content attribute: |
957 PASS element.setAttribute("bgcolor", 456); element.bgColor is "456" | 958 PASS element.setAttribute("bgcolor", 456); element.bgColor is "456" |
958 PASS element.getAttribute("bgcolor") is "456" | 959 PASS element.getAttribute("bgcolor") is "456" |
959 | 960 |
960 | 961 |
961 PASS successfullyParsed is true | 962 PASS successfullyParsed is true |
962 | 963 |
963 TEST COMPLETE | 964 TEST COMPLETE |
964 | 965 |
OLD | NEW |