wishthis/node_modules/html2canvas/dist/lib/css/property-descriptors/overflow.js
2022-11-19 16:34:10 +01:00

28 lines
No EOL
880 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.overflow = void 0;
var parser_1 = require("../syntax/parser");
exports.overflow = {
name: 'overflow',
initialValue: 'visible',
prefix: false,
type: 1 /* LIST */,
parse: function (_context, tokens) {
return tokens.filter(parser_1.isIdentToken).map(function (overflow) {
switch (overflow.value) {
case 'hidden':
return 1 /* HIDDEN */;
case 'scroll':
return 2 /* SCROLL */;
case 'clip':
return 3 /* CLIP */;
case 'auto':
return 4 /* AUTO */;
case 'visible':
default:
return 0 /* VISIBLE */;
}
});
}
};
//# sourceMappingURL=overflow.js.map