summaryrefslogtreecommitdiff
path: root/alarm/node_modules/cssstyle/lib/properties/borderTop.js
blob: c56d592d30adb24a45b91ca5647d5d1102212d94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
'use strict';

var shorthandSetter = require('../parsers').shorthandSetter;
var shorthandGetter = require('../parsers').shorthandGetter;

var shorthand_for = {
  'border-top-width': require('./borderTopWidth'),
  'border-top-style': require('./borderTopStyle'),
  'border-top-color': require('./borderTopColor'),
};

module.exports.definition = {
  set: shorthandSetter('border-top', shorthand_for),
  get: shorthandGetter('border-top', shorthand_for),
  enumerable: true,
  configurable: true,
};