This repository was archived by the owner on Jul 9, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +4
-7
lines changed Expand file tree Collapse file tree 4 files changed +4
-7
lines changed Original file line number Diff line number Diff line change 13636
13636
13637
13637
- name : network.http.http2.allow-push
13638
13638
type : RelaxedAtomicBool
13639
- value : false
13639
+ value : true
13640
13640
mirror : always
13641
13641
13642
13642
- name : network.http.http2.push-allowance
Original file line number Diff line number Diff line change @@ -26,7 +26,6 @@ add_setup(async function setup() {
26
26
}
27
27
28
28
Services . prefs . setIntPref ( "network.trr.mode" , Ci . nsIDNSService . MODE_TRRFIRST ) ;
29
- Services . prefs . setBoolPref ( "network.http.http2.allow-push" , true ) ;
30
29
} ) ;
31
30
32
31
let test_answer = "bXkgdm9pY2UgaXMgbXkgcGFzc3dvcmQ=" ;
@@ -63,7 +62,7 @@ add_task(async function testTXTRecordPushPart1() {
63
62
inRecord . QueryInterface ( Ci . nsIDNSAddrRecord ) ;
64
63
let answer = inRecord . getNextAddrAsString ( ) ;
65
64
Assert . equal ( answer , test_answer_addr , "got correct answer" ) ;
66
- } ) . skip ( "H2 push is disabled" ) ;
65
+ } ) ;
67
66
68
67
// verify the TXT pushed record
69
68
add_task ( async function testTXTRecordPushPart2 ( ) {
@@ -81,4 +80,4 @@ add_task(async function testTXTRecordPushPart2() {
81
80
. QueryInterface ( Ci . nsIDNSTXTRecord )
82
81
. getRecordsAsOneString ( ) ;
83
82
Assert . equal ( answer , test_answer , "got correct answer" ) ;
84
- } ) . skip ( "H2 push is disabled" ) ;
83
+ } ) ;
Original file line number Diff line number Diff line change @@ -15,7 +15,6 @@ function run_test() {
15
15
prefs = Services . prefs ;
16
16
17
17
http2pref = prefs . getBoolPref ( "network.http.http2.enabled" ) ;
18
- Services . prefs . setBoolPref ( "network.http.http2.allow-push" , true ) ;
19
18
20
19
prefs . setBoolPref ( "network.http.http2.enabled" , true ) ;
21
20
prefs . setCharPref (
Original file line number Diff line number Diff line change @@ -8,7 +8,6 @@ SetParentalControlEnabled(false);
8
8
9
9
function setup ( ) {
10
10
Services . prefs . setBoolPref ( "network.dns.get-ttl" , false ) ;
11
- Services . prefs . setBoolPref ( "network.http.http2.allow-push" , true ) ;
12
11
h2Port = trr_test_setup ( ) ;
13
12
}
14
13
@@ -148,7 +147,7 @@ add_task(async function test_push() {
148
147
setModeAndURI ( 3 , "404" ) ;
149
148
150
149
await new TRRDNSListener ( "push.example.org" , "2018::2018" ) ;
151
- } ) . skip ( "H2 push is disabled" ) ;
150
+ } ) ;
152
151
153
152
add_task ( test_AAAA_records ) ;
154
153
You can’t perform that action at this time.
0 commit comments