From 99c1d9af689e5325f3cf535c4007b3aeb8325229 Mon Sep 17 00:00:00 2001 From: Minteck Date: Tue, 10 Jan 2023 14:54:04 +0100 Subject: Update - This is an automated commit --- .../lib/properties/backgroundAttachment.js | 24 ---------------------- 1 file changed, 24 deletions(-) delete mode 100644 alarm/node_modules/cssstyle/lib/properties/backgroundAttachment.js (limited to 'alarm/node_modules/cssstyle/lib/properties/backgroundAttachment.js') diff --git a/alarm/node_modules/cssstyle/lib/properties/backgroundAttachment.js b/alarm/node_modules/cssstyle/lib/properties/backgroundAttachment.js deleted file mode 100644 index 98c8f76..0000000 --- a/alarm/node_modules/cssstyle/lib/properties/backgroundAttachment.js +++ /dev/null @@ -1,24 +0,0 @@ -'use strict'; - -var parsers = require('../parsers'); - -var isValid = (module.exports.isValid = function isValid(v) { - return ( - parsers.valueType(v) === parsers.TYPES.KEYWORD && - (v.toLowerCase() === 'scroll' || v.toLowerCase() === 'fixed' || v.toLowerCase() === 'inherit') - ); -}); - -module.exports.definition = { - set: function(v) { - if (!isValid(v)) { - return; - } - this._setProperty('background-attachment', v); - }, - get: function() { - return this.getPropertyValue('background-attachment'); - }, - enumerable: true, - configurable: true, -}; -- cgit