serenity/Userland
Luke Wilde adb5f7e485 LibXML+Tests: Consume > in the character data ending ]]> and test it
For example, with this input:
```xml
<C>]]>
```
After seeing `<C>`, the parser will start parsing the content of the
element. The content parser will then parse any character data it sees.

The character parser would see the first two `]]` and consume them.
Then, it would see the `>` and set the state machine to say we have
seen this, but it did _not_ consume it and would instead tell
GenericLexer that it should stop consuming characters. Therefore,
we only consumed 2 characters.

Then, it would see that we are in the state where we've seen the
full `]]>` and try to take off three characters from the end of the
consumed input when we only have 2 characters, causing an assertion
failure as we are asking to take off more characters than there really
is.
2022-05-30 00:16:17 +01:00
..
Applets Applets/ResourceGraph: Open network monitor when clicking network graph 2022-05-28 21:52:44 +02:00
Applications SoundPlayer: Insert separator after play/stop and back/next buttons 2022-05-29 15:27:03 +02:00
Demos LibGUI+Userland: Make Dialog::ExecResult an enum class 2022-05-13 16:27:43 +02:00
DevTools Everywhere: Fix a bunch of typos 2022-05-29 15:22:00 +02:00
DynamicLoader LibC+Kernel: Prevent string functions from calling themselves 2022-05-12 13:12:37 +02:00
Games Everywhere: Fix a bunch of typos 2022-05-29 15:22:00 +02:00
Libraries LibXML+Tests: Consume > in the character data ending ]]> and test it 2022-05-30 00:16:17 +01:00
Services WindowServer: Call screen_resolution_changed after window screens clear 2022-05-29 00:26:20 +01:00
Shell LibCodeComprehension: Re-organize code comprehension related code 2022-05-21 18:15:58 +02:00
Utilities Utilities: Add networking to headless-browser 2022-05-29 23:00:04 +01:00
CMakeLists.txt Meta+Userland: Add ENABLE_USERSPACE_COVERAGE_COLLECTION CMake option 2022-05-02 01:46:18 +02:00