1
0
mirror of https://github.com/rkd77/elinks.git synced 2025-02-02 15:09:23 -05:00

[mujs] element.contains fix

This commit is contained in:
Witold Filipczyk 2024-06-22 21:31:32 +02:00
parent c09aadc239
commit e89dcea08c

View File

@ -2564,6 +2564,11 @@ mjs_element_contains(js_State *J)
return;
}
if (el == el2) {
js_pushboolean(J, 1);
return;
}
bool result_set = false;
bool result = false;