Skip to content

Commit 6323a62

Browse files
authored
Also drop wrapping quotes in at-rule values (#1449)
Missed the fact that css-color-5 also has an occurrence of `''` in the definition of an at-rule...
1 parent 34af0e4 commit 6323a62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/drop-css-property-duplicates.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ async function dropCSSPropertyDuplicates(folder) {
238238
if (!spec.css) {
239239
continue;
240240
}
241-
for (const dfnType of ['properties', 'values']) {
241+
for (const dfnType of ['properties', 'values', 'atrules']) {
242242
for (const prop of spec.css[dfnType]) {
243243
if (!prop.value) {
244244
continue;

0 commit comments

Comments
 (0)