Debug: strike through transparent text

This commit is contained in:
M66B 2022-03-03 18:00:34 +01:00
parent dff669cdad
commit ad801095ad
1 changed files with 9 additions and 0 deletions

View File

@ -633,6 +633,12 @@ public class HtmlHelper {
Integer color = parseColor(value);
if (color != null && color == Color.TRANSPARENT) {
if (BuildConfig.DEBUG)
sb.append("text-decoration:line-through;");
color = null;
}
if ("color".equals(key)) {
Integer bg = null;
if (background_color) {
@ -1763,6 +1769,9 @@ public class HtmlHelper {
if (TextUtils.isEmpty(value))
return null;
if ("transparent".equals(value))
return Color.TRANSPARENT;
// https://developer.mozilla.org/en-US/docs/Web/CSS/color_value
String c = value
.replace("null", "")