tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

test_ext_all_apis.html (1928B)


      1 <!DOCTYPE HTML>
      2 <html>
      3 <head>
      4  <title>WebExtension test</title>
      5  <meta charset="utf-8">
      6  <script src="/tests/SimpleTest/SimpleTest.js"></script>
      7  <script src="/tests/SimpleTest/ExtensionTestUtils.js"></script>
      8  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css">
      9 </head>
     10 <body>
     11 <script>
     12 "use strict";
     13 /* exported expectedContentApisTargetSpecific, expectedBackgroundApisTargetSpecific */
     14 let expectedContentApisTargetSpecific = [];
     15 
     16 let expectedBackgroundApisTargetSpecific = [
     17  "tabs.MutedInfoReason",
     18  "tabs.TAB_ID_NONE",
     19  "tabs.TabStatus",
     20  "tabs.UpdatePropertyName",
     21  "tabs.WindowType",
     22  "tabs.ZoomSettingsMode",
     23  "tabs.ZoomSettingsScope",
     24  "tabs.connect",
     25  "tabs.create",
     26  "tabs.detectLanguage",
     27  "tabs.duplicate",
     28  "tabs.discard",
     29  "tabs.executeScript",
     30  "tabs.get",
     31  "tabs.getCurrent",
     32  "tabs.getZoom",
     33  "tabs.getZoomSettings",
     34  "tabs.goBack",
     35  "tabs.goForward",
     36  "tabs.group",
     37  "tabs.highlight",
     38  "tabs.insertCSS",
     39  "tabs.move",
     40  "tabs.moveInSuccession",
     41  "tabs.onActivated",
     42  "tabs.onAttached",
     43  "tabs.onCreated",
     44  "tabs.onDetached",
     45  "tabs.onHighlighted",
     46  "tabs.onMoved",
     47  "tabs.onRemoved",
     48  "tabs.onReplaced",
     49  "tabs.onUpdated",
     50  "tabs.onZoomChange",
     51  "tabs.print",
     52  "tabs.printPreview",
     53  "tabs.query",
     54  "tabs.reload",
     55  "tabs.remove",
     56  "tabs.removeCSS",
     57  "tabs.saveAsPDF",
     58  "tabs.sendMessage",
     59  "tabs.setZoom",
     60  "tabs.setZoomSettings",
     61  "tabs.toggleReaderMode",
     62  "tabs.ungroup",
     63  "tabs.update",
     64  "tabs.warmup",
     65  "windows.CreateType",
     66  "windows.WINDOW_ID_CURRENT",
     67  "windows.WINDOW_ID_NONE",
     68  "windows.WindowState",
     69  "windows.WindowType",
     70  "windows.create",
     71  "windows.get",
     72  "windows.getAll",
     73  "windows.getCurrent",
     74  "windows.getLastFocused",
     75  "windows.onCreated",
     76  "windows.onFocusChanged",
     77  "windows.onRemoved",
     78  "windows.remove",
     79  "windows.update",
     80 ];
     81 </script>
     82 <script src="test_ext_all_apis.js"></script>
     83 
     84 </body>
     85 </html>