System/Libraries/Html/Renderer: Handle 'small' HTML tag
This commit is contained in:
parent
6d7ffc3103
commit
21ad3fabfb
1 changed files with 4 additions and 0 deletions
|
@ -1694,6 +1694,10 @@ U0 @handle_tag_specific_functions(@html_dom_node* node, HtmlRenderer* renderer)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!StrICmp(node->tagName, "small")) {
|
||||||
|
node->fontSize = ToI64(0.83 * node->fontSize);
|
||||||
|
}
|
||||||
|
|
||||||
if (!StrICmp(node->tagName, "strike")) {
|
if (!StrICmp(node->tagName, "strike")) {
|
||||||
node->linethroughColor = node->color;
|
node->linethroughColor = node->color;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue