allExtraProperties.js
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 var allWebkitProperties = require('./allWebkitProperties'); 9 10 module.exports = new Set( 11 [ 12 'background-position-x', 13 'background-position-y', 14 'background-repeat-x', 15 'background-repeat-y', 16 'color-interpolation', 17 'color-profile', 18 'color-rendering', 19 'css-float', 20 'enable-background', 21 'fill', 22 'fill-opacity', 23 'fill-rule', 24 'glyph-orientation-horizontal', 25 'image-rendering', 26 'kerning', 27 'marker', 28 'marker-end', 29 'marker-mid', 30 'marker-offset', 31 'marker-start', 32 'marks', 33 'pointer-events', 34 'shape-rendering', 35 'size', 36 'src', 37 'stop-color', 38 'stop-opacity', 39 'stroke', 40 'stroke-dasharray', 41 'stroke-dashoffset', 42 'stroke-linecap', 43 'stroke-linejoin', 44 'stroke-miterlimit', 45 'stroke-opacity', 46 'stroke-width', 47 'text-anchor', 48 'text-line-through', 49 'text-line-through-color', 50 'text-line-through-mode', 51 'text-line-through-style', 52 'text-line-through-width', 53 'text-overline', 54 'text-overline-color', 55 'text-overline-mode', 56 'text-overline-style', 57 'text-overline-width', 58 'text-rendering', 59 'text-underline', 60 'text-underline-color', 61 'text-underline-mode', 62 'text-underline-style', 63 'text-underline-width', 64 'unicode-range', 65 'vector-effect', 66 ].concat(allWebkitProperties) 67 );