Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 This test checks the undo/redo operations are performed correctly on the DOM sto rage views | |
| 2 | |
| 3 | |
| 4 Running: initialize | |
| 5 Initialized localStorage and sessionStorage by clearing entries | |
| 6 | |
| 7 Running: undoLocalStorageWithEmptyStack | |
| 8 LocalStorage contents:[] | |
| 9 | |
| 10 Running: redoLocalStorageWithEmptyStack | |
| 11 LocalStorage contents:[] | |
| 12 | |
| 13 Running: addLocalStorageEntries | |
| 14 LocalStorage contents:[a1=b1,a2=b2] | |
| 15 | |
| 16 Running: undoLocalStorageLastAddition | |
| 17 LocalStorage contents:[a1=b1] | |
| 18 | |
| 19 Running: undoSessionStorageWithEmptyStack | |
| 20 SessionStorage contents:[] | |
| 21 | |
| 22 Running: redoSessionStorageWithEmptyStack | |
| 23 SessionStorage contents:[] | |
| 24 | |
| 25 Running: undoLocalStorageBeyondBounds | |
|
apavlov
2013/08/02 08:16:59
This looks strange. At this point, you should stil
| |
| 26 LocalStorage contents:[] | |
| 27 | |
| 28 Running: addSessionStorageEntries | |
| 29 SessionStorage contents:[p1=q1,p2=q2,p3=q3,p4=q4] | |
| 30 | |
| 31 Running: redoLocalStorageBeyondBounds | |
| 32 LocalStorage contents:[a1=b1,a2=b2] | |
|
apavlov
2013/08/02 08:16:59
Same thing - 2 actions redone?
| |
| 33 | |
| 34 Running: undoSessionStorageLastAddition | |
| 35 SessionStorage contents:[p1=q1,p2=q2,p3=q3] | |
| 36 | |
| 37 Running: modifyLocalStorageValues | |
| 38 LocalStorage contents:[a1=x1,a2=x2] | |
| 39 | |
| 40 Running: undoLocalStorageModifications | |
| 41 LocalStorage contents:[a1=b1,a2=b2] | |
| 42 | |
| 43 Running: redoSessionStorageLastAddition | |
| 44 SessionStorage contents:[p1=q1,p2=q2,p3=q3,p4=q4] | |
| 45 | |
| 46 Running: redoLocalStorageModifications | |
| 47 LocalStorage contents:[a1=x1,a2=x2] | |
| 48 | |
| 49 Running: modifySessionStorageEntriesKey | |
|
apavlov
2013/08/02 08:16:59
Adding a test for undo of the key modifications wo
| |
| 50 SessionStorage contents:[m1=q1,m2=q2,m3=q3,m4=q4] | |
| 51 | |
| 52 Running: undoLocalStorageModifications | |
| 53 LocalStorage contents:[a1=b1,a2=b2] | |
| 54 | |
| OLD | NEW |