Changeset 241754 in webkit
- Timestamp:
- Feb 18, 2019, 7:03:02 PM (7 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
-
LayoutTests/ChangeLog (modified) (1 diff)
-
LayoutTests/platform/wk2/TestExpectations (modified) (1 diff)
-
Source/WebKit/ChangeLog (modified) (1 diff)
-
Source/WebKit/UIProcess/WebPageProxy.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r241747 r241754 1 2019-02-18 Alex Christensen <achristensen@webkit.org> 2 3 Revert functional part of r241451 4 https://bugs.webkit.org/show_bug.cgi?id=194510 5 6 * platform/wk2/TestExpectations: 7 1 8 2019-02-18 Daniel Bates <dabates@apple.com> 2 9 -
trunk/LayoutTests/platform/wk2/TestExpectations
r241451 r241754 750 750 fast/forms/call-text-did-change-in-text-field-when-typing.html [ Pass ] 751 751 752 http/tests/adClickAttribution [ Pass]752 http/tests/adClickAttribution [ Failure ] 753 753 754 754 ### END OF (5) Progressions, expected successes that are expected failures in WebKit1. -
trunk/Source/WebKit/ChangeLog
r241752 r241754 1 2019-02-18 Alex Christensen <achristensen@webkit.org> 2 3 Revert functional part of r241451 4 https://bugs.webkit.org/show_bug.cgi?id=194510 5 6 * UIProcess/WebPageProxy.cpp: 7 (WebKit::WebPageProxy::didFinishDocumentLoadForFrame): 8 It caused crashes and assertions on Linux and Cocoa without safe browsing, which 9 means it's fundamentally flawed in some way. The testing piping was fine. 10 1 11 2019-02-18 Chris Dumez <cdumez@apple.com> 2 12 -
trunk/Source/WebKit/UIProcess/WebPageProxy.cpp
r241752 r241754 4145 4145 // FIXME: We should message check that navigationID is not zero here, but it's currently zero for some navigations through the page cache. 4146 4146 RefPtr<API::Navigation> navigation; 4147 if (frame->isMainFrame() && navigationID) {4147 if (frame->isMainFrame() && navigationID) 4148 4148 navigation = navigationState().navigation(navigationID); 4149 if (navigation) {4150 if (auto& adClickAttribution = navigation->adClickAttribution()) {4151 if (adClickAttribution->destination().matches(frame->url()))4152 m_process->processPool().sendToNetworkingProcess(Messages::NetworkProcess::StoreAdClickAttribution(m_websiteDataStore->sessionID(), *adClickAttribution));4153 }4154 }4155 }4156 4149 4157 4150 if (frame->isMainFrame())
Note:
See TracChangeset
for help on using the changeset viewer.