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