1
0
mirror of https://github.com/rkd77/elinks.git synced 2025-02-02 15:09:23 -05:00

[html] display: none for custom element. Refs #341

This commit is contained in:
Witold Filipczyk 2024-12-04 18:12:05 +01:00
parent 4af513bbbf
commit 004d483afd
2 changed files with 4 additions and 1 deletions

View File

@ -1224,7 +1224,9 @@ process_element(char *name, int namelen, int endingtag,
}
}
if (!ei) return html;
if (!ei) {
ei = &elements[NUMBER_OF_TAGS];
}
if (!endingtag) {
return start_element(ei, name, namelen, html, eof, attr, html_context);

View File

@ -23,6 +23,7 @@
<p style="display: none">Paragraph with display: none inline style</p>
<p class="hidden">Paragraph with class="hidden"</p>
<custom-element>Custom element with display: none global style</custom-element>
<other-custom-element>Other custom element without display: none</other-custom-element>
<template>Template element</template>
<p><button type="submit">button type=submit2</button></p>
<div>div with display: none global style</div>