Every load results in a error message. The reload appears to work. http://www.video.theblaze.com/video/e187-274027 is the last site to fail
Created attachment 293945 [details] Crash log
I couldn't reproduce this.
But, this is seen on bots: https://build.webkit.org/results/Apple%20Sierra%20Release%20WK2%20(Tests)/r208418%20(1259)/imported/w3c/web-platform-tests/html/dom/interfaces-crash-log.txt
First occurrence that I see was on 2016-11-02 16:21:01. Filip, could this be caused by threaded GC (r208306)?
(In reply to comment #4) > First occurrence that I see was on 2016-11-02 16:21:01. > > Filip, could this be caused by threaded GC (r208306)? Yup, that's the patch at fault. Should be really easy to fix. Basically, we just need to move anything in the GC that touches strings off the GC thread. It's usually easy to do this. Here we see the collector calling some HasOwnPropertyCache thing, which it shouldn't be doing.
This looks like the HasOwnPropertyCache at work. It derefs StringImpls from the collector thread.
Created attachment 294094 [details] patch
Comment on attachment 294094 [details] patch r=me
<rdar://problem/29079741>
Landing this patch as a test as a pre-reopening test.
Comment on attachment 294094 [details] patch Clearing flags on attachment: 294094 Committed r208426: <http://trac.webkit.org/changeset/208426>
All reviewed patches have been landed. Closing bug.