-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Additional handling in CssFormatter for transparent color cases (no h…
…ex representation)
- Loading branch information
Ryan Criddle
committed
Jun 29, 2022
1 parent
01e22fe
commit 5e29212
Showing
7 changed files
with
57 additions
and
22 deletions.
There are no files selected for viewing
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
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
16 changes: 16 additions & 0 deletions
16
StyleMerge.Tests/TestCases/ShouldDropInlineTransparentBackgroundColor/Input.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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<html> | ||
<head> | ||
<style> | ||
table { | ||
font-size: 14px; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<table style="background-color: transparent"> | ||
<tbody> | ||
<tr><td>Table content</td></tr> | ||
</tbody> | ||
</table> | ||
</body> | ||
</html> |
11 changes: 11 additions & 0 deletions
11
StyleMerge.Tests/TestCases/ShouldDropInlineTransparentBackgroundColor/Output.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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<html> | ||
<head> | ||
</head> | ||
<body> | ||
<table style="font-size: 14px"> | ||
<tbody> | ||
<tr><td>Table content</td></tr> | ||
</tbody> | ||
</table> | ||
</body> | ||
</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
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