Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Squashed commit of the following: commit 4959837 Author: Dennis Snell <[email protected]> Date: Tue Jan 16 17:08:27 2024 -0600 Update to call `$this->next_token()` in `seek()` and fix tests commit 3d8b20e Author: Dennis Snell <[email protected]> Date: Tue Jan 16 09:58:13 2024 -0600 RAWTEXT and SCRIPT elements do no decode character references commit f502153 Author: Dennis Snell <[email protected]> Date: Mon Jan 15 15:56:54 2024 -0600 WPCS commit 543a0b8 Author: Dennis Snell <[email protected]> Date: Mon Jan 15 15:54:41 2024 -0600 Fix span-of-dashes comment modifiable text commit b0aae8a Author: Jon Surrell <[email protected]> Date: Mon Jan 15 22:07:27 2024 +0100 Add failing test for `<!----->` commit 283df46 Author: Dennis Snell <[email protected]> Date: Mon Jan 15 11:55:30 2024 -0600 Expand comment introducing modifiable text. commit ede20ca Author: Dennis Snell <[email protected]> Date: Mon Jan 15 11:38:59 2024 -0600 Rename INCOMPLETE state to INCOMPLETE_INPUT commit 7de4cc2 Author: Dennis Snell <[email protected]> Date: Fri Jan 12 13:49:12 2024 -0500 PR Feedback Co-authored-by: Jon Surrell <[email protected]> commit 094176e Author: Dennis Snell <[email protected]> Date: Fri Jan 12 13:23:12 2024 -0500 Remove early bailout of special elements. It's duplicated. commit 7fa58c8 Author: Dennis Snell <[email protected]> Date: Fri Jan 12 13:10:53 2024 -0500 Feedback updates. Co-authored-by: David Herrera <[email protected]> Co-authored-by: Jon Surrell <[email protected]> commit 28fc54d Author: Dennis Snell <[email protected]> Date: Fri Jan 12 12:54:22 2024 -0500 Expand docblocks for CDATA/PINodes and re-add removed tests commit 1194d6f Author: Dennis Snell <[email protected]> Date: Fri Jan 12 07:53:28 2024 -0500 Provisionarily: add back CDATA and PI nodes commit b6d4300 Author: Dennis Snell <[email protected]> Date: Wed Jan 10 12:05:45 2024 -0500 Fix + WPCS commit 7d1c2e8 Author: Dennis Snell <[email protected]> Date: Thu Jan 11 21:22:51 2024 -0500 Remove support for CDATA sections. commit e91a33b Author: Dennis Snell <[email protected]> Date: Wed Jan 10 11:51:17 2024 -0500 Remove support for Processing Instructions Attempting to parse processing instructions conflicts with parsing bogus comments when a document may be incomplete, which might create a divergence in the HTML API from browser behavior. commit 3d68e28 Author: Dennis Snell <[email protected]> Date: Wed Jan 10 11:17:57 2024 -0500 Fix non-PI-node tests commit d596176 Author: Dennis Snell <[email protected]> Date: Wed Jan 10 11:09:20 2024 -0500 Add basic conformance tests commit 2199e86 Author: Dennis Snell <[email protected]> Date: Sun Dec 10 15:17:01 2023 +0100 HTML API: Avoid processing incomplete syntax elements. The HTML Tag Processor is able to know if it starts parsing a syntax element and reaches the end of the document before it reaches the end of the element. In these cases, after this patch, the processor will indicate this condition. For example, when processing `<div><input type="te` there is an incomplete INPUT element. The processor will fail to find the INPUT, it will pause right after the DIV, and `paused_at_incomplete_token()` will return `true`. This patch doesn't change any existing behaviors, but it adds the new method to report on the final failure condition. It provides a mechanism for later use to add chunked parsing to the class, wherein it will be possible to process a document without having the entire document loaded in memory, for example when processing unbuffered output. This is also a necessary change for adding the ability to scan every token in the document. Currently the Tag Processor only exposes tags as tokens, but it will need to process `#text` nodes, HTML comments, and other markup in order to enable behaviors in the HTML Processor and in refactors of existing HTML processing in Core.
- Loading branch information