summaryrefslogtreecommitdiffstats
path: root/mobile/android/components/extensions/test/mochitest/test_ext_all_apis.html
blob: c1220ff4a57be0bcfdcf78ea790916debc4d1b03 (plain)
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
<!DOCTYPE HTML>
<html>
<head>
  <title>WebExtension test</title>
  <meta charset="utf-8">
  <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
  <script type="text/javascript" src="/tests/SimpleTest/ExtensionTestUtils.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css">
</head>
<body>
<script>
"use strict";
/* exported expectedContentApisTargetSpecific, expectedBackgroundApisTargetSpecific */
let expectedContentApisTargetSpecific = [];

let expectedBackgroundApisTargetSpecific = [
  "tabs.MutedInfoReason",
  "tabs.TAB_ID_NONE",
  "tabs.TabStatus",
  "tabs.WindowType",
  "tabs.ZoomSettingsMode",
  "tabs.ZoomSettingsScope",
  "tabs.connect",
  "tabs.create",
  "tabs.executeScript",
  "tabs.get",
  "tabs.getCurrent",
  "tabs.goBack",
  "tabs.goForward",
  "tabs.insertCSS",
  "tabs.onActivated",
  "tabs.onAttached",
  "tabs.onCreated",
  "tabs.onDetached",
  "tabs.onHighlighted",
  "tabs.onMoved",
  "tabs.onRemoved",
  "tabs.onReplaced",
  "tabs.onUpdated",
  "tabs.query",
  "tabs.reload",
  "tabs.remove",
  "tabs.removeCSS",
  "tabs.sendMessage",
  "tabs.update",
];
</script>
<script src="test_ext_all_apis.js"></script>
</body>
</html>