OLD | NEW |
1 document.implementation.createDocument with current document's DOCTYPE. | 1 document.implementation.createDocument with current document's DOCTYPE. |
2 | 2 |
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". | 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". |
4 | 4 |
5 PASS doc = document.implementation.createDocument(null, null, document.doctype)
did not throw exception. | 5 PASS doc = document.implementation.createDocument(null, null, document.doctype)
did not throw exception. |
6 PASS doc.doctype is doctype | 6 PASS doc.doctype is doctype |
7 PASS doc.firstChild is doctype | 7 PASS doc.firstChild is doctype |
8 PASS document.doctype is null | 8 PASS document.doctype is null |
| 9 PASS successfullyParsed is true |
| 10 |
| 11 TEST COMPLETE |
9 | 12 |
10 | 13 |
11 | 14 |
12 | 15 |
13 | 16 |
14 PASS successfullyParsed is true | 17 PASS successfullyParsed is true |
15 | 18 |
16 TEST COMPLETE | 19 TEST COMPLETE |
17 | 20 |
OLD | NEW |