mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-23 23:09:39 +03:00
94d12a96e7
Actually process form inputs which have been styled display:none; This needs revisiting after 1.0 as the following will still break: <form ..> <div style="display:none;"> <input type="hidden" name="foo" value="bar"/> </div> <input type="submit" name="submit" value="submit"/> </form> The children of the div are not processed (which is correct for display purposes, but results in the hidden input being ignored entirely). A more correct fix would be to perform form input -> gadget creation orthogonally from box tree generation; then styling will have no effect. svn path=/trunk/netsurf/; revision=3236 |
||
---|---|---|
.. | ||
box_construct.c | ||
box_normalise.c | ||
box.c | ||
box.h | ||
directory.c | ||
directory.h | ||
font.h | ||
form.c | ||
form.h | ||
html_redraw.c | ||
html.c | ||
html.h | ||
imagemap.c | ||
imagemap.h | ||
layout.c | ||
layout.h | ||
list.c | ||
list.h | ||
table.c | ||
table.h | ||
textplain.c | ||
textplain.h |