OLD | NEW |
1 Tests that elements panel updates dom tree structure upon node insertion. | 1 Tests that elements panel updates dom tree structure upon node insertion. |
2 | 2 |
3 First text | 3 First text |
4 | 4 |
5 Running: testDumpInitial | 5 Running: testDumpInitial |
6 ========= Original ======== | 6 ========= Original ======== |
7 - <div id="container"> | 7 - <div id="container"> |
8 <div id="child1"></div> | 8 <div id="child1"></div> |
9 <div id="child2"></div> | 9 <div id="child2"></div> |
10 <div id="child3"></div> | 10 <div id="child3"></div> |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 </div> | 53 </div> |
54 Success: child text is bound | 54 Success: child text is bound |
55 | 55 |
56 Running: testInsertFirstTextNode | 56 Running: testInsertFirstTextNode |
57 ======== Inserted first text node ========= | 57 ======== Inserted first text node ========= |
58 - <div id="container"> | 58 - <div id="container"> |
59 <div id="child-before"></div> | 59 <div id="child-before"></div> |
60 <div id="child1"></div> | 60 <div id="child1"></div> |
61 <div id="child-middle"></div> | 61 <div id="child-middle"></div> |
62 <div id="child2"></div> | 62 <div id="child2"></div> |
63 - <div id="child3"> | 63 <div id="child3">First text</div> |
64 "First text" | |
65 </div> | |
66 <div id="child-after"></div> | 64 <div id="child-after"></div> |
67 <div id="child-with-text" style="display: none;">Text</div> | 65 <div id="child-with-text" style="display: none;">Text</div> |
68 </div> | 66 </div> |
69 Success: child text is bound | 67 Success: child text is bound |
70 | 68 |
OLD | NEW |