tor-browser

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

browser_keycodes.js (345B)


      1 /* Any copyright is dedicated to the Public Domain.
      2   http://creativecommons.org/publicdomain/zero/1.0/ */
      3 
      4 "use strict";
      5 
      6 const { KeyCodes } = require("resource://devtools/client/shared/keycodes.js");
      7 
      8 add_task(async function () {
      9  for (const key in KeyCodes) {
     10    is(KeyCodes[key], KeyboardEvent[key], "checking value for " + key);
     11  }
     12 });