forked from mirrors/gecko-dev
# ignore-this-changeset Differential Revision: https://phabricator.services.mozilla.com/D35894 --HG-- extra : source : 4722b924e08478f5337ab509718bd66906bf472f extra : amend_source : a5baa1aab21639fdba44537e3a10b179b0073cb4
71 lines
1.9 KiB
JavaScript
71 lines
1.9 KiB
JavaScript
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
"use strict";
|
|
|
|
/*
|
|
* This is an xpcshell script that runs to generate a static list of CSS properties
|
|
* as known by the platform. It is run from ./mach_commands.py by running
|
|
* `mach devtools-css-db`.
|
|
*/
|
|
var { require } = ChromeUtils.import("resource://devtools/shared/Loader.jsm");
|
|
var {
|
|
generateCssProperties,
|
|
} = require("devtools/server/actors/css-properties");
|
|
const InspectorUtils = require("InspectorUtils");
|
|
|
|
// xpcshell can output extra information, so place some delimiter text between
|
|
// the output of the css properties database.
|
|
dump("DEVTOOLS_CSS_DB_DELIMITER");
|
|
|
|
// Output JSON
|
|
dump(
|
|
JSON.stringify({
|
|
cssProperties: cssProperties(),
|
|
preferences: preferences(),
|
|
pseudoElements: pseudoElements(),
|
|
})
|
|
);
|
|
|
|
dump("DEVTOOLS_CSS_DB_DELIMITER");
|
|
|
|
/*
|
|
* A list of CSS Properties and their various characteristics. This is used on the
|
|
* client-side when the CssPropertiesActor is not found, or when the client and server
|
|
* are the same version. A single property takes the form:
|
|
*
|
|
* "animation": {
|
|
* "isInherited": false,
|
|
* "supports": [ 7, 9, 10 ]
|
|
* }
|
|
*/
|
|
function cssProperties() {
|
|
const properties = generateCssProperties();
|
|
for (const key in properties) {
|
|
// Ignore OS-specific properties
|
|
if (key.includes("-moz-osx-")) {
|
|
properties[key] = undefined;
|
|
}
|
|
}
|
|
return properties;
|
|
}
|
|
|
|
/**
|
|
* A list of preferences of CSS properties.
|
|
*/
|
|
function preferences() {
|
|
const prefs = InspectorUtils.getCSSPropertyPrefs();
|
|
const result = [];
|
|
for (const { name, pref } of prefs) {
|
|
result.push([name, pref]);
|
|
}
|
|
return result;
|
|
}
|
|
|
|
/**
|
|
* The list of all CSS Pseudo Elements.
|
|
*/
|
|
function pseudoElements() {
|
|
return InspectorUtils.getCSSPseudoElementNames();
|
|
}
|