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

Side by Side Diff: LayoutTests/inspector/storage-panel-dom-storage-undo-redo-expected.txt

Issue 14877010: DevTools: DOMStorage undo/redo feature (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 7 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
OLDNEW
(Empty)
1 This test demonstrates the undo/redo operations performed on the storage views
2
3
4 Running: initialize
5 Initialized localStorage and sessionStorage by clearing entries
6
7 Running: addLocalStorageEntries
8 localStorage: contents
9 [a1=b1,a2=b2]
10
11 Running: undoLocalStorageLastAddition
12 localStorage: contents
13 [a1=b1]
14
15 Running: addSessionStorageEntries
16 sessionStorage: contents
17 [p1=q1,p2=q2,p3=q3,p4=q4]
18
19 Running: redoLocalStorageLastAddition
20 localStorage: contents
21 [a1=b1,a2=b2]
22
23 Running: undoSessionStorageLastAddition
24 sessionStorage: contents
25 [p1=q1,p2=q2,p3=q3]
26
27 Running: modifyLocalStorageValues
28 localStorage: contents
29 [a1=x1,a2=x2]
30
31 Running: undoLocalStorageModifications
32 localStorage: contents
33 [a1=b1,a2=b2]
34
35 Running: redoLocalStorageModifications
36 localStorage: contents
37 [a1=x1,a2=x2]
38
39 Running: modifySessionStorageEntriesKey
40 sessionStorage: contents
41 [m1=q1,m2=q2,m3=q3]
42
43 Running: undoLocalStorageModifications
44 localStorage: contents
45 [a1=b1,a2=b2]
46
47 Running: undoSessionStorageKeyModifications
48 sessionStorage: contents
49 [p1=q1,p2=q2,p3=q3]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698