| OLD | NEW |
| 1 Tests basic web-exposure of Custom Elements | 1 Tests basic web-exposure of Custom Elements |
| 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 | 5 |
| 6 Document.prototype.hasOwnProperty("register") | 6 Document.prototype.hasOwnProperty("registerElement") |
| 7 true | 7 true |
| 8 | 8 |
| 9 typeof Document.prototype.register | 9 typeof Document.prototype.registerElement |
| 10 function | 10 function |
| 11 | 11 |
| 12 document.createElement("x-a") instanceof HTMLUnknownElement | 12 document.createElement("x-a") instanceof HTMLUnknownElement |
| 13 false | 13 false |
| 14 | 14 |
| 15 document.querySelector(":unresolved") | 15 document.querySelector(":unresolved") |
| 16 [object HTMLDivElement] | 16 [object HTMLDivElement] |
| 17 | 17 |
| 18 span.getAttribute("is") | 18 span.getAttribute("is") |
| 19 type-extension | 19 type-extension |
| 20 | 20 |
| 21 PASS successfullyParsed is true | 21 PASS successfullyParsed is true |
| 22 | 22 |
| 23 TEST COMPLETE | 23 TEST COMPLETE |
| 24 | 24 |
| OLD | NEW |