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
|
[update-not-allowed.https.html]
disabled:
if os == "android": bug 1550895 (frequently fails on geckoview)
expected:
if (os == "win") and not debug and (processor == "x86_64"): ERROR
if (os == "win") and not debug and (processor == "x86"): [ERROR, OK]
if (os == "win") and debug: ERROR
if os == "mac": ERROR
[ERROR, TIMEOUT]
[ServiceWorkerRegistration.update() from installing service worker throws.]
expected:
if (os == "linux") and debug and fission: [PASS, TIMEOUT]
if (os == "win") and not debug and (processor == "x86_64"): PASS
if (os == "win") and not debug and (processor == "x86"): [PASS, FAIL]
if (os == "win") and debug: PASS
if os == "mac": PASS
[PASS, TIMEOUT, NOTRUN]
[ServiceWorkerRegistration.update() from active service worker succeeds while installing service worker.]
expected:
if (os == "mac") and not debug: [PASS, FAIL, TIMEOUT]
if (os == "mac") and debug: PASS
if (os == "linux") and not fission: [PASS, NOTRUN]
if (os == "win") and not debug: [PASS, FAIL, TIMEOUT]
if (os == "win") and debug: PASS
[PASS, FAIL, TIMEOUT, NOTRUN]
[ServiceWorkerRegistration.update() from client succeeds while installing service worker.]
expected:
if not debug and (os == "win"): [PASS, FAIL]
if not debug and (os == "linux"): [PASS, FAIL, TIMEOUT]
|