allWebkitProperties.js 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. "use strict";
  2. /**
  3. * This file contains all implemented properties that are not a part of any
  4. * current specifications or drafts, but are handled by browsers nevertheless.
  5. */
  6. module.exports = [
  7. "background-composite",
  8. "border-after",
  9. "border-after-color",
  10. "border-after-style",
  11. "border-after-width",
  12. "border-before",
  13. "border-before-color",
  14. "border-before-style",
  15. "border-before-width",
  16. "border-end",
  17. "border-end-color",
  18. "border-end-style",
  19. "border-end-width",
  20. "border-fit",
  21. "border-horizontal-spacing",
  22. "border-start",
  23. "border-start-color",
  24. "border-start-style",
  25. "border-start-width",
  26. "border-vertical-spacing",
  27. "color-correction",
  28. "column-axis",
  29. "column-break-after",
  30. "column-break-before",
  31. "column-break-inside",
  32. "column-rule-color",
  33. "flex-align",
  34. "flex-item-align",
  35. "flex-line-pack",
  36. "flex-order",
  37. "flex-pack",
  38. "flex-wrap",
  39. "font-size-delta",
  40. "font-smoothing",
  41. "highlight",
  42. "hyphenate-limit-after",
  43. "hyphenate-limit-before",
  44. "locale",
  45. "logical-height",
  46. "logical-width",
  47. "margin-after",
  48. "margin-after-collapse",
  49. "margin-before",
  50. "margin-before-collapse",
  51. "margin-bottom-collapse",
  52. "margin-collapse",
  53. "margin-end",
  54. "margin-start",
  55. "margin-top-collapse",
  56. "marquee",
  57. "marquee-direction",
  58. "marquee-increment",
  59. "marquee-repetition",
  60. "marquee-speed",
  61. "marquee-style",
  62. "mask-attachment",
  63. "mask-box-image-outset",
  64. "mask-box-image-repeat",
  65. "mask-box-image-slice",
  66. "mask-box-image-source",
  67. "mask-box-image-width",
  68. "mask-position-x",
  69. "mask-position-y",
  70. "mask-repeat-x",
  71. "mask-repeat-y",
  72. "match-nearest-mail-blockquote-color",
  73. "max-logical-height",
  74. "max-logical-width",
  75. "min-logical-height",
  76. "min-logical-width",
  77. "nbsp-mode",
  78. "overflow-scrolling",
  79. "padding-after",
  80. "padding-before",
  81. "padding-end",
  82. "padding-start",
  83. "perspective-origin-x",
  84. "perspective-origin-y",
  85. "region-break-after",
  86. "region-break-before",
  87. "region-break-inside",
  88. "region-overflow",
  89. "rtl-ordering",
  90. "svg-shadow",
  91. "tap-highlight-color",
  92. "text-decorations-in-effect",
  93. "text-emphasis-color",
  94. "text-fill-color",
  95. "text-security",
  96. "text-size-adjust",
  97. "text-stroke",
  98. "text-stroke-color",
  99. "text-stroke-width",
  100. "transform",
  101. "transform-origin-x",
  102. "transform-origin-y",
  103. "transform-origin-z",
  104. "user-drag",
  105. "user-modify",
  106. "wrap",
  107. "wrap-margin",
  108. "wrap-padding",
  109. "wrap-shape-inside",
  110. "wrap-shape-outside",
  111. "zoom"
  112. ].map((prop) => `-webkit-${prop}`);