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

Side by Side Diff: LayoutTests/storage/domstorage/clear-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 basic dom storage .clear() functionality. 1 Test basic dom storage .clear() functionality.
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 storage['FOO'] = 'MyFOO' 9 storage['FOO'] = 'MyFOO'
10 storage['BAR'] = 'MyBar' 10 storage['BAR'] = 'MyBar'
(...skipping 14 matching lines...) Expand all
25 PASS storage.length is 2 25 PASS storage.length is 2
26 PASS storage['FOO'] is "MyFOO" 26 PASS storage['FOO'] is "MyFOO"
27 PASS storage['BAR'] is "MyBar" 27 PASS storage['BAR'] is "MyBar"
28 storage.clear() 28 storage.clear()
29 PASS storage.length is 0 29 PASS storage.length is 0
30 PASS storage['FOO'] is undefined 30 PASS storage['FOO'] is undefined
31 PASS storage['BAR'] is undefined 31 PASS storage['BAR'] is undefined
32 PASS successfullyParsed is true 32 PASS successfullyParsed is true
33 33
34 TEST COMPLETE 34 TEST COMPLETE
35 PASS successfullyParsed is true
36
37 TEST COMPLETE
35 38
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698