Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: devtools/client/shared/test/browser.toml
/* Any copyright is dedicated to the Public Domain.
"use strict";
const { KeyCodes } = require("resource://devtools/client/shared/keycodes.js");
add_task(async function () {
for (const key in KeyCodes) {
is(KeyCodes[key], KeyboardEvent[key], "checking value for " + key);
}
});