Skip to content

Commit

Permalink
Remove toto:libsass and add specific outputs for libsass when needed
Browse files Browse the repository at this point in the history
  • Loading branch information
Cerdic authored and stof committed Feb 10, 2021
1 parent 6b9bf4e commit 98cfece
Showing 1 changed file with 32 additions and 40 deletions.
72 changes: 32 additions & 40 deletions spec/css/selector.hrx
Original file line number Diff line number Diff line change
Expand Up @@ -362,11 +362,6 @@ Error: unterminated attribute selector for a

<===>
================================================================================
<===> escaping/number_as_first_char_without_space/options.yml
---
:todo:
- sass/libsass

<===> escaping/number_as_first_char_without_space/input.scss
.\31u {clear: left;}

Expand All @@ -375,13 +370,13 @@ Error: unterminated attribute selector for a
clear: left;
}

<===> escaping/number_as_first_char_without_space/output-libsass.css
.\31u {
clear: left;
}

<===>
================================================================================
<===> escaping/number_as_first_char_with_space/options.yml
---
:todo:
- sass/libsass

<===> escaping/number_as_first_char_with_space/input.scss
.\31 u {clear: left;}

Expand All @@ -392,11 +387,6 @@ Error: unterminated attribute selector for a

<===>
================================================================================
<===> escaping/number_as_nonfirst_char_without_space/options.yml
---
:todo:
- sass/libsass

<===> escaping/number_as_nonfirst_char_without_space/input.scss
.a\31u {clear: left;}

Expand All @@ -405,13 +395,13 @@ Error: unterminated attribute selector for a
clear: left;
}

<===> escaping/number_as_nonfirst_char_without_space/output-libsass.css
.a\31u {
clear: left;
}

<===>
================================================================================
<===> escaping/number_as_nonfirst_char_with_space/options.yml
---
:todo:
- sass/libsass

<===> escaping/number_as_nonfirst_char_with_space/input.scss
.a\31 u {clear: left;}

Expand All @@ -420,13 +410,13 @@ Error: unterminated attribute selector for a
clear: left;
}

<===> escaping/number_as_nonfirst_char_with_space/output-libsass.css
.a\31 u {
clear: left;
}

<===>
================================================================================
<===> escaping/dollar_char/options.yml
---
:todo:
- sass/libsass

<===> escaping/dollar_char/input.scss
.u\$ {clear: left;}

Expand All @@ -437,11 +427,6 @@ Error: unterminated attribute selector for a

<===>
================================================================================
<===> escaping/dollar_char_as_numeric/options.yml
---
:todo:
- sass/libsass

<===> escaping/dollar_char_as_numeric/input.scss
.u\24 {clear: left;}

Expand All @@ -450,13 +435,13 @@ Error: unterminated attribute selector for a
clear: left;
}

<===> escaping/dollar_char_as_numeric/output-libsass.css
.u\24 {
clear: left;
}

<===>
================================================================================
<===> escaping/parenthesis_in_interpolation/options.yml
---
:todo:
- sass/libsass

<===> escaping/parenthesis_in_interpolation/input.scss
$x: '\\28' + 'xlarge' + '\\29';
.u#{$x} { clear: left; }
Expand All @@ -467,13 +452,14 @@ $x: '\\28' + 'xlarge' + '\\29';
}


<===> escaping/parenthesis_in_interpolation/output-libsass.css
.u\28xlarge\29 {
clear: left;
}


<===>
================================================================================
<===> escaping/alltogether_in_grid_selector/options.yml
---
:todo:
- sass/libsass

<===> escaping/alltogether_in_grid_selector/input.scss
$x: '\\28' + 'xlarge' + '\\29';
.\31 2u#{$x}, .\31 2u\24#{$x} { width: 100%; clear: none; }
Expand All @@ -483,3 +469,9 @@ $x: '\\28' + 'xlarge' + '\\29';
width: 100%;
clear: none;
}

<===> escaping/alltogether_in_grid_selector/output-libsass.css
.\31 2u\28xlarge\29, .\31 2u\24\28xlarge\29 {
width: 100%;
clear: none;
}

0 comments on commit 98cfece

Please sign in to comment.