History log of /php-src/ext/dom/html5_serializer.c (Results 1 – 4 of 4)
Revision Date Author Comments
# 0a0e8064 05-Apr-2024 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

Fix serialization of entity references in attributes (#13884)


# 14b6c981 09-Mar-2024 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

[RFC] Add a way to opt-in ext/dom spec compliance (#13031)

RFC: https://wiki.php.net/rfc/opt_in_dom_spec_compliance


# 0870da33 16-Dec-2023 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

Use strcspn() to optimize dom_html5_escape_string() (#12948)

* Use strcspn() to optimize dom_html5_escape_string()

This routine implemented by libc uses a faster algorithm than the

Use strcspn() to optimize dom_html5_escape_string() (#12948)

* Use strcspn() to optimize dom_html5_escape_string()

This routine implemented by libc uses a faster algorithm than the old
naive byte-per-byte approach here. It also is often optimized using
SIMD.

* Calculate mask outside of loop

show more ...


# 1492be52 13-Nov-2023 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

[RFC] DOM HTML5 parsing and serialization support (#12111)