mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
Bug 963: Parse scripts in blocks hidden with "display: none"
Handle <script> blocks even when they are contained by blocks with "display: none" set. This commit fixes the second problem that Kalle points out in comment 5 to bug 963.
This commit is contained in:
parent
cadd2ecc10
commit
86db3461b8
@ -78,7 +78,7 @@ css_apply_display(struct html_context *html_context, struct html_element *elemen
|
||||
break;
|
||||
case CSS_DISP_NONE:
|
||||
if (!html_context->options->css_ignore_display_none)
|
||||
element->invisible = 1;
|
||||
element->invisible = 2;
|
||||
break;
|
||||
default:
|
||||
INTERNAL("Bad prop->value.display %d", prop->value.display);
|
||||
|
Loading…
Reference in New Issue
Block a user