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.
24 lines
516 B
24 lines
516 B
3 years ago
|
let Declaration = require('../declaration')
|
||
|
|
||
|
class BackgroundSize extends Declaration {
|
||
|
/**
|
||
|
* Duplication parameter for -webkit- browsers
|
||
|
*/
|
||
|
set(decl, prefix) {
|
||
|
let value = decl.value.toLowerCase()
|
||
|
if (
|
||
|
prefix === '-webkit-' &&
|
||
|
!value.includes(' ') &&
|
||
|
value !== 'contain' &&
|
||
|
value !== 'cover'
|
||
|
) {
|
||
|
decl.value = decl.value + ' ' + decl.value
|
||
|
}
|
||
|
return super.set(decl, prefix)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
BackgroundSize.names = ['background-size']
|
||
|
|
||
|
module.exports = BackgroundSize
|