RESOLVED FIXED 200000
Verify Prefetch and credential behavior
https://bugs.webkit.org/show_bug.cgi?id=200000
Summary Verify Prefetch and credential behavior
Rob Buis
Reported 2019-07-22 08:42:09 PDT
Verify Prefetch and credential behavior.
Attachments
Patch (6.13 KB, patch)
2019-07-22 08:45 PDT, Rob Buis
no flags
Patch (7.97 KB, patch)
2019-08-02 08:21 PDT, Rob Buis
no flags
Archive of layout-test-results from ews101 for mac-highsierra (3.19 MB, application/zip)
2019-08-02 09:31 PDT, EWS Watchlist
no flags
Archive of layout-test-results from ews212 for win-future (13.59 MB, application/zip)
2019-08-02 10:14 PDT, EWS Watchlist
no flags
Archive of layout-test-results from ews114 for mac-highsierra (3.02 MB, application/zip)
2019-08-02 10:15 PDT, EWS Watchlist
no flags
Patch (9.63 KB, patch)
2019-08-02 10:52 PDT, Rob Buis
no flags
Patch (10.49 KB, patch)
2019-08-02 13:33 PDT, Rob Buis
no flags
Patch (11.63 KB, patch)
2019-08-05 00:11 PDT, Rob Buis
no flags
Patch (10.48 KB, patch)
2019-08-20 11:28 PDT, Rob Buis
no flags
Patch (10.82 KB, patch)
2019-08-21 05:37 PDT, Rob Buis
no flags
Patch (10.86 KB, patch)
2019-08-21 06:42 PDT, Rob Buis
no flags
link-prefetch-main-resource-redirect-crash-log.txt (78.87 KB, text/plain)
2019-08-21 11:38 PDT, Russell Epstein
no flags
link-prefetch-main-resource-crash-log.txt (74.77 KB, text/plain)
2019-08-21 11:39 PDT, Russell Epstein
no flags
Patch (10.79 KB, patch)
2019-08-21 12:20 PDT, Rob Buis
no flags
Patch (10.04 KB, patch)
2019-10-04 01:33 PDT, Rob Buis
no flags
Patch (10.01 KB, patch)
2019-10-10 02:11 PDT, Rob Buis
no flags
Archive of layout-test-results from ews210 for win-future (13.82 MB, application/zip)
2019-10-10 10:05 PDT, EWS Watchlist
no flags
Patch (10.19 KB, patch)
2019-10-17 10:30 PDT, Rob Buis
no flags
Patch (10.36 KB, patch)
2020-02-21 11:47 PST, Rob Buis
no flags
Patch (10.44 KB, patch)
2020-02-24 04:47 PST, Rob Buis
no flags
Patch (10.34 KB, patch)
2020-02-24 07:53 PST, Rob Buis
no flags
Rob Buis
Comment 1 2019-07-22 08:45:24 PDT
Rob Buis
Comment 2 2019-08-02 08:21:33 PDT
EWS Watchlist
Comment 3 2019-08-02 09:31:54 PDT
Comment on attachment 375411 [details] Patch Attachment 375411 [details] did not pass mac-ews (mac): Output: https://webkit-queues.webkit.org/results/12852365 New failing tests: http/wpt/prefetch/link-prefetch-cross-origin-vary-cookie.html
EWS Watchlist
Comment 4 2019-08-02 09:31:56 PDT
Created attachment 375413 [details] Archive of layout-test-results from ews101 for mac-highsierra The attached test failures were seen while running run-webkit-tests on the mac-ews. Bot: ews101 Port: mac-highsierra Platform: Mac OS X 10.13.6
EWS Watchlist
Comment 5 2019-08-02 10:14:49 PDT
Comment on attachment 375411 [details] Patch Attachment 375411 [details] did not pass win-ews (win): Output: https://webkit-queues.webkit.org/results/12852468 New failing tests: http/wpt/prefetch/link-prefetch-cross-origin-vary-cookie.html
EWS Watchlist
Comment 6 2019-08-02 10:14:53 PDT
Created attachment 375419 [details] Archive of layout-test-results from ews212 for win-future The attached test failures were seen while running run-webkit-tests on the win-ews. Bot: ews212 Port: win-future Platform: CYGWIN_NT-10.0-17763-3.0.5-338.x86_64-x86_64-64bit
EWS Watchlist
Comment 7 2019-08-02 10:15:35 PDT
Comment on attachment 375411 [details] Patch Attachment 375411 [details] did not pass mac-debug-ews (mac): Output: https://webkit-queues.webkit.org/results/12852413 New failing tests: http/wpt/prefetch/link-prefetch-cross-origin-vary-cookie.html
EWS Watchlist
Comment 8 2019-08-02 10:15:37 PDT
Created attachment 375420 [details] Archive of layout-test-results from ews114 for mac-highsierra The attached test failures were seen while running run-webkit-tests on the mac-debug-ews. Bot: ews114 Port: mac-highsierra Platform: Mac OS X 10.13.6
Rob Buis
Comment 9 2019-08-02 10:52:21 PDT
Rob Buis
Comment 10 2019-08-02 13:33:56 PDT
youenn fablet
Comment 11 2019-08-02 15:55:41 PDT
Comment on attachment 375448 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=375448&action=review > Source/WebKit/NetworkProcess/NetworkResourceLoader.cpp:221 > + if (!entry->response.httpHeaderField(WebCore::HTTPHeaderName::Vary).contains("Cookie")) { I would move that check in the prefetch cache which is responsible of validating that the navigation request is matching with the prefetch request. Probably as part of PrefetchCache::take and it would be given the request and not just the request.url(). If we decide to not prefetch any vary: cookie header, we should cancel these loads as soon as we get such response. A case to consider is the case where we are starting the navigation load but we do not have yet the response.
Rob Buis
Comment 12 2019-08-05 00:11:34 PDT
Rob Buis
Comment 13 2019-08-05 10:44:49 PDT
Comment on attachment 375448 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=375448&action=review >> Source/WebKit/NetworkProcess/NetworkResourceLoader.cpp:221 >> + if (!entry->response.httpHeaderField(WebCore::HTTPHeaderName::Vary).contains("Cookie")) { > > I would move that check in the prefetch cache which is responsible of validating that the navigation request is matching with the prefetch request. > Probably as part of PrefetchCache::take and it would be given the request and not just the request.url(). > > If we decide to not prefetch any vary: cookie header, we should cancel these loads as soon as we get such response. > > A case to consider is the case where we are starting the navigation load but we do not have yet the response. I moved the check, however I turned it in an ASSERT now, since I like the idea of canceling the prefetch and vary: cookie header. The case you mention sounds related to https://bugs.webkit.org/show_bug.cgi?id=199162, which should probably go in first.
youenn fablet
Comment 14 2019-08-20 09:44:46 PDT
Comment on attachment 375523 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=375523&action=review > Source/WebKit/NetworkProcess/NetworkResourceLoader.cpp:502 > + if (response.httpHeaderField(WebCore::HTTPHeaderName::Vary).contains("Cookie")) { WebCore:: not needed. > Source/WebKit/NetworkProcess/cache/PrefetchCache.cpp:60 > +std::unique_ptr<PrefetchCache::Entry> PrefetchCache::take(const WebCore::ResourceRequest& request) Since we do not check request headers or cookies, we can keep passing a URL. > LayoutTests/http/wpt/prefetch/resources/navigate-cross-origin-vary-cookie.html:15 > + await fetch(get_host_info().HTTP_REMOTE_ORIGIN + "/WebKit/prefetch/resources/main-resource-cross-origin-set-cookie.py", { "credentials": "include" }); Why do we need this one? Is it just to wait for the link prefetch to finish? Why do we need another py script for it? Can we remove main-resource-cross-origin-set-cookie.py? > LayoutTests/platform/mac-wk1/TestExpectations:741 > +webkit.org/b/200000 http/wpt/prefetch/link-prefetch-cross-origin-vary-cookie.html [ Skip ] Since prefetch is only WK2, I would just add one comment saying prefetch not supported in WK1 and would not add a link to webkit.org/b/200000
Rob Buis
Comment 15 2019-08-20 11:28:32 PDT
Rob Buis
Comment 16 2019-08-20 14:02:46 PDT
Comment on attachment 375523 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=375523&action=review >> Source/WebKit/NetworkProcess/NetworkResourceLoader.cpp:502 >> + if (response.httpHeaderField(WebCore::HTTPHeaderName::Vary).contains("Cookie")) { > > WebCore:: not needed. Done. >> Source/WebKit/NetworkProcess/cache/PrefetchCache.cpp:60 >> +std::unique_ptr<PrefetchCache::Entry> PrefetchCache::take(const WebCore::ResourceRequest& request) > > Since we do not check request headers or cookies, we can keep passing a URL. Fixed. >> LayoutTests/http/wpt/prefetch/resources/navigate-cross-origin-vary-cookie.html:15 >> + await fetch(get_host_info().HTTP_REMOTE_ORIGIN + "/WebKit/prefetch/resources/main-resource-cross-origin-set-cookie.py", { "credentials": "include" }); > > Why do we need this one? Is it just to wait for the link prefetch to finish? > Why do we need another py script for it? Can we remove main-resource-cross-origin-set-cookie.py? It is needed to set the cookie. I don't think document.cookie can work in this case. Let me know if you see some other way than using main-resource-cross-origin-set-cookie.py. >> LayoutTests/platform/mac-wk1/TestExpectations:741 >> +webkit.org/b/200000 http/wpt/prefetch/link-prefetch-cross-origin-vary-cookie.html [ Skip ] > > Since prefetch is only WK2, I would just add one comment saying prefetch not supported in WK1 and would not add a link to webkit.org/b/200000 Done.
youenn fablet
Comment 17 2019-08-21 02:59:14 PDT
Comment on attachment 376785 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=376785&action=review > LayoutTests/http/wpt/prefetch/resources/main-resource-cross-origin-set-cookie.py:11 > +</script> I was initially confused about this script element and the fact the resource is loaded with fetch API. Maybe it should be removed or the response could just be something like 'PASS' or 'Setting Cookie'. > LayoutTests/http/wpt/prefetch/resources/main-resource-cross-origin-vary-cookie.py:9 > + window.opener.postMessage(result, '*'); indentation > LayoutTests/platform/mac-wk1/TestExpectations:742 > +http/wpt/prefetch/link-prefetch-cross-origin-vary-cookie.html [ Skip ] It seems you could skip the whole http/wpt/prefetch folder here. And put http/tests/cache/link-prefetch-main-resource.html and http/tests/cache/link-prefetch-main-resource-iframe.html skip lines below the '# prefetch not supported in WK1'
Rob Buis
Comment 18 2019-08-21 05:37:22 PDT
Rob Buis
Comment 19 2019-08-21 06:27:56 PDT
Comment on attachment 376785 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=376785&action=review >> LayoutTests/http/wpt/prefetch/resources/main-resource-cross-origin-set-cookie.py:11 >> +</script> > > I was initially confused about this script element and the fact the resource is loaded with fetch API. > Maybe it should be removed or the response could just be something like 'PASS' or 'Setting Cookie'. Right, sorry, that was a left over from an earlier test, removed now. >> LayoutTests/http/wpt/prefetch/resources/main-resource-cross-origin-vary-cookie.py:9 >> + window.opener.postMessage(result, '*'); > > indentation Done. >> LayoutTests/platform/mac-wk1/TestExpectations:742 >> +http/wpt/prefetch/link-prefetch-cross-origin-vary-cookie.html [ Skip ] > > It seems you could skip the whole http/wpt/prefetch folder here. > And put http/tests/cache/link-prefetch-main-resource.html and http/tests/cache/link-prefetch-main-resource-iframe.html skip lines below the '# prefetch not supported in WK1' Done.
WebKit Commit Bot
Comment 20 2019-08-21 06:30:58 PDT
Comment on attachment 376865 [details] Patch Rejecting attachment 376865 [details] from commit-queue. Failed to run "['/Volumes/Data/EWS/WebKit/Tools/Scripts/webkit-patch', '--status-host=webkit-queues.webkit.org', '--bot-id=webkit-cq-03', 'validate-changelog', '--check-oops', '--non-interactive', 376865, '--port=mac']" exit_code: 1 cwd: /Volumes/Data/EWS/WebKit ChangeLog entry in LayoutTests/ChangeLog contains OOPS!. Full output: https://webkit-queues.webkit.org/results/12951471
Rob Buis
Comment 21 2019-08-21 06:42:40 PDT
WebKit Commit Bot
Comment 22 2019-08-21 08:15:37 PDT
Comment on attachment 376873 [details] Patch Clearing flags on attachment: 376873 Committed r248942: <https://trac.webkit.org/changeset/248942>
WebKit Commit Bot
Comment 23 2019-08-21 08:15:39 PDT
All reviewed patches have been landed. Closing bug.
Radar WebKit Bug Importer
Comment 24 2019-08-21 08:16:30 PDT
Russell Epstein
Comment 25 2019-08-21 11:37:41 PDT
This patch has caused Layout Tests to crash and/or fail. Crashing Tests (logs attached): http/tests/cache/link-prefetch-main-resource.html http/wpt/prefetch/link-prefetch-main-resource-redirect.html Results History: http://webkit-test-results.webkit.org/dashboards/flakiness_dashboard.html#tests=http%2Fwpt%2Fprefetch%2Flink-prefetch-main-resource-redirect.html%20http%2Ftests%2Fcache%2Flink-prefetch-main-resource.html
Russell Epstein
Comment 26 2019-08-21 11:38:58 PDT
Created attachment 376899 [details] link-prefetch-main-resource-redirect-crash-log.txt
Russell Epstein
Comment 27 2019-08-21 11:39:39 PDT
Created attachment 376900 [details] link-prefetch-main-resource-crash-log.txt
Russell Epstein
Comment 28 2019-08-21 11:48:20 PDT
Reverted r248942 for reason: Causes multiple layout test crashes on MacOS Bots Committed r248953: <https://trac.webkit.org/changeset/248953>
Rob Buis
Comment 29 2019-08-21 12:20:18 PDT
WebKit Commit Bot
Comment 30 2019-08-21 13:27:00 PDT
Comment on attachment 376902 [details] Patch Clearing flags on attachment: 376902 Committed r248961: <https://trac.webkit.org/changeset/248961>
WebKit Commit Bot
Comment 31 2019-08-21 13:27:03 PDT
All reviewed patches have been landed. Closing bug.
Russell Epstein
Comment 32 2019-08-26 10:12:58 PDT
Reverted r248961 for reason: Same patch was re-landed after being rolled out. Patch is causing Catalina/iOS 13 test failures. Rolling out. Committed r249101: <https://trac.webkit.org/changeset/249101>
Rob Buis
Comment 33 2019-08-26 10:21:08 PDT
(In reply to Russell Epstein from comment #32) > Reverted r248961 for reason: > > Same patch was re-landed after being rolled out. It was not the same patch, the ASSERT was different. Maybe it still has a logic error, will check.
Rob Buis
Comment 34 2019-08-26 12:43:47 PDT
(In reply to Russell Epstein from comment #32) > Reverted r248961 for reason: > > Same patch was re-landed after being rolled out. Patch is causing > Catalina/iOS 13 test failures. Rolling out. > > Committed r249101: <https://trac.webkit.org/changeset/249101> What are the test failures you mention above? The two original tests that crashes were fixed if I interpret this correctly: https://webkit-test-results.webkit.org/dashboards/flakiness_dashboard.html#tests=http%2Fwpt%2Fprefetch%2Flink-prefetch-main-resource-redirect.html%20http%2Ftests%2Fcache%2Flink-prefetch-main-resource.html
Russell Epstein
Comment 35 2019-08-26 14:29:57 PDT
(In reply to Rob Buis from comment #34) > (In reply to Russell Epstein from comment #32) > > Reverted r248961 for reason: > > > > Same patch was re-landed after being rolled out. Patch is causing > > Catalina/iOS 13 test failures. Rolling out. > > > > Committed r249101: <https://trac.webkit.org/changeset/249101> > > What are the test failures you mention above? The two original tests that > crashes were fixed if I interpret this correctly: > https://webkit-test-results.webkit.org/dashboards/flakiness_dashboard. > html#tests=http%2Fwpt%2Fprefetch%2Flink-prefetch-main-resource-redirect. > html%20http%2Ftests%2Fcache%2Flink-prefetch-main-resource.html http/wpt/prefetch/link-prefetch-cross-origin-vary-cookie.html iOS 13 and Catalina Diff: @@ -1,3 +1,3 @@ -PASS Verify that navigating to a prefetched main resource that sets Vary: Cookie does send cookies. +FAIL Verify that navigating to a prefetched main resource that sets Vary: Cookie does send cookies. assert_equals: expected "foo=bar" but got ""
Frédéric Wang (:fredw)
Comment 36 2019-08-29 03:34:14 PDT
(In reply to Russell Epstein from comment #35) > -PASS Verify that navigating to a prefetched main resource that sets Vary: > Cookie does send cookies. > +FAIL Verify that navigating to a prefetched main resource that sets Vary: > Cookie does send cookies. assert_equals: expected "foo=bar" but got "" Hi, I think it's difficult to detect this kind of issue without a public buildbot and even harder to debug this without access to the Catalina / iOS13 configuration. Is there any such bot? Is it possible to build that configuration for external contributors (with an Apple developer account)? See also bug 199705 comment 8.
Alexey Proskuryakov
Comment 37 2019-08-29 09:30:28 PDT
Yes, installing a macOS Catalina developer beta, building WebKit and running tests on it should all work.
Rob Buis
Comment 38 2019-09-05 13:57:47 PDT
(In reply to Alexey Proskuryakov from comment #37) > Yes, installing a macOS Catalina developer beta, building WebKit and running > tests on it should all work. Thanks, I had some problems with file privileges but now I can reproduce. I have to do some more verifying but pretty sure the test runs into https://bugs.webkit.org/show_bug.cgi?id=200857.
Rob Buis
Comment 39 2019-10-04 01:33:14 PDT
Rob Buis
Comment 40 2019-10-04 12:50:31 PDT
Since this runs into https://bugs.webkit.org/show_bug.cgi?id=200857 on OS X Catalina, I think the best workaround for now is to change the test to check that the prefetch is canceled instead of checking the actual cookie, which I implemented in my latest patch.
Rob Buis
Comment 41 2019-10-10 02:11:48 PDT
EWS Watchlist
Comment 42 2019-10-10 10:05:00 PDT
Comment on attachment 380614 [details] Patch Attachment 380614 [details] did not pass win-ews (win): Output: https://webkit-queues.webkit.org/results/13114421 New failing tests: fast/images/reset-image-animation.html http/tests/security/canvas-remote-read-remote-video-allowed-with-credentials.html
EWS Watchlist
Comment 43 2019-10-10 10:05:04 PDT
Created attachment 380655 [details] Archive of layout-test-results from ews210 for win-future The attached test failures were seen while running run-webkit-tests on the win-ews. Bot: ews210 Port: win-future Platform: CYGWIN_NT-10.0-17763-3.0.5-338.x86_64-x86_64-64bit
Rob Buis
Comment 44 2019-10-17 10:30:53 PDT
Rob Buis
Comment 45 2019-10-18 03:30:48 PDT
(In reply to Rob Buis from comment #40) > Since this runs into https://bugs.webkit.org/show_bug.cgi?id=200857 on OS X > Catalina, I think the best workaround for now is to change the test to check > that the prefetch is canceled instead of checking the actual cookie, which I > implemented in my latest patch. New status, on Catalina OS X the old testcase passes (buildbot and locally 10.15.1 Beta (19B68f)) with latest updates. On iOS buildbot it fails, seems like it is using 13.1, whereas (https://bugs.webkit.org/show_bug.cgi?id=200857) confirmed it is fixed on iOS 13.2 Developer beta 2. Are there plans to update iOS-13-Simulator-WK2-Tests-EWS soon?
Alexey Proskuryakov
Comment 46 2019-10-18 09:04:57 PDT
No plans to update to pre-release builds at this time.
Alexey Proskuryakov
Comment 47 2020-02-20 13:27:04 PST
All of our simulator bots are on 10.15.3 now. Triggering EWS retry.
Rob Buis
Comment 48 2020-02-20 21:28:22 PST
(In reply to Alexey Proskuryakov from comment #47) > All of our simulator bots are on 10.15.3 now. Triggering EWS retry. Thanks for the notifivation There seems to be an EWS problem. Regardless, I'll rebase the patch.
Aakash Jain
Comment 49 2020-02-21 11:06:25 PST
(In reply to Rob Buis from comment #48) > Thanks for the notifivation There seems to be an EWS problem. Regardless, I'll rebase the patch. Yeah, the patch needs a rebase. I retried the ios-sim build, and it failed to apply the patch in https://ews-build.webkit.org/#/builders/23/builds/11185 ios-wk2 failed to retry since it's been too long since the patch was built and we store the built archive only for 2 weeks.
Rob Buis
Comment 50 2020-02-21 11:47:55 PST
youenn fablet
Comment 51 2020-02-24 02:51:20 PST
Comment on attachment 391416 [details] Patch LGTM View in context: https://bugs.webkit.org/attachment.cgi?id=391416&action=review > Source/WebKit/NetworkProcess/NetworkResourceLoader.cpp:551 > + if (response.httpHeaderField(HTTPHeaderName::Vary).contains("Cookie")) { Might be good to add a RELEASE_LOG here as well.
Rob Buis
Comment 52 2020-02-24 04:47:37 PST
WebKit Commit Bot
Comment 53 2020-02-24 07:47:12 PST
The commit-queue encountered the following flaky tests while processing attachment 391526 [details]: imported/w3c/web-platform-tests/IndexedDB/interleaved-cursors-large.html bug 201849 The commit-queue is continuing to process your patch.
WebKit Commit Bot
Comment 54 2020-02-24 07:47:42 PST
The commit-queue encountered the following flaky tests while processing attachment 391526 [details]: editing/spelling/spellcheck-async-remove-frame.html bug 158401 (authors: morrita@google.com, rniwa@webkit.org, and tony@chromium.org) The commit-queue is continuing to process your patch.
WebKit Commit Bot
Comment 55 2020-02-24 07:49:24 PST
Comment on attachment 391526 [details] Patch Rejecting attachment 391526 [details] from commit-queue. Failed to run "['/Volumes/Data/EWS/WebKit/Tools/Scripts/webkit-patch', '--status-host=webkit-queues.webkit.org', '--bot-id=webkit-cq-02', 'apply-attachment', '--no-update', '--non-interactive', 391526, '--port=mac']" exit_code: 2 cwd: /Volumes/Data/EWS/WebKit Logging in as commit-queue@webkit.org... Fetching: https://bugs.webkit.org/attachment.cgi?id=391526&action=edit Fetching: https://bugs.webkit.org/show_bug.cgi?id=200000&ctype=xml&excludefield=attachmentdata Processing 1 patch from 1 bug. Processing patch 391526 from bug 200000. Fetching: https://bugs.webkit.org/attachment.cgi?id=391526 Failed to run "[u'/Volumes/Data/EWS/WebKit/Tools/Scripts/svn-apply', '--force']" exit_code: 1 cwd: /Volumes/Data/EWS/WebKit Parsed 11 diffs from patch file(s). patching file Source/WebKit/ChangeLog patching file Source/WebKit/NetworkProcess/NetworkResourceLoader.cpp patching file Source/WebKit/NetworkProcess/cache/PrefetchCache.cpp patching file LayoutTests/ChangeLog Hunk #1 succeeded at 1 with fuzz 3. patching file LayoutTests/http/wpt/prefetch/link-prefetch-cross-origin-vary-cookie-expected.txt patching file LayoutTests/http/wpt/prefetch/link-prefetch-cross-origin-vary-cookie.html patching file LayoutTests/http/wpt/prefetch/resources/main-resource-cross-origin-set-cookie.py patching file LayoutTests/http/wpt/prefetch/resources/main-resource-cross-origin-vary-cookie.py patching file LayoutTests/http/wpt/prefetch/resources/navigate-cross-origin-vary-cookie.html patching file LayoutTests/platform/mac-wk1/TestExpectations Hunk #1 FAILED at 950. 1 out of 1 hunk FAILED -- saving rejects to file LayoutTests/platform/mac-wk1/TestExpectations.rej patching file LayoutTests/platform/win/TestExpectations Failed to run "[u'/Volumes/Data/EWS/WebKit/Tools/Scripts/svn-apply', '--force']" exit_code: 1 cwd: /Volumes/Data/EWS/WebKit Full output: https://webkit-queues.webkit.org/results/13327823
Rob Buis
Comment 56 2020-02-24 07:53:31 PST
WebKit Commit Bot
Comment 57 2020-02-24 09:24:22 PST
Comment on attachment 391539 [details] Patch Clearing flags on attachment: 391539 Committed r257211: <https://trac.webkit.org/changeset/257211>
WebKit Commit Bot
Comment 58 2020-02-24 09:24:25 PST
All reviewed patches have been landed. Closing bug.
Note You need to log in before you can comment on or make changes to this bug.