summaryrefslogtreecommitdiff
path: root/render/html.h
diff options
context:
space:
mode:
Diffstat (limited to 'render/html.h')
-rw-r--r--render/html.h16
1 files changed, 1 insertions, 15 deletions
diff --git a/render/html.h b/render/html.h
index b33e3112a..7d2ef82cf 100644
--- a/render/html.h
+++ b/render/html.h
@@ -31,6 +31,7 @@
#include "desktop/mouse.h"
#include "desktop/plot_style.h"
#include "render/parser_binding.h"
+#include "desktop/frame_types.h"
struct fetch_multipart_data;
struct box;
@@ -57,21 +58,6 @@ struct html_stylesheet {
} data; /**< Sheet data */
};
-struct frame_dimension {
- float value;
- enum {
- FRAME_DIMENSION_PIXELS, /* '100', '200' */
- FRAME_DIMENSION_PERCENT, /* '5%', '20%' */
- FRAME_DIMENSION_RELATIVE /* '*', '2*' */
- } unit;
-};
-
-typedef enum {
- SCROLLING_AUTO,
- SCROLLING_YES,
- SCROLLING_NO
-} frame_scrolling;
-
/** An object (<img>, <object>, etc.) in a CONTENT_HTML document. */
struct content_html_object {