New NetworkProcess can ASSERT after old NetworkProcess crashes Steps: 1 - Go to a site with HTTP auth, so Safari drops down the auth sheet 2 - `killall -9 NetworkProcess` in a terminal 3 - The WebProcess responds to the news that the NetworkProcess crashed by failing all of its outstanding ResourceLoaders 4 - In that process, it tells the new NetworkProcess to remove a load identifier for a failed loader 5 - The new NetworkProcess has no record of that new load identifier so it ASSERTs in: void NetworkResourceLoadScheduler::removeLoader(SchedulableLoader* loader) { ASSERT(loader); ... }
Created attachment 184783 [details] Patch v1
http://trac.webkit.org/changeset/140852