-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
60b50c8
commit a6b364e
Showing
9 changed files
with
34 additions
and
2 deletions.
There are no files selected for viewing
7 changes: 6 additions & 1 deletion
7
specifications/w3c/css-color-4/5.1.Mixed-Components/test.postcss-preset-env.css
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 |
---|---|---|
@@ -1,4 +1,9 @@ | ||
.foo { | ||
color: rgb(0, 128, 0); | ||
color: rgb(0 128 0%); | ||
color: rgb(0 50.2% 0%); | ||
} | ||
|
||
.bar { | ||
color: rgba(0, 128, 0, 1); | ||
color: rgb(0 128 0% / 1); | ||
} |
6 changes: 5 additions & 1 deletion
6
specifications/w3c/css-color-4/5.1.Mixed-Components/test.pure.css
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 |
---|---|---|
@@ -1,3 +1,7 @@ | ||
.foo { | ||
color: rgb(0 128 0%); | ||
color: rgb(0 50.2% 0%); | ||
} | ||
|
||
.bar { | ||
color: rgb(0 128 0% / 1); | ||
} |
1 change: 1 addition & 0 deletions
1
specifications/w3c/css-color-4/5.1.Mixed-Components/test.pure.html
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 |
---|---|---|
@@ -1 +1,2 @@ | ||
<div class="foo">Mixed components</div> | ||
<div class="bar">Mixed components</div> |
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
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
4 changes: 4 additions & 0 deletions
4
specifications/w3c/css-color-4/7.Mixed-Components/test.pure.css
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 |
---|---|---|
@@ -1,3 +1,7 @@ | ||
.foo { | ||
color: hsl(120deg 100 25.1%); | ||
} | ||
|
||
.bar { | ||
color: hsl(120deg 100 25.1% / 1); | ||
} |
1 change: 1 addition & 0 deletions
1
specifications/w3c/css-color-4/7.Mixed-Components/test.pure.html
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 |
---|---|---|
@@ -1 +1,2 @@ | ||
<div class="foo">Mixed components</div> | ||
<div class="bar">Mixed components</div> |
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
Binary file not shown.