summaryrefslogtreecommitdiffstats
path: root/mobile/android/components/extensions/test/mochitest/test_ext_tabs_autoDiscardable.html
blob: 63ea8337a7246bb5f2135af8a2f6e1921daf8326 (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
<!DOCTYPE HTML>
<html>
<head>
  <meta charset="utf-8">
  <title>autoDiscardable test</title>
  <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
  <script type="text/javascript" src="/tests/SimpleTest/ExtensionTestUtils.js"></script>
  <script type="text/javascript" src="head.js"></script>
  <link rel="stylesheet" href="/tests/SimpleTest/test.css"/>
</head>
<body>

<script type="text/javascript">
"use strict";

add_task(async function() {
  const extension = ExtensionTestUtils.loadExtension({
    async background() {
      const tab = await browser.tabs.create({});
      browser.test.assertTrue(tab.autoDiscardable, "autoDiscardable should be true on Android");
      browser.test.assertThrows(() => browser.tabs.query({ autoDiscardable: true }),
      /Unexpected property "autoDiscardable"/,
      `tabs.query with autoDiscardable should error out on Android`);
      browser.test.assertThrows(() => browser.tabs.update(tab.id, { autoDiscardable: true }),
      /Unexpected property "autoDiscardable"/,
      `tabs.update with autoDiscardable should error out on Android`);
      await browser.tabs.remove(tab.id); // Cleanup
      browser.test.notifyPass("tabs.autoDiscardable");
    },
  });

  await extension.startup();
  await extension.awaitFinish("tabs.autoDiscardable");
  await extension.unload();
});
</script>

</body>
</html>