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.
30 lines
678 B
30 lines
678 B
'use strict';
|
|
|
|
var parsers = require('../parsers');
|
|
var implicitSetter = require('../parsers').implicitSetter;
|
|
|
|
module.exports.isValid = function parse(v) {
|
|
if (typeof v !== 'string') {
|
|
return false;
|
|
}
|
|
return (
|
|
v === '' || v.toLowerCase() === 'transparent' || parsers.valueType(v) === parsers.TYPES.COLOR
|
|
);
|
|
};
|
|
var isValid = module.exports.isValid;
|
|
|
|
var parser = function(v) {
|
|
if (isValid(v)) {
|
|
return v.toLowerCase();
|
|
}
|
|
return undefined;
|
|
};
|
|
|
|
module.exports.definition = {
|
|
set: implicitSetter('border', 'color', isValid, parser),
|
|
get: function() {
|
|
return this.getPropertyValue('border-color');
|
|
},
|
|
enumerable: true,
|
|
configurable: true,
|
|
};
|
|
|