Index: third_party/WebKit/LayoutTests/fast/mediastream/RTCPeerConnection.html |
diff --git a/third_party/WebKit/LayoutTests/fast/mediastream/RTCPeerConnection.html b/third_party/WebKit/LayoutTests/fast/mediastream/RTCPeerConnection.html |
index f256f8576b462c794c23803ff73e3a29fe6285a2..dc829d70f9393933a07f4ed10063e5386f152a49 100644 |
--- a/third_party/WebKit/LayoutTests/fast/mediastream/RTCPeerConnection.html |
+++ b/third_party/WebKit/LayoutTests/fast/mediastream/RTCPeerConnection.html |
@@ -71,7 +71,7 @@ var certRSA = null; |
var certECDSA = null; |
function testCertificates1RSA() |
hta - Chromium
2015/10/23 06:55:00
Nit: Blank lines above function declaration for re
hbos_chromium
2015/10/23 09:59:05
Done.
|
{ |
- webkitRTCPeerConnection.generateCertificate({ name: "RSASSA-PKCS1-v1_5", modulusLength: 2048, publicExponent: 65537 }) |
+ webkitRTCPeerConnection.generateCertificate({ name: "RSASSA-PKCS1-v1_5", modulusLength: 2048, publicExponent: new Uint8Array([1, 0, 1]), hash: "SHA-256" }) |
.then(function(certificate) { |
certRSA = certificate; |
shouldNotThrow('new webkitRTCPeerConnection({certificates:[certRSA]}, null);'); |