Title: [222349] trunk/Source/WebKit
Revision
222349
Author
[email protected]
Date
2017-09-21 13:58:28 -0700 (Thu, 21 Sep 2017)

Log Message

Unreviewed, drop assertion added in r222308.

The assertion is hit by a couple of tests still but there is no bad effect
to the vector not being empty at this point since we clear it right after.

* UIProcess/WebFrameProxy.cpp:
(WebKit::WebFrameProxy::didStartProvisionalLoad):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (222348 => 222349)


--- trunk/Source/WebKit/ChangeLog	2017-09-21 20:46:53 UTC (rev 222348)
+++ trunk/Source/WebKit/ChangeLog	2017-09-21 20:58:28 UTC (rev 222349)
@@ -1,5 +1,15 @@
 2017-09-21  Chris Dumez  <[email protected]>
 
+        Unreviewed, drop assertion added in r222308.
+
+        The assertion is hit by a couple of tests still but there is no bad effect
+        to the vector not being empty at this point since we clear it right after.
+
+        * UIProcess/WebFrameProxy.cpp:
+        (WebKit::WebFrameProxy::didStartProvisionalLoad):
+
+2017-09-21  Chris Dumez  <[email protected]>
+
         [WK2] Add API to get the redirect chain of a WKDownload
         https://bugs.webkit.org/show_bug.cgi?id=176628
         <rdar://problem/34338279>

Modified: trunk/Source/WebKit/UIProcess/WebFrameProxy.cpp (222348 => 222349)


--- trunk/Source/WebKit/UIProcess/WebFrameProxy.cpp	2017-09-21 20:46:53 UTC (rev 222348)
+++ trunk/Source/WebKit/UIProcess/WebFrameProxy.cpp	2017-09-21 20:58:28 UTC (rev 222349)
@@ -132,7 +132,6 @@
 
 void WebFrameProxy::didStartProvisionalLoad(const URL& url)
 {
-    ASSERT(m_provisionalLoadRedirectChain.isEmpty());
     m_provisionalLoadRedirectChain = { url };
 
     m_frameLoadState.didStartProvisionalLoad(url);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to