RESOLVED FIXED 40416
HTML5 Parser should continue parsing after script execution
https://bugs.webkit.org/show_bug.cgi?id=40416
Summary HTML5 Parser should continue parsing after script execution
Eric Seidel (no email)
Reported 2010-06-10 03:34:12 PDT
HTML5 Parser should continue parsing after script execution
Attachments
Patch (4.75 KB, patch)
2010-06-10 03:38 PDT, Eric Seidel (no email)
abarth: review-
Eric Seidel (no email)
Comment 1 2010-06-10 03:38:35 PDT
Adam Barth
Comment 2 2010-06-10 10:20:44 PDT
Comment on attachment 58356 [details] Patch Nice, but can you add your reduced test case? That's a lot easier to understand than the crazy JavaScript test that this actually fixes.
Adam Barth
Comment 3 2010-06-10 10:44:46 PDT
Here's the reduction eric sent me in email: <pre id="log"></pre> <script> function log(string) { document.getElementById("log").innerHTML += string + "\n"; } log("1"); document.write("<script>log('2')<"+"/script>"); document.write("<script>log('3')<"+"/script>"); log("4"); </script> I've converted it to a layout test locally. I just need to build and test it and I can land this for him.
Adam Barth
Comment 4 2010-06-10 11:18:06 PDT
Note You need to log in before you can comment on or make changes to this bug.