blob: d9497831fb83109f5dbc68febe21d03e22c4b680 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
[resource.html]
expected:
if (os == "win") and not debug: [OK, TIMEOUT]
if (os == "mac") and not debug: [OK, TIMEOUT]
[https resource on a https page]
expected:
if (os == "win") and not debug: [PASS, TIMEOUT]
[https resource on a http page]
expected:
if (os == "win") and not debug and (processor == "x86_64"): [PASS, NOTRUN]
if (os == "win") and not debug and (processor == "x86"): [PASS, TIMEOUT, NOTRUN]
if (os == "mac") and not debug: [PASS, TIMEOUT]
[http resource on a https page]
expected:
if (os == "mac") and not debug: [PASS, NOTRUN]
if (os == "win") and not debug: [PASS, NOTRUN]
[http resource on a http page]
expected:
if (os == "win") and not debug: [PASS, NOTRUN]
if (os == "mac") and not debug: [PASS, NOTRUN]
|