OLD | NEW |
1 This is a testharness.js-based test. | 1 This is a testharness.js-based test. |
2 PASS Document.createElement | 2 PASS Document.createElement |
3 PASS createElement(undefined) | 3 PASS createElement(undefined) |
4 PASS createElement(null) | 4 PASS createElement(null) |
5 PASS createElement("foo") | 5 PASS createElement("foo") |
6 PASS createElement("f1oo") | 6 PASS createElement("f1oo") |
7 PASS createElement("foo1") | 7 PASS createElement("foo1") |
8 PASS createElement("f̀oo") | 8 PASS createElement("f̀oo") |
9 PASS createElement("foò") | 9 PASS createElement("foò") |
10 PASS createElement(":foo") | 10 PASS createElement(":foo") |
(...skipping 10 matching lines...) Expand all Loading... |
21 PASS createElement("FOO") | 21 PASS createElement("FOO") |
22 FAIL createElement("marK") assert_equals: expected "marK" but got "mark" | 22 FAIL createElement("marK") assert_equals: expected "marK" but got "mark" |
23 FAIL createElement("İnput") assert_equals: expected "İnput" but got "i̇nput" | 23 FAIL createElement("İnput") assert_equals: expected "İnput" but got "i̇nput" |
24 FAIL createElement("ınput") assert_equals: expected "ıNPUT" but got "INPUT" | 24 FAIL createElement("ınput") assert_equals: expected "ıNPUT" but got "INPUT" |
25 PASS createElement("") | 25 PASS createElement("") |
26 PASS createElement("1foo") | 26 PASS createElement("1foo") |
27 PASS createElement("̀foo") | 27 PASS createElement("̀foo") |
28 PASS createElement("}foo") | 28 PASS createElement("}foo") |
29 PASS createElement("f}oo") | 29 PASS createElement("f}oo") |
30 PASS createElement("foo}") | 30 PASS createElement("foo}") |
31 PASS createElement("foo") | 31 PASS createElement("\ufffffoo") |
32 PASS createElement("foo") | 32 PASS createElement("f\uffffoo") |
33 PASS createElement("foo") | 33 PASS createElement("foo\uffff") |
34 PASS createElement("<foo") | 34 PASS createElement("<foo") |
35 PASS createElement("foo>") | 35 PASS createElement("foo>") |
36 PASS createElement("<foo>") | 36 PASS createElement("<foo>") |
37 PASS createElement("f<oo") | 37 PASS createElement("f<oo") |
38 Harness: the test ran to completion. | 38 Harness: the test ran to completion. |
39 | 39 |
OLD | NEW |