Skip to content

Commit

Permalink
update order of pseudo selectors to non-pseudo selectors
Browse files Browse the repository at this point in the history
  • Loading branch information
Goodwine committed Sep 18, 2024
1 parent c7eedd5 commit 8669b30
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/core_functions/selector/unify/compound.hrx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ a {b: selector.unify("::c.d", "::c.d")}

<===> full_overlap/pseudo_element/class_after/output.css
a {
b: ::c.d;
b: .d::c;
}

<===>
Expand All @@ -48,7 +48,7 @@ a {b: selector.unify("::c.d", ".d::c")}

<===> full_overlap/pseudo/different_order/output.css
a {
b: ::c.d;
b: .d::c;
}

<===>
Expand Down

0 comments on commit 8669b30

Please sign in to comment.