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

Side by Side Diff: LayoutTests/storage/domstorage/events/case-sensitive-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 Verify that storage events fire even when only the case of the value changes. 1 Verify that storage events fire even when only the case of the value changes.
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 Verify storage events are case sensitive 10 Verify storage events are case sensitive
11 storage.foo = 'test' 11 storage.foo = 'test'
12 PASS successfullyParsed is true
13
14 TEST COMPLETE
12 Reset storage event list 15 Reset storage event list
13 storageEventList = new Array() 16 storageEventList = new Array()
14 storage.foo = 'test' 17 storage.foo = 'test'
15 PASS storageEventList.length is 0 18 PASS storageEventList.length is 0
16 storage.foo = 'TEST' 19 storage.foo = 'TEST'
17 PASS storageEventList.length is 1 20 PASS storageEventList.length is 1
18 21
19 22
20 Testing localStorage 23 Testing localStorage
21 storage.clear() 24 storage.clear()
22 PASS storage.length is 0 25 PASS storage.length is 0
23 26
24 Verify storage events are case sensitive 27 Verify storage events are case sensitive
25 storage.foo = 'test' 28 storage.foo = 'test'
26 Reset storage event list 29 Reset storage event list
27 storageEventList = new Array() 30 storageEventList = new Array()
28 storage.foo = 'test' 31 storage.foo = 'test'
29 PASS storageEventList.length is 0 32 PASS storageEventList.length is 0
30 storage.foo = 'TEST' 33 storage.foo = 'TEST'
31 PASS storageEventList.length is 1 34 PASS storageEventList.length is 1
32 35
33 36
34 PASS successfullyParsed is true 37 PASS successfullyParsed is true
35 38
36 TEST COMPLETE 39 TEST COMPLETE
37 40
38 41
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698