blob: 974e367b16a792fc6694ae9fdb2453b6d9e24b64 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
[activate-after.tentative.https.window.html]
expected:
if (os == "win") and debug and (processor == "x86_64"): OK
if (os == "win") and not debug: TIMEOUT
if (os == "linux") and not debug: TIMEOUT
if os == "android": OK
[OK, TIMEOUT]
[fetchLater() sends out based on activateAfter.]
expected:
if (os == "win") and debug and (processor == "x86_64"): FAIL
if (os == "win") and not debug: TIMEOUT
if (os == "linux") and not debug: TIMEOUT
if os == "android": FAIL
[FAIL, TIMEOUT]
[fetchLater() sends out based on activateAfter, even if document is in BFCache.]
expected: FAIL
|