summaryrefslogtreecommitdiffstats
path: root/LayoutTests/http/tests/appcache/dynamic-entries-no-cache-expected.txt
blob: 6aad145831e549994108aef826b5f82f465db1d0 (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
Test the behavior of DOMApplicationCache methods related to dynamic entries when the context is not associated with any cache.

PASS: applicationCache.items.length is 0
PASS: applicationCache.items.item(0) is null
PASS: applicationCache.items.item(1) is null
PASS: applicationCache.items.item(0xffffffff) is null
PASS: applicationCache.items.item(0xfffffffe) is null
PASS: applicationCache.items.item(-1) is null
PASS: applicationCache.items.item(-2) is null
PASS: applicationCache.items[0xfffffffe] is undefined
PASS: applicationCache.items[0xffffffff] is undefined
PASS: applicationCache.items['0'] is undefined
PASS: applicationCache.items[''] is undefined
PASS: applicationCache.items[0] is undefined
PASS: applicationCache.items[1] is undefined
PASS: applicationCache.items[-1] is undefined
PASS: applicationCache.items[-2] is undefined
PASS: applicationCache.items[100] is undefined
PASS: applicationCache.items['100'] is undefined
PASS: applicationCache.items['foo'] is undefined
PASS: applicationCache.items[0.1] is undefined
PASS: hasItem raised INVALID_STATE_ERR
PASS: add raised INVALID_STATE_ERR
PASS: remove raised INVALID_STATE_ERR
PASS: applicationCache.items.length is 0
DONE