WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
211876
Incorrect location.origin in blob workers
https://bugs.webkit.org/show_bug.cgi?id=211876
Summary
Incorrect location.origin in blob workers
Naman Nehra
Reported
2020-05-13 19:41:59 PDT
location.origin is set to "blob://" in web workers created from blobs.
Attachments
Patch
(6.06 KB, patch)
2020-05-20 02:05 PDT
,
youenn fablet
no flags
Details
Formatted Diff
Diff
View All
Add attachment
proposed patch, testcase, etc.
Radar WebKit Bug Importer
Comment 1
2020-05-15 12:33:23 PDT
<
rdar://problem/63284717
>
youenn fablet
Comment 2
2020-05-20 02:05:40 PDT
Created
attachment 399821
[details]
Patch
Sihui Liu
Comment 3
2020-05-20 17:28:58 PDT
Comment on
attachment 399821
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=399821&action=review
> Source/WebCore/workers/WorkerLocation.cpp:78 > - return SecurityOriginData::fromURL(m_url).toString(); > + return m_origin;
Instead of keeping m_origin, you probably want SecurityOrigin::create(m_url), which seems to handle the blob case.
youenn fablet
Comment 4
2020-05-21 01:12:22 PDT
> Instead of keeping m_origin, you probably want > SecurityOrigin::create(m_url), which seems to handle the blob case.
We are trying to reduce the number of times we create origins from background threads. I believe we are creating the WorkerGlobalScope origin on the main thread for instance e. Also, by reusing the WorkerGlobalScope origin, we ensure consistency and it removes the need to allocate a new SecurityOrigin object for a very short period of time.
Sihui Liu
Comment 5
2020-05-21 11:18:14 PDT
(In reply to youenn fablet from
comment #4
)
> > Instead of keeping m_origin, you probably want > > SecurityOrigin::create(m_url), which seems to handle the blob case. > > We are trying to reduce the number of times we create origins from > background threads. > I believe we are creating the WorkerGlobalScope origin on the main thread > for instance e. > > Also, by reusing the WorkerGlobalScope origin, we ensure consistency and it > removes the need to allocate a new SecurityOrigin object for a very short > period of time.
Ah Okay, the fix should work.
EWS
Comment 6
2020-05-21 13:40:07 PDT
Committed
r262026
: <
https://trac.webkit.org/changeset/262026
> All reviewed patches have been landed. Closing bug and clearing flags on
attachment 399821
[details]
.
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