Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix appending text to Text node's data in parse5 adaptor #3296

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Commits on Jun 13, 2022

  1. Fix appending text to Text node's data in parse5 adaptor

    The "insert a character" algorithm [1] in the HTML parser is clear on
    appending directly to the Text node's data rather than using the replace
    data algorithm (which creates mutation records).
    
    [1]: https://html.spec.whatwg.org/multipage/parsing.html#insert-a-character
    
    Fixes: jsdom#3261
    TimothyGu authored and domenic committed Jun 13, 2022
    Configuration menu
    Copy the full SHA
    7bd236c View commit details
    Browse the repository at this point in the history