[tbb-commits] [tor-browser] branch tor-browser-91.13.0esr-11.5-1 updated (51418ddbcc2c -> e75d285bdf66)

gitolite role git at cupani.torproject.org
Thu Nov 17 14:03:39 UTC 2022


This is an automated email from the git hooks/post-receive script.

richard pushed a change to branch tor-browser-91.13.0esr-11.5-1
in repository tor-browser.

    from 51418ddbcc2c fixup! Bug 10760: Integrate TorButton to TorBrowser core
     new 1846b2503b26 Bug 1762078 - Blocking SerivceWorker interception for no_cors cross-origin range request. r=dom-worker-reviewers,karlt, a=dmeehan
     new f72260fb9289 Bug 1790815 - Don't raise the window for tab-modal SubDialogs and in print. r=Gijs, a=dmeehan
     new 40b1a378f824 Bug 1791314, some underlying streams prefer being closed on the target thread, r=valentin,necko-reviewers, a=dmeehan
     new 7a592af7a3be Bug 1791975 - Don't sweep realms that were allocated during incremental GC r=jandem, a=dmeehan
     new 8bd3bd20f8fe Bug 1793829 - Don't steal focus for navigations without user activation. r=hsivonen, a=dmeehan
     new 389a125c8e46 Bug 1796901 - Clear realm incremental marking state at the start of GC rather than at the end r=jandem, a=dmeehan
     new c2811c81a2c3 Bug 1658869 - Propagate the InterceptedHttpChannel information to fetch's channel casued by FetchEvent.request. r=dom-worker-reviewers,dragana,jesup, a=dmeehan
     new 3a9d2139eee9 Bug 1790311 - update handling of request headers in Fetch/XHR. r=necko-reviewers,valentin, a=dmeehan
     new 22e361ad6d9b Bug 1790311 - update WPT tests for request headers in XHR/Fetch. r=necko-reviewers,valentin, a=dmeehan
     new a79c58b0f66e Bug 1791029 - Deal with lstat potentially lying in nsLocalFileUnix. r=xpcom-reviewers,nika, a=dmeehan
     new 2885a2cf84ee Bug 1793676 - Dynamically generate DOM code names for some continuous runs of codes, r=mccr8, a=dmeehan
     new be6e2ad78a9a Bug 1792643. Set clip on background items for table cols and colgroups, when the table row, rowgroup or table has captured clip. r=mstange, a=dmeehan
     new 676b50fef91c Bug 1767920 - Increase thread stack size on windows (for ESR 102), r=#necko, a=dmeehan
     new e75d285bdf66 Bug 1789808 - Fix buffer overflow, r=necko-reviewers,dragana, a=dmeehan

The 14 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 docshell/base/nsDocShell.cpp                       |  4 +-
 dom/base/nsContentUtils.cpp                        | 45 +++++++++++--
 dom/base/nsContentUtils.h                          | 11 +++-
 dom/fetch/Fetch.cpp                                | 21 +++++++
 dom/fetch/FetchDriver.cpp                          | 30 +++++++++
 dom/fetch/FetchTypes.ipdlh                         |  5 ++
 dom/fetch/FetchUtil.h                              |  1 -
 dom/fetch/InternalHeaders.cpp                      | 18 +++---
 dom/fetch/InternalHeaders.h                        |  5 +-
 dom/fetch/InternalRequest.cpp                      | 32 +++++++++-
 dom/fetch/InternalRequest.h                        | 54 +++++++++++++++-
 .../ServiceWorkerInterceptController.cpp           | 59 +++++++++++------
 dom/serviceworkers/ServiceWorkerPrivateImpl.cpp    | 27 +++++++-
 dom/serviceworkers/moz.build                       |  7 +++
 dom/xhr/XMLHttpRequestMainThread.cpp               |  3 +-
 ipc/glue/BackgroundUtils.cpp                       | 59 ++++++++++++++++-
 js/src/gc/GC.cpp                                   |  4 ++
 js/src/jit-test/tests/gc/bug-1796901.js            |  4 ++
 js/src/vm/Realm-inl.h                              | 11 +++-
 js/src/vm/Realm.cpp                                |  2 +
 js/src/vm/Realm.h                                  |  2 +
 layout/reftests/bugs/1792643-1-ref.html            | 36 +++++++++++
 layout/reftests/bugs/1792643-1.html                | 40 ++++++++++++
 layout/reftests/bugs/reftest.list                  |  1 +
 layout/tables/nsTableCellFrame.cpp                 | 28 +++++----
 modules/libpref/init/StaticPrefList.yaml           |  5 ++
 netwerk/base/InterceptionInfo.cpp                  | 63 +++++++++++++++++++
 netwerk/base/InterceptionInfo.h                    | 44 +++++++++++++
 netwerk/base/LoadInfo.cpp                          | 16 +++--
 netwerk/base/LoadInfo.h                            |  5 +-
 netwerk/base/TRRLoadInfo.cpp                       |  3 +
 netwerk/base/moz.build                             |  3 +
 netwerk/base/nsIInterceptionInfo.idl               | 73 ++++++++++++++++++++++
 netwerk/base/nsILoadInfo.idl                       | 15 +++++
 netwerk/base/nsInputStreamPump.cpp                 | 25 +++++++-
 netwerk/base/nsSocketTransportService2.cpp         | 19 +++++-
 netwerk/cookie/CookieCommons.cpp                   | 68 +++++++++++++++-----
 netwerk/ipc/NeckoChannelParams.ipdlh               |  9 +++
 netwerk/system/mac/nsNetworkLinkService.mm         |  7 ++-
 .../meta/fetch/range/sw.https.window.js.ini        | 24 +++++--
 .../api/basic/request-forbidden-headers.any.js     | 54 ++++++++++++++++
 .../xhr/setrequestheader-header-forbidden.htm      | 52 +++++++++++++++
 toolkit/components/printing/content/print.js       |  4 +-
 toolkit/modules/SubDialog.jsm                      |  2 +-
 widget/WidgetEventImpl.cpp                         | 31 +++++++++
 xpcom/io/nsLocalFileUnix.cpp                       |  9 ++-
 46 files changed, 940 insertions(+), 100 deletions(-)
 create mode 100644 js/src/jit-test/tests/gc/bug-1796901.js
 create mode 100644 layout/reftests/bugs/1792643-1-ref.html
 create mode 100644 layout/reftests/bugs/1792643-1.html
 create mode 100644 netwerk/base/InterceptionInfo.cpp
 create mode 100644 netwerk/base/InterceptionInfo.h
 create mode 100644 netwerk/base/nsIInterceptionInfo.idl

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the tbb-commits mailing list