1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-12-04 14:46:47 -05:00

[libdom] Do not rewrite < and > in scripts

This commit is contained in:
Witold Filipczyk 2023-09-20 18:46:04 +02:00
parent b0127bec3b
commit 5dc2187450

View File

@ -21,6 +21,7 @@
#include "document/libdom/renderer2.h"
#include "ecmascript/libdom/parse.h"
static int in_script = 0;
static bool
dump_dom_element_closing(struct string *buf, dom_node *node)
@ -60,6 +61,12 @@ dump_dom_element_closing(struct string *buf, dom_node *node)
add_char_to_string(buf, '>');
}
if (in_script) {
if (strcmp(dom_string_data(node_name), "SCRIPT") == 0) {
in_script = 0;
}
}
/* Finished with the node_name dom_string */
dom_string_unref(node_name);
@ -130,9 +137,9 @@ dump_dom_element(void *mapa, void *mapa_rev, struct string *buf, dom_node *node,
int length = dom_string_byte_length(str);
const char *string_text = dom_string_data(str);
if (length == 1 && *string_text == '<') {
if (!in_script && length == 1 && *string_text == '<') {
add_to_string(buf, "&lt;");
} else if (length == 1 && *string_text == '>') {
} else if (!in_script && length == 1 && *string_text == '>') {
add_to_string(buf, "&gt;");
} else {
add_bytes_to_string(buf, string_text, length);
@ -163,7 +170,10 @@ dump_dom_element(void *mapa, void *mapa_rev, struct string *buf, dom_node *node,
if (strcmp(dom_string_data(node_name), "BR") == 0) {
add_char_to_string(buf, '/');
} else if (strcmp(dom_string_data(node_name), "SCRIPT") == 0) {
in_script = 1;
}
exc = dom_node_get_attributes(node, &attrs);
if (exc == DOM_NO_ERR) {
@ -288,6 +298,7 @@ render_xhtml_document(struct cache_entry *cached, struct document *document, str
doc = document->dom;
in_script = 0;
/* Get root element */
exc = dom_document_get_document_element(doc, &root);
if (exc != DOM_NO_ERR) {