tor-browser

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

test_ext_all_apis.html (1241B)


      1 <!DOCTYPE HTML>
      2 <html>
      3 <head>
      4  <title>WebExtension test</title>
      5  <meta charset="utf-8">
      6  <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
      7  <script type="text/javascript" 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.WindowType",
     21  "tabs.ZoomSettingsMode",
     22  "tabs.ZoomSettingsScope",
     23  "tabs.connect",
     24  "tabs.create",
     25  "tabs.detectLanguage",
     26  "tabs.executeScript",
     27  "tabs.get",
     28  "tabs.getCurrent",
     29  "tabs.goBack",
     30  "tabs.goForward",
     31  "tabs.insertCSS",
     32  "tabs.onActivated",
     33  "tabs.onAttached",
     34  "tabs.onCreated",
     35  "tabs.onDetached",
     36  "tabs.onHighlighted",
     37  "tabs.onMoved",
     38  "tabs.onRemoved",
     39  "tabs.onReplaced",
     40  "tabs.onUpdated",
     41  "tabs.query",
     42  "tabs.reload",
     43  "tabs.remove",
     44  "tabs.removeCSS",
     45  "tabs.sendMessage",
     46  "tabs.update",
     47 ];
     48 </script>
     49 <script src="test_ext_all_apis.js"></script>
     50 </body>
     51 </html>