source: frontend/node_modules/cssstyle/lib/properties/borderTopWidth.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 354 bytes
RevLine 
[9af201e]1'use strict';
2
3var isValid = require('./borderWidth').isValid;
4module.exports.isValid = isValid;
5
6module.exports.definition = {
7 set: function(v) {
8 if (isValid(v)) {
9 this._setProperty('border-top-width', v);
10 }
11 },
12 get: function() {
13 return this.getPropertyValue('border-top-width');
14 },
15 enumerable: true,
16 configurable: true,
17};
Note: See TracBrowser for help on using the repository browser.