Sha256: 2c088d7dd565addb85372707ab56e23ef3fe756e92498848ab53d089d6ba7015

Contents?: true

Size: 1 KB

Versions: 20

Compression:

Stored size: 1 KB

Contents

'use strict';

var parseMeasurement = require('../parsers').parseMeasurement;

var shape_regex = /^rect\((.*)\)$/i;

var parse = function(val) {
  if (val === '' || val === null) {
    return val;
  }
  if (typeof val !== 'string') {
    return undefined;
  }
  val = val.toLowerCase();
  if (val === 'auto' || val === 'inherit') {
    return val;
  }
  var matches = val.match(shape_regex);
  if (!matches) {
    return undefined;
  }
  var parts = matches[1].split(/\s*,\s*/);
  if (parts.length !== 4) {
    return undefined;
  }
  var valid = parts.every(function(part, index) {
    var measurement = parseMeasurement(part);
    parts[index] = measurement;
    return measurement !== undefined;
  });
  if (!valid) {
    return undefined;
  }
  parts = parts.join(', ');
  return val.replace(matches[1], parts);
};

module.exports.definition = {
  set: function(v) {
    this._setProperty('clip', parse(v));
  },
  get: function() {
    return this.getPropertyValue('clip');
  },
  enumerable: true,
  configurable: true,
};

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
appmap-0.72.2 ./node_modules/cssstyle/lib/properties/clip.js
appmap-0.72.1 ./node_modules/cssstyle/lib/properties/clip.js
appmap-0.72.0 ./node_modules/cssstyle/lib/properties/clip.js
appmap-0.71.0 ./node_modules/cssstyle/lib/properties/clip.js
appmap-0.70.2 ./node_modules/cssstyle/lib/properties/clip.js
appmap-0.70.1 ./node_modules/cssstyle/lib/properties/clip.js
appmap-0.70.0 ./node_modules/cssstyle/lib/properties/clip.js
appmap-0.69.0 ./node_modules/cssstyle/lib/properties/clip.js
appmap-0.68.2 ./node_modules/cssstyle/lib/properties/clip.js
appmap-0.68.1 ./node_modules/cssstyle/lib/properties/clip.js
appmap-0.68.0 ./node_modules/cssstyle/lib/properties/clip.js
appmap-0.67.1 ./node_modules/cssstyle/lib/properties/clip.js
appmap-0.67.0 ./node_modules/cssstyle/lib/properties/clip.js
appmap-0.66.2 ./node_modules/cssstyle/lib/properties/clip.js
appmap-0.66.1 ./node_modules/cssstyle/lib/properties/clip.js
appmap-0.66.0 ./node_modules/cssstyle/lib/properties/clip.js
appmap-0.65.1 ./node_modules/cssstyle/lib/properties/clip.js
appmap-0.65.0 ./node_modules/cssstyle/lib/properties/clip.js
appmap-0.64.0 ./node_modules/cssstyle/lib/properties/clip.js
appmap-0.63.0 ./node_modules/cssstyle/lib/properties/clip.js