RESOLVED FIXED 19242
Data URLs should set an Access-Control-Origin of "null"
https://bugs.webkit.org/show_bug.cgi?id=19242
Summary Data URLs should set an Access-Control-Origin of "null"
Adam Barth
Reported 2008-05-25 00:35:37 PDT
Data URLs should set an Access-Control-Origin of "null". Currently, we're setting the header to the empty string.
Attachments
untested patch (3.96 KB, patch)
2008-05-25 00:37 PDT, Adam Barth
sam: review-
patch with test (10.16 KB, patch)
2008-06-07 01:39 PDT, Adam Barth
no flags
patch (10.16 KB, patch)
2008-06-11 01:37 PDT, Adam Barth
no flags
patch (12.24 KB, patch)
2008-06-11 01:54 PDT, Adam Barth
sam: review-
updated and tweaked (7.81 KB, patch)
2008-06-11 14:11 PDT, Sam Weinig
sam: review+
Adam Barth
Comment 1 2008-05-25 00:37:06 PDT
Created attachment 21332 [details] untested patch Here's a patch. It's untested at the moment. I really wish I had a Mac... :)
Sam Weinig
Comment 2 2008-05-26 14:33:38 PDT
Comment on attachment 21332 [details] untested patch I think the logic for: String accessControlOrigin = m_doc->securityOrigin()->toString(); + if (accessControlOrigin.isEmpty()) + accessControlOrigin = "null"; should be lifted out into a separate function. There is one other places that put the access-control-origin into the request that you have missed, in handleAsynchronousMethodCheckResult where the helper should be used.
Adam Barth
Comment 3 2008-06-07 01:39:51 PDT
Created attachment 21554 [details] patch with test This turned out to be a bit more involved than I expected, but here's an improved patch.
Adam Barth
Comment 4 2008-06-07 01:56:47 PDT
Comment on attachment 21554 [details] patch with test Actually, I'm not sure this patch is right w.r.t. document that have set their document.domain property. Let me test how this works in other browsers.
Adam Barth
Comment 5 2008-06-11 01:37:09 PDT
Created attachment 21619 [details] patch This patch handles document.domain properly (and adds a test for this behavior). As a side effect, this should also fix Bug 15100.
Adam Barth
Comment 6 2008-06-11 01:54:51 PDT
Created attachment 21620 [details] patch Oops. Attached the old version of the patch before.
Sam Weinig
Comment 7 2008-06-11 14:08:19 PDT
Comment on attachment 21620 [details] patch This includes some document.domain changes that I think should be landed separately.
Sam Weinig
Comment 8 2008-06-11 14:11:44 PDT
Created attachment 21644 [details] updated and tweaked Adam, I took the chunk of your patch that relates to this specific bug and tweaked it a bit. If something looks amiss, please let me know.
Adam Barth
Comment 9 2008-06-11 14:56:07 PDT
> Adam, I took the chunk of your patch that relates to this specific bug and > tweaked it a bit. If something looks amiss, please let me know. Yeah that looks right. Thanks.
Adam Barth
Comment 10 2008-06-12 03:59:37 PDT
Fixed in r34504.
Note You need to log in before you can comment on or make changes to this bug.