WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
175443
[Beacon] Add support for quota limitation
https://bugs.webkit.org/show_bug.cgi?id=175443
Summary
[Beacon] Add support for quota limitation
Chris Dumez
Reported
2017-08-10 14:42:08 PDT
Add support for quota limitation as per: -
https://w3c.github.io/beacon/#sec-processing-model
(step 5) which points to: -
https://fetch.spec.whatwg.org/#http-network-or-cache-fetch
(step 9)
Attachments
WIP Patch
(16.26 KB, patch)
2017-08-16 15:53 PDT
,
Chris Dumez
no flags
Details
Formatted Diff
Diff
WIP Patch
(18.50 KB, patch)
2017-08-16 16:04 PDT
,
Chris Dumez
buildbot
: commit-queue-
Details
Formatted Diff
Diff
Archive of layout-test-results from ews104 for mac-elcapitan-wk2
(1.32 MB, application/zip)
2017-08-16 17:09 PDT
,
Build Bot
no flags
Details
Archive of layout-test-results from ews122 for ios-simulator-wk2
(1.11 MB, application/zip)
2017-08-16 17:33 PDT
,
Build Bot
no flags
Details
WIP Patch
(19.03 KB, patch)
2017-08-17 12:26 PDT
,
Chris Dumez
no flags
Details
Formatted Diff
Diff
WIP Patch
(19.65 KB, patch)
2017-08-17 16:57 PDT
,
Chris Dumez
no flags
Details
Formatted Diff
Diff
Patch
(28.26 KB, patch)
2017-08-17 18:08 PDT
,
Chris Dumez
no flags
Details
Formatted Diff
Diff
Patch
(28.93 KB, patch)
2017-08-17 19:18 PDT
,
Chris Dumez
no flags
Details
Formatted Diff
Diff
Patch
(31.26 KB, patch)
2017-08-18 10:16 PDT
,
Chris Dumez
no flags
Details
Formatted Diff
Diff
Show Obsolete
(8)
View All
Add attachment
proposed patch, testcase, etc.
Chris Dumez
Comment 1
2017-08-10 14:42:36 PDT
<
rdar://problem/33729002
>
Chris Dumez
Comment 2
2017-08-16 15:53:48 PDT
Created
attachment 318298
[details]
WIP Patch
Chris Dumez
Comment 3
2017-08-16 16:04:06 PDT
Created
attachment 318299
[details]
WIP Patch
Build Bot
Comment 4
2017-08-16 17:09:47 PDT
Comment on
attachment 318299
[details]
WIP Patch
Attachment 318299
[details]
did not pass mac-wk2-ews (mac-wk2): Output:
http://webkit-queues.webkit.org/results/4326946
New failing tests: http/tests/security/contentSecurityPolicy/user-style-sheet-font-crasher.php
Build Bot
Comment 5
2017-08-16 17:09:48 PDT
Created
attachment 318309
[details]
Archive of layout-test-results from ews104 for mac-elcapitan-wk2 The attached test failures were seen while running run-webkit-tests on the mac-wk2-ews. Bot: ews104 Port: mac-elcapitan-wk2 Platform: Mac OS X 10.11.6
Build Bot
Comment 6
2017-08-16 17:33:25 PDT
Comment on
attachment 318299
[details]
WIP Patch
Attachment 318299
[details]
did not pass ios-sim-ews (ios-simulator-wk2): Output:
http://webkit-queues.webkit.org/results/4326970
New failing tests: http/tests/security/contentSecurityPolicy/user-style-sheet-font-crasher.php
Build Bot
Comment 7
2017-08-16 17:33:26 PDT
Created
attachment 318311
[details]
Archive of layout-test-results from ews122 for ios-simulator-wk2 The attached test failures were seen while running run-webkit-tests on the ios-sim-ews. Bot: ews122 Port: ios-simulator-wk2 Platform: Mac OS X 10.12.5
Chris Dumez
Comment 8
2017-08-17 12:26:59 PDT
Created
attachment 318399
[details]
WIP Patch
Chris Dumez
Comment 9
2017-08-17 16:57:08 PDT
Created
attachment 318442
[details]
WIP Patch
Chris Dumez
Comment 10
2017-08-17 18:08:22 PDT
Created
attachment 318451
[details]
Patch
youenn fablet
Comment 11
2017-08-17 19:10:22 PDT
Comment on
attachment 318451
[details]
Patch Looks good to me. Two questions though: What happens if the network process crashes? Is there a way to call the completion handlers so as to free WebProcess pings? Since we are having a completion handler, would it be worth passing an error if ping load fails? That might be helpful to do some logging or use this in Web Inspector.
Chris Dumez
Comment 12
2017-08-17 19:14:08 PDT
(In reply to youenn fablet from
comment #11
)
> Comment on
attachment 318451
[details]
> Patch > > Looks good to me. > Two questions though: > > What happens if the network process crashes? > Is there a way to call the completion handlers so as to free WebProcess > pings?
I'll look into this.
> > Since we are having a completion handler, would it be worth passing an error > if ping load fails? > That might be helpful to do some logging or use this in Web Inspector.
For now this is not useful. It would be trivial to add it in a follow-up if we need it.
Chris Dumez
Comment 13
2017-08-17 19:18:01 PDT
Created
attachment 318457
[details]
Patch
Chris Dumez
Comment 14
2017-08-17 19:19:11 PDT
Comment on
attachment 318457
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=318457&action=review
> Source/WebKit/WebProcess/Network/WebLoaderStrategy.cpp:355 > + for (auto& pingLoadCompletionHandler : pingLoadCompletionHandlers.values())
Now dealing with network process crashes better.
youenn fablet
Comment 15
2017-08-17 21:07:08 PDT
Comment on
attachment 318457
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=318457&action=review
> Source/WebKitLegacy/WebCoreSupport/WebResourceLoadScheduler.h:62 > + void startPingLoad(WebCore::NetworkingContext*, WebCore::ResourceRequest&, const WebCore::HTTPHeaderMap&, Ref<WebCore::SecurityOrigin>&& sourceOrigin, WebCore::ContentSecurityPolicy*, const WebCore::FetchOptions&, WTF::Function<void()>&& completionHandler) override;
Should be final probably. Do we really need sourceOrigin parameter name here also? On another topic related to the handling of headers, do we have a test checking referrer value after a cross-origin redirection and with a referrer policy like origin-when-cross-origin? Looking at the code, I am not sure we are doing the right thing here.
youenn fablet
Comment 16
2017-08-18 07:42:21 PDT
> > Since we are having a completion handler, would it be worth passing an error > > if ping load fails? > > That might be helpful to do some logging or use this in Web Inspector. > > For now this is not useful. It would be trivial to add it in a follow-up if > we need it.
Adding some web inspector console logging would be good when ping load fails. That might be handy for web developers to debug things like CORS checks, at least until web inspector fully supports ping loads in the network panel. This would also mirror what is done for fetch.
Chris Dumez
Comment 17
2017-08-18 10:14:37 PDT
(In reply to youenn fablet from
comment #16
)
> > > Since we are having a completion handler, would it be worth passing an error > > > if ping load fails? > > > That might be helpful to do some logging or use this in Web Inspector. > > > > For now this is not useful. It would be trivial to add it in a follow-up if > > we need it. > > Adding some web inspector console logging would be good when ping load fails. > That might be handy for web developers to debug things like CORS checks, at > least until web inspector fully supports ping loads in the network panel. > This would also mirror what is done for fetch.
I started working on error reporting but this is a larger change. I'll upload a separate follow-up patch for it.
Chris Dumez
Comment 18
2017-08-18 10:16:31 PDT
Created
attachment 318516
[details]
Patch
WebKit Commit Bot
Comment 19
2017-08-18 10:58:45 PDT
Comment on
attachment 318516
[details]
Patch Clearing flags on attachment: 318516 Committed
r220922
: <
http://trac.webkit.org/changeset/220922
>
WebKit Commit Bot
Comment 20
2017-08-18 10:58:47 PDT
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.
Top of Page
Format For Printing
XML
Clone This Bug