You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
876 B

9 months ago
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.computeLineHeight = exports.lineHeight = void 0;
var parser_1 = require("../syntax/parser");
var length_percentage_1 = require("../types/length-percentage");
exports.lineHeight = {
name: 'line-height',
initialValue: 'normal',
prefix: false,
type: 4 /* TOKEN_VALUE */
};
var computeLineHeight = function (token, fontSize) {
if (parser_1.isIdentToken(token) && token.value === 'normal') {
return 1.2 * fontSize;
}
else if (token.type === 17 /* NUMBER_TOKEN */) {
return fontSize * token.number;
}
else if (length_percentage_1.isLengthPercentage(token)) {
return length_percentage_1.getAbsoluteValue(token, fontSize);
}
return fontSize;
};
exports.computeLineHeight = computeLineHeight;
//# sourceMappingURL=line-height.js.map