OLD | NEW |
1 Tests that elements panel updates shadow dom tree structure upon typing. | 1 Tests that elements panel updates shadow dom tree structure upon typing. |
2 | 2 |
3 | 3 |
4 | 4 |
5 Running: testDumpInitial | 5 Running: testDumpInitial |
6 ========= Original ======== | 6 ========= Original ======== |
7 - <div id="container"> | 7 - <div id="container"> |
8 - <input type="text" id="input1"> | 8 - <input type="text" id="input1"> |
9 - #shadow-root (user-agent) | 9 - #shadow-root (user-agent) |
10 <div id="inner-editor"></div> | 10 <div id="inner-editor"></div> |
11 </input> | 11 </input> |
12 </div> | 12 </div> |
13 | 13 |
14 Running: testAppend | 14 Running: testAppend |
15 ======== Type text ========= | 15 ======== Type text ========= |
16 - <div id="container"> | 16 - <div id="container"> |
17 - <input type="text" id="input1"> | 17 - <input type="text" id="input1"> |
18 - #shadow-root (user-agent) | 18 - #shadow-root (user-agent) |
19 + <div id="inner-editor">…</div> | 19 <div id="inner-editor">Bar</div> |
20 </input> | 20 </input> |
21 </div> | 21 </div> |
22 | 22 |
OLD | NEW |