1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2026-01-26 21:41:34 +03:00

html: Don't escape < and > when serializing attribute values

Align with HTML5.

This will break some test suites.
This commit is contained in:
Nick Wellnhofer
2025-05-09 23:02:32 +02:00
parent e0e0a1f0f5
commit cdaf657ffb
6 changed files with 13 additions and 21 deletions

View File

@@ -5,6 +5,6 @@
<script language="javascript">
if (window.open<max) ;
</script>
<input onclick="if(window.open&lt;max);">
<input onclick="if(window.open<max);">
</body>
</html>