Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test runs only with pattern: os != 'android'
- Manifest: devtools/client/shared/test/xpcshell/xpcshell.toml
/* Any copyright is dedicated to the Public Domain.
// Test that css-color-db matches platform.
"use strict";
const { cssColors } = require("resource://devtools/shared/css/color-db.js");
add_task(() => {
for (const name in cssColors) {
ok(
InspectorUtils.isValidCSSColor(name),
name + " is valid in InspectorUtils"
);
}
});