source: imaps-frontend/node_modules/html2canvas/dist/lib/css/property-descriptors/font-style.js

main
Last change on this file was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 5 days ago

F4 Finalna Verzija

  • Property mode set to 100644
File size: 600 bytes
Line 
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.fontStyle = void 0;
4exports.fontStyle = {
5 name: 'font-style',
6 initialValue: 'normal',
7 prefix: false,
8 type: 2 /* IDENT_VALUE */,
9 parse: function (_context, overflow) {
10 switch (overflow) {
11 case 'oblique':
12 return "oblique" /* OBLIQUE */;
13 case 'italic':
14 return "italic" /* ITALIC */;
15 case 'normal':
16 default:
17 return "normal" /* NORMAL */;
18 }
19 }
20};
21//# sourceMappingURL=font-style.js.map
Note: See TracBrowser for help on using the repository browser.