ajklein/webkit

Wrong check for text binding

arv opened this issue · 0 comments

arv commented

HTMLTemplateElement.cpp, addTextBinding, line 94

if (index != notFound && text->data().find("}}"))

this should be find("}}", index + 2) or we would match strings like this " abc }} def {{ ghi"

I should really just create my own clone and do pull requests.