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

Side by Side Diff: LayoutTests/inspector/elements/undo-dom-edits-expected.txt

Issue 467233002: DevTools: Make sure ElementsTreeOutline is correctly rendered when element's hasChildren state chan… (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Comments addressed Created 6 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 Tests that DOM modifications done in the Elements panel are undoable. 1 Tests that DOM modifications done in the Elements panel are undoable.
2 2
3 3
4 Running: testSetUp 4 Running: testSetUp
5 Setting up
5 6
6 Running: testRemove 7 Running: testRemove
7 Initial: 8 Initial:
8 - <div id="testRemove"> 9 - <div id="testRemove">
9 <div id="node-to-remove"></div> 10 <div id="node-to-remove"></div>
10 </div> 11 </div>
11 Post-action: 12 Post-action:
12 - <div id="testRemove"> 13 <div id="testRemove"></div>
13 </div>
14 Post-undo (initial): 14 Post-undo (initial):
15 + <div id="testRemove">…</div>
16 == Expanded: ==
15 - <div id="testRemove"> 17 - <div id="testRemove">
16 <div id="node-to-remove"></div> 18 <div id="node-to-remove"></div>
17 </div> 19 </div>
18 Post-redo (action): 20 Post-redo (action):
19 - <div id="testRemove"> 21 <div id="testRemove"></div>
20 </div>
21 22
22 Running: testSetNodeName 23 Running: testSetNodeName
23 Initial: 24 Initial:
24 - <div id="testSetNodeName"> 25 - <div id="testSetNodeName">
25 <div id="node-to-set-name"></div> 26 <div id="node-to-set-name"></div>
26 </div> 27 </div>
27 Post-action: 28 Post-action:
28 - <div id="testSetNodeName"> 29 - <div id="testSetNodeName">
29 <span id="node-to-set-name"></span> 30 <span id="node-to-set-name"></span>
30 </div> 31 </div>
(...skipping 25 matching lines...) Expand all
56 </div> 57 </div>
57 58
58 Running: testEditAsHTML 59 Running: testEditAsHTML
59 Initial: 60 Initial:
60 - <div id="testEditAsHTML"> 61 - <div id="testEditAsHTML">
61 - <div id="node-to-edit-as-html"> 62 - <div id="node-to-edit-as-html">
62 <span id="span">Text</span> 63 <span id="span">Text</span>
63 </div> 64 </div>
64 </div> 65 </div>
65 Post-action: 66 Post-action:
67 + <div id="testEditAsHTML">…</div>
68 == Expanded: ==
66 - <div id="testEditAsHTML"> 69 - <div id="testEditAsHTML">
67 + <div id="node-to-edit-as-html"></div> 70 - <div id="node-to-edit-as-html">
71 <div id="span2">Text2</div>
72 </div>
68 <span>Second node</span> 73 <span>Second node</span>
69 </div> 74 </div>
70 Post-undo (initial): 75 Post-undo (initial):
76 + <div id="testEditAsHTML">…</div>
77 == Expanded: ==
71 - <div id="testEditAsHTML"> 78 - <div id="testEditAsHTML">
72 + <div id="node-to-edit-as-html"></div> 79 - <div id="node-to-edit-as-html">
80 <span id="span">Text</span>
81 </div>
73 </div> 82 </div>
74 Post-redo (action): 83 Post-redo (action):
84 + <div id="testEditAsHTML">…</div>
85 == Expanded: ==
75 - <div id="testEditAsHTML"> 86 - <div id="testEditAsHTML">
76 + <div id="node-to-edit-as-html"></div> 87 - <div id="node-to-edit-as-html">
88 <div id="span2">Text2</div>
89 </div>
77 <span>Second node</span> 90 <span>Second node</span>
78 </div> 91 </div>
79 92
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698