82b545
diff -up firefox-68.2.0/security/manager/ssl/nsNSSComponent.cpp.old firefox-68.2.0/security/manager/ssl/nsNSSComponent.cpp
82b545
--- firefox-68.2.0/security/manager/ssl/nsNSSComponent.cpp.old	2019-10-24 14:20:21.227037984 +0200
82b545
+++ firefox-68.2.0/security/manager/ssl/nsNSSComponent.cpp	2019-10-24 14:45:52.769506967 +0200
82b545
@@ -996,6 +996,9 @@ void nsNSSComponent::FillTLSVersionRange
82b545
     return;
82b545
   }
82b545
 
82b545
+  // Enable TLS 1.3 as our NSS supports it.
82b545
+  supported.max = 0x304;
82b545
+
82b545
   // Clip the defaults by what NSS actually supports to enable
82b545
   // working with a system NSS with different ranges.
82b545
   rangeOut.min = std::max(rangeOut.min, supported.min);