File tree Expand file tree Collapse file tree 5 files changed +735
-312
lines changed Expand file tree Collapse file tree 5 files changed +735
-312
lines changed Original file line number Diff line number Diff line change @@ -1077,6 +1077,7 @@ PHP 8.4 UPGRADE NOTES
10771077 an xpath query. This can give a time improvement of easily two order of
10781078 magnitude for documents with tens of thousands of nodes.
10791079 . Improved performance and reduce memory consumption of XML serialization.
1080+ . Reduced memory usage of node classes.
10801081
10811082- FTP:
10821083 . Improved the performance of FTP uploads up to a factor of 10x for large
Original file line number Diff line number Diff line change @@ -182,7 +182,7 @@ URL: https://dom.spec.whatwg.org/#dom-element-classlist
182182*/
183183zend_result dom_element_class_list_read (dom_object * obj , zval * retval )
184184{
185- const uint32_t PROP_INDEX = 20 ;
185+ const uint32_t PROP_INDEX = 0 ;
186186
187187#if ZEND_DEBUG
188188 zend_string * class_list_str = ZSTR_INIT_LITERAL ("classList" , false);
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ typedef struct dom_decoding_encoding_ctx {
8383/* https://dom.spec.whatwg.org/#dom-document-implementation */
8484zend_result dom_modern_document_implementation_read (dom_object * obj , zval * retval )
8585{
86- const uint32_t PROP_INDEX = 14 ;
86+ const uint32_t PROP_INDEX = 0 ;
8787
8888#if ZEND_DEBUG
8989 zend_string * implementation_str = ZSTR_INIT_LITERAL ("implementation" , false);
You can’t perform that action at this time.
0 commit comments