소스 검색

don't use original CSS test as fallback

Gildas 7 년 전
부모
커밋
e88d919201
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      lib/single-file/css-rules-minifier.js

+ 1 - 1
lib/single-file/css-rules-minifier.js

@@ -119,7 +119,7 @@ this.cssMinifier = this.cssMinifier || (() => {
 				}
 			}
 		}
-		return (selectorText || cssRule.selectorText) + "{" + (styleCssText || cssRule.style.cssText) + "}";
+		return (selectorText || cssRule.selectorText) + "{" + styleCssText + "}";
 	}
 
 	function processStyleAttribute(cssStyle, mediaAllInfo) {