Code Duplication    Length = 3-3 lines in 2 locations

modules/custom-css/csstidy/class.csstidy_optimise.php 2 locations

@@ 663-665 (lines=3) @@
660
				if ($have['bg'] === false && (substr($str_value[$i][$j], 0, 4) === 'url(' || $str_value[$i][$j] === 'none')) {
661
					$return['background-image'] .= $str_value[$i][$j] . ',';
662
					$have['bg'] = true;
663
				} elseif (in_array($str_value[$i][$j], $repeat, true)) {
664
					$return['background-repeat'] .= $str_value[$i][$j] . ',';
665
				} elseif (in_array($str_value[$i][$j], $attachment, true)) {
666
					$return['background-attachment'] .= $str_value[$i][$j] . ',';
667
				} elseif (in_array($str_value[$i][$j], $clip, true) && !$have['clip']) {
668
					$return['background-clip'] .= $str_value[$i][$j] . ',';
@@ 670-672 (lines=3) @@
667
				} elseif (in_array($str_value[$i][$j], $clip, true) && !$have['clip']) {
668
					$return['background-clip'] .= $str_value[$i][$j] . ',';
669
					$have['clip'] = true;
670
				} elseif (in_array($str_value[$i][$j], $origin, true)) {
671
					$return['background-origin'] .= $str_value[$i][$j] . ',';
672
				} elseif ($str_value[$i][$j]{0} === '(') {
673
					$return['background-size'] .= substr($str_value[$i][$j], 1, -1) . ',';
674
				} elseif (in_array($str_value[$i][$j], $pos, true) || is_numeric($str_value[$i][$j]{0}) || $str_value[$i][$j]{0} === null || $str_value[$i][$j]{0} === '-' || $str_value[$i][$j]{0} === '.') {
675
					$return['background-position'] .= $str_value[$i][$j];