summaryrefslogtreecommitdiffstats
path: root/LayoutTests/storage/domstorage/events/documentURI-expected.txt
blob: d53d4dc3beef21352e03df8bb887a6578d8ecc62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
Test that changing documentURI has no effects on the url passed into storage events.

On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".


Testing sessionStorage
storage.clear()
PASS storage.length is 0
Reset storage event list
storageEventList = new Array()
storage.foo = '123'
PASS storageEventList.length is 1
Saving url
document.documentURI = 'abc'
PASS document.documentURI is "abc"
storage.foo = 'xyz'
PASS storageEventList.length is 2
PASS true is true


Testing localStorage
storage.clear()
PASS storage.length is 0
Reset storage event list
storageEventList = new Array()
storage.foo = '123'
PASS storageEventList.length is 1
Saving url
document.documentURI = 'abc'
PASS document.documentURI is "abc"
storage.foo = 'xyz'
PASS storageEventList.length is 2
PASS true is true


PASS successfullyParsed is true

TEST COMPLETE