You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
333 B
13 lines
333 B
'use strict'; |
|
|
|
var padding = require('./padding.js'); |
|
var parsers = require('../parsers.js'); |
|
|
|
module.exports.definition = { |
|
set: parsers.subImplicitSetter('padding', 'right', padding.isValid, padding.parser), |
|
get: function() { |
|
return this.getPropertyValue('padding-right'); |
|
}, |
|
enumerable: true, |
|
configurable: true, |
|
};
|
|
|