| Index: LayoutTests/crypto/rsa-export-key.html | 
| diff --git a/LayoutTests/crypto/rsa-export-key.html b/LayoutTests/crypto/rsa-export-key.html | 
| index cfd4ba6838a027d02ff92c1fe582cef6e31da88e..ee15df0d599b6ee9eebd4967a3cd07de73fbd9ca 100644 | 
| --- a/LayoutTests/crypto/rsa-export-key.html | 
| +++ b/LayoutTests/crypto/rsa-export-key.html | 
| @@ -46,7 +46,7 @@ crypto.subtle.importKey("jwk", publicKeyJSON, {name: "RSASSA-PKCS1-v1_5", hash: | 
| debug("\nExporting the key as JWK..."); | 
| return crypto.subtle.exportKey("jwk", key); | 
| }).then(function(result) { | 
| -    exportedJWK = JSON.parse(bytesToASCIIString(result)); | 
| +    exportedJWK = result; | 
|  | 
| shouldBe("exportedJWK.kty", "'RSA'"); | 
| shouldBe("exportedJWK.n", "publicKeyJSON.n"); | 
|  |