allExtraProperties.js 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. const allWebkitProperties = require("./allWebkitProperties");
  7. module.exports = new Set([
  8. "background-position-x",
  9. "background-position-y",
  10. "background-repeat-x",
  11. "background-repeat-y",
  12. "color-interpolation",
  13. "color-profile",
  14. "color-rendering",
  15. "enable-background",
  16. "glyph-orientation-horizontal",
  17. "kerning",
  18. "marker-offset",
  19. "marks",
  20. "pointer-events",
  21. "shape-rendering",
  22. "size",
  23. "src",
  24. "stop-color",
  25. "stop-opacity",
  26. "text-anchor",
  27. "text-line-through",
  28. "text-line-through-color",
  29. "text-line-through-mode",
  30. "text-line-through-style",
  31. "text-line-through-width",
  32. "text-overline",
  33. "text-overline-color",
  34. "text-overline-mode",
  35. "text-overline-style",
  36. "text-overline-width",
  37. "text-rendering",
  38. "text-underline",
  39. "text-underline-color",
  40. "text-underline-mode",
  41. "text-underline-style",
  42. "text-underline-width",
  43. "unicode-range",
  44. "vector-effect",
  45. ...allWebkitProperties
  46. ]);