-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add specs for the support of relative CSS colors (#1940)
- Loading branch information
Showing
2 changed files
with
280 additions
and
0 deletions.
There are no files selected for viewing
140 changes: 140 additions & 0 deletions
140
spec/core_functions/color/hsl/one_arg/relative_color.hrx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,140 @@ | ||
<===> static/alpha/input.scss | ||
a {b: hsl(from #aaa h s l / 25%)} | ||
|
||
<===> static/alpha/output.css | ||
a { | ||
b: hsl(from #aaa h s l/25%); | ||
} | ||
|
||
<===> | ||
================================================================================ | ||
<===> static/no_alpha/input.scss | ||
a {b: hsl(from #aaa h s l)} | ||
|
||
<===> static/no_alpha/output.css | ||
a { | ||
b: hsl(from #aaa h s l); | ||
} | ||
|
||
<===> | ||
================================================================================ | ||
<===> calc/alpha/input.scss | ||
a {b: hsl(from #aaa calc(h + 180deg) s l / 25%)} | ||
|
||
<===> calc/alpha/output.css | ||
a { | ||
b: hsl(from #aaa calc(h + 180deg) s l/25%); | ||
} | ||
|
||
<===> | ||
================================================================================ | ||
<===> calc/no_alpha/input.scss | ||
a {b: hsl(from #aaa calc(h + 180deg) s l)} | ||
|
||
<===> calc/no_alpha/output.css | ||
a { | ||
b: hsl(from #aaa calc(h + 180deg) s l); | ||
} | ||
|
||
<===> | ||
================================================================================ | ||
<===> var/alpha/input.scss | ||
a {b: hsl(from var(--c) h s l / 25%)} | ||
|
||
<===> var/alpha/output.css | ||
a { | ||
b: hsl(from var(--c) h s l/25%); | ||
} | ||
|
||
<===> | ||
================================================================================ | ||
<===> var/no_alpha/input.scss | ||
a {b: hsl(from var(--c) h s l)} | ||
<===> var/no_alpha/output.css | ||
a { | ||
b: hsl(from var(--c) h s l); | ||
} | ||
|
||
|
||
<===> | ||
================================================================================ | ||
<===> different_case/alpha/input.scss | ||
a {b: hsl(From #aaa h s l / 25%)} | ||
|
||
<===> different_case/alpha/output.css | ||
a { | ||
b: hsl(From #aaa h s l/25%); | ||
} | ||
|
||
<===> | ||
================================================================================ | ||
<===> different_case/no_alpha/input.scss | ||
a {b: hsl(From #aaa h s l)} | ||
|
||
<===> different_case/no_alpha/output.css | ||
a { | ||
b: hsl(From #aaa h s l); | ||
} | ||
|
||
<===> | ||
================================================================================ | ||
<===> slash_list_alpha/input.scss | ||
@use "sass:list"; | ||
a {b: hsl(list.slash(from #aaa h s l, 25%))} | ||
|
||
<===> slash_list_alpha/output.css | ||
a { | ||
b: hsl(from #aaa h s l / 25%); | ||
} | ||
|
||
<===> | ||
================================================================================ | ||
<===> error/quoted/alpha/input.scss | ||
a {b: hsl("from" #aaa h s l / 25%)} | ||
|
||
<===> error/quoted/alpha/error | ||
Error: Only 3 elements allowed, but 5 were passed. | ||
, | ||
1 | a {b: hsl("from" #aaa h s l / 25%)} | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
' | ||
input.scss 1:7 root stylesheet | ||
|
||
<===> | ||
================================================================================ | ||
<===> error/quoted/no_alpha/input.scss | ||
a {b: hsl("from" #aaa h s l)} | ||
|
||
<===> error/quoted/no_alpha/error | ||
Error: Only 3 elements allowed, but 5 were passed. | ||
, | ||
1 | a {b: hsl("from" #aaa h s l)} | ||
| ^^^^^^^^^^^^^^^^^^^^^^ | ||
' | ||
input.scss 1:7 root stylesheet | ||
|
||
<===> | ||
================================================================================ | ||
<===> error/wrong_keyword/alpha/input.scss | ||
a {b: hsl(c #aaa h s l / 25%)} | ||
|
||
<===> error/wrong_keyword/alpha/error | ||
Error: Only 3 elements allowed, but 5 were passed. | ||
, | ||
1 | a {b: hsl(c #aaa h s l / 25%)} | ||
| ^^^^^^^^^^^^^^^^^^^^^^^ | ||
' | ||
input.scss 1:7 root stylesheet | ||
|
||
<===> | ||
================================================================================ | ||
<===> error/wrong_keyword/no_alpha/input.scss | ||
a {b: hsl(c #aaa h s l)} | ||
|
||
<===> error/wrong_keyword/no_alpha/error | ||
Error: Only 3 elements allowed, but 5 were passed. | ||
, | ||
1 | a {b: hsl(c #aaa h s l)} | ||
| ^^^^^^^^^^^^^^^^^ | ||
' | ||
input.scss 1:7 root stylesheet |
140 changes: 140 additions & 0 deletions
140
spec/core_functions/color/rgb/one_arg/relative_color.hrx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,140 @@ | ||
<===> static/alpha/input.scss | ||
a {b: rgb(from #aaa r g b / 25%)} | ||
|
||
<===> static/alpha/output.css | ||
a { | ||
b: rgb(from #aaa r g b/25%); | ||
} | ||
|
||
<===> | ||
================================================================================ | ||
<===> static/no_alpha/input.scss | ||
a {b: rgb(from #aaa r g b)} | ||
|
||
<===> static/no_alpha/output.css | ||
a { | ||
b: rgb(from #aaa r g b); | ||
} | ||
|
||
<===> | ||
================================================================================ | ||
<===> calc/alpha/input.scss | ||
a {b: rgb(from #aaa calc(r + 2) g b / 25%)} | ||
|
||
<===> calc/alpha/output.css | ||
a { | ||
b: rgb(from #aaa calc(r + 2) g b/25%); | ||
} | ||
|
||
<===> | ||
================================================================================ | ||
<===> calc/no_alpha/input.scss | ||
a {b: rgb(from #aaa calc(r + 2) g b)} | ||
|
||
<===> calc/no_alpha/output.css | ||
a { | ||
b: rgb(from #aaa calc(r + 2) g b); | ||
} | ||
|
||
<===> | ||
================================================================================ | ||
<===> var/alpha/input.scss | ||
a {b: rgb(from var(--c) r g b / 25%)} | ||
|
||
<===> var/alpha/output.css | ||
a { | ||
b: rgb(from var(--c) r g b/25%); | ||
} | ||
|
||
<===> | ||
================================================================================ | ||
<===> var/no_alpha/input.scss | ||
a {b: rgb(from var(--c) r g b)} | ||
|
||
<===> var/no_alpha/output.css | ||
a { | ||
b: rgb(from var(--c) r g b); | ||
} | ||
|
||
<===> | ||
================================================================================ | ||
<===> different_case/alpha/input.scss | ||
a {b: rgb(From #aaa r g b / 25%)} | ||
|
||
<===> different_case/alpha/output.css | ||
a { | ||
b: rgb(From #aaa r g b/25%); | ||
} | ||
|
||
<===> | ||
================================================================================ | ||
<===> different_case/no_alpha/input.scss | ||
a {b: rgb(From #aaa r g b)} | ||
|
||
<===> different_case/no_alpha/output.css | ||
a { | ||
b: rgb(From #aaa r g b); | ||
} | ||
|
||
<===> | ||
================================================================================ | ||
<===> slash_list_alpha/input.scss | ||
@use "sass:list"; | ||
a {b: rgb(list.slash(from #aaa h s l, 25%))} | ||
|
||
<===> slash_list_alpha/output.css | ||
a { | ||
b: rgb(from #aaa h s l / 25%); | ||
} | ||
|
||
<===> | ||
================================================================================ | ||
<===> error/quoted/alpha/input.scss | ||
a {b: rgb("from" #aaa r g b / 25%)} | ||
|
||
<===> error/quoted/alpha/error | ||
Error: Only 3 elements allowed, but 5 were passed. | ||
, | ||
1 | a {b: rgb("from" #aaa r g b / 25%)} | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
' | ||
input.scss 1:7 root stylesheet | ||
|
||
<===> | ||
================================================================================ | ||
<===> error/quoted/no_alpha/input.scss | ||
a {b: rgb("from" #aaa r g b)} | ||
|
||
<===> error/quoted/no_alpha/error | ||
Error: Only 3 elements allowed, but 5 were passed. | ||
, | ||
1 | a {b: rgb("from" #aaa r g b)} | ||
| ^^^^^^^^^^^^^^^^^^^^^^ | ||
' | ||
input.scss 1:7 root stylesheet | ||
|
||
<===> | ||
================================================================================ | ||
<===> error/wrong_keyword/alpha/input.scss | ||
a {b: rgb(c #aaa r g b / 25%)} | ||
|
||
<===> error/wrong_keyword/alpha/error | ||
Error: Only 3 elements allowed, but 5 were passed. | ||
, | ||
1 | a {b: rgb(c #aaa r g b / 25%)} | ||
| ^^^^^^^^^^^^^^^^^^^^^^^ | ||
' | ||
input.scss 1:7 root stylesheet | ||
|
||
<===> | ||
================================================================================ | ||
<===> error/wrong_keyword/no_alpha/input.scss | ||
a {b: rgb(c #aaa r g b)} | ||
|
||
<===> error/wrong_keyword/no_alpha/error | ||
Error: Only 3 elements allowed, but 5 were passed. | ||
, | ||
1 | a {b: rgb(c #aaa r g b)} | ||
| ^^^^^^^^^^^^^^^^^ | ||
' | ||
input.scss 1:7 root stylesheet |