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 });