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