選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

webkitMaskBoxImageWidth.js 286 B

123456789101112
  1. 'use strict';
  2. module.exports.definition = {
  3. set: function (v) {
  4. this._setProperty('-webkit-mask-box-image-width', v);
  5. },
  6. get: function () {
  7. return this.getPropertyValue('-webkit-mask-box-image-width');
  8. },
  9. enumerable: true,
  10. configurable: true
  11. };