您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

webkitTextCombine.js 270 B

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