|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
4.0 KB
|
| Rev | Line | |
|---|
| [9af201e] | 1 | 'use strict';
|
|---|
| 2 |
|
|---|
| 3 | /**
|
|---|
| 4 | * This file contains all implemented properties that are not a part of any
|
|---|
| 5 | * current specifications or drafts, but are handled by browsers nevertheless.
|
|---|
| 6 | */
|
|---|
| 7 |
|
|---|
| 8 | module.exports = [
|
|---|
| 9 | 'animation',
|
|---|
| 10 | 'animation-delay',
|
|---|
| 11 | 'animation-direction',
|
|---|
| 12 | 'animation-duration',
|
|---|
| 13 | 'animation-fill-mode',
|
|---|
| 14 | 'animation-iteration-count',
|
|---|
| 15 | 'animation-name',
|
|---|
| 16 | 'animation-play-state',
|
|---|
| 17 | 'animation-timing-function',
|
|---|
| 18 | 'appearance',
|
|---|
| 19 | 'aspect-ratio',
|
|---|
| 20 | 'backface-visibility',
|
|---|
| 21 | 'background-clip',
|
|---|
| 22 | 'background-composite',
|
|---|
| 23 | 'background-origin',
|
|---|
| 24 | 'background-size',
|
|---|
| 25 | 'border-after',
|
|---|
| 26 | 'border-after-color',
|
|---|
| 27 | 'border-after-style',
|
|---|
| 28 | 'border-after-width',
|
|---|
| 29 | 'border-before',
|
|---|
| 30 | 'border-before-color',
|
|---|
| 31 | 'border-before-style',
|
|---|
| 32 | 'border-before-width',
|
|---|
| 33 | 'border-end',
|
|---|
| 34 | 'border-end-color',
|
|---|
| 35 | 'border-end-style',
|
|---|
| 36 | 'border-end-width',
|
|---|
| 37 | 'border-fit',
|
|---|
| 38 | 'border-horizontal-spacing',
|
|---|
| 39 | 'border-image',
|
|---|
| 40 | 'border-radius',
|
|---|
| 41 | 'border-start',
|
|---|
| 42 | 'border-start-color',
|
|---|
| 43 | 'border-start-style',
|
|---|
| 44 | 'border-start-width',
|
|---|
| 45 | 'border-vertical-spacing',
|
|---|
| 46 | 'box-align',
|
|---|
| 47 | 'box-direction',
|
|---|
| 48 | 'box-flex',
|
|---|
| 49 | 'box-flex-group',
|
|---|
| 50 | 'box-lines',
|
|---|
| 51 | 'box-ordinal-group',
|
|---|
| 52 | 'box-orient',
|
|---|
| 53 | 'box-pack',
|
|---|
| 54 | 'box-reflect',
|
|---|
| 55 | 'box-shadow',
|
|---|
| 56 | 'color-correction',
|
|---|
| 57 | 'column-axis',
|
|---|
| 58 | 'column-break-after',
|
|---|
| 59 | 'column-break-before',
|
|---|
| 60 | 'column-break-inside',
|
|---|
| 61 | 'column-count',
|
|---|
| 62 | 'column-gap',
|
|---|
| 63 | 'column-rule',
|
|---|
| 64 | 'column-rule-color',
|
|---|
| 65 | 'column-rule-style',
|
|---|
| 66 | 'column-rule-width',
|
|---|
| 67 | 'columns',
|
|---|
| 68 | 'column-span',
|
|---|
| 69 | 'column-width',
|
|---|
| 70 | 'filter',
|
|---|
| 71 | 'flex-align',
|
|---|
| 72 | 'flex-direction',
|
|---|
| 73 | 'flex-flow',
|
|---|
| 74 | 'flex-item-align',
|
|---|
| 75 | 'flex-line-pack',
|
|---|
| 76 | 'flex-order',
|
|---|
| 77 | 'flex-pack',
|
|---|
| 78 | 'flex-wrap',
|
|---|
| 79 | 'flow-from',
|
|---|
| 80 | 'flow-into',
|
|---|
| 81 | 'font-feature-settings',
|
|---|
| 82 | 'font-kerning',
|
|---|
| 83 | 'font-size-delta',
|
|---|
| 84 | 'font-smoothing',
|
|---|
| 85 | 'font-variant-ligatures',
|
|---|
| 86 | 'highlight',
|
|---|
| 87 | 'hyphenate-character',
|
|---|
| 88 | 'hyphenate-limit-after',
|
|---|
| 89 | 'hyphenate-limit-before',
|
|---|
| 90 | 'hyphenate-limit-lines',
|
|---|
| 91 | 'hyphens',
|
|---|
| 92 | 'line-align',
|
|---|
| 93 | 'line-box-contain',
|
|---|
| 94 | 'line-break',
|
|---|
| 95 | 'line-clamp',
|
|---|
| 96 | 'line-grid',
|
|---|
| 97 | 'line-snap',
|
|---|
| 98 | 'locale',
|
|---|
| 99 | 'logical-height',
|
|---|
| 100 | 'logical-width',
|
|---|
| 101 | 'margin-after',
|
|---|
| 102 | 'margin-after-collapse',
|
|---|
| 103 | 'margin-before',
|
|---|
| 104 | 'margin-before-collapse',
|
|---|
| 105 | 'margin-bottom-collapse',
|
|---|
| 106 | 'margin-collapse',
|
|---|
| 107 | 'margin-end',
|
|---|
| 108 | 'margin-start',
|
|---|
| 109 | 'margin-top-collapse',
|
|---|
| 110 | 'marquee',
|
|---|
| 111 | 'marquee-direction',
|
|---|
| 112 | 'marquee-increment',
|
|---|
| 113 | 'marquee-repetition',
|
|---|
| 114 | 'marquee-speed',
|
|---|
| 115 | 'marquee-style',
|
|---|
| 116 | 'mask',
|
|---|
| 117 | 'mask-attachment',
|
|---|
| 118 | 'mask-box-image',
|
|---|
| 119 | 'mask-box-image-outset',
|
|---|
| 120 | 'mask-box-image-repeat',
|
|---|
| 121 | 'mask-box-image-slice',
|
|---|
| 122 | 'mask-box-image-source',
|
|---|
| 123 | 'mask-box-image-width',
|
|---|
| 124 | 'mask-clip',
|
|---|
| 125 | 'mask-composite',
|
|---|
| 126 | 'mask-image',
|
|---|
| 127 | 'mask-origin',
|
|---|
| 128 | 'mask-position',
|
|---|
| 129 | 'mask-position-x',
|
|---|
| 130 | 'mask-position-y',
|
|---|
| 131 | 'mask-repeat',
|
|---|
| 132 | 'mask-repeat-x',
|
|---|
| 133 | 'mask-repeat-y',
|
|---|
| 134 | 'mask-size',
|
|---|
| 135 | 'match-nearest-mail-blockquote-color',
|
|---|
| 136 | 'max-logical-height',
|
|---|
| 137 | 'max-logical-width',
|
|---|
| 138 | 'min-logical-height',
|
|---|
| 139 | 'min-logical-width',
|
|---|
| 140 | 'nbsp-mode',
|
|---|
| 141 | 'overflow-scrolling',
|
|---|
| 142 | 'padding-after',
|
|---|
| 143 | 'padding-before',
|
|---|
| 144 | 'padding-end',
|
|---|
| 145 | 'padding-start',
|
|---|
| 146 | 'perspective',
|
|---|
| 147 | 'perspective-origin',
|
|---|
| 148 | 'perspective-origin-x',
|
|---|
| 149 | 'perspective-origin-y',
|
|---|
| 150 | 'print-color-adjust',
|
|---|
| 151 | 'region-break-after',
|
|---|
| 152 | 'region-break-before',
|
|---|
| 153 | 'region-break-inside',
|
|---|
| 154 | 'region-overflow',
|
|---|
| 155 | 'rtl-ordering',
|
|---|
| 156 | 'svg-shadow',
|
|---|
| 157 | 'tap-highlight-color',
|
|---|
| 158 | 'text-combine',
|
|---|
| 159 | 'text-decorations-in-effect',
|
|---|
| 160 | 'text-emphasis',
|
|---|
| 161 | 'text-emphasis-color',
|
|---|
| 162 | 'text-emphasis-position',
|
|---|
| 163 | 'text-emphasis-style',
|
|---|
| 164 | 'text-fill-color',
|
|---|
| 165 | 'text-orientation',
|
|---|
| 166 | 'text-security',
|
|---|
| 167 | 'text-size-adjust',
|
|---|
| 168 | 'text-stroke',
|
|---|
| 169 | 'text-stroke-color',
|
|---|
| 170 | 'text-stroke-width',
|
|---|
| 171 | 'transform',
|
|---|
| 172 | 'transform-origin',
|
|---|
| 173 | 'transform-origin-x',
|
|---|
| 174 | 'transform-origin-y',
|
|---|
| 175 | 'transform-origin-z',
|
|---|
| 176 | 'transform-style',
|
|---|
| 177 | 'transition',
|
|---|
| 178 | 'transition-delay',
|
|---|
| 179 | 'transition-duration',
|
|---|
| 180 | 'transition-property',
|
|---|
| 181 | 'transition-timing-function',
|
|---|
| 182 | 'user-drag',
|
|---|
| 183 | 'user-modify',
|
|---|
| 184 | 'user-select',
|
|---|
| 185 | 'wrap',
|
|---|
| 186 | 'wrap-flow',
|
|---|
| 187 | 'wrap-margin',
|
|---|
| 188 | 'wrap-padding',
|
|---|
| 189 | 'wrap-shape-inside',
|
|---|
| 190 | 'wrap-shape-outside',
|
|---|
| 191 | 'wrap-through',
|
|---|
| 192 | 'writing-mode',
|
|---|
| 193 | 'zoom',
|
|---|
| 194 | ].map(prop => 'webkit-' + prop);
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.