cssFloat.js 219 B

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