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:
parent
4af513bbbf
commit
004d483afd
@ -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);
|
||||
|
@ -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>
|
||||
|
Loading…
x
Reference in New Issue
Block a user