summaryrefslogtreecommitdiff
path: root/render
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2010-06-09 09:53:07 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2010-06-09 09:53:07 +0000
commit0642cdafc2feddf227b8092b14982a3403d55b85 (patch)
treef25b2b47789ff921062ef9804f833a5a58993c5b /render
parent9bc784e8d7175464abec3d10dc47e6740bbdd40f (diff)
downloadnetsurf-0642cdafc2feddf227b8092b14982a3403d55b85.tar.gz
netsurf-0642cdafc2feddf227b8092b14982a3403d55b85.tar.bz2
Fix mouse.h file description. Add iframe comment.
svn path=/trunk/netsurf/; revision=10571
Diffstat (limited to 'render')
-rw-r--r--render/box_construct.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/render/box_construct.c b/render/box_construct.c
index 0acb9280e..9c5488d9e 100644
--- a/render/box_construct.c
+++ b/render/box_construct.c
@@ -1629,6 +1629,8 @@ bool box_iframe(BOX_SPECIAL_PARAMS)
iframe->url = talloc_strdup(content, url);
iframe->scrolling = SCROLLING_AUTO;
iframe->border = true;
+
+ /* Add this iframe to the linked list of iframes */
iframe->next = content->data.html.iframe;
content->data.html.iframe = iframe;