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