summaryrefslogtreecommitdiff
path: root/src/html
diff options
context:
space:
mode:
Diffstat (limited to 'src/html')
-rw-r--r--src/html/html_anchor_element.c2
-rw-r--r--src/html/html_applet_element.c2
-rw-r--r--src/html/html_area_element.c2
-rw-r--r--src/html/html_base_element.c2
-rw-r--r--src/html/html_basefont_element.c2
-rw-r--r--src/html/html_body_element.c2
-rw-r--r--src/html/html_br_element.c2
-rw-r--r--src/html/html_button_element.c2
-rw-r--r--src/html/html_canvas_element.c2
-rw-r--r--src/html/html_directory_element.c2
-rw-r--r--src/html/html_div_element.c2
-rw-r--r--src/html/html_dlist_element.c2
-rw-r--r--src/html/html_document.c4
-rw-r--r--src/html/html_element.c4
-rw-r--r--src/html/html_element.h2
-rw-r--r--src/html/html_fieldset_element.c2
-rw-r--r--src/html/html_font_element.c2
-rw-r--r--src/html/html_form_element.c2
-rw-r--r--src/html/html_frame_element.c2
-rw-r--r--src/html/html_frameset_element.c2
-rw-r--r--src/html/html_head_element.c2
-rw-r--r--src/html/html_heading_element.c2
-rw-r--r--src/html/html_hr_element.c2
-rw-r--r--src/html/html_html_element.c2
-rw-r--r--src/html/html_iframe_element.c2
-rw-r--r--src/html/html_image_element.c2
-rw-r--r--src/html/html_input_element.c2
-rw-r--r--src/html/html_isindex_element.c2
-rw-r--r--src/html/html_label_element.c2
-rw-r--r--src/html/html_legend_element.c2
-rw-r--r--src/html/html_li_element.c2
-rw-r--r--src/html/html_link_element.c2
-rw-r--r--src/html/html_map_element.c2
-rw-r--r--src/html/html_menu_element.c2
-rw-r--r--src/html/html_meta_element.c2
-rw-r--r--src/html/html_mod_element.c2
-rw-r--r--src/html/html_object_element.c2
-rw-r--r--src/html/html_olist_element.c2
-rw-r--r--src/html/html_opt_group_element.c2
-rw-r--r--src/html/html_paragraph_element.c2
-rw-r--r--src/html/html_param_element.c2
-rw-r--r--src/html/html_pre_element.c2
-rw-r--r--src/html/html_quote_element.c2
-rw-r--r--src/html/html_script_element.c2
-rw-r--r--src/html/html_select_element.c2
-rw-r--r--src/html/html_style_element.c2
-rw-r--r--src/html/html_table_element.c2
-rw-r--r--src/html/html_tablecaption_element.c2
-rw-r--r--src/html/html_tablecell_element.c2
-rw-r--r--src/html/html_tablecol_element.c2
-rw-r--r--src/html/html_tablerow_element.c2
-rw-r--r--src/html/html_tablesection_element.c2
-rw-r--r--src/html/html_text_area_element.c2
-rw-r--r--src/html/html_title_element.c2
-rw-r--r--src/html/html_ulist_element.c2
55 files changed, 57 insertions, 57 deletions
diff --git a/src/html/html_anchor_element.c b/src/html/html_anchor_element.c
index 8d64c2b..88fd2ac 100644
--- a/src/html/html_anchor_element.c
+++ b/src/html/html_anchor_element.c
@@ -18,7 +18,7 @@
#include "core/attr.h"
#include "utils/utils.h"
-static struct dom_element_protected_vtable _protect_vtable = {
+static const struct dom_element_protected_vtable _protect_vtable = {
{
DOM_NODE_PROTECT_VTABLE_HTML_ANCHOR_ELEMENT
},
diff --git a/src/html/html_applet_element.c b/src/html/html_applet_element.c
index 93ea1b5..f7f1afc 100644
--- a/src/html/html_applet_element.c
+++ b/src/html/html_applet_element.c
@@ -18,7 +18,7 @@
#include "core/attr.h"
#include "utils/utils.h"
-static struct dom_element_protected_vtable _protect_vtable = {
+static const struct dom_element_protected_vtable _protect_vtable = {
{
DOM_NODE_PROTECT_VTABLE_HTML_APPLET_ELEMENT
},
diff --git a/src/html/html_area_element.c b/src/html/html_area_element.c
index 828b073..3da59d7 100644
--- a/src/html/html_area_element.c
+++ b/src/html/html_area_element.c
@@ -17,7 +17,7 @@
#include "core/attr.h"
#include "utils/utils.h"
-static struct dom_element_protected_vtable _protect_vtable = {
+static const struct dom_element_protected_vtable _protect_vtable = {
{
DOM_NODE_PROTECT_VTABLE_HTML_AREA_ELEMENT
},
diff --git a/src/html/html_base_element.c b/src/html/html_base_element.c
index 0034f7c..f322f5b 100644
--- a/src/html/html_base_element.c
+++ b/src/html/html_base_element.c
@@ -13,7 +13,7 @@
#include "core/node.h"
#include "utils/utils.h"
-static struct dom_element_protected_vtable _protect_vtable = {
+static const struct dom_element_protected_vtable _protect_vtable = {
{
DOM_NODE_PROTECT_VTABLE_HTML_BASE_ELEMENT
},
diff --git a/src/html/html_basefont_element.c b/src/html/html_basefont_element.c
index ac1183d..b68ae03 100644
--- a/src/html/html_basefont_element.c
+++ b/src/html/html_basefont_element.c
@@ -17,7 +17,7 @@
#include "core/attr.h"
#include "utils/utils.h"
-static struct dom_element_protected_vtable _protect_vtable = {
+static const struct dom_element_protected_vtable _protect_vtable = {
{
DOM_NODE_PROTECT_VTABLE_HTML_BASE_FONT_ELEMENT
},
diff --git a/src/html/html_body_element.c b/src/html/html_body_element.c
index 0fc4b13..4f52152 100644
--- a/src/html/html_body_element.c
+++ b/src/html/html_body_element.c
@@ -15,7 +15,7 @@
#include "core/node.h"
#include "utils/utils.h"
-static struct dom_element_protected_vtable _protect_vtable = {
+static const struct dom_element_protected_vtable _protect_vtable = {
{
DOM_NODE_PROTECT_VTABLE_HTML_BODY_ELEMENT
},
diff --git a/src/html/html_br_element.c b/src/html/html_br_element.c
index 74e3ea8..71778f6 100644
--- a/src/html/html_br_element.c
+++ b/src/html/html_br_element.c
@@ -17,7 +17,7 @@
#include "core/attr.h"
#include "utils/utils.h"
-static struct dom_element_protected_vtable _protect_vtable = {
+static const struct dom_element_protected_vtable _protect_vtable = {
{
DOM_NODE_PROTECT_VTABLE_HTML_BR_ELEMENT
},
diff --git a/src/html/html_button_element.c b/src/html/html_button_element.c
index 04a17dd..52a3607 100644
--- a/src/html/html_button_element.c
+++ b/src/html/html_button_element.c
@@ -17,7 +17,7 @@
#include "core/attr.h"
#include "utils/utils.h"
-static struct dom_element_protected_vtable _protect_vtable = {
+static const struct dom_element_protected_vtable _protect_vtable = {
{
DOM_NODE_PROTECT_VTABLE_HTML_BUTTON_ELEMENT
},
diff --git a/src/html/html_canvas_element.c b/src/html/html_canvas_element.c
index 8e5d3fc..71d4a53 100644
--- a/src/html/html_canvas_element.c
+++ b/src/html/html_canvas_element.c
@@ -17,7 +17,7 @@
#include "core/attr.h"
#include "utils/utils.h"
-static struct dom_element_protected_vtable _protect_vtable = {
+static const struct dom_element_protected_vtable _protect_vtable = {
{
DOM_NODE_PROTECT_VTABLE_HTML_CANVAS_ELEMENT
},
diff --git a/src/html/html_directory_element.c b/src/html/html_directory_element.c
index 585af1c..19db7cd 100644
--- a/src/html/html_directory_element.c
+++ b/src/html/html_directory_element.c
@@ -17,7 +17,7 @@
#include "core/attr.h"
#include "utils/utils.h"
-static struct dom_element_protected_vtable _protect_vtable = {
+static const struct dom_element_protected_vtable _protect_vtable = {
{
DOM_NODE_PROTECT_VTABLE_HTML_DIRECTORY_ELEMENT
},
diff --git a/src/html/html_div_element.c b/src/html/html_div_element.c
index b061246..c39af74 100644
--- a/src/html/html_div_element.c
+++ b/src/html/html_div_element.c
@@ -17,7 +17,7 @@
#include "core/attr.h"
#include "utils/utils.h"
-static struct dom_element_protected_vtable _protect_vtable = {
+static const struct dom_element_protected_vtable _protect_vtable = {
{
DOM_NODE_PROTECT_VTABLE_HTML_DIV_ELEMENT
},
diff --git a/src/html/html_dlist_element.c b/src/html/html_dlist_element.c
index ab9d4c3..fb0ad56 100644
--- a/src/html/html_dlist_element.c
+++ b/src/html/html_dlist_element.c
@@ -17,7 +17,7 @@
#include "core/attr.h"
#include "utils/utils.h"
-static struct dom_element_protected_vtable _protect_vtable = {
+static const struct dom_element_protected_vtable _protect_vtable = {
{
DOM_NODE_PROTECT_VTABLE_HTML_DL_ELEMENT
},
diff --git a/src/html/html_document.c b/src/html/html_document.c
index 5d06e80..5471f4f 100644
--- a/src/html/html_document.c
+++ b/src/html/html_document.c
@@ -72,7 +72,7 @@
#include "utils/namespace.h"
#include "utils/utils.h"
-static struct dom_html_document_vtable html_document_vtable = {
+static const struct dom_html_document_vtable html_document_vtable = {
{
{
{
@@ -85,7 +85,7 @@ static struct dom_html_document_vtable html_document_vtable = {
DOM_HTML_DOCUMENT_VTABLE
};
-static struct dom_node_protect_vtable html_document_protect_vtable = {
+static const struct dom_node_protect_vtable html_document_protect_vtable = {
DOM_HTML_DOCUMENT_PROTECT_VTABLE
};
diff --git a/src/html/html_element.c b/src/html/html_element.c
index 5d3df37..df0fa6a 100644
--- a/src/html/html_element.c
+++ b/src/html/html_element.c
@@ -18,7 +18,7 @@
#include "core/document.h"
#include "utils/utils.h"
-struct dom_html_element_vtable _dom_html_element_vtable = {
+const struct dom_html_element_vtable _dom_html_element_vtable = {
{
{
{
@@ -31,7 +31,7 @@ struct dom_html_element_vtable _dom_html_element_vtable = {
DOM_HTML_ELEMENT_VTABLE
};
-static struct dom_element_protected_vtable _dom_html_element_protect_vtable = {
+static const struct dom_element_protected_vtable _dom_html_element_protect_vtable = {
{
DOM_HTML_ELEMENT_PROTECT_VTABLE
},
diff --git a/src/html/html_element.h b/src/html/html_element.h
index 0290569..87e1bbb 100644
--- a/src/html/html_element.h
+++ b/src/html/html_element.h
@@ -162,7 +162,7 @@ dom_exception _dom_html_element_copy_internal(dom_html_element *old,
#define dom_html_element_copy_internal(o, n) _dom_html_element_copy_internal( \
(dom_html_element *) (o), (dom_html_element *) (n))
-extern struct dom_html_element_vtable _dom_html_element_vtable;
+extern const struct dom_html_element_vtable _dom_html_element_vtable;
#endif
diff --git a/src/html/html_fieldset_element.c b/src/html/html_fieldset_element.c
index fe44e74..2ab8dd0 100644
--- a/src/html/html_fieldset_element.c
+++ b/src/html/html_fieldset_element.c
@@ -17,7 +17,7 @@
#include "core/node.h"
#include "utils/utils.h"
-static struct dom_element_protected_vtable _protect_vtable = {
+static const struct dom_element_protected_vtable _protect_vtable = {
{
DOM_NODE_PROTECT_VTABLE_HTML_FIELDSET_ELEMENT
},
diff --git a/src/html/html_font_element.c b/src/html/html_font_element.c
index ecedfb0..38f8869 100644
--- a/src/html/html_font_element.c
+++ b/src/html/html_font_element.c
@@ -17,7 +17,7 @@
#include "core/attr.h"
#include "utils/utils.h"
-static struct dom_element_protected_vtable _protect_vtable = {
+static const struct dom_element_protected_vtable _protect_vtable = {
{
DOM_NODE_PROTECT_VTABLE_HTML_FONT_ELEMENT
},
diff --git a/src/html/html_form_element.c b/src/html/html_form_element.c
index 1dd1992..5ba8365 100644
--- a/src/html/html_form_element.c
+++ b/src/html/html_form_element.c
@@ -22,7 +22,7 @@
#include "core/node.h"
#include "utils/utils.h"
-static struct dom_element_protected_vtable _protect_vtable = {
+static const struct dom_element_protected_vtable _protect_vtable = {
{
DOM_NODE_PROTECT_VTABLE_HTML_FORM_ELEMENT
},
diff --git a/src/html/html_frame_element.c b/src/html/html_frame_element.c
index fe6859c..321cff9 100644
--- a/src/html/html_frame_element.c
+++ b/src/html/html_frame_element.c
@@ -17,7 +17,7 @@
#include "core/attr.h"
#include "utils/utils.h"
-static struct dom_element_protected_vtable _protect_vtable = {
+static const struct dom_element_protected_vtable _protect_vtable = {
{
DOM_NODE_PROTECT_VTABLE_HTML_FRAME_ELEMENT
},
diff --git a/src/html/html_frameset_element.c b/src/html/html_frameset_element.c
index be44d5d..84a52b0 100644
--- a/src/html/html_frameset_element.c
+++ b/src/html/html_frameset_element.c
@@ -17,7 +17,7 @@
#include "core/attr.h"
#include "utils/utils.h"
-static struct dom_element_protected_vtable _protect_vtable = {
+static const struct dom_element_protected_vtable _protect_vtable = {
{
DOM_NODE_PROTECT_VTABLE_HTML_FRAME_SET_ELEMENT
},
diff --git a/src/html/html_head_element.c b/src/html/html_head_element.c
index ff02b1f..20f6aa8 100644
--- a/src/html/html_head_element.c
+++ b/src/html/html_head_element.c
@@ -13,7 +13,7 @@
#include "core/node.h"
#include "utils/utils.h"
-static struct dom_element_protected_vtable _protect_vtable = {
+static const struct dom_element_protected_vtable _protect_vtable = {
{
DOM_NODE_PROTECT_VTABLE_HTML_HEAD_ELEMENT
},
diff --git a/src/html/html_heading_element.c b/src/html/html_heading_element.c
index 8ab2c5a..21e36c6 100644
--- a/src/html/html_heading_element.c
+++ b/src/html/html_heading_element.c
@@ -17,7 +17,7 @@
#include "core/attr.h"
#include "utils/utils.h"
-static struct dom_element_protected_vtable _protect_vtable = {
+static const struct dom_element_protected_vtable _protect_vtable = {
{
DOM_NODE_PROTECT_VTABLE_HTML_HEADING_ELEMENT
},
diff --git a/src/html/html_hr_element.c b/src/html/html_hr_element.c
index e6086f5..8ca9743 100644
--- a/src/html/html_hr_element.c
+++ b/src/html/html_hr_element.c
@@ -17,7 +17,7 @@
#include "core/attr.h"
#include "utils/utils.h"
-static struct dom_element_protected_vtable _protect_vtable = {
+static const struct dom_element_protected_vtable _protect_vtable = {
{
DOM_NODE_PROTECT_VTABLE_HTML_HR_ELEMENT
},
diff --git a/src/html/html_html_element.c b/src/html/html_html_element.c
index 9cdcd5e..24f35e4 100644
--- a/src/html/html_html_element.c
+++ b/src/html/html_html_element.c
@@ -13,7 +13,7 @@
#include "core/node.h"
#include "utils/utils.h"
-static struct dom_element_protected_vtable _protect_vtable = {
+static const struct dom_element_protected_vtable _protect_vtable = {
{
DOM_NODE_PROTECT_VTABLE_HTML_HTML_ELEMENT
},
diff --git a/src/html/html_iframe_element.c b/src/html/html_iframe_element.c
index 4d7272b..96397d0 100644
--- a/src/html/html_iframe_element.c
+++ b/src/html/html_iframe_element.c
@@ -17,7 +17,7 @@
#include "core/attr.h"
#include "utils/utils.h"
-static struct dom_element_protected_vtable _protect_vtable = {
+static const struct dom_element_protected_vtable _protect_vtable = {
{
DOM_NODE_PROTECT_VTABLE_HTML_IFRAME_ELEMENT
},
diff --git a/src/html/html_image_element.c b/src/html/html_image_element.c
index 3cdd15f..e5b9c7b 100644
--- a/src/html/html_image_element.c
+++ b/src/html/html_image_element.c
@@ -18,7 +18,7 @@
#include "core/attr.h"
#include "utils/utils.h"
-static struct dom_element_protected_vtable _protect_vtable = {
+static const struct dom_element_protected_vtable _protect_vtable = {
{
DOM_NODE_PROTECT_VTABLE_HTML_IMAGE_ELEMENT
},
diff --git a/src/html/html_input_element.c b/src/html/html_input_element.c
index 079b55e..025ef5d 100644
--- a/src/html/html_input_element.c
+++ b/src/html/html_input_element.c
@@ -17,7 +17,7 @@
#include "core/attr.h"
#include "utils/utils.h"
-static struct dom_element_protected_vtable _protect_vtable = {
+static const struct dom_element_protected_vtable _protect_vtable = {
{
DOM_NODE_PROTECT_VTABLE_HTML_INPUT_ELEMENT
},
diff --git a/src/html/html_isindex_element.c b/src/html/html_isindex_element.c
index 40cb99c..e793fae 100644
--- a/src/html/html_isindex_element.c
+++ b/src/html/html_isindex_element.c
@@ -16,7 +16,7 @@
#include "core/attr.h"
#include "utils/utils.h"
-static struct dom_element_protected_vtable _protect_vtable = {
+static const struct dom_element_protected_vtable _protect_vtable = {
{
DOM_NODE_PROTECT_VTABLE_HTML_ISINDEX_ELEMENT
},
diff --git a/src/html/html_label_element.c b/src/html/html_label_element.c
index 777144a..c62adca 100644
--- a/src/html/html_label_element.c
+++ b/src/html/html_label_element.c
@@ -15,7 +15,7 @@
#include "core/node.h"
#include "utils/utils.h"
-static struct dom_element_protected_vtable _protect_vtable = {
+static const struct dom_element_protected_vtable _protect_vtable = {
{
DOM_NODE_PROTECT_VTABLE_HTML_LABEL_ELEMENT
},
diff --git a/src/html/html_legend_element.c b/src/html/html_legend_element.c
index efb712b..f4200c8 100644
--- a/src/html/html_legend_element.c
+++ b/src/html/html_legend_element.c
@@ -19,7 +19,7 @@
#include "core/attr.h"
#include "utils/utils.h"
-static struct dom_element_protected_vtable _protect_vtable = {
+static const struct dom_element_protected_vtable _protect_vtable = {
{
DOM_NODE_PROTECT_VTABLE_HTML_LEGEND_ELEMENT
},
diff --git a/src/html/html_li_element.c b/src/html/html_li_element.c
index 84becf9..6856046 100644
--- a/src/html/html_li_element.c
+++ b/src/html/html_li_element.c
@@ -17,7 +17,7 @@
#include "core/attr.h"
#include "utils/utils.h"
-static struct dom_element_protected_vtable _protect_vtable = {
+static const struct dom_element_protected_vtable _protect_vtable = {
{
DOM_NODE_PROTECT_VTABLE_HTML_LI_ELEMENT
},
diff --git a/src/html/html_link_element.c b/src/html/html_link_element.c
index 87fe980..4916883 100644
--- a/src/html/html_link_element.c
+++ b/src/html/html_link_element.c
@@ -15,7 +15,7 @@
#include "core/attr.h"
#include "utils/utils.h"
-static struct dom_element_protected_vtable _protect_vtable = {
+static const struct dom_element_protected_vtable _protect_vtable = {
{
DOM_NODE_PROTECT_VTABLE_HTML_LINK_ELEMENT
},
diff --git a/src/html/html_map_element.c b/src/html/html_map_element.c
index 3b10222..865d9b6 100644
--- a/src/html/html_map_element.c
+++ b/src/html/html_map_element.c
@@ -19,7 +19,7 @@
#include "core/attr.h"
#include "utils/utils.h"
-static struct dom_element_protected_vtable _protect_vtable = {
+static const struct dom_element_protected_vtable _protect_vtable = {
{
DOM_NODE_PROTECT_VTABLE_HTML_MAP_ELEMENT
},
diff --git a/src/html/html_menu_element.c b/src/html/html_menu_element.c
index 09eadb6..882f1f2 100644
--- a/src/html/html_menu_element.c
+++ b/src/html/html_menu_element.c
@@ -17,7 +17,7 @@
#include "core/attr.h"
#include "utils/utils.h"
-static struct dom_element_protected_vtable _protect_vtable = {
+static const struct dom_element_protected_vtable _protect_vtable = {
{
DOM_NODE_PROTECT_VTABLE_HTML_MENU_ELEMENT
},
diff --git a/src/html/html_meta_element.c b/src/html/html_meta_element.c
index 4098daf..39fd9e1 100644
--- a/src/html/html_meta_element.c
+++ b/src/html/html_meta_element.c
@@ -13,7 +13,7 @@
#include "core/node.h"
#include "utils/utils.h"
-static struct dom_element_protected_vtable _protect_vtable = {
+static const struct dom_element_protected_vtable _protect_vtable = {
{
DOM_NODE_PROTECT_VTABLE_HTML_META_ELEMENT
},
diff --git a/src/html/html_mod_element.c b/src/html/html_mod_element.c
index 20cb042..4f3331c 100644
--- a/src/html/html_mod_element.c
+++ b/src/html/html_mod_element.c
@@ -17,7 +17,7 @@
#include "core/attr.h"
#include "utils/utils.h"
-static struct dom_element_protected_vtable _protect_vtable = {
+static const struct dom_element_protected_vtable _protect_vtable = {
{
DOM_NODE_PROTECT_VTABLE_HTML_MOD_ELEMENT
},
diff --git a/src/html/html_object_element.c b/src/html/html_object_element.c
index b51e3a0..1359ede 100644
--- a/src/html/html_object_element.c
+++ b/src/html/html_object_element.c
@@ -20,7 +20,7 @@
#include "core/attr.h"
#include "utils/utils.h"
-static struct dom_element_protected_vtable _protect_vtable = {
+static const struct dom_element_protected_vtable _protect_vtable = {
{
DOM_NODE_PROTECT_VTABLE_HTML_OBJECT_ELEMENT
},
diff --git a/src/html/html_olist_element.c b/src/html/html_olist_element.c
index c89d11f..415b656 100644
--- a/src/html/html_olist_element.c
+++ b/src/html/html_olist_element.c
@@ -17,7 +17,7 @@
#include "core/attr.h"
#include "utils/utils.h"
-static struct dom_element_protected_vtable _protect_vtable = {
+static const struct dom_element_protected_vtable _protect_vtable = {
{
DOM_NODE_PROTECT_VTABLE_HTML_OLIST_ELEMENT
},
diff --git a/src/html/html_opt_group_element.c b/src/html/html_opt_group_element.c
index 6af0a29..a50e3de 100644
--- a/src/html/html_opt_group_element.c
+++ b/src/html/html_opt_group_element.c
@@ -17,7 +17,7 @@
#include "core/attr.h"
#include "utils/utils.h"
-static struct dom_element_protected_vtable _protect_vtable = {
+static const struct dom_element_protected_vtable _protect_vtable = {
{
DOM_NODE_PROTECT_VTABLE_HTML_OPT_GROUP_ELEMENT
},
diff --git a/src/html/html_paragraph_element.c b/src/html/html_paragraph_element.c
index 2b2f420..3c8f384 100644
--- a/src/html/html_paragraph_element.c
+++ b/src/html/html_paragraph_element.c
@@ -17,7 +17,7 @@
#include "core/attr.h"
#include "utils/utils.h"
-static struct dom_element_protected_vtable _protect_vtable = {
+static const struct dom_element_protected_vtable _protect_vtable = {
{
DOM_NODE_PROTECT_VTABLE_HTML_P_ELEMENT
},
diff --git a/src/html/html_param_element.c b/src/html/html_param_element.c
index c75e1ce..2c991ac 100644
--- a/src/html/html_param_element.c
+++ b/src/html/html_param_element.c
@@ -17,7 +17,7 @@
#include "core/attr.h"
#include "utils/utils.h"
-static struct dom_element_protected_vtable _protect_vtable = {
+static const struct dom_element_protected_vtable _protect_vtable = {
{
DOM_NODE_PROTECT_VTABLE_HTML_PARAM_ELEMENT
},
diff --git a/src/html/html_pre_element.c b/src/html/html_pre_element.c
index 64c8c3d..7582fde 100644
--- a/src/html/html_pre_element.c
+++ b/src/html/html_pre_element.c
@@ -17,7 +17,7 @@
#include "core/attr.h"
#include "utils/utils.h"
-static struct dom_element_protected_vtable _protect_vtable = {
+static const struct dom_element_protected_vtable _protect_vtable = {
{
DOM_NODE_PROTECT_VTABLE_HTML_PRE_ELEMENT
},
diff --git a/src/html/html_quote_element.c b/src/html/html_quote_element.c
index cf3e0c5..f1bc06f 100644
--- a/src/html/html_quote_element.c
+++ b/src/html/html_quote_element.c
@@ -17,7 +17,7 @@
#include "core/attr.h"
#include "utils/utils.h"
-static struct dom_element_protected_vtable _protect_vtable = {
+static const struct dom_element_protected_vtable _protect_vtable = {
{
DOM_NODE_PROTECT_VTABLE_HTML_QUOTE_ELEMENT
},
diff --git a/src/html/html_script_element.c b/src/html/html_script_element.c
index e8dfb1d..9acbf29 100644
--- a/src/html/html_script_element.c
+++ b/src/html/html_script_element.c
@@ -17,7 +17,7 @@
#include "core/attr.h"
#include "utils/utils.h"
-static struct dom_element_protected_vtable _protect_vtable = {
+static const struct dom_element_protected_vtable _protect_vtable = {
{
DOM_NODE_PROTECT_VTABLE_HTML_SCRIPT_ELEMENT
},
diff --git a/src/html/html_select_element.c b/src/html/html_select_element.c
index 0801d0a..8ba78f1 100644
--- a/src/html/html_select_element.c
+++ b/src/html/html_select_element.c
@@ -17,7 +17,7 @@
#include "core/node.h"
#include "utils/utils.h"
-static struct dom_element_protected_vtable _protect_vtable = {
+static const struct dom_element_protected_vtable _protect_vtable = {
{
DOM_NODE_PROTECT_VTABLE_HTML_SELECT_ELEMENT
},
diff --git a/src/html/html_style_element.c b/src/html/html_style_element.c
index ae845be..4e4974f 100644
--- a/src/html/html_style_element.c
+++ b/src/html/html_style_element.c
@@ -13,7 +13,7 @@
#include "core/node.h"
#include "utils/utils.h"
-static struct dom_element_protected_vtable _protect_vtable = {
+static const struct dom_element_protected_vtable _protect_vtable = {
{
DOM_NODE_PROTECT_VTABLE_HTML_STYLE_ELEMENT
},
diff --git a/src/html/html_table_element.c b/src/html/html_table_element.c
index f197d07..010a6cd 100644
--- a/src/html/html_table_element.c
+++ b/src/html/html_table_element.c
@@ -21,7 +21,7 @@
#include "core/attr.h"
#include "utils/utils.h"
-static struct dom_element_protected_vtable _protect_vtable = {
+static const struct dom_element_protected_vtable _protect_vtable = {
{
DOM_NODE_PROTECT_VTABLE_HTML_TABLE_ELEMENT
},
diff --git a/src/html/html_tablecaption_element.c b/src/html/html_tablecaption_element.c
index cae229c..0e55e3a 100644
--- a/src/html/html_tablecaption_element.c
+++ b/src/html/html_tablecaption_element.c
@@ -17,7 +17,7 @@
#include "core/attr.h"
#include "utils/utils.h"
-static struct dom_element_protected_vtable _protect_vtable = {
+static const struct dom_element_protected_vtable _protect_vtable = {
{
DOM_NODE_PROTECT_VTABLE_HTML_TABLE_CAPTION_ELEMENT
},
diff --git a/src/html/html_tablecell_element.c b/src/html/html_tablecell_element.c
index 7a1f968..2fc31c8 100644
--- a/src/html/html_tablecell_element.c
+++ b/src/html/html_tablecell_element.c
@@ -18,7 +18,7 @@
#include "core/attr.h"
#include "utils/utils.h"
-static struct dom_element_protected_vtable _protect_vtable = {
+static const struct dom_element_protected_vtable _protect_vtable = {
{
DOM_NODE_PROTECT_VTABLE_HTML_TABLE_CELL_ELEMENT
},
diff --git a/src/html/html_tablecol_element.c b/src/html/html_tablecol_element.c
index 74169be..56bcd64 100644
--- a/src/html/html_tablecol_element.c
+++ b/src/html/html_tablecol_element.c
@@ -17,7 +17,7 @@
#include "core/attr.h"
#include "utils/utils.h"
-static struct dom_element_protected_vtable _protect_vtable = {
+static const struct dom_element_protected_vtable _protect_vtable = {
{
DOM_NODE_PROTECT_VTABLE_HTML_TABLE_COL_ELEMENT
},
diff --git a/src/html/html_tablerow_element.c b/src/html/html_tablerow_element.c
index 569e70f..1a6069b 100644
--- a/src/html/html_tablerow_element.c
+++ b/src/html/html_tablerow_element.c
@@ -20,7 +20,7 @@
#include "core/attr.h"
#include "utils/utils.h"
-static struct dom_element_protected_vtable _protect_vtable = {
+static const struct dom_element_protected_vtable _protect_vtable = {
{
DOM_NODE_PROTECT_VTABLE_HTML_TABLE_ROW_ELEMENT
},
diff --git a/src/html/html_tablesection_element.c b/src/html/html_tablesection_element.c
index f839758..dee5ae5 100644
--- a/src/html/html_tablesection_element.c
+++ b/src/html/html_tablesection_element.c
@@ -21,7 +21,7 @@
#include "core/attr.h"
#include "utils/utils.h"
-static struct dom_element_protected_vtable _protect_vtable = {
+static const struct dom_element_protected_vtable _protect_vtable = {
{
DOM_NODE_PROTECT_VTABLE_HTML_TABLE_SECTION_ELEMENT
},
diff --git a/src/html/html_text_area_element.c b/src/html/html_text_area_element.c
index 5c63c3c..db351bc 100644
--- a/src/html/html_text_area_element.c
+++ b/src/html/html_text_area_element.c
@@ -17,7 +17,7 @@
#include "core/attr.h"
#include "utils/utils.h"
-static struct dom_element_protected_vtable _protect_vtable = {
+static const struct dom_element_protected_vtable _protect_vtable = {
{
DOM_NODE_PROTECT_VTABLE_HTML_TEXT_AREA_ELEMENT
},
diff --git a/src/html/html_title_element.c b/src/html/html_title_element.c
index 440b9d5..f727dfa 100644
--- a/src/html/html_title_element.c
+++ b/src/html/html_title_element.c
@@ -17,7 +17,7 @@
#include "core/node.h"
#include "utils/utils.h"
-static struct dom_element_protected_vtable _protect_vtable = {
+static const struct dom_element_protected_vtable _protect_vtable = {
{
DOM_NODE_PROTECT_VTABLE_HTML_TITLE_ELEMENT
},
diff --git a/src/html/html_ulist_element.c b/src/html/html_ulist_element.c
index f2b87fb..48cb0c2 100644
--- a/src/html/html_ulist_element.c
+++ b/src/html/html_ulist_element.c
@@ -17,7 +17,7 @@
#include "core/attr.h"
#include "utils/utils.h"
-static struct dom_element_protected_vtable _protect_vtable = {
+static const struct dom_element_protected_vtable _protect_vtable = {
{
DOM_NODE_PROTECT_VTABLE_HTML_U_LIST_ELEMENT
},