Skip to content

Commit

Permalink
handle feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
Goodwine committed Sep 27, 2024
1 parent d0def70 commit 140a6a4
Showing 1 changed file with 19 additions and 8 deletions.
27 changes: 19 additions & 8 deletions spec/core_functions/selector/unify/compound.hrx
Original file line number Diff line number Diff line change
Expand Up @@ -31,24 +31,35 @@ a {

<===>
================================================================================
<===> full_overlap/pseudo_element/class_after/input.scss
<===> full_overlap/pseudo_element/input.scss
@use "sass:selector";
a {b: selector.unify("::c.d", "::c.d")}
a {b: selector.unify(".c::d", ".c::d")}

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

<===>
================================================================================
<===> full_overlap/pseudo/different_order/input.scss
<===> full_overlap/pseudo_class/input.scss
@use "sass:selector";
a {b: selector.unify("::c.d", ".d::c")}
a {b: selector.unify(".c:d", ".c:d")}

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

<===>
================================================================================
<===> full_overlap/pseudo_selector_and_class/input.scss
@use "sass:selector";
a {b: selector.unify(".c:d::e", ".c:d::e")}

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

<===>
Expand Down

0 comments on commit 140a6a4

Please sign in to comment.