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

Side by Side Diff: third_party/WebKit/LayoutTests/storage/domstorage/events/case-sensitive-expected.txt

Issue 2538773003: Deflake storage/domstorage/events tests when run in random order (Closed)
Patch Set: Rebased Created 4 years 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
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
15 Reset storage event list 12 Reset storage event list
16 storageEventList = new Array() 13 storageEventList = new Array()
17 storage.foo = 'test' 14 storage.foo = 'test'
18 PASS storageEventList.length is 0 15 PASS storageEventList.length is 0
19 storage.foo = 'TEST' 16 storage.foo = 'TEST'
20 PASS storageEventList.length is 1 17 PASS storageEventList.length is 1
21 18
22 19
23 Testing localStorage 20 Testing localStorage
24 storage.clear() 21 storage.clear()
25 PASS storage.length is 0 22 PASS storage.length is 0
26 23
27 Verify storage events are case sensitive 24 Verify storage events are case sensitive
28 storage.foo = 'test' 25 storage.foo = 'test'
29 Reset storage event list 26 Reset storage event list
30 storageEventList = new Array() 27 storageEventList = new Array()
31 storage.foo = 'test' 28 storage.foo = 'test'
32 PASS storageEventList.length is 0 29 PASS storageEventList.length is 0
33 storage.foo = 'TEST' 30 storage.foo = 'TEST'
34 PASS storageEventList.length is 1 31 PASS storageEventList.length is 1
35
36
37 PASS successfullyParsed is true 32 PASS successfullyParsed is true
38 33
39 TEST COMPLETE 34 TEST COMPLETE
40 35
41
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698