Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / inspector / elements / undo-dom-edits-expected.txt
1 Tests that DOM modifications done in the Elements panel are undoable.
2
3
4 Running: testSetUp
5 Setting up
6
7 Running: testRemove
8 Initial:
9 - <div id="testRemove">
10       <div id="node-to-remove"></div>
11   </div>
12 Post-action:
13   <div id="testRemove"></div>
14 Post-undo (initial):
15 + <div id="testRemove">…</div>
16 == Expanded: ==
17 - <div id="testRemove">
18       <div id="node-to-remove"></div>
19   </div>
20 Post-redo (action):
21   <div id="testRemove"></div>
22
23 Running: testSetNodeName
24 Initial:
25 - <div id="testSetNodeName">
26       <div id="node-to-set-name"></div>
27   </div>
28 Post-action:
29 - <div id="testSetNodeName">
30       <span id="node-to-set-name"></span>
31   </div>
32 Post-undo (initial):
33 - <div id="testSetNodeName">
34       <div id="node-to-set-name"></div>
35   </div>
36 Post-redo (action):
37 - <div id="testSetNodeName">
38       <span id="node-to-set-name"></span>
39   </div>
40
41 Running: testSetNodeValue
42 Initial:
43 - <div id="testSetNodeValue">
44       <div id="node-to-set-value">Text</div>
45   </div>
46 Post-action:
47 - <div id="testSetNodeValue">
48       <div id="node-to-set-value">New Text</div>
49   </div>
50 Post-undo (initial):
51 - <div id="testSetNodeValue">
52       <div id="node-to-set-value">Text</div>
53   </div>
54 Post-redo (action):
55 - <div id="testSetNodeValue">
56       <div id="node-to-set-value">New Text</div>
57   </div>
58
59 Running: testEditAsHTML
60 Initial:
61 - <div id="testEditAsHTML">
62     - <div id="node-to-edit-as-html">
63           <span id="span">Text</span>
64       </div>
65   </div>
66 Post-action:
67 + <div id="testEditAsHTML">…</div>
68 == Expanded: ==
69 - <div id="testEditAsHTML">
70     - <div id="node-to-edit-as-html">
71           <div id="span2">Text2</div>
72       </div>
73       <span>Second node</span>
74   </div>
75 Post-undo (initial):
76 + <div id="testEditAsHTML">…</div>
77 == Expanded: ==
78 - <div id="testEditAsHTML">
79     - <div id="node-to-edit-as-html">
80           <span id="span">Text</span>
81       </div>
82   </div>
83 Post-redo (action):
84 + <div id="testEditAsHTML">…</div>
85 == Expanded: ==
86 - <div id="testEditAsHTML">
87     - <div id="node-to-edit-as-html">
88           <div id="span2">Text2</div>
89       </div>
90       <span>Second node</span>
91   </div>
92