mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-04 23:08:39 +09:00
Issue #1442 - Part 15 - Setting the correct global when ReadableStream.getReader() is called. https://bugzilla.mozilla.org/show_bug.cgi?id=1128959
This commit is contained in:
parent
842b9d47b3
commit
b124e54fc7
2 changed files with 10 additions and 10 deletions
|
|
@ -1139,6 +1139,10 @@ FetchBody<Derived>::LockStream(JSContext* aCx,
|
|||
JS::HandleObject aStream,
|
||||
ErrorResult& aRv)
|
||||
{
|
||||
MOZ_ASSERT(JS::ReadableStreamGetMode(aStream) ==
|
||||
JS::ReadableStreamMode::ExternalSource);
|
||||
|
||||
// This is native stream, creating a reader will not execute any JS code.
|
||||
JS::Rooted<JSObject*> reader(aCx,
|
||||
JS::ReadableStreamGetReader(aCx, aStream,
|
||||
JS::ReadableStreamReaderMode::Default));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue