Skip to content
This repository was archived by the owner on Jul 9, 2025. It is now read-only.

Commit 4487d89

Browse files
author
Butkovits Atila
committed
Backed out changeset ec4fbd52f18c (bug 1915848) for causing xpcshell failures at test_trr.js. CLOSED TREE
1 parent c01a2e5 commit 4487d89

File tree

4 files changed

+4
-7
lines changed

4 files changed

+4
-7
lines changed

modules/libpref/init/StaticPrefList.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13636,7 +13636,7 @@
1363613636

1363713637
- name: network.http.http2.allow-push
1363813638
type: RelaxedAtomicBool
13639-
value: false
13639+
value: true
1364013640
mirror: always
1364113641

1364213642
- name: network.http.http2.push-allowance

netwerk/test/unit/test_dns_by_type_resolve.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ add_setup(async function setup() {
2626
}
2727

2828
Services.prefs.setIntPref("network.trr.mode", Ci.nsIDNSService.MODE_TRRFIRST);
29-
Services.prefs.setBoolPref("network.http.http2.allow-push", true);
3029
});
3130

3231
let test_answer = "bXkgdm9pY2UgaXMgbXkgcGFzc3dvcmQ=";
@@ -63,7 +62,7 @@ add_task(async function testTXTRecordPushPart1() {
6362
inRecord.QueryInterface(Ci.nsIDNSAddrRecord);
6463
let answer = inRecord.getNextAddrAsString();
6564
Assert.equal(answer, test_answer_addr, "got correct answer");
66-
}).skip("H2 push is disabled");
65+
});
6766

6867
// verify the TXT pushed record
6968
add_task(async function testTXTRecordPushPart2() {
@@ -81,4 +80,4 @@ add_task(async function testTXTRecordPushPart2() {
8180
.QueryInterface(Ci.nsIDNSTXTRecord)
8281
.getRecordsAsOneString();
8382
Assert.equal(answer, test_answer, "got correct answer");
84-
}).skip("H2 push is disabled");
83+
});

netwerk/test/unit/test_origin.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ function run_test() {
1515
prefs = Services.prefs;
1616

1717
http2pref = prefs.getBoolPref("network.http.http2.enabled");
18-
Services.prefs.setBoolPref("network.http.http2.allow-push", true);
1918

2019
prefs.setBoolPref("network.http.http2.enabled", true);
2120
prefs.setCharPref(

netwerk/test/unit/test_trr.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ SetParentalControlEnabled(false);
88

99
function setup() {
1010
Services.prefs.setBoolPref("network.dns.get-ttl", false);
11-
Services.prefs.setBoolPref("network.http.http2.allow-push", true);
1211
h2Port = trr_test_setup();
1312
}
1413

@@ -148,7 +147,7 @@ add_task(async function test_push() {
148147
setModeAndURI(3, "404");
149148

150149
await new TRRDNSListener("push.example.org", "2018::2018");
151-
}).skip("H2 push is disabled");
150+
});
152151

153152
add_task(test_AAAA_records);
154153

0 commit comments

Comments
 (0)