| OLD | NEW |
| 1 Tests that DOM modifications done in the Elements panel are undoable (Part 2). | 1 Tests that DOM modifications done in the Elements panel are undoable (Part 2). |
| 2 | 2 |
| 3 | 3 |
| 4 Running: testSetUp | 4 Running: testSetUp |
| 5 Setting up | 5 Setting up |
| 6 | 6 |
| 7 Running: testSetAttribute | 7 Running: testSetAttribute |
| 8 Initial: | 8 Initial: |
| 9 - <div id="testSetAttribute"> | 9 - <div id="testSetAttribute"> |
| 10 <div foo="attribute value" id="node-to-set-attribute"></div> | 10 <div foo="attribute value" id="node-to-set-attribute"></div> |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 </div> | 51 </div> |
| 52 Post-undo (initial): | 52 Post-undo (initial): |
| 53 - <div id="testAddAttribute"> | 53 - <div id="testAddAttribute"> |
| 54 <div id="node-to-add-attribute"></div> | 54 <div id="node-to-add-attribute"></div> |
| 55 </div> | 55 </div> |
| 56 Post-redo (action): | 56 Post-redo (action): |
| 57 - <div id="testAddAttribute"> | 57 - <div id="testAddAttribute"> |
| 58 <div id="node-to-add-attribute" newattr="new-value"></div> | 58 <div id="node-to-add-attribute" newattr="new-value"></div> |
| 59 </div> | 59 </div> |
| 60 | 60 |
| OLD | NEW |