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

Side by Side Diff: LayoutTests/storage/domstorage/remove-item-expected.txt

Issue 54473004: Make js-test-post a noop. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: add mac NeedsRebaselines Created 7 years, 1 month 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 Test .removeItem within DOM Storage. 1 Test .removeItem within DOM Storage.
2 2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4 4
5 5
6 Testing sessionStorage 6 Testing sessionStorage
7 storage.clear() 7 storage.clear()
8 PASS storage.length is 0 8 PASS storage.length is 0
9 9
10 PASS storage.foo1 is undefined. 10 PASS storage.foo1 is undefined.
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 PASS storage.getItem('foo3') is null 55 PASS storage.getItem('foo3') is null
56 storage.setItem('foo3', 'bar') 56 storage.setItem('foo3', 'bar')
57 PASS storage.getItem('foo3') is "bar" 57 PASS storage.getItem('foo3') is "bar"
58 storage.removeItem('foo3') 58 storage.removeItem('foo3')
59 PASS storage.getItem('foo3') is null 59 PASS storage.getItem('foo3') is null
60 storage.removeItem('foo3') 60 storage.removeItem('foo3')
61 PASS storage.getItem('foo3') is null 61 PASS storage.getItem('foo3') is null
62 PASS successfullyParsed is true 62 PASS successfullyParsed is true
63 63
64 TEST COMPLETE 64 TEST COMPLETE
65 PASS successfullyParsed is true
66
67 TEST COMPLETE
65 68
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698