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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
[DEFAULT]
tags = "condprof"
support-files = [
"worker.js",
"frame.html",
"webpush.js",
"lifetime_worker.js",
"test_utils.js",
"mockpushserviceparent.js",
"error_worker.js",
]
["test_data.html"]
skip-if = [
"os == 'android'",
"os == 'win'", # Bug 1373346
]
scheme = "https"
["test_error_reporting.html"]
skip-if = [
"serviceworker_e10s",
"os == 'android'",
]
["test_has_permissions.html"]
skip-if = ["os == 'android'"]
["test_multiple_register.html"]
skip-if = ["os == 'android'"]
["test_multiple_register_different_scope.html"]
skip-if = ["os == 'android'"]
["test_multiple_register_during_service_activation.html"]
skip-if = [
"os == 'android'",
"os == 'win'",
"os == 'linux'",
"os == 'mac'", #Bug 1274773
]
["test_permission_granted.html"]
scheme = "https"
["test_permissions.html"]
skip-if = ["os == 'android'"]
["test_register.html"]
skip-if = [
"os == 'android'",
"os == 'win'" # Bug 1373346
]
["test_register_key.html"]
skip-if = ["os == 'android'"]
scheme = "https"
["test_serviceworker_lifetime.html"]
skip-if = [
"serviceworker_e10s",
"os == 'android'",
"os == 'win'", # Bug 1373346
"os =='linux' && bits == 64", # Bug 1578374
"os =='mac'", # Bug 1578333
]
["test_subscription_change.html"]
skip-if = [
"os == 'android'",
"os == 'win'" # Bug 1373346
]
["test_try_registering_offline_disabled.html"]
skip-if = [
"os == 'android'",
"os == 'win'" # Bug 1373346
]
["test_unregister.html"]
skip-if = ["os == 'android'"]
|