Skip to content

Commit 0afc7e4

Browse files
committed
DB-2460: merge with Firefox 74.0.1
2 parents d1eb928 + 416a61e commit 0afc7e4

File tree

17 files changed

+151
-238
lines changed

17 files changed

+151
-238
lines changed

mozilla-release/browser/app/blocklist.xml

Lines changed: 123 additions & 122 deletions
Large diffs are not rendered by default.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
74.0
1+
74.0.1
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.34.0
1+
1.34.1

mozilla-release/config/milestone.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@
1010
# hardcoded milestones in the tree from these two files.
1111
#--------------------------------------------------------
1212

13-
74.0
13+
74.0.1

mozilla-release/docshell/base/nsDocShell.cpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -420,6 +420,12 @@ nsDocShell::~nsDocShell() {
420420
mSessionHistory->LegacySHistory()->ClearRootBrowsingContext();
421421
}
422422

423+
if (mContentViewer) {
424+
mContentViewer->Close(nullptr);
425+
mContentViewer->Destroy();
426+
mContentViewer = nullptr;
427+
}
428+
423429
if (--gDocShellCount == 0) {
424430
NS_IF_RELEASE(sURIFixup);
425431
}

mozilla-release/dom/cache/StreamList.cpp

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,15 @@ void StreamList::Close(const nsID& aId) {
133133
void StreamList::CloseAll() {
134134
NS_ASSERT_OWNINGTHREAD(StreamList);
135135
if (mStreamControl) {
136-
mStreamControl->CloseAll();
136+
auto streamControl = mStreamControl;
137+
mStreamControl = nullptr;
138+
139+
streamControl->CloseAll();
140+
141+
mStreamControl = streamControl;
142+
streamControl = nullptr;
143+
144+
mStreamControl->Shutdown();
137145
}
138146
}
139147

mozilla-release/js/src/tests/jstests.list

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -508,3 +508,7 @@ skip script test262/language/expressions/super/call-proto-not-ctor.js
508508

509509
# Tests expects RangeError, but should instead expect TypeError.
510510
skip script test262/intl402/NumberFormat/constructor-order.js
511+
512+
# DST issues, bug 1620825.
513+
skip script test262/built-ins/Date/parse/without-utc-offset.js
514+

mozilla-release/services/settings/dumps/blocklists/addons.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

mozilla-release/services/settings/dumps/blocklists/plugins.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

mozilla-release/services/settings/dumps/security-state/onecrl.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)