Skip to content

Commit

Permalink
Test for multiple pseudo elements
Browse files Browse the repository at this point in the history
  • Loading branch information
Goodwine committed Sep 18, 2024
1 parent f1c3821 commit c7eedd5
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions spec/core_functions/selector/unify/compound.hrx
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,22 @@ a {
b: ::c.d;
}

<===>
================================================================================
<===> multiple_pseudo_elements/first_argument/input.scss
@use "sass:selector";
a {b: selector.unify("::y::z", ".x")}

<===> multiple_pseudo_elements/first_argument/output.css

<===>
================================================================================
<===> multiple_pseudo_elements/second_argument/input.scss
@use "sass:selector";
a {b: selector.unify(".x", "::y::z")}

<===> multiple_pseudo_elements/second_argument/output.css

<===>
================================================================================
<===> order/preserved_by_default/input.scss
Expand Down

0 comments on commit c7eedd5

Please sign in to comment.