Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(216)

Side by Side Diff: LayoutTests/fast/dom/custom/lifecycle-created-creation-api-expected.txt

Issue 23009004: Process Custom Elements in post-order. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Patch for landing. Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698