summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--render/box_construct.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/render/box_construct.c b/render/box_construct.c
index 391999aa7..c806297cb 100644
--- a/render/box_construct.c
+++ b/render/box_construct.c
@@ -1652,7 +1652,11 @@ bool box_frameset(BOX_SPECIAL_PARAMS)
if (content->data.html.frameset) {
LOG(("Error: multiple framesets in document."));
- return false;
+ /* Don't convert children */
+ if (convert_children)
+ *convert_children = false;
+ /* And ignore this spurious frameset */
+ return true;
}
content->data.html.frameset = talloc_zero(content, struct content_html_frames);