blob: 91f967417440d123850dacaf80716a50e4a40bdc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
[idbindex-request-source.html]
expected:
if (os == "win") and not debug and (processor == "x86"): [OK, TIMEOUT]
if (os == "android") and fission: [OK, TIMEOUT]
[The source of the request from index => index.openCursor() is the index itself]
expected:
if (processor == "x86") and (os == "win") and not debug: [PASS, TIMEOUT]
[The source of the request from index => index.count() is the index itself]
expected:
if (processor == "x86") and (os == "win") and not debug: [PASS, TIMEOUT]
[The source of the request from index => index.openKeyCursor() is the index itself]
expected:
if (processor == "x86") and (os == "win") and not debug: [PASS, TIMEOUT]
|