mirror of
https://github.com/niklasvh/html2canvas.git
synced 2023-08-10 21:13:10 +03:00
19 lines
547 B
JavaScript
19 lines
547 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.listStylePosition = void 0;
|
|
exports.listStylePosition = {
|
|
name: 'list-style-position',
|
|
initialValue: 'outside',
|
|
prefix: false,
|
|
type: 2 /* IDENT_VALUE */,
|
|
parse: function (_context, position) {
|
|
switch (position) {
|
|
case 'inside':
|
|
return 0 /* INSIDE */;
|
|
case 'outside':
|
|
default:
|
|
return 1 /* OUTSIDE */;
|
|
}
|
|
}
|
|
};
|
|
//# sourceMappingURL=list-style-position.js.map
|