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";
|
---|
2 | Object.defineProperty(exports, "__esModule", { value: true });
|
---|
3 | exports.fontStyle = void 0;
|
---|
4 | exports.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.