| OLD | NEW |
| 1 This test ensures that the lifecycle callbacks of API-originated elements are vi
sible in following script block. | 1 This test ensures that the lifecycle callbacks of API-originated elements are vi
sible in following script block. |
| 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 PASS document.createElement('x-foo').callbacksCalled is true | 6 PASS document.createElement('x-foo').callbacksCalled is true |
| 7 PASS document.createElement('div', 'x-bar').callbacksCalled is true | 7 PASS document.createElement('div', 'x-bar').callbacksCalled is true |
| 8 PASS document.createElementNS('http://www.w3.org/1999/xhtml', 'x-foo').callbacks
Called is true | 8 PASS document.createElementNS('http://www.w3.org/1999/xhtml', 'x-foo').callbacks
Called is true |
| 9 PASS document.createElementNS('http://www.w3.org/1999/xhtml', 'div', 'x-bar').ca
llbacksCalled is true | 9 PASS document.createElementNS('http://www.w3.org/1999/xhtml', 'div', 'x-bar').ca
llbacksCalled is true |
| 10 PASS foo.cloneNode().callbacksCalled is true | 10 PASS foo.cloneNode().callbacksCalled is true |
| 11 PASS foo.cloneNode(true).firstChild.callbacksCalled is true | 11 PASS foo.cloneNode(true).firstChild.callbacksCalled is true |
| 12 PASS bar.cloneNode().callbacksCalled is true | 12 PASS bar.cloneNode().callbacksCalled is true |
| 13 PASS bar.cloneNode(true).firstChild.callbacksCalled is true | 13 PASS bar.cloneNode(true).firstChild.callbacksCalled is true |
| 14 PASS foreignFoo.callbacksCalled is true | 14 PASS foreignFoo.callbacksCalled is true |
| 15 PASS foreignFoo.firstChild.callbacksCalled is true | 15 PASS foreignFoo.firstChild.callbacksCalled is true |
| 16 PASS importedFoo.callbacksCalled is true | 16 PASS importedFoo.callbacksCalled is true |
| 17 PASS importedFoo.firstChild.callbacksCalled is true | 17 PASS importedFoo.firstChild.callbacksCalled is true |
| 18 PASS window.callbacksCalled is ['div', 'x-foo'] | 18 PASS window.callbacksCalled is ['div', 'x-foo'] |
| 19 PASS importedBar.callbacksCalled is true | 19 PASS importedBar.callbacksCalled is true |
| 20 PASS importedBar.firstChild.callbacksCalled is true | 20 PASS importedBar.firstChild.callbacksCalled is true |
| 21 PASS window.callbacksCalled is ['X-FOO', 'DIV'] | 21 PASS window.callbacksCalled is ['DIV', 'X-FOO'] |
| 22 PASS window.callbacksCalled is ['X-FOO'] | 22 PASS window.callbacksCalled is ['X-FOO'] |
| 23 PASS window.callbacksCalled is ['X-FOO'] | 23 PASS window.callbacksCalled is ['X-FOO'] |
| 24 PASS successfullyParsed is true | 24 PASS successfullyParsed is true |
| 25 | 25 |
| 26 TEST COMPLETE | 26 TEST COMPLETE |
| 27 | 27 |
| OLD | NEW |