blob: 153d4c123189a1efcadec73d6ca918e9bd5a6b7b (
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
|
[idbobjectstore-request-source.html]
expected:
if (os == "win") and not debug and (processor == "x86_64"): [OK, TIMEOUT]
if (os == "win") and not debug and (processor == "x86"): [TIMEOUT, OK]
[The source of the request from store => store.getKey(0) is the object store itself]
expected:
if (os == "win") and not debug and (processor == "x86_64"): [PASS, TIMEOUT]
[The source of the request from store => store.getAll() is the object store itself]
expected:
if (os == "win") and not debug and (processor == "x86_64"): [PASS, TIMEOUT]
[The source of the request from store => store.getAllKeys() is the object store itself]
expected:
if (os == "win") and not debug and (processor == "x86_64"): [PASS, TIMEOUT]
if (os == "win") and not debug and (processor == "x86"): TIMEOUT
[The source of the request from store => store.count() is the object store itself]
expected:
if (os == "win") and not debug and (processor == "x86_64"): [PASS, TIMEOUT]
if (os == "win") and not debug and (processor == "x86"): [TIMEOUT, PASS]
[The source of the request from store => store.openCursor() is the object store itself]
expected:
if (os == "win") and not debug and (processor == "x86_64"): [PASS, TIMEOUT]
if (os == "win") and not debug and (processor == "x86"): [TIMEOUT, PASS]
[The source of the request from store => store.openKeyCursor() is the object store itself]
expected:
if (os == "win") and not debug and (processor == "x86_64"): [PASS, TIMEOUT]
if (os == "win") and not debug and (processor == "x86"): [TIMEOUT, PASS]
|