This order was changed in http://trac.webkit.org/changeset/94105. <rdar://problem/11468434>
Created attachment 143398 [details] patch
Comment on attachment 143398 [details] patch r=me
Comment on attachment 143398 [details] patch View in context: https://bugs.webkit.org/attachment.cgi?id=143398&action=review > Source/WebCore/page/Settings.h:568 > + bool needsDidFinishLoadOrderQuirk() { return m_needsDidFinishLoadOrderQuirk; } You should const-qualify this to be consistent with other getters. > Source/WebKit/mac/WebView/WebView.mm:1361 > +- (BOOL)_needsDidFinishLoadOrderQuirk > +{ > + static BOOL needsQuirk = !WebKitLinkedOnOrAfter(WEBKIT_FIRST_VERSION_WITH_CORRECT_DID_FINISH_LOAD_ORDER) && applicationIsAppleMail(); > + return needsQuirk; > +} No reason for this to be a method. I would make it a static free function.
Landed with Andy's changes in http://trac.webkit.org/changeset/118086